I don't think so. I built a mockup of the getQuote sample and this ran fine. Here is its outgoing soap message...
POST /axis/servlet/AxisServlet HTTP/1.0 Content-Length: 519 Host: localhost Content-Type: text/xml; charset=utf-8 Authorization: Basic dXNlcjE6cGFzczE= SOAPAction: "getQuote" <?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:getQuote xmlns:ns1="urn:xmltoday-delayed-quotes"> <symbol xsi:type="xsd:string">IBM</symbol> </ns1:getQuote> </SOAP-ENV:Body> </SOAP-ENV:Envelope> It uses the "urn:" prefix -----Original Message----- From: Wimmer, Matthias [mailto:[EMAIL PROTECTED]] Sent: 21 June 2002 18:49 To: '[EMAIL PROTECTED]' Subject: RE: Soap22 to Axis translation - method call error Maybe this "urn:" must be left out. Matt -----Original Message----- From: davout [mailto:[EMAIL PROTECTED]] Sent: Friday, June 21, 2002 10:03 AM To: Axis-User Subject: Soap22 to Axis translation - method call error 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???
