Hi Seems to me that some elements are still missing to make this a well-formed XML document (the opening tags for envelope and initiate are missing) but assuming that they're there in your message, this still doesn't comply with what you have defined in your WSDL document. You should send a message that looks like:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/ "> <SOAP-ENV:Body> <ns:HelloWorldRequest xmlns:ns="http://eclipse.org/bpel/sample">< ns.input>fire!</ns:input></ns:HelloWorldRequest> </SOAP-ENV:Body> </SOAP-ENV:Envelope> The message you're sending is closer to rpc-style while your WSDL is document-style, which makes a big difference in the way SOAP messages should be structured. I'd recommend using SOAP-UI (see the tools section [1] of ODE's website), it creates message automatically from your WSDL definitions and invokes the processes for you. Cheers, Matthieu [1] http://ode.apache.org/links.html On Dec 20, 2007 8:19 AM, Julia Bauer <[EMAIL PROTECTED]> wrote: > Hi Matthieu, > > I have to correct. This is the right soap message I send: > > <?xml version="1.0" encoding="UTF-8" standalone="no"?> > > <soapenv:Body> > > <payload xsi:type="xsd:string">test</payload> > </initiate> > </soapenv:Body> > </soapenv:Envelope> > > Thanks, > Julia > > > > ------------------------------ > *Ihr erstes Fernweh?* Wo gibt es den schönsten Strand. > <http://de.rd.yahoo.com/evt=48734/*http://de.answers.yahoo.com/dir/;_ylc=X3oDMTEzY2IyNmI0BF9TAzIxMTQ3MTgzMjIEc2VjA01haWwEc2xrA3RhZ2xpbmVz?link=list&sid=396545469> >
