Commented Feature: Global error handler for Web API [1001]
If my Web API application is going to return an error to a client, I want to know about it.I want to set up something like ELMAH to notify me when the problem occurs, and I want full details of the...
View ArticleEdited Issue: [MvcAttributeRouting]Method constraints not being added for...
__Scenario__: Converted the default MVC template generated to only use attribute routing. __Issue__: I am seeing that when I am trying to change password for an existing user, the request is being sent...
View ArticleEdited Feature: Global error handler for Web API [1001]
If my Web API application is going to return an error to a client, I want to know about it.I want to set up something like ELMAH to notify me when the problem occurs, and I want full details of the...
View ArticleEdited Issue: HttpError.ExceptionType is null [1248]
Having the following code: return Request.CreateErrorResponse( HttpStatusCode.BadRequest, new ArgumentNullException("searchCriteria"));I expect to be able to read ExceptionType back: SearchCriteria...
View ArticleCommented Issue: HttpError.ExceptionType is null [1248]
Having the following code: return Request.CreateErrorResponse( HttpStatusCode.BadRequest, new ArgumentNullException("searchCriteria"));I expect to be able to read ExceptionType back: SearchCriteria...
View ArticleCommented Feature: Add support for documentation to...
This can be done easily by looking for the System.ComponentModel.Description attribute on entities and properties, and using the EDM model's SetDocumentation() method.Comments: @Kevin: we don't...
View ArticleEdited Issue: Updating webapiclient package for in 2013 RC may break the site...
This is a placeholder bug.A customer reported that taking a Web API 2.0 site, and updating the nuget package for web api client succeeded but left the site broken, because the web API 1.0 package was...
View ArticleClosed Issue: Updating webapiclient package for in 2013 RC may break the site...
This is a placeholder bug.A customer reported that taking a Web API 2.0 site, and updating the nuget package for web api client succeeded but left the site broken, because the web API 1.0 package was...
View ArticleReopened Issue: Updating webapiclient package for in 2013 RC may break the...
This is a placeholder bug.A customer reported that taking a Web API 2.0 site, and updating the nuget package for web api client succeeded but left the site broken, because the web API 1.0 package was...
View ArticleEdited Issue: Updating webapiclient package for in 2013 RC may break the site...
This is a placeholder bug.A customer reported that taking a Web API 2.0 site, and updating the nuget package for web api client succeeded but left the site broken, because the web API 1.0 package was...
View ArticleEdited Issue: [MvcAttributeRouting] Include controller namespace information...
__Setup__:My application has only attribute routing enabled.__Controllers__:Through the below controllers, I am simulating a user scenario where the user has a controller called HomeController in the...
View ArticleCommented Issue: [MvcAttributeRouting] Include controller namespace...
__Setup__:My application has only attribute routing enabled.__Controllers__:Through the below controllers, I am simulating a user scenario where the user has a controller called HomeController in the...
View ArticleCreated Unassigned: CORS AttributeBasedPolicyProviderFactory provides...
When AttributeBasedPolicyProviderFactory provides an HttpControllerContext, it does not include a controller instance, unlike all other controller contexts. (Consumers can expect this invariant...
View ArticleCreated Unassigned: FormDataCollectionExtensions provides incomplete context...
FormDataCollectionExtensions (CreateActionContextForModelBinding) uses an incomplete HttpControllerContext, with only the configuration set (it calls the unit test-only constructor). Consumers normally...
View ArticleEdited Unassigned: CORS AttributeBasedPolicyProviderFactory provides...
When AttributeBasedPolicyProviderFactory provides an HttpControllerContext, it does not include a controller instance, unlike all other controller contexts. Consumers can expect this invariant...
View ArticleEdited Issue: [MvcAttributeRouting] Route attribute should not be inherited...
When I use the following controller, I get the below exception:Controller:```public class BaseController : Controller{[Route("base/about", Name="Base.About")] public ActionResult About(){ return...
View ArticleCommented Issue: [MvcAttributeRouting] Route attribute should not be...
When I use the following controller, I get the below exception:Controller:```public class BaseController : Controller{[Route("base/about", Name="Base.About")] public ActionResult About(){ return...
View ArticleClosed Issue: [MvcAttributeRouting] Route attribute should not be inherited...
When I use the following controller, I get the below exception:Controller:```public class BaseController : Controller{[Route("base/about", Name="Base.About")] public ActionResult About(){ return...
View ArticleEdited Issue: [MvcAttributeRouting]DefaultControllerFactory mixes regular &...
__Setup__:I have an application where I use both conventional & attributed controllers. I use attributed controller in an area called...
View ArticleEdited Issue: [MvcAttributeRouting]Modelbinding of optional parameters should...
Consider the following 2 controllers. One is a Web API controller and the other an MVC controller.```public class ValuesController : ApiController{[System.Web.Http.Route("api/values/{category?}")]...
View Article