Hi, I am trying to post SOAP to
http://dev.mydomain.com:7071/service/admin/soap/
I am using MS.Net's HttpSoapRequest and Respose classes to post SOAP request. The xml is pasted below:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header>
<context xmlns="urn:zimbra"/>
</soap:Header>
<soap:Body>
<AuthRequest xmlns="urn:zimbraAdmin">
<name>admin@mydomain.com</name>
<password>mystrongpassword</password>
</AuthRequest>
</soap:Body>
</soap:Envelope>
But I am consistently getting the following error in VS.Net:
"The underlying connection was closed: The server committed an HTTP protocol violation."
I would appreciate any suggestions?
Thanks.