I am accessing a JBoss Server with Transport Security and Basic Authentication. My C# Windows Test Form sends a message to the server and the Server always returns 505 "Version not supported". The same message can be send to the server without any problem by SoapUI.
In Fiddler I can see that the Request Header send from my application has the settings for Accept-Encoding twice. Here is the Request Header:
POST /gas-x-ws/services/GXMLGDMService.GAS-X-GDMServiceSOAP12port_http/ HTTP/1.1
Content-Type: application/soap+xml; charset=utf-8
VsDebuggerCausalityData: uIDPo0EaT0MLwOFBkSy4XU4a5WIAAAAAdzF8qc0Wm0Kxx1PPz3iaYM48KnP6kSJGr3rWH44vO+gACQAA
Accept-Encoding: gzip, deflate,gzip, deflate
Authorization: Basic c29hcFVzZXI6WUhdaz1DQg==
Host: logongridt.test.com:8443
Content-Length: 1525
Expect: 100-continue
What can I do to avoid the dobel setting gzip, deflate?
Thanks
Sethach