POST /dmintserver/services/dmintsoap?wsdl HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.1 Host: testhost Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 608
<?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:logon soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:dmintsoap">
<libraryName xsi:type="xsd:string">libname</libraryName>
<userName xsi:type="xsd:string">username</userName>
<domain xsi:type="xsd:string">domainname</domain>
<password xsi:type="xsd:string">bad password</password>
</ns1:logon>
</soapenv:Body>
</soapenv:Envelope>
But in the AXIS log file I see...
HTTPSender XML sent: HTTPSender --------------------------------------------------- HTTPSender POST /dmintserver/services/dmintsoap?wsdl HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.1 Host: localhost:8090 Cache-Control: no-cache Pragma: no-cache SOAPAction: "" Content-Length: 608
null
Looks like the content has been lost when logging. Is the log incorrect? I am asking this because in my server I can not see any requests arriving in AXIS. In the server I have a log4j.properties file in the root of the classes dir with the root category set to DEBUG
Ta, Stuart.
