Smarter Commerce Global Summit 2011 Opening General Session Get link Facebook X Pinterest Email Other Apps - July 22, 2012 Check out this video on YouTube: http://www.youtube.com/watch?v=y88oTwzwQdg&feature=youtube_gdata_player Get link Facebook X Pinterest Email Other Apps Comments
Java Task Service - Sterling Integrator - May 02, 2025 import com.sterlingcommerce.woodstock.workflow.Document; import java.io.InputStream; import java.io.InputStreamReader; import java.io.BufferedReader; Document doc = wfc.getPrimaryDocument(); Document outPutDoc = wfc.newDocument(); ; InputStream inS = doc .getInputStream(); BufferedReader br = new BufferedReader( new InputStreamReader( inS )); String strData = “<SampleData>” ; String strLine; while ((strLine = br .readLine()) != null ) { strData = strData.concat(strLine); } br.close(); strData = strData + “</SampleData>”; outPutDoc. setBody( strData .toString().getBytes()); wfc.putPrimaryDocument( outPutDoc ); Read more
Sterling Integrator Purge All Tables - January 07, 2015 1. EDI_COMPLIANCE_RPT 2. EDI_DOCUMENT_STATE 3. WF_INST_S 4. WORKFLOW_CONTEXT 5. WORKFLOW_LIFESPAN 6. WORKFLOW_DATA 7. EDIINTDOC 8. MSGMDNDUP 9. MSGMDNCORRELATION 10. WEBX_MINED_DATA 11. WF_INACTIVE 12. GENERIC_ACK 13. CORRELATION_SET 14. ACT_SESSION 15. ACT_AUTHENTICATE 16. ACT_AUTHORIZE 17. ACT_XFER 18. ACT_NON_XFER 19. DATA_FLOW 20. DMI_ROUTE 21. DMI_ROUTE_FACT 22. MBX_MESSAGE 23. TRANS_DATA Read more
Hibernate Connection Fails if there is Database inconsistency or DB fail-over (Oracle RAC) - January 18, 2011 /** * A static method with returns Hibernate Sessoin Object. * * @return {@link Session} */ public static Session getSession() throws HibernateException { Session appSession = sessionFactory .openSession(); try { if (appSession.connection().isClosed()||!appSession.isConnected()||!appSession.isOpen()){ System. out .println( "Session Closed, Creating Session again..." ); ... Read more
Comments
Post a Comment