I've rebooted my computer 50-100 times this week. I find I can start / deploy locally usually 3-4 times before getting this message:

"Windows Azure Tools for Microsoft Visual Studio

Role instances are taking longer than expected to start. Do you want to continue waiting?"

The solution to get me going again is rebooting.

I know it's not a new problem. I recall that MS agreed it was a problem but does anyone have a solution that does not involve going back to the Hosted Web Core. Seems like this problem is something a lot of people get and it's been around without a resolution (that I know of) for 4-5 months or more.

Now I'll get back to doing another reboot !!!!!

link|improve this question

67% accept rate
I've never heard of (or experienced) this... do you have any more info that you got from Microsoft about this? (Maybe a thread with support or something?) If so, I can try to track down the bug and see what's happening. – smarx Aug 13 '11 at 17:02
Do you need to use Full IIS for Dev? I've got multiple configurations - I use HWC for Dev and Full IIS for Test/Production and find life rather easier. – Steve Morgan Aug 13 '11 at 17:06
@smarx - I will have a look to see what I can find. I did see it mentioned in a few places on the web and even saw a comment from MS saying it was a known issue. It's a big problem for me. As I type this I can see the VS icon flashing yellow. I know what that means :-( – Gordon Aug 14 '11 at 6:49
This request operation sent to net.pipe://localhost/iisconfigurator did not receive a reply within the configured timeout (00:01:00). The time allotted to this operation may have been a portion of a longer timeout. This may be because the service is still processing the operation or because the service was unable to send a reply message. Please consider increasing the operation timeout (by casting the channel/proxy to IContextChannel and setting the OperationTimeout property) and ensure that the service is able to connect to the client. – Gordon Aug 14 '11 at 6:50
feedback

4 Answers

I had this same problem, but could eventually get it to start after dismissing 2 or 3 of the

"Role instances are taking longer than expected to start"

message boxes.

I then found that the problem seemed to be that the Diagnostics were enabled and the storage account was set to something invalid in the Role configuration (.cscfg).
Solved it by going into the UI and disabling diagnostics, I found it would run ok.

To get the UI, right click on the created Role inside the Roles folder in the Solution Explorer.

enter image description here

Then I re-enabled Diagnostics and it auto-populated "UseDevelopmentStorage=true", and this seems to work fine.

link|improve this answer
1  
Nice solution ;-) – Xander Sep 2 '11 at 8:41
Dint work for me. :( – whihathac Dec 17 '11 at 9:18
+1 thanks rob. this is one fine solution. :) – naveen Mar 7 at 12:04
feedback

I'm on Azure SDK 1.5 and this was still happening. It turns of that port 808 is required by the DevFabrix Agent, and something was already using it. I'd nearly solved it myself (honest, I've been at it all day) but fortunately came across this post:

http://blogs.flexnetconsult.co.uk/colinbyrne/CommentView,guid,FC531B14-54C5-4996-9EDE-8C0DB734B0EC.aspx#d85dce93-3245-4e68-9ddf-5c4825775bf5

link|improve this answer
This worked for me! – whihathac Dec 17 '11 at 9:56
feedback

From what I understand, there are a few different things that can cause this issue.

For me, I encountered this error after I created a Windows Identity Foundation Startup Task for my Azure deployment and then tried to run my application using the Azure Emulator.

Basically, all I needed to do was change the taskType of the Startup Task from simple to background

ServiceDefinition.csdef

<Startup>
  <Task commandLine="Startup\IdentityGac.cmd" executionContext="elevated" taskType="background"></Task>
</Startup>

Based on your question, I'm not sure if this applies to your project, but I figured it would at least be worth mentioning.

You can read my full blog post here.

link|improve this answer
feedback

In my experience this can happen if one of your roles does not stop when OnStop() is called. Look for WaWorkerHost.exe (I think). You might also try killing IisConfigurator.exe (or something like that). You know you've got the right process when your task manager list gets dramatically shorter :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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