We have an application that communicates with azure (ServiceBus, Queue and Blobs) and some third party WebServices that requires HTTPS.
The problem is that some of our clients use proxy servers with rules to block connections based on the user-agent header and, as we discovered, .NET does not send the user-agent during the HTTPS CONNECT. For Azure we can choose not to use HTTPS and go with HTTP (I don’t like it but it is a possibility). The problem is that we need to access a Web Service through HTTPS. We do not have control over this Web Service and the HTTPS is mandatory.
I’ve search for solutions and found several people with the same problem but no solution other than avoid HTTPS and use HTTP. Does anyone knows a solution for this? Is it possible to replace “default” .NET HTTPS connections with some other library (like libcurl.NET) and use this library as the default in our application?
Thanks.