RSS Feed for This PostCurrent Article

Oracle BPEL: Partner Link Timeout

Starting version 10.1.3.4, to set time out in seconds for a partner link, it is just configuration in bpel.xml.

E.g. the configuration below sets the timeout to 5 seconds

   1: <partnerLinkBinding name="WebService"

   2:   <property name="timeout">5</property>   

   3:   <property name="optSoapShortcut">false</property>    

   4:   <!-- other PartnerLink properties --> 

   5: </partnerLinkBinding>

If  the WebService is on the SAME host as the BPEL, it is also necessary to set the property "optSoapShortcut" to FALSE.  The parameter "optSoapShortcut" is by Default = TRUE. It should be set to FALSE to force local SOAP request to go through SOAP instead of internal calls. 

The parameter Timeout is documented in :  Oracle® BPEL Process Manager Developer’s Guide 

http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/appx_deploydesc.htm

optSoapShortcut is documented in : http://download.oracle.com/docs/cd/B31017_01/core.1013/b28942/tuning_bpel.htm#sthref496

Popularity: 1% [?]


Trackback URL


RSS Feed for This Post1 Comment(s)

  1. Oracletube | Mar 3, 2010 | Reply

    Check out http://www.oracletube.com for free training on BPEL,AIA,Fusion Middleware and more…

RSS Feed for This PostPost a Comment