So, the question is how to configure Web role on Azure Compute Emulator to work like on local IIS? By this I mean, that, the web role have the fixed url (like you can in project properties set the "Use Local IIS Web server" and set the fixed url)?

How to set Azure Compute Emulator to work on static url or at least at static port?

Is is really annoying that everytime I start the web role I have different url (port)!

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

The answer is that you cannot run it on a static port, but it should run on the first available port in its port range (starting at 80 and incrementing until it finds a free port). If it increments with every "debug" session starting, then it's because the previous emulator didnt teardown completely before you started a new one.

There are some ideas how to fix this issue here: http://social.msdn.microsoft.com/Forums/en/windowsazuredevelopment/thread/ae2df7e0-5005-4bcd-8b69-bb53323eb589

link|improve this answer
Yeah I know that it increments the port, but I do not want that. I want fixed port. – Peter Stegnar Dec 18 '10 at 17:18
I tried using the instructions in the following post but it didn't work for me. Sharing in the hope that someone else can get it to work. Maybe I'm not understanding something: blog.syntaxc4.net/post/2011/01/06/… – Jason Rowe Mar 7 '11 at 4:00
@Jason Rowe - this will only change the default binding of the dev fabric to give a different host header on startup. This means IIS can be made to listen to the binding on a different IP address, but unfortunately doesn't allow control of the port - that is related to the Load Balancer built into the Emulator BEFORE IIS becomes involved :-( – AndyBareWeb Mar 21 '11 at 21:30
feedback

Check out this solution from Michael Collier [a fellow Windows Azure MVP]

link|improve this answer
Nice link, but this is not solution. This is just what is basically known. Azure emulator delegate a next free port to the running instance. I would like a fixed port to set to the azure instance. – Peter Stegnar Apr 4 '11 at 11:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.