ORACLE PM - cannot handle attribute href - SOAP style encoded

Hello !
The problem is, can ORACLE Process Manager handle href attributes.
I call a webservice with a BPEL-Process, the webservice replys a message, but the Process Manager cannot handle the message from the webservice.
This is the reply message from the webservice, there are many href attributes inside:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<taskFinished soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<taskId href="#id0"/>
<context href="#id1"/>
</taskFinished>
<multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns1:TaskId" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://itsas.de/leasit/workflow/angebot">
<id href="#id2"/>
</multiRef>
<multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:ProcessContext" xmlns:ns2="http://itsas.de/leasit/workflow/angebot" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<map href="#id3"/>
</multiRef>
<multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1181728963963</multiRef>
<multiRef id="id3" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns3:Map" xmlns:ns3="http://itsas.de/leasit/workflow/angebot" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<item href="#id4"/>
<item href="#id5"/>
</multiRef>
<multiRef id="id5" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns4:MapItem" xmlns:ns4="http://itsas.de/leasit/workflow/angebot" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<key xsi:type="xsd:string">angebotId</key>
<value xsi:type="xsd:string">LA-0000-0102</value>
</multiRef>
<multiRef id="id4" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns5:MapItem" xmlns:ns5="http://itsas.de/leasit/workflow/angebot" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<key xsi:type="xsd:string">kundeId</key>
<value xsi:type="xsd:string">C00002</value>
</multiRef>
</soapenv:Body>
</soapenv:Envelope>
I think the SOAP documentstyle from the webservices use rpc style and encoded, that is why the axis is change the normal XML structure to the structure above with links.
But I think the ORACLE Process Manager can only handle SOAP style="document" and use="literal" ???????
The fault message from ORACLE is:
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<env:Fault xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<faultcode>env:Server</faultcode>
<faultstring>java.lang.NullPointerException</faultstring>
<faultactor></faultactor>
</env:Fault>
</env:Body></env:Envelope>
Can anybody help me, please. Is ORACLE Process Manager able to unterstand SOAP style encoded ?!!!

I have a bug logged against this issue, bug # is 5990259. However, the service I was calling is no longer available, so development can't reproduce it... If you gave them your example as well maybe they could progress this bug? Anyway BPEL does work with RPC/Encoded, it just doesn't like those multi refs. The company we were interacting with was using WebObjects, which was behaving exactly as in your example, and they changed an option on the web service to get rid of the multi refs and it worked (was still RPC/Encoded).

