G
gLaramie
For a java class with a method signature of:
///////////////////////////////////
public void testMethod(Envelope reqEnv, SOAPContext reqCtx,
SOAPContext respCtx)
throws SOAPException
///////////////////////////////////
What is the proper format of a SOAP Message that calls it?
This causes it to complain that the signature doesn't match:
------------------
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<ns1:testMethod xmlns:ns1="urn:testMethod"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<reqEnv xsi:type="xsd:string"/>
<reqCtx xsi:type="xsd:string"/>
<respCtx xsi:type="xsd:string"/>
</ns1:testMethod>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
///////////////////////////////////
public void testMethod(Envelope reqEnv, SOAPContext reqCtx,
SOAPContext respCtx)
throws SOAPException
///////////////////////////////////
What is the proper format of a SOAP Message that calls it?
This causes it to complain that the signature doesn't match:
------------------
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<ns1:testMethod xmlns:ns1="urn:testMethod"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<reqEnv xsi:type="xsd:string"/>
<reqCtx xsi:type="xsd:string"/>
<respCtx xsi:type="xsd:string"/>
</ns1:testMethod>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>