Commented Issue: Add AuthenticationFilterAttributeTracer wrapper for...
The authentication filter won’t work under tracing mode as tracer will wrap the auth filter as a FilterTracer which is just an IFilter. FilterGrouping.SelectAvailable can't select correct...
View ArticleEdited Issue: Bug in MVC4: System.Web.PrefixContainer [616]
It seems that internal System.Web.PrefixContainer class was introduced in MVC4 and this class has the bug, which is reproduced with the following model, view and controller action method: public class...
View ArticleCommented Issue: Bug in MVC4: System.Web.PrefixContainer [616]
It seems that internal System.Web.PrefixContainer class was introduced in MVC4 and this class has the bug, which is reproduced with the following model, view and controller action method: public class...
View ArticleEdited Issue: Bug in MVC4: System.Web.PrefixContainer [616]
It seems that internal System.Web.PrefixContainer class was introduced in MVC4 and this class has the bug, which is reproduced with the following model, view and controller action method: public class...
View ArticleEdited Issue: Bug in MVC4: System.Web.PrefixContainer [616]
It seems that internal System.Web.PrefixContainer class was introduced in MVC4 and this class has the bug, which is reproduced with the following model, view and controller action method: public class...
View ArticleCommented Issue: After enabling tracing, ControllerConfiguration will be run...
After enabling tracing, ControllerConfiguration.Initialize will be run on every request.See attached code.Comments: fixed on...
View ArticleCommented Issue: After enabling tracing, IControllerConfiguration.Initialize...
Attached repro code. Steps to repro: 1. Create a custom controller configuration attribute2. Put the attribute on web api controller3. Create a self or web host application for web api4. Enable tracing...
View ArticleEdited Issue: After enabling tracing, IControllerConfiguration.Initialize...
Attached repro code. Steps to repro: 1. Create a custom controller configuration attribute2. Put the attribute on web api controller3. Create a self or web host application for web api4. Enable tracing...
View ArticleEdited Issue: Improve routing testability in Web API. [201]
Scenario: A user has created a skeletal structure of ApiControllers and actions. Currently the user does not have any implementation yet in them. User creates some routes and likes to test if the...
View ArticleEdited Issue: DependencyScope is disposed before the HttpControllerTracer [768]
### Facts - I am using AutoFac as IoC container - I enabled tracing with my custom tracer. - During the trace operation, I try to get the `DependencyScope` through request.Properties collection.###...
View ArticleEdited Issue: Self Host Server doesn't encode non English specific response...
Following post has information about the problem:http://forums.asp.net/post/5219096.aspxI have tried to repro this and as the user mentioned, this happens on selfhost but works fine on webhost.
View ArticleEdited Issue: Value validator should swallow exceptions from getters when...
Otherwise the exception bubbles up and request fails
View ArticleEdited Issue: HttpControllerHandler.ConvertResponse prevents manual writing...
This was originally a discussion here: http://aspnetwebstack.codeplex.com/discussions/389092 but I think it's better suited as an issue.With the logic currently in this method it's impossible to write...
View ArticleEdited Issue: Submit request to HttpServer in MessageHandler cause failure...
Check out the attach sample. It is built based on Brad's batching sample: http://bradwilson.typepad.com/blog/2012/06/batching-handler-for-web-api.htmlOne customized message handler is added to the...
View ArticleEdited Issue: Submit request to HttpServer in MessageHandler cause failure...
Check out the attach sample. It is built based on Brad's batching sample: http://bradwilson.typepad.com/blog/2012/06/batching-handler-for-web-api.htmlOne customized message handler is added to the...
View ArticleCreated Unassigned: $select and $expand not working properly for complex...
Given the following model:``` public class JsonSelectCustomer{ public int Id { get; set; } public string Name { get; set; } public virtual IList<JsonSelectOrder> JsonSelectOrders { get; set; }}...
View ArticleEdited 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: 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: 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 ArticleClosed Issue: Self Host Server doesn't encode non English specific response...
Following post has information about the problem:http://forums.asp.net/post/5219096.aspxI have tried to repro this and as the user mentioned, this happens on selfhost but works fine on...
View Article