LINQPad で Selfhosted WebAPI を使用しようとすると、クラスのコントローラーが存在しないという同じエラーが発生し続けました。
WebAPI (コントローラー/クラス) 用に個別のアセンブリを作成し、クエリでそれらを参照する必要がありますか?
これが私が使用しているコードです
#region namespaces
using AttributeRouting;
using AttributeRouting.Web.Http;
using AttributeRouting.Web.Http.SelfHost;
using System.Web.Http.SelfHost;
using System.Web.Http.Routing;
using System.Web.Http;
#endregion
public void Main()
{
var config = new HttpSelfHostConfiguration("http://192.168.0.196:8181/");
config.Routes.MapHttpAttributeRoutes(cfg =>
{
cfg.AddRoutesFromAssembly(Assembly.GetExecutingAssembly());
});
config.Routes.Cast<HttpRoute>().Dump();
AllObjects.Add(new UserQuery.PlayerObject { Type = 1, BaseAddress = "Hej" });
config.IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always;
using(HttpSelfHostServer server = new HttpSelfHostServer(config))
{
server.OpenAsync().Wait();
Console.WriteLine("Server open, press enter to quit");
Console.ReadLine();
server.CloseAsync();
}
}
public static List<PlayerObject> AllObjects = new List<PlayerObject>();
public class PlayerObject
{
public uint Type { get; set; }
public string BaseAddress { get; set; }
}
[RoutePrefix("players")]
public class PlayerObjectController : System.Web.Http.ApiController
{
[GET("allPlayers")]
public IEnumerable<PlayerObject> GetAllPlayerObjects()
{
var players = (from p in AllObjects
where p.Type == 1
select p);
return players.ToList();
}
}
このコードは、VS2012 の別のコンソール プロジェクトで正常に動作します。
「通常の」WebAPIルーティングが機能しなかったときに、NuGET経由でAttributeRoutingを使い始めました。
ブラウザに表示されたエラーは次のとおりです。No HTTP resource was found that matches the request URI 'http://192.168.0.196:8181/players/allPlayers'.
追加エラー:No type was found that matches the controller named 'PlayerObject'