Url.Link在Web Api 2中抛出未实现的异常

时间:2014-09-22 16:57:16

标签: c# asp.net-web-api asp.net-web-api2

我有以下控制器方法:

 [Authorize]
    public IHttpActionResult Post(AlertDataModel model)
    {
        var userID = this.User.Identity.GetUserId();
        var alert = new Alert
        {
            Content = model.Content,
            ExpirationDate = DateTime.Now.AddDays(5),
            UserId = userID
        };

        this.Data.Alerts.Add(alert);
        this.Data.SaveChanges();

        var returnedAlert = new AlertDataModel
        {
            ID = alert.ID,
            Content = alert.Content
        };
        var link = Url.Link(routeName: "DefaultApi", routeValues: new { id = alert.ID });
        var uri = new Uri(link);
        return Created(uri, returnedAlert);
    }

但是我在这一行得到了NotImplementedException:

var link = Url.Link(routeName:“DefaultApi”,routeValues:new {id = alert.ID});

以下是完整错误:

Message: "An error has occurred."
ExceptionMessage: "The method or operation is not implemented."
ExceptionType: "System.NotImplementedException"
StackTrace: " at System.Web.HttpContextBase.get_Response()\ \ at System.Web.UI.Util.GetUrlWithApplicationPath(HttpContextBase context, String url)\ \ at System.Web.Routing.RouteCollection.NormalizeVirtualPath(RequestContext requestContext, String virtualPath)\ \ at System.Web.Routing.RouteCollection.GetVirtualPath(RequestContext requestContext, String name, RouteValueDictionary values)\ \ at System.Web.Http.WebHost.Routing.HostedHttpRouteCollection.GetVirtualPath(HttpRequestMessage request, String name, IDictionary`2 values)\ \ at System.Web.Http.Routing.UrlHelper.GetVirtualPath(HttpRequestMessage request, String routeName, IDictionary`2 routeValues)\ \ at System.Web.Http.Routing.UrlHelper.Route(String routeName, IDictionary`2 routeValues)\ \ at System.Web.Http.Routing.UrlHelper.Link(String routeName, IDictionary`2 routeValues)\ \ at System.Web.Http.Routing.UrlHelper.Link(String routeName, Object routeValues)\ \ at Exam.WebAPI.Controllers.AlertsController.Post(AlertDataModel model) in c:\\Users\\Kiril\\Desktop\\New folder\\Exam.WebAPI\\Controllers\\AlertsController.cs:line 63\ \ at lambda_method(Closure , Object , Object[] )\ \ at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.<>c__DisplayClass10.<GetExecutor>b__9(Object instance, Object[] methodParameters)\ \ at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.Execute(Object instance, Object[] arguments)\ \ at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ExecuteAsync(HttpControllerContext controllerContext, IDictionary`2 arguments, CancellationToken cancellationToken)\ \ --- End of stack trace from previous location where exception was thrown ---\ \ at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\ \ at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\ \ at System.Web.Http.Controllers.ApiControllerActionInvoker.<InvokeActionAsyncCore>d__0.MoveNext()\ \ --- End of stack trace from previous location where exception was thrown ---\ \ at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\ \ at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\ \ at System.Web.Http.Controllers.ActionFilterResult.<ExecuteAsync>d__2.MoveNext()\ \ --- End of stack trace from previous location where exception was thrown ---\ \ at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\ \ at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\ \ at System.Web.Http.Filters.AuthorizationFilterAttribute.<ExecuteAuthorizationFilterAsyncCore>d__2.MoveNext()\ \ --- End of stack trace from previous location where exception was thrown ---\ \ at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\ \ at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\ \ at System.Web.Http.Controllers.AuthenticationFilterResult.<ExecuteAsync>d__0.MoveNext()\ \ --- End of stack trace from previous location where exception was thrown ---\ \ at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\ \ at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\ \ at System.Web.Http.Dispatcher.HttpControllerDispatcher.<SendAsync>d__1.MoveNext()"

我有以下路由:

config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{id}",
                defaults: new { id = RouteParameter.Optional }
            );

我尝试反编译代码,并在ReflectedHttpActionDescriptor.ExecuteAsync方法中抛出了错误。

有什么想法吗?

3 个答案:

答案 0 :(得分:10)

如果您正在使用OWIN,请确保您在启动配置方法中使用新的HttpConfiguration对象:

public class Startup
{
    public static OAuthAuthorizationServerOptions OAuthOptions { get; private set; }
    public static string PublicClientId { get; private set; }

    public void Configuration(IAppBuilder app)
    {
        var config = new HttpConfiguration();

        ConfigureWebApi(config);

        ConfigureAuth(app);

        app.UseWebApi(config);
    }

    ...

}

我花了几个小时才发现在使用OWIN时你不应该使用对GlobalConfiguration的引用:

GlobalConfiguration.Configure(WebApiConfig.Register);

答案 1 :(得分:0)

路线名称不正确。您需要使用特定名称在api方法上修饰route属性,然后引用该名称。例如:

[Route(Template = "{id}", Name = "GetThingById")]
public IHttpActionResult Get(int id) {
     return Ok();
}

public IHttpActionResult DoStuff() {
    return Ok(Url.Link("GetThingById", new { id = 5 });
}

答案 2 :(得分:0)

我在API中使用OWIN2进行身份验证。 在POST操作中,我将位置添加到答案的标题中。 在生成要添加到标头的URI的行上引发错误。

    string uri = Url.Link("GetUserById.v2.0", new { id = newUser.Id });

即使我的Get装饰有

,也找不到我的路由名称“ GetUserById.v2.0”
    [Route("{id:int}", Name = "GetUserById.v2.0")]

在我的Startup.cs中,我使用

    var config = GlobalConfiguration.Configuration;

配置我的API。将此行更改为

    var config = new HttpConfiguration();

找到路线,一切正常:-)