Ho provato alcuni laboratori in Windows Azure e funziona correttamente. Quindi, inizio a sviluppare la mia applicazione con Azure Emulator.Windows Azure termina la connessione e restituisce un codice di errore 324
ho svolgere il mio primo test distribuzione oggi in Windows Azure e avere un primo problema:
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
E 'stata la prima distribuzione, così ho provato a cancellare un contenitore che non esiste. Ora gestisco l'eccezione.
Ricalcolo il mio progetto e non si verifica alcun errore del server. Termina semplicemente la connessione e mi lascia questo errore: Error 324 (net::ERR_EMPTY_RESPONSE)
Presumo che mi manca qualcosa nella mia configurazione ma non sono riuscito a trovare quello che è esattamente.
Grazie per il vostro aiuto!
Modifica: La distribuzione stessa è la prima per questa applicazione, ma non è la prima che eseguo su Windows Azure. Ho già distribuito alcuni laboratori msdn quando avvio lo sviluppo per Windows Azure.
ho notato dal pila traccia che sembra che stai chiamando Archiviazione BLOB da global.asax.cs - potresti provare a farlo da un'azione del controller e vedere se ottieni lo stesso errore? Inoltre, ho visto il messaggio "Impossibile connettersi al server remoto". sei sicuro che il nome dell'account e la chiave dell'account sono precisi e entrambi dallo stesso account di archiviazione? Ho incasinato tutto questo e ho ottenuto strani errori ... –
Cerco di spostare la chiamata di memoria BLOB nel mio 'HomeController' ma non cambia nulla. Ho già controllato le mie credenziali. Sono tutti validi associati allo stesso account. Ho anche provato a mettere la mia stringa di connessione direttamente nel metodo 'global.asax' invece di chiamare una chiave di' configuration manager' ma non funziona. Qualcosa che non riesco a capire è il motivo per cui l'app tenta di connettersi a '127.0.0.1: 10000' mentre sto usando Windows Azure – Florent