Proxy setting with Azure connection

Is there a way I can use proxy settings with an Azure connection ?

I am using a C# ASP.NET Web api, that is used to connect to Azure and stream files to a container.

August 26th, 2015 5:15pm

Hi RoshDsa,

Whatever proxy setting gets your clients connected to the https endpoint of the Azure storage services will do. Are you having issues connecting to Azure storage when uploading files?

For Azure storage there is no special connection type, it's just HTTP to and from a public RESTful Web API. 

Things are a little bit different when using ExpressRoute, which is a connection a Azure data centers that don't pass the public internet but use dedicated lines directly into Azure (via a service provider).

Was that helpful?

Free Windows Admin Tool Kit Click here and download it now
August 27th, 2015 12:46am

How do I specify the proxy settings ? There is no option in the connection settings for Azure connection. 

To get to anything outside my intranet I need to use a proxy.

August 27th, 2015 9:19am

Hello RoshDsa,

To specify a proxy, add the DevelopmentStorageProxyUri option to the connection string, and set its value to the proxy URI.

Refer to - https://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/

You may also want to refer the below links which might be helpful.

http://stackoverflow.com/questions/3994004/connecting-to-azure-storage-account-thru-proxy-server

http://blog.smarx.com/posts/wazproxy-an-http-proxy-that-signs-windows-azure-storage-requests

Best Regards

Sadiqh Ahmed

________________________________________________________________________________________________________________

If a post answers your question, please click Mark As Answer on that post and Vote as Helpful.

Disclaimer: This response contains a reference to a third party World Wide Web site.
Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

Free Windows Admin Tool Kit Click here and download it now
August 30th, 2015 4:28am

Hello RoshDsa,

To specify a proxy, add the DevelopmentStorageProxyUri option to the connection string, and set its value to the proxy URI.

Refer to - https://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/

You may also want to refer the below links which might be helpful.

http://stackoverflow.com/questions/3994004/connecting-to-azure-storage-account-thru-proxy-server

http://blog.smarx.com/posts/wazproxy-an-http-proxy-that-signs-windows-azure-storage-requests

Best Regards

Sadiqh Ahmed

________________________________________________________________________________________________________________

If a post answers your question, please click Mark As Answer on that post and Vote as Helpful.

Disclaimer: This response contains a reference to a third party World Wide Web site.
Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

August 30th, 2015 8:27am

Hello RoshDsa,

To specify a proxy, add the DevelopmentStorageProxyUri option to the connection string, and set its value to the proxy URI.

Refer to - https://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/

You may also want to refer the below links which might be helpful.

http://stackoverflow.com/questions/3994004/connecting-to-azure-storage-account-thru-proxy-server

http://blog.smarx.com/posts/wazproxy-an-http-proxy-that-signs-windows-azure-storage-requests

Best Regards

Sadiqh Ahmed

________________________________________________________________________________________________________________

If a post answers your question, please click Mark As Answer on that post and Vote as Helpful.

Disclaimer: This response contains a reference to a third party World Wide Web site.
Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

Free Windows Admin Tool Kit Click here and download it now
August 30th, 2015 8:27am

This solved by problem. 
<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy usesystemdefault="true" />
</defaultProxy>
</system.net>
August 31st, 2015 9:07am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics