Windows Azure завершает соединение и возвращает код ошибки 324

Я пробовал некоторые лабораторные работы в Windows Azure, и все работает нормально. Итак, я начинаю разработку своего приложения с помощью эмулятора Azure.

Сегодня я выполняю свой первый тест развертывания в Windows Azure, и у меня есть первая проблема :

No connection could be made because the target machine actively refused it 127.0.0.1:10000

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:10000

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 


[SocketException (0x274d): No connection could be made because the target machine actively refused it 127.0.0.1:10000]
   System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult) +2724507
   System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception) +392

[WebException: Unable to connect to the remote server]
   Microsoft.WindowsAzure.StorageClient.Tasks.Task`1.get_Result() +96
   Microsoft.WindowsAzure.StorageClient.Tasks.Task`1.ExecuteAndWait() +271
   Microsoft.WindowsAzure.StorageClient.CloudBlobContainer.Delete(BlobRequestOptions options) +213
   MyProject.Web.MvcApplication.InitBlobs() in C:\Sites\MyProject\MyProject\MyProject.Web\Global.asax.cs:85
   MyProject.Web.MvcApplication.Application_Start() in C:\Sites\MyProject\MyProject\MyProject.Web\Global.asax.cs:52

. Это было первое развертывание, поэтому я попытался удалить несуществующий контейнер. Теперь я обрабатываю Exception.

Я повторно развертываю свой проект и не получаю никаких ошибок сервера. Это просто завершает соединение и оставляет мне эту ошибку:Error 324 (net::ERR_EMPTY_RESPONSE)

Я предполагаю, что что-то упустил в своей конфигурации, но я не смог найти, что именно.

Спасибо за помощь!

Изменить :Само развертывание является первым для этого приложения, но не первым, которое я выполняю в Windows Azure. Я уже развернул несколько лабораторий msdn, когда начал разрабатывать для Windows Azure.

8
задан Florent 14 August 2012 в 18:47
поделиться