Edited Issue: Content negotiation returns 406 on missing accept header [353]
Using DefaultContentNegotiator (at least with excludematchontype = true) returns a 406 for all requests without an accept header.Http spec says that a missing accept header means the client will accept...
View ArticleCommented Issue: Add Set* extension methods for all HttpRequestMessage...
For unit testing you often need to setup a full HttpRequestMessage so that conneg can be run in the API controller action. We have Get* extension methods for the properties hanging off of...
View ArticleCommented Issue: Add Set* extension methods for all HttpRequestMessage...
For unit testing you often need to setup a full HttpRequestMessage so that conneg can be run in the API controller action. We have Get* extension methods for the properties hanging off of...
View ArticleCommented Issue: HttpServer resets current principal before response is...
HttpServer captures Thread.CurrentPrincipal and restores it to this original value when finished handling a request. However, it is reset before the formatters have been asked to serialize their...
View ArticleCommented Issue: Make HostedHttpRoute public [305]
Hi,I'm the author of AttributeRouting, an open-source project that lets users specify routes using attributes in Mvc, Http.WebHost, and Http.SelfHost scenarios. When generating route for Http.WebHost...
View ArticleCreated Issue: anonymous users for simplemembership provider [384]
dear team,i would like to suggest an improvement for simplemembership provider. I checked the http://msdn.microsoft.com/en-us/library/webmatrix.webdata.simplemembershipprovider(v=vs.111) msdn library...
View ArticleCommented Issue: HttpServer resets current principal before response is...
HttpServer captures Thread.CurrentPrincipal and restores it to this original value when finished handling a request. However, it is reset before the formatters have been asked to serialize their...
View ArticleCommented Issue: Make HostedHttpRoute public [305]
Hi,I'm the author of AttributeRouting, an open-source project that lets users specify routes using attributes in Mvc, Http.WebHost, and Http.SelfHost scenarios. When generating route for Http.WebHost...
View ArticleCreated Issue: ApiExplorer does not generate documentation correctly [385]
When I have following method - I'm getting "No documentation available."/// <summary>/// Get Reynaers dealers from a market/// </summary>/// <param name="marketcode">Market code...
View ArticleEdited Issue: Make HttpError key string literals public [307]
HttpError has several private key string literals, such as MessageDetails, Exception, etc.They should be public so that other code can access those key/valye pairs (HttpError is a dictionary).
View ArticleCommented Issue: Make HttpError key string literals public [307]
HttpError has several private key string literals, such as MessageDetails, Exception, etc.They should be public so that other code can access those key/valye pairs (HttpError is a dictionary).Comments:...
View ArticleCreated Issue: Add PatchAsync Extension methods [386]
It would be nice if the extension methods were added for the Patch HttpVerb as shown here: http://compiledexperience.com/blog/posts/patch-support-in-httpclientAlso, if someone at microsoft could get...
View ArticleCreated Issue: HttpResponseException doesn't work in custom IHttpRoute...
I have a custom IHttpRoute implementation for doing some custom routing. I want to throw a 400 (bad request) sometimes. I tried to do a "throw new HttpResponseException()" in my code but the client...
View ArticleCommented Issue: Add PatchAsync Extension methods [386]
It would be nice if the extension methods were added for the Patch HttpVerb as shown here: http://compiledexperience.com/blog/posts/patch-support-in-httpclientAlso, if someone at microsoft could get...
View ArticleCreated Issue: OData fail when filtering on enum type [388]
The following request always fail with a NotImplementedException:GET: api/municipality/4/groups?$filter=Type eq 2(Type is an enum property, the other properties are string, int,...
View ArticleEdited Issue: OData fail when filtering on enum type [388]
The following request always fail with a NotImplementedException:GET: api/municipality/4/groups?$filter=Type eq 2(Type is an enum property, the other properties are string, int,...
View ArticleCommented Issue: Web Api - Populating action parameters through...
Populating an Web Api action method parameter using an action filter no longer works in MVC 4 RTM.Used to work in RC...To duplicate the issue:- Create a default Web Api project- Add a POST method to...
View ArticleCommented Issue: Multiple DisplayModes - Caching error, will show wrong View...
HiI have large issue with one of my sites where i have implemted multiple views side by side using MVC4 DisplayModes.Pages are...
View ArticleCreated Issue: QueryableAttribute doesn't support compare complex type with...
Repro code: public class BlahController : ApiController { [Queryable] public IQueryable<User> Get() { return new List<User>() { new User() { FirstName = "A", LastName = "AL", Age = 10 },...
View ArticleCommented Issue: QueryableAttribute doesn't support compare complex type with...
Repro code: public class BlahController : ApiController { [Queryable] public IQueryable<User> Get() { return new List<User>() { new User() { FirstName = "A", LastName = "AL", Age = 10 },...
View Article