这是我第一次尝试在Microsoft Azure中开发和部署自托管的OWIN Web API应用程序。出于问题的原因,我想尝试部署找到here的示例应用程序。
所以我只需要三个文件,Program.cs,Startup.cs和ValuesController.cs:
Program.cs的
using Microsoft.Owin.Hosting;
using System;
namespace OwinSelfhostSample
{
public class Program
{
static void Main()
{
string baseAddress = "http://<MYSITENAME>.azurewebsites.net/";
// Start OWIN host
using (WebApp.Start<Startup>(url: baseAddress))
{
Console.ReadLine();
}
}
}
}
Startup.cs
using Owin;
using System.Web.Http;
namespace OwinSelfhostSample
{
public class Startup
{
// This code configures Web API. The Startup class is specified as a type
// parameter in the WebApp.Start method.
public void Configuration(IAppBuilder appBuilder)
{
// Configure Web API for self-host.
HttpConfiguration config = new HttpConfiguration();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
appBuilder.UseWebApi(config);
}
}
}
ValuesController.cs
using System.Collections.Generic;
using System.Web.Http;
namespace OwinSelfhostSample
{
public class ValuesController : ApiController
{
// GET api/values
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}
}
}
因此,当我转到我的项目并选择“发布为Azure WebJob”时,它说它已成功发布到.azurewebsites地址,但当我导航到http://.azurewebsites.net/api/values时,我收到消息:&#34;您要查找的资源已被删除,有它的名称已更改,或暂时不可用。&#34;。
如果我在本地运行并将Program.cs中的baseAddress更改为localhost,它工作正常,我从控制器得到响应。
经典的天蓝色门户网站称我的网络工作是“等待重启”。
我还尝试创建一个WebJob项目而不是一个控制台应用程序,并在我的Program.cs和发布中尝试过这个但是这也没有用:
public static void Main()
{
string baseAddress = "http://<MYSITENAME>.azurewebsites.net/";
var host = new JobHost();
// The following code ensures that the WebJob will be running continuously
using (WebApp.Start<Startup>(url: baseAddress))
{
host.RunAndBlock();
}
}
如何让我的自托管web api服务器持续运行?
答案 0 :(得分:1)
我认为您可能误解了WebJobs的用途。它们用于执行后台工作(请参阅doc,而不是用于公开Web API。您需要使用常规Web应用程序。
请注意,所有Azure Web Apps都通过IIS,因此您需要使用HttpPlatformHandler(但这是一个不同的主题)。