I've been trying to convert one of my simple Soap22 web services to Axis,
but I get an error each time it runs.
The RPC Soap message transmitted is as follows...
---oOo--
POST /axis/servlet/AxisServlet HTTP/1.0
Content-Length: 586
Host: localhost
Content-Type: text/xml; charset=utf-8
SOAPAction: "connect"
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:connect xmlns:ns1="urn:OsakaSessionWebService">
<anAuthID xsi:type="xsd:string">osaka</anAuthID>
<anAuthPassword xsi:type="xsd:string">osaka</anAuthPassword>
</ns1:connect>
/SOAP-ENV:Body>
</SOAP-ENV:Envelope>
---oOo--
The error I get back is...
---oOo--
HTTP/1.1 500 Internal Server Error
Content-Length: 7
Date: Fri, 21 Jun 2002 13:33:44 GMT
Server: Apache Tomcat/4.0.3 (HTTP/1.1 Connector)
No data
---oOo--
Any ideas???