Dynamic Partner Link.

Hi,
does anybody have an idea how to create a dynamic partner link.My requirement is that I recieve the service URL from database and then need to create a partner link to send message to that external service on that URL obtained.
Anybody have any info on that .Please let me know.
Thanks
Deepthi.

I haven't build this yet, so just some wild guesses.
<variable name="partnerReference" element="wsa:EndpointReference"/>
<assign>
<copy>
  <from>
   <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing">
   <Address>http://localhost:9700/orabpel/default/UnitedLoan</Address>
   <ServiceName
     xmlns:ns1="http://services.otn.com">ns1:UnitedLoan</ServiceName>
   </EndpointReference>
  </from>
  <to variable="partnerReference"/>
</copy>
</assign>If i see this peace of code, you should be able to assign the address of the service.
This value you will receive from the database service.
This partnerReference variable you will use for the invoke of the partnerlink

Similar Messages

  • No Fault When Dynamic Partner Link Is Down?

    Hello,
    I have an async process that establishes a dynamic partner link based on runtime data. I understand how to fire off to a dynamic partner link, however, I ran into a problem while testing a scenario where the partner link's endpoint is down.
    In situations where the dynamic endpoint is up, my process calls it without any problems. However, when testing what happens if the dynamic endpoint is not available, I expected the process to throw a fault that I can catch. What I find is that an exception is raised in the logs (see below), but the calling process does not throw a fault. The process also continues on as if the call were successful?
    Is there something that I can do to ensure that faults are raised in cases where dynamic partner links are down?
    <2008-06-07 21:42:13,413> <DEBUG> <default.collaxa.cube.ws> <WSIFInvocationHandler::invoke> invoke failed
    org.collaxa.thirdparty.apache.wsif.WSIFException: when invoking locally the endpoint 'http://alcalba2-lap:8889/orabpel/default/CDS_DNS_process/1.0', ; nested exception is:
    ORABPEL-00000
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "ORABPEL-02178
    Process not found.
    The BPEL process "CDS_DNS_process", revision "1.0" has not been loaded. Either the process was not initialized properly or the process has been disabled.
    Please consult your administrator regarding this error. The application server logs may provide more information regarding this error.
    v10.1.3.3.0
    Thanks!

    There is a catch all block. I have no fault policies or fault binding set outside of what is defaulted.
    Shouldn't my catch all block be enough to pick this up? It's as if nothing is bubbling up to the process and I clearly see an exception in the logs.

  • Dynamic partner link in BPEL2.0 in SOA Suite 11.1.1.6.0

    Hi experts,
    I would like to use the dynamic partner links in BPEL2.0 in SOA Suite 11.1.1.6.0 but I get this error:
    <env:Fault xmlns:ns0="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
       <faultcode>ns0:selectionFailure</faultcode>
       <faultstring>fromValue is nota  sref:service-ref element</faultstring>As I know the dynamic partner link (in BPEL2.0) was not supported in 11.1.1.5.0 but it is in 11.1.1.6.0. So it should work but unfortunately it doesn't.
    Could anyone please help me?
    Thanks,
    V.
          <assign name="Assign_set_EndpointReference_InventoryConfirmation">
            <copy>
              <from><literal><sref:service-ref xmlns:sref="http://docs.oasisopen.org/wsbpel/2.0/serviceref"
                                               reference-scheme="http://www.w3.org/2005/08/addressing">
    <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">
    <Address>http://localhost:8088/mockInventoryConfirmationBinding</Address>
    </EndpointReference>
    </sref:service-ref></literal></from>
              <to partnerLink="PL_InventoryConfirmation"/>
            </copy>

    That link leads to instructions for an async partner link. Is it appropriate for synchronous partner links?
    Frankly -- this documentation is really irritating. It makes a lot of assumptions and is far to vague in places. The very first thing it says is "Create a WSDL file that contains multiple services that use the same portType." but it doesn't specify which wsdl (I have several in my project) and seems to be drawn from some example code with no explanation.
    I have a wsdl for a partner link that looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions
         name="f17borrowerCheck"
         targetNamespace="http://xmlns.oracle.com/f17cPriorCaseCheck/f17borrowerCheck/f17borrowerCheck"
         xmlns:ns1="http://xmlns.oracle.com/A43ICSEF"
         xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
         xmlns:client="http://xmlns.oracle.com/f17cPriorCaseCheck/f17borrowerCheck/f17borrowerCheck"
         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
         xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing">
        <plnk:partnerLinkType name="f17borrowerCheck">
            <plnk:role name="f17borrowerCheckProvider" portType="client:f17borrowerCheck"/>
        </plnk:partnerLinkType>
        <wsdl:types>
            <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
                 xmlns:client="http://xmlns.oracle.com/f17cPriorCaseCheck/f17borrowerCheck/f17borrowerCheck"
                 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
                <import namespace="http://xmlns.oracle.com/f17cPriorCaseCheck/f17borrowerCheck/f17borrowerCheck"
                     schemaLocation="xsd/f17borrowerCheck.xsd"/>
            </schema>
            <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                <xsd:import namespace="http://xmlns.oracle.com/A43ICSEF" schemaLocation="xsd/a43cisef.xsd"/>
            </xsd:schema>
        </wsdl:types>
        <wsdl:message name="f17borrowerCheckRequestMessage">
            <wsdl:part name="payload" element="client:process"/>
        </wsdl:message>
        <wsdl:message name="f17borrowerCheckResponseMessage">
            <wsdl:part name="payload" element="client:processResponse"/>
        </wsdl:message>
        <wsdl:portType name="f17borrowerCheck">
            <wsdl:operation name="process">
                <wsdl:input message="client:f17borrowerCheckRequestMessage"/>
                <wsdl:output message="client:f17borrowerCheckResponseMessage"/>
            </wsdl:operation>
        </wsdl:portType>
    </wsdl:definitions>Edited by: Keith Fosberg on Oct 29, 2012 7:31 AM

  • A dynamic partner link for very distinct services.

    Hello,
    Is possible to create a dynamic partner link for very distinct services. for examples 10 services has different operation names, inputs, outputs.
    Thank you.

    Hello,
    You could use an Oracle Services Registry ( UDDI ) to store the WSDL and dynamically select the needed WSDL.
    Here is the general idea :
    http://chintanblog.blogspot.com/2008/04/performance-with-esb-and-bpel-run-time.html
    Cheers,
    Arnaud

  • Partner Link URL/WSDL or Dynamic Partner link

    We are using a service similar to CreditRatingService in orderBooking Tutorial as a partner link.
    The partner has different test vs production service.
    I was wondering during deplyment on production is it possible to specify the URL in config file or do I have to change the designtime location in jdev and then deploy it in prod.
    Can experienced folks here point me to deployment best practices ?
    Part2 : Where does dynamic partner link fit in ?

    JDeveloper is using ANT and is using a properties file during the compilation. You can change the properties when you want to deploy.
    http://orasoa.blogspot.com/2006/08/using-ant-in-bpel-environment.html
    Dyn PL are usefully when you want to call multiple/various web services that all take the same payload, but are using different end-points and operation. This reduces the code to make for every interface an PL.

  • Why we use Dynamic Partner Link in BPEL process

    hi,
    What is the purpose of using Dynamic Partner link in BPEL process ?

    Hi Shankari,
    apart of using the the config plan you can change the endpoint uri in runtime if you define the property "endpointURI" in your composite
    <binding.ws port="http://xmlns.oracle.com/bpel/workflow/taskService#wsdl.endpoint(TaskService/TaskServicePortSAML)"
    location="http://localhost:7001/integration/services/TaskService/TaskServicePortSAML?ORAWSDL"
    soapVersion="1.1">
    <property name="weblogic.wsee.wsat.transaction.flowOption"
    type="xs:string" many="false">WSDLDriven</property>
    <property name="endpointURI"
    type="xs:string" >http://localhost:7001/integration/services/TaskService/TaskServicePort</property>
    </binding.ws>
    then right click your composite in the enterprise manager and go to "Service/Reference Properties". There you can change the endpointURI property.
    You can also change the endpointURI inside your BPEL process. Go to the invoke inside the bpel process and go to the "properties" tab. There search for the property "endpointURI" and set a value.
    hope this helps
    cheers Nicolas

  • Dynamic partner link for http binding

    Hi all,
    I'm writing BPEL code to call a web service with dynamic partner link.
    I'm succesful in soap binding but fail in http binding, it does not run with new given address.
    Could you please help me to solve this problem? Is the trouble coming from http binding?
    This is the successful part:
    - BPEL code:
    <assign name="assign-Address">
    <copy>
    <from>
    <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing">
    <Address>http://152.78.239.173/FusionWPS/Fusionservice.asmx</Address>
    </EndpointReference>
    </from>
    <to variable="partnerReference"/>
    </copy>
    <copy>
    <from variable="partnerReference"></from>
    <to partnerLink="WPS_Provider"></to>
    </copy>
    </assign>
    <invoke name="invoke-1" partnerLink="WPS_Provider" portType="nsxml0:FusionServiceSoap" operation="getCapabilities" inputVariable="getCapRequest" outputVariable="getCapResponse"/>
    - Binding and service:
    <wsdl:binding name="FusionServiceSoap" type="tns:FusionServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="getCapabilities">
    <soap:operation soapAction="http://www.opengis.net/wps/getCapabilities" style="document" />
    <wsdl:input>
    <soap:body use="literal" />
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="FusionService">
    <wsdl:port name="FusionServiceSoap" binding="tns:FusionServiceSoap">
    <soap:address location="http://1acb152.78.239.173/FusionWPS/Fusionservice1.asmx" />
    </wsdl:port>
    </wsdl:service>
    This is the unsuccessful part:
    - BPEL code:
    <assign name="assign-Address">
    <copy>
    <from>
    <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing">
    <Address>http://153.96.8.132:80/52N-SOSv2-01-00/sos</Address>
    </EndpointReference>
    </from>
    <to variable="partnerReference"/>
    </copy>
    <copy>
    <from variable="partnerReference"></from>
    <to partnerLink="SOSProvider"></to>
    </copy>
    </assign>
    <invoke name="invoke-1" partnerLink="SOSProvider" portType="nsxml0:SOS" operation="GetObservation" inputVariable="getObservationREQ" outputVariable="getObservationRES"/>
    - Binding and service:
    <binding name="SOSBinding" type="tns:SOS">
    <operation name="GetObservation">
    <http:operation location=""/>
    <input>
    <mime:mimeXml part="parameters"/>
    <mime:content type="text/xml"/>
    </input>
    <output>
    <mime:mimeXml part="parameters"/>
    <mime:content type="text/xml"/>
    </output>
    </operation>
    </binding>
    <service name="SOS">
    <port name="SOS" binding="tns:SOSBinding">
    <http:address location="http://153.96.8.132:80/52N-SOSv2-01-00/sos1"/>
    </port>
    </service>
    Thanks for your help.
    An Le

    Dear all,
    Thanks for your pay attention on my question.
    I'm sorry, I have just taken my vacation, so I couldn't check your reply.
    c|3k: If the server is not available, it must be throw an error message. But in my case, it took the old address to run and give me a unexpected result.
    sashwat: I copied service name before, but it didn't work.
    But let me try again.
    Thank you all very much.
    An Le

  • Need Help Regarding Dynamic Partner Link

    Hi all
    I am new to this Oracle BPEL.
    I need to configure dynamic partner link.
    need help with this.........
    any useful links.. pls.

    Hi',
    Check this
    http://blogs.oracle.com/dasoa/entry/11g_dynamic_partnerlink_example
    there are plenty like this.
    -Yatan

  • Dynamic Partner link in 11g-urgent pls

    Version: 11.1.1.3
    All,
    I've a requirement to use partner link dynamically. I configured a DBAdapter which connects to a DB called 'DB1'. During run time, my payload has systemID based on the systemID I have to insert the doc to a table in appropriate DB. Note that the no.of DB is unknown. There may be 2 or 3 or more than 3 DB's would exist. How do I achieve it in fusion 11g? Any pointers would be grateful.
    thanks
    sen

    Hi,
    If you have differenet DB's ...you can pass the JNDI name to the ad adapter dynamically.Luk at the below post
    http://shrikworld.blogspot.com/2011/04/change-db-jndi-dynamically-in-soa-11g.html

  • Dynamic Partner links in BPEL (or ESB

    Can we dynamically define Partner links at runtime and at runtime decide to call these services? If yes, can we also dynamically map the schemas?
    BPEL cook book provides an example to for creating Dynamic Partner but this requires redeploying the WSDL?
    This is not acceptable because redeploying the WSDLwill effect other processes running.

    Just for your information it is recommended when dealing with Batch type processing that the you do not use BPEL variables larger than 5MB.
    Therefore is this is the case it might be worth considering a mechanism (as described above) to de batch the process to provide a flow of data rather than a big hit of data.
    Hope that Helps
    Dave

  • Strange problems with Dynamic Partner Linking, how to reset conversation Id

    Hi,
    We have dyanamic partner linking with synchronous BPEL process. For testing this I have created an xml which is having 3 Dyanmic links for the same partener link. When I execute the first one gets executed but second one onwards it throws bpel fault exception When I am looping through the XML the first linking is working but when it tries to do the second call to the same end point it faults out saying
    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    <part name="code">
    <code>GenericError</code>
    </part>
    <part name="summary">
    <summary>null</summary>
    </part>
    </bindingFault>
    I tried several ways, bottom line this what I am getting in Do parter link assing in both loops. In my observation it generates some conversation Id which is null in the first iteration but from second one onwards.. it is generating some value which I am unable to reset. I belive if I can reset that converstationId to null probably I won't get this bepelFault.
    Please let me know if you need more information.
    First Scenario:
    <partnerLink name="PartnerLink_Campus_PIDS" partnerLinkType="{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS">
    <myRole name="null">
    <ServiceName>null</ServiceName>
    <PortType>null</PortType>
    <Address>null</Address>
    </myRole>
    <partnerRole name="PIDSUpdate_CHCSProvider">
    <ServiceName>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</ServiceName>
    <PortType>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</PortType>
    <Address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS</Address>
    </partnerRole>
    <conversationId>null</conversationId>
    <properties>{}</properties>
    </partnerLink>
    Second Scenario:
    [2006/04/18 22:37:10] Updated variable "PartnerLink_Campus_PIDS" less
    <partnerLink name="PartnerLink_Campus_PIDS" partnerLinkType="{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS">
    <myRole name="null">
    <ServiceName>null</ServiceName>
    <PortType>null</PortType>
    <Address>null</Address>
    </myRole>
    <partnerRole name="PIDSUpdate_CHCSProvider">
    <ServiceName>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</ServiceName>
    <PortType>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</PortType>
    <Address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS</Address>
    </partnerRole>
    <conversationId>bpel://localhost/default/iXPPIDSUpdateBroadCast~1.0/8909-BpInv0-BpSeq1.5-5</conversationId>
    <properties>{}</properties>
    </partnerLink>
    I clearing the end point the following way.
    <assign name="ClearEndpoint">
    <copy>
    <from>
    <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:ns1="http://xmlns.oracle.com/PIDSUpdate_CHCS">
    <Address/>
    <ReferenceProperties/>
    <ServiceName/>
    </EndpointReference>
    </from>
    <to variable="partnerReference"/>
    </copy>
    </assign><!-- set the address in the endpoint variable
    Dynamic Links XML :
    <Dynamiclinks xmlns="http://ixp.mhs.dod.gov/DynamicLinksSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Dynamiclink>
    <address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS
    </address>
    <service_name>ns1:PIDSUpdate_CHCS
    </service_name>
    </Dynamiclink>
    <Dynamiclink>
    <address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS
    </address>
    <service_name>ns1:PIDSUpdate_CHCS
    </service_name>
    </Dynamiclink>
    </Dynamiclinks>
    Does any one how to reset the convesation Id, it will be a big help for me.
    Regards,
    Sridhar Dabbeeru

    Hi,
    We have dyanamic partner linking with synchronous BPEL process. For testing this I have created an xml which is having 3 Dyanmic links for the same partener link. When I execute the first one gets executed but second one onwards it throws bpel fault exception When I am looping through the XML the first linking is working but when it tries to do the second call to the same end point it faults out saying
    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    <part name="code">
    <code>GenericError</code>
    </part>
    <part name="summary">
    <summary>null</summary>
    </part>
    </bindingFault>
    I tried several ways, bottom line this what I am getting in Do parter link assing in both loops. In my observation it generates some conversation Id which is null in the first iteration but from second one onwards.. it is generating some value which I am unable to reset. I belive if I can reset that converstationId to null probably I won't get this bepelFault.
    Please let me know if you need more information.
    First Scenario:
    <partnerLink name="PartnerLink_Campus_PIDS" partnerLinkType="{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS">
    <myRole name="null">
    <ServiceName>null</ServiceName>
    <PortType>null</PortType>
    <Address>null</Address>
    </myRole>
    <partnerRole name="PIDSUpdate_CHCSProvider">
    <ServiceName>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</ServiceName>
    <PortType>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</PortType>
    <Address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS</Address>
    </partnerRole>
    <conversationId>null</conversationId>
    <properties>{}</properties>
    </partnerLink>
    Second Scenario:
    [2006/04/18 22:37:10] Updated variable "PartnerLink_Campus_PIDS" less
    <partnerLink name="PartnerLink_Campus_PIDS" partnerLinkType="{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS">
    <myRole name="null">
    <ServiceName>null</ServiceName>
    <PortType>null</PortType>
    <Address>null</Address>
    </myRole>
    <partnerRole name="PIDSUpdate_CHCSProvider">
    <ServiceName>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</ServiceName>
    <PortType>{http://xmlns.oracle.com/PIDSUpdate_CHCS}PIDSUpdate_CHCS</PortType>
    <Address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS</Address>
    </partnerRole>
    <conversationId>bpel://localhost/default/iXPPIDSUpdateBroadCast~1.0/8909-BpInv0-BpSeq1.5-5</conversationId>
    <properties>{}</properties>
    </partnerLink>
    I clearing the end point the following way.
    <assign name="ClearEndpoint">
    <copy>
    <from>
    <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:ns1="http://xmlns.oracle.com/PIDSUpdate_CHCS">
    <Address/>
    <ReferenceProperties/>
    <ServiceName/>
    </EndpointReference>
    </from>
    <to variable="partnerReference"/>
    </copy>
    </assign><!-- set the address in the endpoint variable
    Dynamic Links XML :
    <Dynamiclinks xmlns="http://ixp.mhs.dod.gov/DynamicLinksSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Dynamiclink>
    <address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS
    </address>
    <service_name>ns1:PIDSUpdate_CHCS
    </service_name>
    </Dynamiclink>
    <Dynamiclink>
    <address>http://val-ossminc:9700/orabpel/default/PIDSUpdate_CHCS
    </address>
    <service_name>ns1:PIDSUpdate_CHCS
    </service_name>
    </Dynamiclink>
    </Dynamiclinks>
    Does any one how to reset the convesation Id, it will be a big help for me.
    Regards,
    Sridhar Dabbeeru

  • NUll Pointer Exception while assigning Dynamic Partner Link

    Hi
    I am currently working with the AIA2.4 Order 2 Bill PIP.
    I am facing an issue in 'AssignPartnerlinkEndPointReference' activity in 'SyncCustomerPartyListCommsBRMProvABCSImpl'
    It gives a null pointer exception when trying to invoke a BRM webservice.(BRMCUSTService)
    The following code is the final step of the assign activity which is used to invoke the BRM webservice.
    <EndpointReference><EndpointReference xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing">
    <wsa:Address>eis/BRM</wsa:Address>
    <wsa:ServiceName>brm:BRMCUSTService</wsa:ServiceName>
    </EndpointReference>
    </EndpointReference>
    Kindly help me resolve this issue.
    Thanks
    Nidhi

    Hi Nidhi,
    Could you please ensure if the BRM JCA Adapter is configured properly If yes and issue persists, please post the relevant error details from opmn log file located at $SOA_HOME/opmn/logs/default~oc4j_soa~xx.log.
    Regards
    Rohit

  • Service Registry's Dynamic Lookup of BPEL Partner Link not working

    Hi,
    Software : SOA 10.1.3.1
    OS : Windows XP, 2000
    I have deployed webservice application (GetMaxOfTwo) which will give me max of 2 values. Registered the WS in OWSM with user authentication. Registered newly generated WSDL in OSR (Oracle Service Registry). A simple BPEL Process will call service as PartnerLink, which is configured as "Enabling Dynamic Lookup of BPEL Partner Link Endpoints". As mentioned in the document made entry in bpel.xml as registryServiceKey property containing the serviceKey value to the partnerLinkBinding section.
    The entire scenario is working fine and changed the servicekey value to wrong value in bpel.xml and redeployed, as expected it was giving me error message saying invalid servicekey.
    Now deployed GetMaxOfTwo in another application server and registered in OWSM. Intentionally stopped the first GetMaxOfTwo application. In the OSR Service changed the binding with new WSDL of OWSM. As BPEL process enabled with dynamic lookup it should execute without any error. But the results in this case was giving error saying the service was down. (Means it is referring to the old GetMaxOfTwo webservice.
    What could be the reason?, something is missing in the configuration?
    Regards
    Venkata M Rao
    +91 80 4107 5437

    Hi
    I am having trouble making the BPEL and Systinet to work together. I have Systinet and BPEL installed separately on 2 different servers. I deployed my web services and registered them in UDDI. I created a new BPEL process and added a partner link to refer to one of the web service I have registered in UDDI. When I create the partner link, it is forcing me to give the wsdl and it also gives an error message " There are no partner link types defined in current wsdl. Do you want create that will by default create partner link type for you?". If I say "NO' then deployment fails. If I say "Yes", then it creates a new wsdl file on the local server etc and gives "<Faulthttp://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>soapenv:Server.userException</faultcode>
    <faultstring>com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is 75164a0815ea471a:-3be8c246:117cc377894:-537b. Please check the process instance for detail.</faultstring>". Any help is appreciated.

  • Dynamic binding of partner links with different payloads

    In dynamic binding of partner links, can we have different payloads for different
    webservices ?

    Hi Marc,
    I have one question regarding the use of <xsd:anyType>, Before that let me clear our requirement. We are trying to create a BPEL flow (Consumer) which has the ability to call other webservices (Producers) dynamically. There can be a number of Producer Webservices performing the same task. The end user should be able to add new Producer Webservices and remove already existing ones. We achieved this using EndPointReference (http://www.oracle.com/technology/pub/articles/bpel_cookbook/carey.html) but the problem with this approach is that all the producer webservices have to work on a common schema. We want to support webservices working on different payloads.
    My understanding is that when we map the XML document to xsd:anyType in the service's WSDL file, the producer web service need to have an implementation of this type in for of a java class. Is this correct ? Or can we provide the java implementation in our code itself? Can you please point me to some detail documentation on xsd:anyType?
    Thanks

  • Set dynamic authentication credentials to Partner link - BPEL 11g PS1

    Hi,
    I am working on BPEL SOA 11g PS1. I need to know how i can dynamically set the Authentication details (Username and password) as well as Timeout while invoking a web service reference.
    I have been successful in setting these values using properties of the partner-link which is static.But actually as per my use-case, i need to read these information dynamically from a repository say Database/DVM and set these value while invoking.
    Regards
    Sesha

    Hi Sridhar
    Below is the composite.xml snippet which works for me as static mapping. I have added "wss_username_token_client_policy" to the reference interface.
    <reference name="getNameService" ui:wsdlLocation="getNameService.wsdl">
    <interface.wsdl interface="http://www.amazon.com/css/mmbi/getNameService/#wsdl.interface(getNameServiceSoapPort)"/>
    <binding.ws port="http://www.amazon.com/css/mmbi/getNameService/#wsdl.endpoint(getNameService/getNameServiceSoapPort)"
    location="getNameService.wsdl" soapVersion="1.1">
    *<wsp:PolicyReference URI="oracle/wss_username_token_client_policy"*
    orawsp:category="security" orawsp:status="enable"/>
    <property name="weblogic.wsee.wsat.transaction.flowOption"
    type="xs:string" many="false">WSDLDriven</property>
    *<property name="oracle.webservices.auth.username" type="xs:string"*
    many="false" override="may">username11</property>
    *<property name="oracle.webservices.auth.password" type="xs:string"*
    many="false" override="may">password11</property>
    *<property name="oracle.webservices.httpReadTimeout" type="xs:string"*
    many="false" override="may">30000</property>
    <property name="oracle.soa.ws.outbound.omitWSA" type="xs:string"
    many="false" override="may">true</property>
    </binding.ws>
    </reference>
    Here you can find property value for oracle.webservices.auth.username,oracle.webservices.auth.password & oracle.webservices.httpReadTimeout are static , What i want to make here is to read these from a bpel variable in runtime.
    OR
    Is there any means i can do this same basic authentication in BPEL 11g which would support dynamic credentials.
    Thanks
    Sesha

Maybe you are looking for