Hello,

i know there are serveral threads about this topic. But i didn't find any
solution.
My assembly is:

Client <--> http component consumer <--> bpel se <--> http component
provider <--> web service

The web service receives the request and sends the respond. But the respond
has never reached my client.

The Soap Request to the the http component consumer:

<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>
         <loadInstance xmlns="">
            <instanceId>9</instanceId>
         </loadInstance>
      </soapenv:Body>   

The Soap message from http component provider to service: 
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope";>
      <env:Body>
         <loadInstance>
            <pro:instanceId xmlns:pro="http://service";>9</pro:instanceId>
         </loadInstance>
      </env:Body>
   </env:Envelope>
   </soapenv:Envelope>

The SOAP message back from service to http component provider:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
      <soapenv:Body>
         <loadInstanceResponse xmlns="">
            <ns1:loadInstanceReturn xmlns:ns1="http://service";> CONTENT
         .....

The http component configuration follows via the xbean.xml.

What must i configure that component receives the respond from the service?
Or does the SOAP message from the service is not valid?

Thanks a lot

Tommy



-- 
View this message in context: 
http://www.nabble.com/Http-component-provider-receives-no-respond-from-web-service-tf2190008.html#a6059152
Sent from the ServiceMix - User forum at Nabble.com.

Reply via email to