I hava a strange problem. I cannot write a j2ee client that can successfully call an .NET WS. If I write a standalone java client it works fine and this is the SOAP msg that is sent to the .NET Service
<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" | xmlns:ns1="http://WHATEVER.net/"> | <soapenv:Body> | <ns1:GetTasks> | <ns1:projectName>Infrastructure</ns1:projectName> | </ns1:GetTasks> | </soapenv:Body> | </soapenv:Envelope> | But if I write a JBOSS j2ee client it will not work and this is the SOAP msg that is sent <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:GetTasks xmlns:ns1="http://WHATEVER.net/"> | <projectName>Infrastructure</projectName> | </ns1:GetTasks> | </soapenv:Body> | </soapenv:Envelope> WHATEVER is NOT the actual NameSpace The problem is that the projectName parameter is not nameSpace qualified. Is this a problem with JBOSS or is .NET unreasonable in expecting child elements of the operation to also be nameSpace Qualified?? I am stumped, any help would be appreciated. Anson Smith View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3924716#3924716 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3924716 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