Similar Messages

  • Exception in webservices - Endpoint cannot handle requests in state: CREATE

    Hi All
    urgent help needed in webservices.
    we have a webservice deployed. and i have made a web service client (a java application client), it is registered with the deployed web service, but when running this clinet, we are getting the following excption
    Please let me know if you have any idea? It is very urgent........ :(
    Following is the stack trace of the Exception:
    Exception = Endpoint cannot handle requests in state: CREATED
    javax.xml.ws.soap.SOAPFaultException: Endpoint cannot handle requests in state: CREATED
    at com.sun.xml.ws.encoding.soap.ClientEncoderDecoder.toMessageInfo(ClientEncoderDecoder.java:84)
    at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toMessageInfo(SOAPXMLDecoder.java:209)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:538)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:258)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:137)
    at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:84)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:172)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:106)
    at $Proxy15.tellFortune(Unknown Source) Attached is the source of client............
    * Main.java
    * Created on February 20, 2007, 11:53 AM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package client_ws;
    * @author ic005332
    public class Main {
    /** Creates a new instance of Main */
    public Main() {
    * @param args the command line arguments
    public static void main(String[] args) {
    System.out.println("@@@@@@@@@@@@@@@@@@@@@");
    try { // Call Web Service Operation
    client_ws.FirstWebService service = new client_ws.FirstWebService();
    System.out.println("******************");
    client_ws.FirstWebServiceSEI port = service.getFirstWebServiceSEIPort();
    System.out.println("^^^^^^^^^^^^^^");
    // TODO process result here
    java.lang.String result = port.tellFortune();  //Exception is coming at this line
    System.out.println("###################@");
    System.out.println("Result = "+result);
    } catch (Exception ex) {
    System.out.println("Exception = "+ex.getMessage());
    ex.printStackTrace();
    }Thanks in advanvce
    Inder Jeet Singh

    Do you see any exception on the server side ? May be endpoint is throwing some exception. If you use JAX-WS 2.1 the error diagnostics are much better.

  • Setup single instance of  Oracle B2B to handle both HTTP as well as HTTPS r

    Hi,
    I want to send 850 transaction to different trading partner who are using HTTP and HTTPS.I want to create a single instance of ORACLE B2b to handle both HTTP and HTTPS. Please do the needful.
    Thanks and Regards
    Srinivas kola
    Edited by: user11342588 on Jul 15, 2009 3:15 AM

    Hi Anuj,
    Thanks for your response.But i want to do for both inbound and outbound, Given below is an example
    OUTBOUND:
    Host Trading Partner ------------------------------- Internet----------------encrypt message------------------>--trading partner1
    Port no 50
    ------------------------------ Internet----------------encrypt message-------------------->trading partner2
    ------------------------------Internet----------------encrypt message-------------------->trading partner3
    INBOUND:
    Host Trading Partner ------------------------------- Internet----------------encrypt message-<-------------------trading partner1
    Port no 50
    ------------------------------ Internet----------------encrypt message-<-------------------trading partner2
    I want to use only a single instance of Oracle B2B to handle both HTTP and HTTPS
    Help me please

  • Multitasking cannot handle more than 3-4 apps

    Multitasking cannot handle more than 3-4 apps. If you open more, the app just wont launch! I hope there would be a fix for this since it is very annoyoing.

    Just tested it again. You are right.  we can open many apps as long as they are non blackberry bridge apps. The problem seems to be with the blackberry bridge apps opening simultaneously with other apps. 
    try to open 3 or 4 non bridge apps, then try to open any of the bridge app (contacts or bbm or other...). It just wont open. If it does open, it starts flickering and becomes unusable. 
    Also, if you try to open more than 3 bridge apps, you will most often have problems.
    I tried this on more than one PB. Same thing.

  • HT1338 How to get rid of Apple Support Community notices, my box is full I receive thousand a day and I really cannot handle it.  Please help, I cannot find the notification tad in my "preferences"  I have Mac OS X 10.7.5.  Please help it is urgent

    How to get rid of Apple Support Community notices?  my box is full as I receive thousand of messages a day.  I cannot handle it anymore, please it is urgent.  Help!  I have Mac OS X 10.7.5 and unable to find the "notification tab" in my "preferences"  I need a image if possible to better understand.  Thanks a lot.

    Thank you, but I just  tried everything you said, my apple id account (icloud) continues and still is receiving the email from ASC each second.  My i phone and macpro (i cloud account) is full of messages that I have difficult to erase at once.  I have to do it one by one which can take me the whole day.  How can i unsucribe from ASC, just get ride of my account, I mean cancel the ASC account, so I will not get any messages.  Please help.  Thanks.

  • SAP BO Data Services XI 3.2 - Cannot Handle Multithreaded RFC Connection?

    Hi Guys,
    Just want to ask for your inputs if Data Services cannot handle multiple RFC connection request to BW system?
    The scenario is:
    There is one BODI job using RFC connection and trigger the 2nd job at the same time and it happen that the 2nd job failed.
    Current version of SAP BO Data Services XI 3.2 that we are using is 12.2.2.1
    Thanks in advance,
    Randell

    Arpan,
    One way to get to the multiprovider data is to use Open Hub with a DTP that gets the data from the multiprovider and exposes it as an open hub destination to Data Services. With Data Services XI 3.2 we now fully support Open Hub where Data Services will (1) start the process chain to load the data (2) read the data when process chain ended and (3) notify Open Hub when done so that the data can be purged again.
    More info on Open Hub here : http://help.sap.com/saphelp_nw04/helpdata/en/1e/c4463c6796e61ce10000000a114084/content.htm
    But I will also look into the why we show the multiproviders when browsing the metadata, but get an error when trying to extract using the ABAP method (not via Open Hub). You could be right in your assumptions below and we might just need to hide the multiproviders when browsing metadata.
    Thanks,
    Ben.
    Edited by: Ben Hofmans on Jan 5, 2010 6:06 PM - added link to Open Hub documentation which references multiproviders as possible source.

  • Konqueror - inode/directory, but cannot handle this file type [solved]

    After upgrading kde 4.3, konqueror error: ...inode/directory, but cannot handle this file type. I tried this link but didn't work:
    https://lists.ubuntu.com/archives/kubun … 40719.html
    EDIT:
    Requires dolphin

    " I recompile ctag with option --disable-external-sort and everything is ok ! "
    http://tech.groups.yahoo.com/group/vim/message/89321
    Last edited by robsonpeixoto (2010-11-17 18:51:57)

  • PopUp User&Pass / URL iViews / Portal cannot handle this?!

    Hi There,
    i`ve created some URL iViews and other iViews to Pages (Urls etc) that needs Authentification via User and Password.
    So the PopUp comes up for User and Pass.. but when i enter the Data and click ok the PopUp comes up again and again... after 3 times i become the Message that the Page cannot be displayed etc...
    When i open the URL in the Browser and put in User and Pass all works fine.
    Only from Iviews from the Portal it works not.. it seems that the Portal cannot handle this?!?
    Can someone help here?
    Regards
    Bjoern

    Hi Bjoern,
    Use Application Integrator for embedding application as per your scenario :-
    The Application Integrator:-
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bf8cc890-0201-0010-00b1-8d04e5f4378a?language=en
    Step-By-Step Guide to implement Application Integrator
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/70/5a3842134bad04e10000000a1550b0/frameset.htm
    Hope it helps
    Regards
    Arun

  • Urgent! Oracle website cannot download instant client!

    Urgent! Oracle website cannot download instant client!
    I want to download Oracle Instant client 64bit edition, but all the download sources are not available.
    Can I report this problem at this page?

    hsawwan wrote:
    Urgent! Oracle website cannot download instant client!
    I want to download Oracle Instant client 64bit edition, but all the download sources are not available.
    Can I report this problem at this page?What software you are trying to download? Please post the link here.
    Have you tried to use a different browser/machine and see if this helps?
    If you still have an issue, try to download the software from e-Delivery website -- http://education.oracle.com/
    Thanks,
    HusseinYou mean http://edelivery.oracle.com ;-)
    Srini

  • Premiere Pro 2014 Cannot Handle Medium-Sized Project

    Dear Adobe,
    I just got back from filming 2 projects in China and wanted to start organizing my footage.
    I started in Prelude, thinking that would be a great place to start, but it was SO SLOW. It took a full day for it to just register all my files for one 3.5 TB project. After that it kept crashing when I scrolled through the files. When I see your tutorials the projects you "display" have maybe 20 files. I've got 6,000.... did you test for real world scenarios?
    Now to Premiere:
    I got fed up with Prelude so I brought the folders into Premiere and figured I'd just do my best to organize directly in the NLE. Its a nightmare! I was able to start, but the moment I switched the playback engine to CUDA, instead of Software, there was no refresh in the monitor window. I cannot scrub footage or anything. The program often freezes up for minutes at a time when I try to select a file.
    I am running a very powerful computer that has NO issues running other software, including Premiere Pro CC. That said, I just started a new project, loosing a whole day of work doing so, to revert back to CC from your 2014 release.
    I am a fan of your Suite, but you seriously have to vet your programs better before releasing. It is embarrassing that Prelude is so clunky and Premiere 2014 cannot handle a simple switch in playback engine. I even restarted my computer and the program numerous times to give it a chance to "find itself," but still nothing.
    Can someone please acknowledge this? I've read a number of posts stating very similar situations - that any decent sized projects choke Adobe's software.
    SYSTEM:
    OSX 10.8.4
    Dual Xeons 2.5 GHz
    64 GB RAM
    Dual GTX 580s (3 GB RAM each)
    12 TB internal array
    4 TB LaCie (eSata) with raw footage
    256 GB SSD dedicated for OSX
    Thanks for any help you can offer!

    Hi Benjamino5,
    There is no backward compatibility in Premiere Pro. It's not ever been a feature. The only way backward is by using XML but it sounds like you had problems with that. Please let us know your specific issue here: http://adobe.ly/ReportBug
    I was speaking about forward compatibility. A number of people have had problems updating the project file with this version. While it should not cause too many issues, it is a general rule of thumb to never update your project file to a new version part way through a project.
    It's rather unfortunate that this formerly hardcore stance (to not update project files until done) has been forgotten or is simply not known to many editors, both new and old. Updating a project file should never be done unless absolutely necessary. As a former instructor, I would make sure that all my students were aware of this potential project killing issue.
    Backward compatibility is a long standing feature request. Make that in the same place as the bug report. Hope that helps.
    Thanks,
    Kevin

  • Cannot handle type text/html

    I created a PDF in Acrobat 8, and did some editing in LiveCylce. The link buttons all work in LiveCycle preview mode. I saved in edit mode. Buttons that have a http link don't work, and I get an error message, "cannot handle type text/html"
    The 'link to' website pages are spelled/entered correctly, the website/page that I want the links in this PDF form are 'up and running' just fine - what does this mean, how do I fix it?

    I was using the 'http submit' button. I thought that meant when the person clicked on that button, which had a URL assigned to it, that it would take them out to (the web site page you wanted them to arrive at). Throw a bone, what am I supposed to use??

  • FRM-41014: Cannot set attribute of null canvas item PO_REQ_HDR.ATTRIBUTE8

    I am Doing Form Personalization on Dff in Requisition Headers form. My Requirement is
    requirement is like this
    Segment1 : Requsition Type
    Segment2: Project ID
    Segment3: CAF ID
    ATTRIBUTE7 will have two values
    1. Capex
    2. Opex
    if user selects Capex.. then ATTRIBUTE8 and ATTRIBUTE9 are manadatory
    otherwise optional
    i did personalization
    In Condition Tab:-
    I took Trigger Event as When-Validate-Record
    Trigger Object as PO_REQ_HDR
    Condition :PO_REQ_HDR.ATTRIBUTE7='Capex'
    When i validate it gives The Condition evaluates to false
    In Action Tab:-
    Type Property
    Language All
    Object Type Item
    Target Object Po_REQ_HDR.Attribute8
    Property Name :Required
    Value:True
    then i Pressed Apply Now then It fires Error:: FRM-41014: Cannot set attribute of null canvas item PO_REQ_HDR.ATTRIBUTE8
    Can Any one please sujjest what is the Cause of this Error.
    I am Using 12.0.4 application version.

    Please see these threads.
    Re: Personalization Problem
    How can I make a DFF segment diappear?
    Thanks,
    Hussein

  • Getting error when opening project created in FC/FB CS5.5  - cannot resolve attribute 'clear'

    I have a project I created earlier this year in panini/burrito, but when I upgraded to CS5.5 I get 18 of the the following errors:
    "Cannot resolve attribute 'clear' for component type flashx.textLayout.elements.SpanElement. Main.mxml /imagine/src line 406 Flex Problem"
    I'm not very kbowleadgeable in flaex, so I'm trying to muddle through this.
    Here's the active site by the way.
    www.imaginenewmedia.com
    It seems to be related to lines of code which lay out text on the "packages" page.
    thanks!

    fixed! removed offending parameters from code.

  • FCPX + Lion + Cannot handle AAC or Apple Lossless audio in H.264! (Clicks and Pops)

    This is a problem I've been having since I upgraded to Lion, and I've posted this response in other forums, but wanted to start a fresh one with a video I created of my findings. In a nutshell: FCPX in Lion cannot handle AAC audio in H.264 files since it will create audible clicks and pops when it subsequently renders the footage. This ***** because the iPhone 4 for example records as H.264 and AAC for the audio. Below are my findings:
    So I think I figured it out! (I'm pretty sure FCPX + Lion has issues with compressed audio formats, ESPECIALLY AAC and Apple Lossless!) There's a video of my findings below:
    1. I tried doing exactly the same thing I was trying to do on my machine on a co-worker's Snow Leopard MBP, and it worked out fine (it was just importing an iPhone 4 .mov and exporting it in FCPX). The output file was pretty much the same as what came in.
    2. I found out that only movies from my iPhone 4 were coming out all crazy in the audio, yet my Canon T2i files were fine. Both are H.264, yet the Canon T2i records audio as Linear PCM, while the iPhone 4 records audio as AAC.
    3. So I got an idea to use screen flow to record a youtube video and record the computer's audio. Then I decided to export with different formats, both as HD NTSC standards and as web standards with H.264.
    4. I found out that both NTSC and H.264 standards were perfectly fine, SO LONG AS THE AUDIO WAS LINEAR PCM (or uncompressed!).
    5. I then exported the same clip (both times as H.264) and ONLY changed how the audio was rendered (either Linear PCM/Uncompressed or AAC) and VOILA, I got click and pop artifacts ONLY in the AAC version. The ones that were output as uncompressed audio were totally fine!
    CONCLUSION:
    Final Cut Pro X on OS X Lion has issues with compressed audio, MAINLY AAC and Apple Lossless! Anything that is Linear PCM/Uncompressed should be fine! For example, MPEG 4 AAC Enhanced Low Delay at 320K came out 95% OK, one or two clicks.
    So if any of us are working with material where the audio came to us already as AAC (like an iPhone 4), then we have to rip the audio out somehow first (like through VLC for example) and import it separately as an uncompressed file.
    Here's a youtube video showing exactly what I'm talking about:
    http://www.youtube.com/watch?v=FDw4btShH0s
    Anybody else have any thoughts on this before Apple comes out with a fix?

    I was having the same problem and spent several hours on the phone with apple working with one of their 3rd level support guys. Their is deffinatley a issue with Lion and FCPX. I was told  they would escalate to a FCPX engineer and they would get back to me in two days. In the mean time I went to my local apple store and was able to recreate the issue on every machine I tried. Apple did call back and confirm that there is an issue with the way FCPX and Lion handle the import and export of AAC files. They said there would hopefully be fixed in a future update.
    The best work around I found is to take your AAC file and convert it to a WAV. I used compressor to do this and it seems to have solved the problem.

  • Cannot handle request because a modal dialog or alert is active?

    Trying to edit using InCopy but can't download the file from the designer because I get this message: cannot handle request because a modal dialog or alert is active

    That means exactly that: there is another dialog on the screen that asks for an OK, or Cancel etc. Dismiss this dialog first.

Maybe you are looking for