以下のコードを使用して、Windowsフォームアプリケーション内でWebApiサービスをセルフホストしようとしています。
namespace MascoteAquarium.Desktop
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
var config = new HttpSelfHostConfiguration("http://localhost:8080");
config.Routes.MapHttpRoute(
"DefaultApi", "api/{controller}/id", new { id = RouteParameter.Optional });
using (HttpSelfHostServer server = new HttpSelfHostServer(config))
{
server.OpenAsync().Wait();
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMainMenu());
}
}
}
やってみると
http://localhost:8080/api/*(some-controller)*
System.Web.Http.SelfHost.HttpSelfHostServer.ProcessRequestContext(ChannelContext channelContext、RequestContext requestContext)でNullReferenceExceptionを受け取ります
誰かが何が起こっているのか知っていますか?Win Formsアプリ内でセルフホストすることは可能ですか?