Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I open ports on Azure Websites?

If I want to self host WCF in a Windows Azure Website by spinning up my own ServiceHost can I host end points on 8080 or any other port I want to? Is there any specific usable range of ports I have access to or is port access entirely blocked?

Edit: for absolute clarification this question is NOT about web or worker roles and is only about Azure Websites

like image 202
Chris Marisic Avatar asked Dec 03 '22 20:12

Chris Marisic


1 Answers

This blog post is slightly out dated now as Windows Azure Websites have more features now (like staging and production slots, WebJobs, etc) but the part regarding ports is still true for Azure Websites.

When to use Cloud Services [...] Windows Azure Websites is all IIS, the web server provides the entire platform, there is no room for long running processes or threads that can sit and wait for communication on another port outside of IIS

http://blogs.msdn.com/b/cdndevs/archive/2013/11/21/windows-azure-websites-vs-cloud-services.aspx

Note that now you can have a long running process using webjobs that does back-end work, but you can't listen on anything other than 80

like image 88
ahmelsayed Avatar answered Dec 25 '22 12:12

ahmelsayed