Hi all,

In addition to my mail this morning:

This is the Soap message that is generated by the AxisClient via WSIF:

<?xml version="1.0" encoding="UTF-8"?>
<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>
  <ns1:sayHello
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:ns1="urn:Foo">
   <ns1:String_1 xsi:type="xsd:string">Test</ns1:String_1>
  </ns1:sayHello>
 </soapenv:Body>
</soapenv:Envelope>

Here's how a standard AxisClient generates a SOAP message, which works
fine with JAX-RPC:

<?xml version="1.0" encoding="UTF-8"?>
<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>
  <ns1:sayHello
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:ns1="urn:Foo">
   <String_1 xsi:type="xsd:string">Dylan</String_1>
  </ns1:sayHello>
 </soapenv:Body>
</soapenv:Envelope>

I'll look further into it!

Kind Regards,
Dylan Honorez,
[EMAIL PROTECTED]
http://www.xt-i.com

Reply via email to