Response not coming back to ESB when calling BPEL process

Hi,
I am doing some demo,
the actual process is, in ESB, I am reading a file and passing thsoe fiel contents to BPEL as SOAP service. In BPEL proecess, I processed the message and sending the response back to the ESB. When I deployed and check the process flow in the BPEL console, everything looks fine, I mena, it sending the response back to the ESB, where as in ESB process, I am not able to see the response.
Is there any thing that I am missing?
Thanks.

Is the BPEL process a synchronous process?
Also for performance reasons it it best to call BPEL process via the direct jca connector not SOAP.
You do this by just selecting the BPEL process in the routing service going through the wizard. There is no need to creat a SOAP service. The good this about this is that in the ESB process it provides a link to the BPEL process.
cheers
James

Similar Messages

  • Screen not coming back on after phone call??!!

    this is a brand new 3g phone. And I have had a 1st Gen iPhone from the original release date.
    However, when I make a call and put the phone to my ear, the screen goes black as it should. But upon the conclusion of the call the screen does not come back on until I have locked it and unlocked it again!!
    Has this happened to anyone else?

    Same thing here!! I was calling my wife and it happened 3 times in a row in a matter of minutes. I rebooted the phone and it went away. Hasn't crept up on me again, yet (knock on wood).
    I don't know whether it makes a difference and whether they are technically the same, but I upgraded the firmware that was released 07/10/2008 that is from Apple's Servers from version 5A345 to 5A347 just to see if this fixed any last minute glitches.
    I hope this problem never surfaces again. We all paid a lot for these and spent a lot of time waiting for activation.

  • CRM Survey Responses not coming back into the CRM system - WHY????

    Hey guys,
    I am trying to implement the campaign automation. My problem now is, that I am not getting the survey responses back into the CRM System so the next campaign element cannot start.
    We do not use a BW; and in terms of the .xml for the URL generation I used bsp and not for example mailto. When I tested the URL it worked fine. I as well checked the workflows, they also seem fine. When I created the mailform and inserted the hyperlink I choosed the option no tracking as I said before, we do not use a BW.
    Can you tell me if I missed any configuration steps? I also started the internal CatServer, as mentionend in many notes.
    I highly appreciate your help.
    Best regards,
    Janine

    Hi,
    we are using campaign automation with Surveys and we are able to see responses. Maybe try these steps:
    - generate a survey like in Create, run and analyze an E-Mail Campaign with a Survey (Part 1)
    - generate the url for your survey and insert it inside a mail form,activating the option "tracking via target site" (since you need to track responses and your survey is on the CRM domain)
    -create a simple campaign that sends a mail using your mail form and pass some BP in the target group, then make them answer the survey: under "contact statistics" you should see the number of outbound mails and the number of inbound contacts with the number of BPs that answered to your survey
    Once you are sure that this scenario is working, you can set conditions in campaign automation on the type of response received in the survey, etc... (like in http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20283126-36ca-2d10-6983-92ed18d36644?QuickLink=index&overridelayout=true )
    Hope this helps,
    regards,
    laura

  • Problem when calling BPEL process (WS) from APEX

    I am trying to add a web service call to a BPEL process I have created (tried a few others aswell), but every time I try to add the WDSL file I get the following error:
    *1 error has occurred*
    The WSDL document contains multiple SOAP bindings. Application Express only supports WSDL's with one SOAP binding. Click Create Web Service Reference Manually to continue creating a reference for this service.
    It is a simple BPEL process which works fine when called from the BPEL Console, however I have no success when calling it from APEX.
    Am I doing something wrong, or is there a bug in BPEL/APEX?
    Oracle BPEL Console v10.1.3.1.0
    Apex: 3.2
    The WDSL looks like this:
    <definitions name="BPELProcess9" targetNamespace="http://xmlns.oracle.com/BPELProcess9">

    <types>

    <schema>
    <import namespace="http://xmlns.oracle.com/BPELProcess9" schemaLocation="BPELProcess9.xsd"/>
    </schema>

    <schema>
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://xxx:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>
    </types>

    <message name="BPELProcess9ResponseMessage">
    <part name="payload" element="tns:BPELProcess9ProcessResponse"/>
    </message>

    <message name="BPELProcess9RequestMessage">
    <part name="payload" element="tns:BPELProcess9ProcessRequest"/>
    </message>

    <message name="WSAReplyToHeader">
    <part name="ReplyTo" element="wsa:ReplyTo"/>
    </message>

    <message name="WSARelatesToHeader">
    <part name="RelatesTo" element="wsa:RelatesTo"/>
    </message>

    <message name="WSAMessageIDHeader">
    <part name="MessageID" element="wsa:MessageID"/>
    </message>

    <portType name="BPELProcess9Callback">

    <operation name="onResult">
    <input message="tns:BPELProcess9ResponseMessage"/>
    </operation>
    </portType>

    <portType name="BPELProcess9">

    <operation name="initiate">
    <input message="tns:BPELProcess9RequestMessage"/>
    </operation>
    </portType>

    <binding name="BPELProcess9Binding" type="tns:BPELProcess9">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>

    <operation name="initiate">
    <soap:operation style="document" soapAction="initiate"/>

    <input>
    <soap:header message="tns:WSAReplyToHeader" part="ReplyTo" use="literal" encodingStyle=""/>
    <soap:header message="tns:WSAMessageIDHeader" part="MessageID" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>

    <binding name="BPELProcess9CallbackBinding" type="tns:BPELProcess9Callback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>

    <operation name="onResult">
    <soap:operation style="document" soapAction="onResult"/>

    <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle=""/>
    <soap:body use="literal"/>
    </input>
    </operation>
    </binding>

    <service name="BPELProcess9">

    <port name="BPELProcess9Port" binding="tns:BPELProcess9Binding">
    <soap:address location="http://xxxx:8888/orabpel/default/BPELProcess9/1.1"/>
    </port>
    </service>

    <service name="BPELProcess9CallbackService">

    <port name="BPELProcess9CallbackPort" binding="tns:BPELProcess9CallbackBinding">
    <soap:address location="http://set.by.caller"/>
    </port>
    </service>

    <plnk:partnerLinkType name="BPELProcess9">

    <plnk:role name="BPELProcess9Requester">
    <plnk:portType name="tns:BPELProcess9Callback"/>
    </plnk:role>

    <plnk:role name="BPELProcess9Provider">
    <plnk:portType name="tns:BPELProcess9"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>

    Allow me to reply to my own thread, for the benefit of any others who might want to invoke a BPEL WS from APEX facing the same problem:
    Apex does not seem to like asynchronous BPEL processes so the trick is to make a synchronous BPEL process call the asynchronous BPEL process.

  • Error when calling BPEL process from web service client

    I have created three projects here ,there're no problem when testing Composite Application(SynchronousSampleApplication) by test case inside this project.
    When I create a Java Application(SynchronousSampleApp),inside this project I've created a web service client from file WSDL of BPEL. After that, In Main class, I call an operation from web service client.But have the following error:
    Jul 17, 2008 4:48:22 PM synchronoussampleapp.Main main
    SEVERE: null
    java.rmi.RemoteException: HTTP transport error: java.net.MalformedURLException: For input string: "${HttpDefaultPort}"; nested exception is:
    HTTP transport error: java.net.MalformedURLException: For input string: "${HttpDefaultPort}"
    at SynSample.SynchronuosSamplePortType_Stub.synchronuosSampleOperation(SynchronuosSamplePortType_Stub.java:83)
    at synchronoussampleapp.Main.main(Main.java:24)
    Caused by: HTTP transport error: java.net.MalformedURLException: For input string: "${HttpDefaultPort}"
    at com.sun.xml.rpc.client.http.HttpClientTransport.invoke(HttpClientTransport.java:140)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:96)
    at SynSample.SynchronuosSamplePortType_Stub.synchronuosSampleOperation(SynchronuosSamplePortType_Stub.java:67)
    ... 1 more
    Please help me soon. Thanks very much!

    Can't anyone help me? I'm using Netbean 6.1 and Glassfish server.
    Do I need any additional plugin?

  • My iPad screen went black suddenly and is not coming back on. However i can still hear sounds when there are notifications but nothing comes on the screen. It remains blank. What is the problem? I NEED ASSISTANCE A.S.A.P!!!

    My iPad screen went black suddenly and is not coming back on. However i can still hear sounds when there are notifications but nothing comes on the screen. It remains blank. What is the problem? I NEED ASSISTANCE A.S.A.P!!!

    Try Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Error when calling BPEL from ESB in clustered environment

    Hi
    We have recently installed SOA Suite in a clustered environment and have a serious issue.
    I am not able to call BPEL processes from my ESB services via WSIF (by using the 'browse target operation' in JDeveloper). The exception i get at runtime is this.
    "javax.naming.NameNotFoundException: ejb/collaxa/system/DeliveryBean not found"
    When I instead call the BPEL process via SOAP (by using a SOAP invocation service i JDeveloper) it works fine.
    Everything works fine in development environment which not are clustered.
    Has anyone any excperience from using ESB in a clustered environment?
    Regards
    Kalle Viklund

    Hi
    ESB and BPEL resides in the same oc4j-instance. Though, esb-rt and orabpel are different applications in that oc4j-instance. And the lookup 'ejb/collaxa/system/DeliveryBean' only exists in the orabpel application.
    In the ESB Console I already have the same setting for the 'BPELSystem' as for the 'Defaultsystem'.
    Cluster name: esb_prod
    Virtual host: prod1.sth.nu
    Port: 80
    Topic location: ESBTopics/Topics/ESB_JAVA_DEFERRED
    Connection factory location: OracleOJMS/XATCF
    regards
    Kalle

  • My IPhone 5S turned itself off and will not turn back on even when I hold the home button and the on button.  What do I need to do?

    My IPhone 5s turned itself off and will not turn back on even when I hold the home button and the sleep button.  What do I need to do?

    Me, I would call apple Help..it's a new iPhone..

  • I have tried to update IOS 5.1 in my Iphone 4 and unfortunately I got an error message and phone is stucked at restore point. It is not coming back to normal mode and is not able to detect my phone in iTunes. Please help me how to recover my Iphone IOS

    I have tried to update IOS 5.1 in my Iphone 4 and unfortunately I got an error message and phone is stucked at restore point. It is not coming back to normal mode and is not able to detect my phone in iTunes. Please help me how to recover my Iphone IOS, unfortunately I don't have my iphone backup too.

    we have a same problem

  • I was on the phone last night and my phone randomly turned off.  It will not come back on even when I have tried to hold the home button and the power button together while being plugged into the computer.  What do I do?

    I was on the phone last night and my phone randomly turned off. It will not come back on even when I have tried to hold the home button and the power button at the same time, while being plugged into the computer? What do I do?

    Plug it into power for at least 15 minutes.  If it doesn't automatically come on, try a reset... press the home and sleep (on/off) buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.

  • HT2357 I accidently deleted all of my updates and they're not coming back. Is there any quick way to get these updates active again?

    I accidentally deleted all of my updates and they're not coming back. I haven't been able to make any updates since 2006. I have a log of my past updates but I cannot seem to get them active again. Is there any easy way to get these updates active again?
    This was a while ago back in 2006 but from what I can remember I actually deleted/permanently removed these updates from my list of updates. I tried keeping all the updates except for two that I did not need and somehow deleted all of the updates I wanted to keep. I've tried reseting my ignored updates but that does not bring back the updates. If i delete the two that I originally attempted to remove - it only brings those two back. I hope there is still some way to get these updates back. I appreciate any help that anyone is able to give me.
    Thanks!
    Plum<3

    10.4.11 is the latest version of 10.4.
    The security updates for 10.4 are listed here:
    http://support.apple.com/kb/HT5165
    If you are interested in updating to 10.5, see this tip.

  • TS2755 my iphone keyboard does not filp back to vertical when I hold it upright. How do I get that to happen again

    The keyboard on my iphone does not flip back to vertical when I hold my phone upright. How can I get that to do it again?

    from the information you provided i can't tell if it is a hardware problem or a software problem. I do have an idea though, try to press your home button and lock button at the same time.

  • I recently purchased used macbook pro 15" but unfortunately i erase the harddisk and did not have back up but when i try to reinstall the mac os x lion it ask me the id password,how i can purchse the mac os x lion.

    i recently purchased used macbook pro 15" but unfortunately i erase the harddisk and did not have back up but when i try to reinstall the mac os x lion it ask me the id password,how i can purchse the mac os x lion.
    where from i can buy the mac os x lion because i am using windows base system when i try to buy from apple web side it show in app store only not in itunes

    Have you tried booting from the Recovery HD to reinstall Lion?
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    You will need the Apple ID and password used to purchase Lion. If you have not purchased Lion, then you will need to purchase the Snow Leopard DVD and install Snow Leopard then update it to 10.6.8 to access the App Store where you can purchase and download Lion under your own Apple ID. Or you can purchase the Apple USB Lion installer flash drive at any local Apple retailer or the Online Store.

  • My phone turned off over night and will not turn back on even when plugged in, is there anything that I can do?

    My phone turned off over night and will not turn back on even when plugged in. Is there anything that I can do?

    If you've left the phone plugged in for at least a half-hour with no results, then try holding power and home buttons simultaneously to do a soft reset (settings) only. If that doesn't work, try seeing if iTunes will recognize the device and let the computer charge the device.

  • My iphone 4s has switched off and will not switch back on even when its connected to power charger or laptop. can someone help please

    My iphone 4s has switched off and will not switch back on even when its connected to power charger or laptop. can someone help please

    Just read that someone had the same problem on 3gs and someone had replied to press the home button and power button at same time, so I tried this and within a few seconds my phone had switched itself back on.

Maybe you are looking for

  • IR without GR

    Hi! Is it possible posting of transaction will be debit expense and credit account payable upon executing IR without GR? Thanks, Avaduz

  • My apple tv is saying its syncing but actually doing nothing

    i have the apple tv with nothing on top of it and it resting on four empty shot glasses to create airflow. it shows up in itunes. everytime, in itunes when i hit "sync" button it says it cant see the apple tv, check my firewall (its in the most permi

  • Alternative to Column alias in a Where clause

    This question is related to earlier thread: https://forums.oracle.com/thread/2578735 The below query gives me millions of records which is unacceptable from performance point of view. I am only interested in Tickets that are closed in a particular we

  • DMP - Accessing other Fonts

    Working on some web page feeds into my DMP's. I am not having any luck in changing either the font size or the font style. I can see how to change the font size for a static text but not the font style. I also want to choose a font size and style for

  • Firefox on Mac, now Bing search has replaced Google and I can't get rid of Bing- how?

    Bing has mysteriously replaced Google and pops up in new tabs, etc. I have tried to change this, but Bing pesists. I don't want it, I didn't ask for it (intentionally, anyway) - how do I get rid of it?