It is possible per eseguire un'applicazione suave.io su Azure Web Apps a causa di una funzionalità IIS8 denominata HttpPlatformHandler. Ho cercato di eseguire un self-hosted applicazione OWIN allo stesso modo, ma ho ottenuto un'eccezione all'avvio:Eseguire l'applicazione OWIN self-hosted in App Web di Azure
Unhandled Exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Net.HttpListenerException: Access is denied
at System.Net.HttpListener.SetupV2Config()
at System.Net.HttpListener.Start()
at Microsoft.Owin.Host.HttpListener.OwinHttpListener.Start(HttpListener listener, Func`2 appFunc, IList`1 addresses, IDictionary`2 capabilities, Func`2 loggerFactory)
at Microsoft.Owin.Host.HttpListener.OwinServerFactory.Create(Func`2 app, IDictionary`2 properties)
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.Create(IAppBuilder builder)
at Microsoft.Owin.Hosting.Engine.HostingEngine.StartServer(StartContext context)
at Microsoft.Owin.Hosting.Engine.HostingEngine.Start(StartContext context)
at Microsoft.Owin.Hosting.Starter.DirectHostingStarter.Start(StartOptions options)
at Microsoft.Owin.Hosting.Starter.HostingStarter.Start(StartOptions options)
at Microsoft.Owin.Hosting.WebApp.StartImplementation(IServiceProvider services, StartOptions options)
at Microsoft.Owin.Hosting.WebApp.Start(StartOptions options)
at Microsoft.Owin.Hosting.WebApp.Start[TStartup](StartOptions options)
at Microsoft.Owin.Hosting.WebApp.Start[TStartup](String url)
at WebAppSample.Program.Main(String[] args) in c:\Users\egger\Workspace\WebAppSample\WebAppSample\Program.cs:line 14
Sembra che non mi è permesso di aprire una porta. Il mio web.config si presenta così:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<remove name="httpplatformhandler" />
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform
stdoutLogEnabled="true"
stdoutLogFile="site.log"
startupTimeLimit="20"
processPath="%HOME%\site\wwwroot\WebAppSample.exe"
arguments="%HTTP_PLATFORM_PORT%">
</httpPlatform>
</system.webServer>
</configuration>
Io uso HTTP_PLATFORM_PORT
di ascoltare sulla porta a destra. Il mio web app avvia il server come segue:
class Program
{
static void Main(string[] args)
{
var port = int.Parse(args[0]);
var url = string.Format("http://127.0.0.1:{0}", port);
Console.WriteLine("Starting web app at {0}", url);
using (WebApp.Start<Startup>(url))
{
Console.ReadLine();
}
}
}
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.UseErrorPage();
app.UseWelcomePage("/");
}
}
L'URL sembra essere OK perché ricevo output come questo: Starting web app at http://127.0.0.1:32880
.
Il file web.config e tutti i file binari si trovano nella directory principale e ho pubblicato l'app utilizzando un repository git locale.
Perché non riesco ad aprire la porta utilizzando OWIN? Cosa c'è di diverso dal campione suave.io?
EDIT: Ho appena visto c'è una richiesta per sostenere questo scenario esatto: https://feedback.azure.com/forums/169385-web-apps-formerly-websites/suggestions/4606121-support-owin-self-hosting-in-azure-websites
Probabilmente qui è silenzioso a causa della // conferenza di Build. Sarò paziente per qualche altro giorno :-) –
Hai mai trovato una risposta per questo? Sto implementando diverse app e servizi F # usando il trucco HttpPlatformHandler, ma sto cercando di mettermi su e funzionare con un server signalr usando OWIN e F # e niente sta 'funzionando'. – tigerswithguitars
Non abbiamo mai provato di nuovo. L'app viene attualmente eseguita in un ruolo di lavoro. –