Tuesday, 24 March 2015
Tuesday, 24 February 2015
Tuesday, 13 January 2015
B2Bi and SFG Community link
IBM Sterling B2B Integrator links:
My thought behind creating this page is to make this page as one stop for all the best links of B2Bi.
The links I provided here contain very good information and written by experts in B2Bi. If you get some time please read through them they are really informative. I will make sure to add only block busters here :)
First one and the best one to start with is B2Bi developer works community. This link has very good information regarding below concepts like
How to export all BPs in B2b or use external source control for checkin-checkout BPs
Simple steps to disable weak, medium, null ciphers on SBI secure HTTP interfaces and Tool to identify available ciphers on IBM SB2BI
https://www.ibm.com/developerworks/community/groups/community/B2Bi
My thought behind creating this page is to make this page as one stop for all the best links of B2Bi.
The links I provided here contain very good information and written by experts in B2Bi. If you get some time please read through them they are really informative. I will make sure to add only block busters here :)
First one and the best one to start with is B2Bi developer works community. This link has very good information regarding below concepts like
How to export all BPs in B2b or use external source control for checkin-checkout BPs
Simple steps to disable weak, medium, null ciphers on SBI secure HTTP interfaces and Tool to identify available ciphers on IBM SB2BI
https://www.ibm.com/developerworks/community/groups/community/B2Bi
Wednesday, 7 January 2015
caught exception while attempting to execute service MailboxAdd -No user token found in WFC
Problem Description:
Mailbox add service fails when we are trying to invoke the bp using a webservice and that bp has a mailbox add step.
The mailbox.log doesnot conatin error wf.log has below errors.
Errors in wf.log
===========wf.log==================================>
[2014-12-30 14:14:36.526] ERROR 000110060004 WORKFLOW.ACTIVITY_ENGINE.ERR_ActivityEngineHelper_invokeService2 ActivityEngineHelper.invokeService() caught exception while attempting to execute service MailboxAdd
[2014-12-30 14:14:36.527] ERROR [1419920076527] No user token found in WFC
[2014-12-30 14:14:36.527] ERRORDTL [1419920076527]com.sterlingcommerce.woodstock.workflow.WorkFlowException: No user token found in WFC
at com.sterlingcommerce.woodstock.services.mailbox.MailboxService.getUserToken(MailboxService.java:168)
at com.sterlingcommerce.woodstock.services.mailbox.MailboxService.processData(MailboxService.java:95)
at com.sterlingcommerce.woodstock.workflow.activity.engine.ActivityEngineHelper.invokeService(ActivityEngineHelper.java:1818)
at com.sterlingcommerce.woodstock.workflow.activity.engine.ActivityEngineHelper.nextMainLogic(ActivityEngineHelper.java:631)
at com.sterlingcommerce.woodstock.workflow.activity.engine.ActivityEngineHelper.next(ActivityEngineHelper.java:362)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.doWork(WorkFlowQueueListener.java:461)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.run(WorkFlowQueueListener.java:240)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.onMessage(WorkFlowQueueListener.java:197)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.onMessage(WorkFlowQueueListener.java:184)
at com.sterlingcommerce.woodstock.workflow.queue.wfTransporter.run(wfTransporter.java:444)
at com.sterlingcommerce.woodstock.workflow.queue.BasicExecutor$Worker.run(BasicExecutor.java:508)
at java.lang.Thread.run(Thread.java:795)
================================================================>
Resolution:
1.Create a service instance of SetUserToken service:-
Deployment >Services > Configuration > New
Click on the "List View" icon Select SetUserToken and then the Save button
Click on Next
Enter a name as SetUserToken and fill the description.
Click on Next and Finish
2. Add the below code just before mailbox add service. save the settings and test the bp.
<operation name="set user token">
<participant name="SetUserToken"/>
<output message="SetUserTokenMessage">
<assign to="USER_TOKEN">admin</assign>
<assign to="." from="*"/>
</output>
<input message="inmsg">
<assign to="." from="*"/>
</input>
</operation>
Mailbox add service fails when we are trying to invoke the bp using a webservice and that bp has a mailbox add step.
The mailbox.log doesnot conatin error wf.log has below errors.
Errors in wf.log
===========wf.log==================================>
[2014-12-30 14:14:36.526] ERROR 000110060004 WORKFLOW.ACTIVITY_ENGINE.ERR_ActivityEngineHelper_invokeService2 ActivityEngineHelper.invokeService() caught exception while attempting to execute service MailboxAdd
[2014-12-30 14:14:36.527] ERROR [1419920076527] No user token found in WFC
[2014-12-30 14:14:36.527] ERRORDTL [1419920076527]com.sterlingcommerce.woodstock.workflow.WorkFlowException: No user token found in WFC
at com.sterlingcommerce.woodstock.services.mailbox.MailboxService.getUserToken(MailboxService.java:168)
at com.sterlingcommerce.woodstock.services.mailbox.MailboxService.processData(MailboxService.java:95)
at com.sterlingcommerce.woodstock.workflow.activity.engine.ActivityEngineHelper.invokeService(ActivityEngineHelper.java:1818)
at com.sterlingcommerce.woodstock.workflow.activity.engine.ActivityEngineHelper.nextMainLogic(ActivityEngineHelper.java:631)
at com.sterlingcommerce.woodstock.workflow.activity.engine.ActivityEngineHelper.next(ActivityEngineHelper.java:362)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.doWork(WorkFlowQueueListener.java:461)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.run(WorkFlowQueueListener.java:240)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.onMessage(WorkFlowQueueListener.java:197)
at com.sterlingcommerce.woodstock.workflow.queue.WorkFlowQueueListener.onMessage(WorkFlowQueueListener.java:184)
at com.sterlingcommerce.woodstock.workflow.queue.wfTransporter.run(wfTransporter.java:444)
at com.sterlingcommerce.woodstock.workflow.queue.BasicExecutor$Worker.run(BasicExecutor.java:508)
at java.lang.Thread.run(Thread.java:795)
================================================================>
Resolution:
1.Create a service instance of SetUserToken service:-
Deployment >Services > Configuration > New
Click on the "List View" icon Select SetUserToken and then the Save button
Click on Next
Enter a name as SetUserToken and fill the description.
Click on Next and Finish
2. Add the below code just before mailbox add service. save the settings and test the bp.
<operation name="set user token">
<participant name="SetUserToken"/>
<output message="SetUserTokenMessage">
<assign to="USER_TOKEN">admin</assign>
<assign to="." from="*"/>
</output>
<input message="inmsg">
<assign to="." from="*"/>
</input>
</operation>
Thursday, 1 January 2015
Usage of Ops Commands in IBM Sterling B2B Integrator
A wonderful blog on various parameters that we can execute using opscmd..
https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/Wf96854c0c8fc_4762_9b83_c6247feca5fc
https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/Wf96854c0c8fc_4762_9b83_c6247feca5fc
IBM Sterling B2B integrator 5240 installation
Hi All,
The below link has a video tutorial on how to install Sterling B2B Integrator 5240.
http://www-01.ibm.com/support/knowledgecenter/api/content/sterling_iea/com.ibm.iea.sb2bi/sb2bi/5.2.3/content/ibmsib2binstall5240_player.html?dmuid=20140909093217549586
The below link has a video tutorial on how to install Sterling B2B Integrator 5240.
http://www-01.ibm.com/support/knowledgecenter/api/content/sterling_iea/com.ibm.iea.sb2bi/sb2bi/5.2.3/content/ibmsib2binstall5240_player.html?dmuid=20140909093217549586
Subscribe to:
Posts (Atom)