Hi,
Im trying to create a web service client in visual basic.net.
When the web service gets invoked in the client:
an error is generated.
The error I am getting is:
Unhandled Exception: System.Web.Serv ices.Protocols. SoapException: Exception: Compression is Not Enabled,This Web Service expects clients to support GZIP,Deflate Compression
I think this is because the web service expects the client to explicitly enable compression.
Can anyone tell me how this is done?
Thanks.
Regards,
Rishika
Im trying to create a web service client in visual basic.net.
When the web service gets invoked in the client:
Code:
Dim results() As Object = Me.Invoke("GetInstantaneousFlowData", New Object(-1) {})
The error I am getting is:
Unhandled Exception: System.Web.Serv ices.Protocols. SoapException: Exception: Compression is Not Enabled,This Web Service expects clients to support GZIP,Deflate Compression
I think this is because the web service expects the client to explicitly enable compression.
Can anyone tell me how this is done?
Thanks.
Regards,
Rishika
Comment