Closed Issue: Ensure Web API Help Page and ApiExplorer work with the latest...
See the following issues for the related...
View ArticleClosed Feature: Add GlobalConfiguration.Configure that calls...
Instead of writing:// Global.asax.csWebApiConfig.Register(GlobalConfiguration.Configuration);// WebApiConfig.cs{...// Do not add any code below this line.config.EnsureInitialized();}Do://...
View ArticleClosed Issue: Use RouteAttribute instead of DefaultRouteAttribute for...
If you ever want to generate a link to a resource defined using the DefaultRouteAttribute then you need a way to specify the route name.We should probably add support for setting the route order too.If...
View ArticleClosed Issue: Remove HttpRouteBuilder [1229]
Currently the HttpRouteBuilder extensibility points in MVC and Web API are different and it looks like the abstraction needs some work. Let's remove HttpRouteBuilder, but keep...
View ArticleClosed Issue: Require an explicit route name to generate links using an...
Currently we provide a default route name for all attribute routes. This means that users could guess the default route name and use it to generate links. We should only support generating links to...
View ArticleClosed Issue: Provide a way to filter requests to attribute routed...
Today it is cumbersome to use attribute routing with existing routes. For example, the default Web API route may route to a controller with attribute routes, which was probably not intended.We should...
View ArticleCommented Unassigned: MVC 5 RC-1 Regression: User/Request are null when...
When a controller loads an instance of an API controller, the User and Request properties are null. This is a regression from MVC 4. Repro steps:1. Create a new MVC 4 WebApi project2. Add the following...
View ArticleClosed Feature: some Message handlers not executed with attr routing [1177]
Some message handlers are not executed with attribute routing in WebHost if there’s not an existing route. (They’re always executed in SelfHost)This is the general case of issue 954, and is related to...
View ArticleClosed Issue: When using attribute routing, Cors policy override mechanism is...
__Scenario__:User is using attribute routing and CORs together. He has a global CORS configuration and also a CORS configuration on a particular action.__Issue__: The CORS policy decorated on the...
View ArticleClosed Issue: ApiControllerActionSelector's GetActionMapping should not...
This currently causes a problem for attribute routing in the scenario of DefaultRoute attribute usage. When DefaultRoute attribute is used we automatically add routes for all the actions which do not...
View ArticleClosed Issue: '{action}' variable on controller-route not considered during...
For the following controller, a request like "/api/customers/GetAllCustomers1" is resulting in "Multiple actions found..." error__Attached__ a standalone katana...
View ArticleClosed Issue: Parameter binding information not being traced when attribute...
__Scenario__: User would like to trace the incoming request to diagnose an issue.__Issue__: When attribute routing is used, the traces are missing the parameter binding information.__Possible Reason__:...
View ArticleClosed Issue: Exception inside PushStreamContent won't be caught by...
Hi,I'm using PushStreamContent in asp.net web api to stream data to the client, I have derived from ExceptionFilterAttribute to capture all the exceptions and return standard HttpError to client....
View ArticleEdited Unassigned: Add a simple hook to re-write all outgoing OData links....
Right now, we generate a bunch of links in the OData response payloads. These are,1) Self links - ID, edit and read links.2) Navigation links,3) Metadata links.Customers want to use...
View ArticleClosed Task: Build Error when build path has a space [1121]
Hello,Do you guys use any CI to build the whole stack? I notice that building the sln in VS doesn't work most of the times. Please refer to the screenshot below....
View ArticleCreated Feature: Add Redirect() and RedirectToRoute() results [1263]
MVC has them. It's is now needed for a SPA RTM bug fix as well.
View ArticleCreated Unassigned: [MvcAttributeRouting]: rename MVCs RouteAttribute...
System.Web.MVC.RouteAttribute should have the same property names as System.Web.Http.RouteAttribute
View ArticleCommented Issue: Client side validation doesn't work for Number fields with...
When having a model that contains an property of type int. If you have an edit field where you introduce a non numeric value, like an 'a'. The jquery validation should be triggered, but it doesn't...
View ArticleEdited Issue: Client side validation doesn't work for Number fields with...
When having a model that contains an property of type int. If you have an edit field where you introduce a non numeric value, like an 'a'. The jquery validation should be triggered, but it doesn't...
View ArticleEdited Task: EntityCommandExecutionExceptions when using $expand [1200]
I'm using OData with Entity Framework and am having some problems when using $expand.I'm getting this error:"There is already an open DataReader associated with this Command which must be closed...
View Article