Help - wscompile and oneway SOAP calls

Hi All,
I'm using wscompile to generate some stubs from a WSDL that was created using gSOAP (the intention is to have a JAXM Servlet handling gSOAP clients).
However, the wscompiler fails to generate stubs for oneway functions, with the following error:
warning: ignoring operation "OnEvent": not request-response
Is there any way to enable non request-response stub generation?
Thanks for all advice,
Damien
The WSDL file is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="Service"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
targetNamespace="http://location/Service.wsdl"
xmlns:tns="http://location/Service.wsdl"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns="http://tempuri">
<types>
<schema
  xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://tempuri"
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:ns="http://tempuri">
</schema>
</types>
<message name="OnMessageRequest">
<part name="soapMessage" type="xsd:string"/>
</message>
<message name="OnMessageResponse">
<part name="resultValue" type="xsd:int"/>
</message>
<message name="OnEventRequest">
<part name="soapMessage" type="xsd:string"/>
</message>
<portType name="ServicePortType">
<operation name="OnMessage">
  <documentation>Service definition of function ns__OnMessage</documentation>
  <input message="tns:OnMessageRequest"/>
  <output message="tns:OnMessageResponse"/>
</operation>
<operation name="OnEvent">
  <documentation>Service definition of function ns__OnEvent</documentation>
  <input message="tns:OnEventRequest"/>
</operation>
</portType>
<binding name="ServiceBinding" type="tns:ServicePortType">
<SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="OnMessage">
  <SOAP:operation soapAction=""/>
  <input>
   <SOAP:body use="encoded" namespace="http://tempuri" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://tempuri" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
</operation>
<operation name="OnEvent">
  <SOAP:operation soapAction=""/>
  <input>
   <SOAP:body use="encoded" namespace="http://tempuri" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
</operation>
</binding>
<service name="Service">
<documentation>gSOAP 2.1.10d generated service definition</documentation>
<port name="ServicePort" binding="tns:ServiceBinding">
  <SOAP:address location="http://location/Service.cgi"/>
</port>
</service>
</definitions>This was generated from the following simple gSOAP C header file:
int ns__OnMessage( char* soapMessage, int& resultValue );
int ns__OnEvent( char* soapMessage, void dummy );

I believe JAX-RPC 1.0 does not support one-way messages. Java clients will need to build a SOAPMessage "by hand" using SAAJ.
Mike

