I have a scenario where the .NET 3.5 WebClient executes a SOAP request and a SoapAction that is sent in the header, this
<Host>:<Port>/NotOps/RFMP/portTypeEndPoint?SessionID=<token>
But on the host side of SOAP REQUEST, which is JAVA, there are "/" that were received before "?" symbol
<Host>:<Port>/NotOps/RFMP/portTypeEndPoint/?SessionID=<token>
Is it possible for a network proxy to modify any part of the soap request? (by network proxy, I mean a proxy server that is used inside the business to access the Network on other networks)
Is there a compatibility issue between a .Net 3.5 client that uses a Java service such as those mentioned here.
.NET requires the SOAPAction HTTP header to be used to pinpoint the operation by which the service is called .. NETWORK requires the SOAPAction header format to be a namespace service, followed by a forward slash, followed by the name of the operation or urn: Example / sayHello. Note that SOAP :: Lite uses the pound sign (#) by default to separate the service namespace from the operation name. This was not a problem when we were invoking Java services using SOAP :: Lite, because Apache SOAP simply completely ignored the SOAPAction header.
This is referred to http://oreilly.com/catalog/progwebsoap/chapter/ch03.html Example 3-19
Any ideas on other things that might trigger this behavior?
In this case, the error associated with the optional forward slash was misleading, since the error was the result of a lack of permission at the endpoint
source share