Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure SDK 1.3 opens two browser windows (or tabs)

Tags:

c#

azure

Why is it that when run I website using Azure SDK 1.3 it opens two browser windows (or tabs) despite the fact that I have only defined one end point:

<Sites>
  <Site name="Web">
    <Bindings>
      <Binding name="Endpoint1" endpointName="Endpoint1" />
    </Bindings>
  </Site>
</Sites>

What do I have to do to get just one browser window appearing when I run (using F5) my Azure application from Visual Studio?

like image 709
Peter Stegnar Avatar asked Jan 03 '11 11:01

Peter Stegnar


2 Answers

As it looks this was a clear Azure SDK bug. Now with August 2011 update, this error have disappeared. Only one browser window is now opened.

Latest Azure SDK.

like image 133
Peter Stegnar Avatar answered Oct 10 '22 05:10

Peter Stegnar


I'm going to take a guess and say that you've configured Chrome as your default browser in Visual Studio.

I got the same result with Chrome; when I switched the default browser to IE inside Visual Studio, only one browser launched when I started my app.

Oddly, with Firefox was my default browser, Visual Studio launched one instance of Firefox and one instance of Chrome.

This looks like a bug or odd configuration glitch that we both share inside Visual Studio and/or the Azure 1.3 SDK.

like image 44
a7drew Avatar answered Oct 10 '22 04:10

a7drew