I'm making a (somewhat) successful java (Apache) to .net beta 2 soap call but I'm having a small problem. The call is going through and on the server side, processing of the call is taking place. But the incoming parameters I receive are blank. I'm using the tracing tool and checking out the incoming request and everything seems to match up, schemas, soap action, yada yada and the parameters are populated. After much research I'm beginning to think it has to do with the typing of each element of the operation that the Apache implementation uses. I was hoping that someone has ran across this problem before and would have a solution or could tell me how to deal with this. Thanks a lot for your time. For fun I'll present the request and response: POST /Logging/LoggingHandler.asmx HTTP/1.0 Host: localhost Content-Type: text/xml; charset=utf-8 Content-Length: 588 SOAPAction: "http://localhost/Logging/logError" <?xml version='1.0' encoding='UTF-8'?> <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:logError xmlns:ns1="http://localhost/Logging/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <className xsi:type="xsd:string">classNameYES</className> <methodName xsi:type="xsd:string">methodNameYES</methodName> <message xsi:type="xsd:string">messageYES</message> </ns1:logError> </SOAP-ENV:Body> </SOAP-ENV:Envelope> HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Tue, 10 Jul 2001 19:58:15 GMT Cache-Control: private, max-age=0 Content-Type: text/xml; charset=utf-8 Content-Length: 317 <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <logErrorResponse xmlns="http://localhost/Logging" /> </soap:Body> </soap:Envelope> This message is for the designated recipient only and may contain privileged or confidential information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.