Similar Messages

  • How To : Call External Webservice from BPEL and pass SOAP Message to the WS

    Hello All-
    Greetings to all BPEL gurus. I am currently facing difficulties in calling an External Webservice from my BPEL Process and passing SOAP Message to it. The details are below:
    <strong>1. The BPEL process, using database polling feature of DB Adapter, will get the records from the database.</strong>
    <strong>2. Transform the message</strong>
    <strong>3. Call the External Webservice and pass the transformed message as the input to it. However the Webservice expects the BPEL process to send SOAP headers in the input message.</strong>
    I am struggling on how to put the transformed message within a SOAP envelope in the BPEL process.
    If anyone had similar requirements and have successfully been able to send SOAP messages from BPEL process to an external webservice, kindly let me know.
    Also if there is some kind of documentation or any link in the forum that I can refer, please let me know that as well.
    I am new to Webservice integration using BPEL and would really appreciate your help.
    Thanks In Advance
    Regards,
    Dibya

    Hi Dharmendra,
    I am trying to send a SOAP message from my BPEL process to a web service. I have a complete SOAP message in a complex variable defined in the wsdl for the partnerlink (web service). My problem is that when I invoke the partnerlink it fails even though the content shown in the BPEL console looks valid.
    I have set up obtunnel to see what I am actually sending out from BPEL. You mention that BPEL creates the SOAP envelope automatically.
    I think that my problem is a result of this automatic SOAP envelope that BPEL is creating. Do you know if there is a way to turn it off?
    This is what I see in the TCP monitor, please note the double SOAP env:Body:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <env:Body> <RCMR_IN000002NR01 xmlns="urn:hl7-org:v3" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <env:Header>
    <wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://testhost/CCS/Service_Endpoint</wsa:To>
    <wsa:From xmlns:wsa="http://www.w3.org/2005/08/addressing">
    <wsa:Address>http://localhost/CCS/Service_Endpoint</wsa:Address>
    <wsa:Metadata>
    <device xmlns:hl7="urn:hl7-org:v3">
    </device>
    </wsa:Metadata>
    </env:Header>
    <env:Body>
    <RCMR_IN000002NR01>
    </RCMR_IN000002NR01>
    </env:Body>
    </RCMR_IN000002NR01>
    </env:Body>
    </env:Envelope>
    Any help is appreciated.
    Regards,
    Aagaard
    Edited by: Aagaard on Oct 30, 2008 8:59 PM
    Should have mentioned. I am using BPEL 10.1.3.4
    Edited by: Aagaard on Oct 31, 2008 8:43 AM
    I have opened a new thread for this question so as to not confuse the issue more than necessary.
    How many SOAP envelopes do you really need?

  • Making a SOAP call through a proxy! Please help!!!

    I'm behind a firewall. I've checked most of the posting in the forum and on the Internet. Most get by using the java.net.Authenticator class, and setting default properties such as https.proxyHost, https.proxyUserName, https.proxyPassword etc. I've tried all that!!! Still doesn't work.
    Here's the error msg I get:
    Required
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(Unknown
    Source)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(Unknown Source)
    ... 4 more
    javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml
    .soap.SOAPException: Bad response: (407Proxy Authentication Required
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(Unknown
    Source)
    at GoogleJPClient.sendGoogJMsg(GoogleJPClient.java:103)
    at GoogleJPClient.main(GoogleJPClient.java:149)
    Caused by: java.security.PrivilegedActionException: javax.xml.soap.SOAPException
    : Bad response: (407Proxy Authentication Required
    at java.security.AccessController.doPrivileged(Native Method)
    ... 3 more
    Caused by: javax.xml.soap.SOAPException: Bad response: (407Proxy Authentication
    Required
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(Unknown
    Source)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(Unknown Source)
    ... 4 more
    Attached is my code snippet:
    ========================================================================
    public class GoogleJPClient
    private static final String DEFAULT_HOST_URL =
    "http://api.google.com/search/beta2";
    private static final String URI = "urn:doGoogleSearch";
    //Member variables
    private String m_hostURL;
    public GoogleJPClient(String hostURL) throws Exception
    m_hostURL = hostURL;
    public class pAuth extends Authenticator
    protected PasswordAuthentication getPasswordAuthentication()
    String uname = "apnt\\soolu01";
    String pw = "boromir";
    return new PasswordAuthentication(uname, pw.toCharArray());
    public void sendGoogJMsg()
    try
    Properties props = new Properties();
    props.setProperty("com.sun.xml.registry.https.proxyHost", "proxy_server");
    props.setProperty("com.sun.xml.registry.https.proxyPort", "80");
    props.setProperty("com.sun.xml.registry.https.proxyUserName", "a-user");
    props.setProperty("com.sun.xml.registry.https.proxyPassword", "a-passwd");
    javax.xml.soap.SOAPConnectionFactory scf =
    javax.xml.soap.SOAPConnectionFactory.newInstance();
    javax.xml.soap.SOAPConnection conn = scf.createConnection();
    //conn.setProperties(props);
    //Get instance of MessageFactory class
    javax.xml.soap.MessageFactory mf =
    javax.xml.soap.MessageFactory.newInstance();
    //Create message from the message factory, already containing
    //SOAP part
    javax.xml.soap.SOAPMessage message = mf.createMessage();
    //.Get the message's SOAP part
    javax.xml.soap.SOAPPart soapPart = message.getSOAPPart();
    //Populate msg with Google template
    StreamSource prepMsg = new StreamSource(new FileInputStream("doGoogleSearchmod.xml"));
    soapPart.setContent(prepMsg);
    message.saveChanges(); //save changes
    //fingers crossed
    java.net.Authenticator.setDefault(new pAuth());
    //Properties props = System.getProperties();
    System.setProperty("https.proxyHost", "a-proxyserver");
    System.setProperty("https.proxyPort", "80");
    System.setProperty("https.proxyUserName", "a-username");
    System.setProperty("https.proxyPassword", "a-passwd");
    System.setProperty("https.proxySet", "true");
    System.setProperty("http.proxyHost", "proxy_server");
    System.setProperty("http.proxyPort", "80");
    System.setProperty("http.proxyUserName", "a-username");
    System.setProperty("http.proxyPassword", "a-passwd");
    System.setProperty("http.proxySet", "true");
    //System.setProperties(props);
    URLEndpoint dest =
    new URLEndpoint("http://api.google.com/search/beta2");
    javax.xml.soap.SOAPMessage reply = conn.call(message, dest);
    TransformerFactory tFact = TransformerFactory.newInstance();
    Transformer t = tFact.newTransformer();
    Source srcContent = reply.getSOAPPart().getContent();
    StreamResult res = new StreamResult("doGoogleSearchresp.xml");
    t.transform(srcContent, res);
    System.out.println("Received reply from: " + m_hostURL);
    //Display reply from endpoint
    boolean dispRes = true;
    if(dispRes)
    //Dump onto screen
    System.out.println("Result:");
    reply.writeTo(System.out);
    conn.close();
    }catch(Throwable e){
    e.printStackTrace();
    public static void main(String args[])
    //String hostURL = DEFAULT_HOST_NAME;
    Properties sysprop= System.getProperties();
    //sysprop.put("firewallHost", "proxy_server");
    //sysprop.put("firewallPort", "80");
    //sysprop.put("firewallSet", "true");
    //sysprop.put("proxyHost", "proxy_server");
    //sysprop.put("proxyPort", "80");
    //sysprop.put("proxySet", "true");
    try
    GoogleJPClient gjc = new GoogleJPClient("http://api.google.com/search/beta2");
    gjc.sendGoogJMsg();
    }catch(Exception e){
    e.printStackTrace();
    ========================================================================
    As you can see it's pretty messy, and I've tried getting around the HTTPS proxy in a variety of methods, but with no results.
    Please help.
    Rgds,
    frustrated.

    Hi,
    I've just experienced trouble with the same thing and I found that setting the following System properties works fine when I use the Apache Axis 1.0 libraries. Note that it's "proxyUser" and not "proxyUserName".
    System.setProperty("http.proxySet", "true");
    System.setProperty("http.proxyHost", "10.1.1.1");
    System.setProperty("http.proxyPort", "80");
    System.setProperty("http.proxyUser", "mydomain\\myusername");
    System.setProperty("http.proxyPassword", "mypassword");
    I can then make HTTP and HTTPS connections and send SOAP messages with no worries.
    I'm in an NT environment and hence had to specify the domain as well as the username (and escape the backslash between them) for the proxy to let me through otherwise I got a "407 proxy authentication required" error.
    I'm certain this works fine as I've tested it myself.
    Hope this helps you out.
    Shane.

  • Hello i have a unusual problem,anyway my iphone 4 wont turn on and when someone calls they hear ringing,but my phone doesent ring,so i open cimcas now ring off. Screen is just black,because it's turned off..Please help me to solve this problem..Thanks

    Hello i have a unusual problem,anyway my iphone 4 wont turn on and when  someone calls they hear ringing,but my phone doesent ring.So i poen simcase and now ring off. Screen is just  black,because it's turned off..Please help me to solve this  problem..Thanks

    As far as trying to power up your device, make sure it has a good charge and then hold the button on the top of the phone and the home button on the faceplate together until the apple appears on the screen.

  • I need help authenticating my outgoing server settings in setting up my work email on my Galaxy S5.  It says unable to authenticate or connect to server and I even called helpdesk at my email support and they tried every possible port (80, 25, 3535 or 465

    I need help authenticating my outgoing server settings in setting up my work email on my Galaxy S5.  It says unable to authenticate or connect to server and I even called helpdesk at my email support and they tried every possible port (80, 25, 3535 or 465 SSL) and none of them work. Please help!

    You will need to get the required info to create/access the account with an email client from your school.
    Are you currently accessing the account with an email client on your computer - if you have a Mac with the Mail.app, or if you have a PC with Outlook Express, etc.? If so, you can get the required account settings there.

  • How can I transfer data (iTunes/iPhoto) MacBook Pro (Late 2011) to my brand new iMac 27" - Apple Support couldn't help me and did not make the promised call-back

    I have a late 2011 MacBook Pro 13" and bought a brand new iMac 27" last week.
    I tried to transfer data (musdic & photos) via Thunderbolt, but i did not run, my system always
    tries to transfer data via WLAN, but that would last more than 80 hours.
    I tried to get some help from the Apple Support, but unfortunately they couldn't help me.
    A promised call-back from the next higher support-level has not been done.
    Does anybody know what the problem might be.
    The Thunderbolt-cable is brand new.

    Instead of using Migration Assistant, the best way is to use the Target Disk Mode, so you will save headaches (Migration Assistant creates a new user with the transferred data).
    To do this, just connect both Macs with the Thunderbolt cable, and then, start the MacBook Pro holding the T key, so a Thunderbolt or FireWire icon should appear on the display. After that, go to the iMac, open Finder, and the hard drive of the MacBook Pro will appear on the Finder sidebar as an external drive, under "Devices". Just access to it, go to the folders with your iTunes and iPhoto libraries, and copy them to the iMac

  • Cant Hold and Place Another Call on BB 8120 pls Help

    Dear All,
    I have a BB pearl 8120 and i noticed that when ever i make a call, place it on hold and then simultaneuosly make another call, i dont hear it ring and cant seem to connect with my new caller while it shows me connected on the screen.In actual fact it actually rings at the other end and its actually being picked while he or she cant hear me.
    This also happens when i place calls on conference, i notice that im able to connect the parties involved but wont be able participate in the conference myself.
    Can anybody pls help?

    Hi,
    I am facing the same problem with my Blackberry Pearl 8120 mobile.
    I hope RIM will resolve this in the next software update for mobile phone.
    I found one workaround for this. Call the second person, put them into a conference at this time they can talk to each other. Now press menu and hold the call then resume the call. Mostly you will be in proper conference (all three).
    I also hope the experts in the forum suggests better solution
    Regards,
    Rajesh

  • My phone constantly turns it self on and off, it won't let my messages load I carnt text or receive and texts or calls, I have updated the new iso7, can anyone help?

    My phone constantly turns it self on and off, it won't let my messages load I carnt text or receive and texts or calls, I have updated the new iso7, can anyone help?

    Hello Bricky2013,
    The following article has some useful tips that can help stabilize your iPhone.
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Cheers,
    Allen

  • HT4993 I'm trying to place a phone call and when I do the 3G icon goes away and the phone just says connecting but never does. I have almost full service and only have had my new iPhone 5 for two days. Can anyone help because I can't call Sprint at the mo

    I'm trying to place a phone call and when I do the 3G icon goes away and the phone just says connecting but never does. I have almost full service and only have had my new iPhone 5 for two days. Can anyone help because I can't call Sprint at the moment???

    Settings > General > Reset > Reset Network Settings

  • My facetime doesnt work. If I call somone they see I call but when they accept it doesnt work and when they call me the green camera light turns on but no sound or pop up of the video chat screen appears, please help! Macbook pro user. MacBook Pro, OS X M

    My facetime doesnt work. If I call somone they see I call but when they accept it doesnt work and when they call me the green camera light turns on but no sound or pop up of the video chat screen appears, please help! Macbook pro user.
    MacBook Pro, OS X Mountain Lion

    I just wanted to follow this up by saying that you were entirely correct in your diagnosis of the situation.  My computer did have the faulty part you linked to.  I brought my laptop in and specifically told them to run that test, had it fail and then argued with the person at the genius bar and the manager.  Eventually they offered to have it sent out and have everything replaced for free of charge.  They did so mainly because I had complained about graphical issues almost every other time I had come in with problems and no one ran the test.  They should have caught this problem during my warranty, but they didn't, even though I mentioned the problem.
    Anyhow, after having the part replaced, I haven't had my computer crash a single time since, or had many of the issues mentioned above.  I've never had this experience before.  Even brand new, I got occasional crashes.  Hopefully this new trend continues.
    I do find that web browsing is still incredibly slow.  Web browsers just chug along at a slow pace, even though I have great internet speed.  Maybe I'll try just deleting my web browsers and reinstalling them...
    Anyhow, thank you for your help and knowledge Clinton.

  • I need to by apps but it keeps asking for my security questions ;/ but  forgot the answers to my security questions and the security/rescue email too (i dont have USA number to call please help me and send my rest to my email

    I need to by apps but it keeps asking for my security questions ;/ but  forgot the answers to my security questions and the security/rescue email too (i dont have USA number to call please help me and send my rest to my email

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (115668)

  • Adobe Premire Elements 13 purchase wouldn't download. No support no help no phone mnubers. Found a number and was on hold for over 25 minutes. need help need a number to call.

    Adobe Premire Elements 13 purchase wouldn't download. No support no help no phone mnubers. Found a number and was on hold for over 25 minutes. need help need a number to call.

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Updated to IOS 7.1 and now my "Call Waiting" does not work, nor will the "Call Waiting" indicator stay on..... Any help?

    Updated to IOS 7.1 and now my "Call Waiting" does not work, nor will the "Call Waiting" indicator stay on..... Any help?

    Settings > General > Reset > Reset Network Settings

  • I have a iphone 4  and when i call people then cant hear me  and the mute is off ..  need some help with this problem

    i have a iphone 4 and when i call people about 70 percent of the time then cant hear me and the mute is not on ,  need some help

    Please see the  More Like This  section on the right.

  • SOAP  Call to SAP RFC

    Hi,
    I have a scenario in which I am calling a RFC from SOAP client. RFC has been exposed as a web service. The RFC takes a table parameter. The Table param is Not Optional.
    Everything works fine except when I try to send an invalid value in the Export Param to the RFC. The SOAP Call Fails and I get a fault Message.
    If there is an invalid value in the Export Param the Table Parameter is Null. So is that the reason why the SOAP call fails??
    Any help regarding this would be appreciate. Tried searching OSS but could not find anything on this.
    Here is the Fault Message:
    <SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'>
      <SOAP:Body>
        <SOAP:Fault>
          <faultcode>SOAP:Server</faultcode>
          <faultstring>failed to call the adapter engine</faultstring>
          <detail>
            <s:SystemError xmlns:s='http://sap.com/xi/WebService/xi2.0'>
              <context>XIAdapter</context>
              <code>DeliveryException</code>
              <text><![CDATA[
    com.sap.aii.af.mp.module.ModuleException
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:697)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl3.process(ModuleLocalLocalObjectImpl3.java:103)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java(Compiled Code))
         at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0.process(ModuleProcessorLocalLocalObjectImpl0.java(Compiled Code))
         at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:513)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java(Compiled Code))
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))
    Caused by: com.sap.aii.messaging.srt.BubbleException: failed to call the adapter engine [null "null"]; nested exception caused by: com.sap.aii.af.ra.ms.api.DeliveryException: Application:EXCEPTION_DURING_EXECUTE:
         at com.sap.aii.af.mp.soap.ejb.AFCallerApplication.perform(AFCallerApplication.java:122)
         at com.sap.aii.messaging.srt.ApplicationBubble.onMessage(ApplicationBubble.java:29)
         at com.sap.aii.messaging.srt.ExtensionBubble.onMessage(ExtensionBubble.java:56)
         at com.sap.aii.af.mp.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:576)
         ... 21 more
    Caused by: com.sap.aii.af.ra.ms.api.DeliveryException: Application:EXCEPTION_DURING_EXECUTE:
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onTransmit(XIEventHandler.java(Compiled Code))
         at com.sap.aii.af.ra.ms.impl.core.queue.CallConsumer.onMessage(CallConsumer.java:123)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java(Compiled Code))
         at com.sap.engine.frame.core.thread.Task.run(Task.java(Compiled Code))
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java(Compiled Code))
              ]]></text>
            </s:SystemError>
          </detail>
        </SOAP:Fault>
      </SOAP:Body>
    </SOAP:Envelope>
    Thanks
    Ashish

    Hi Ashish,
    Were you able to resolve this problem? I am facing a similar situation.
    After doing all the steps necessary when I try to send a request to the soap_sender channel I get a message unable to post:error 500
    ANy help would be appreciated.
    Thanks

Maybe you are looking for