Unable to find suitable outbound binding Outbound BPEL Process deployment Issue in SOA
Solution:-
In Jdeveloper open the source tab of BEPL process, search binding.jca entry in the composite.xml and remove the "ns1:" qualification on the operation and redeploying.
For example:
From:
<binding.jca config="BAPI_COMPANYCODE_GETDETAIL_invoke_3P.jca"
operation="ns1:BAPI_COMPANYCODE_GETDETAIL"/>
To:
<binding.jca config="BAPI_COMPANYCODE_GETDETAIL_invoke_3P.jca"
operation="BAPI_COMPANYCODE_GETDETAIL"/>
For further detail see my OTN forum post:-
https://forums.oracle.com/thread/2546166
In Jdeveloper open the source tab of BEPL process, search binding.jca entry in the composite.xml and remove the "ns1:" qualification on the operation and redeploying.
For example:
From:
<binding.jca config="BAPI_COMPANYCODE_GETDETAIL_invoke_3P.jca"
operation="ns1:BAPI_COMPANYCODE_GETDETAIL"/>
To:
<binding.jca config="BAPI_COMPANYCODE_GETDETAIL_invoke_3P.jca"
operation="BAPI_COMPANYCODE_GETDETAIL"/>
For further detail see my OTN forum post:-
https://forums.oracle.com/thread/2546166
Comments
Post a Comment