New Post: AsyncEntitySetController BUG - does not properly interpret JSON...
Please see my response on the other thread you started: https://aspnetwebstack.codeplex.com/discussions/456461. Daniel Roth
View ArticleNew Post: HttpClient.PutAsJsonAsync(requestUri, value) does not post value to...
There are really two JSON formats in play here: The AsyncEntitySetController only supports interpreting JSON data that is formatted using the various OData JSON formats. The JSON produced by JSON.NET...
View ArticleNew Post: Web API 5.0.0-rtm-120913
I assume you are seeing those packages on our MyGet feed? We publish nightly signed builds on MyGet, but these builds are all preview builds. The rtm-xxxxxx suffix actually indicates that the package...
View ArticleNew Comment on "Attribute routing in MVC and Web API"
Great article! Really excited to use attribute routing in my project. I'm just wondering if it will be possible to use it in Visual Studio 2012 in the near future? If so, how could we get the last...
View ArticleEdited Feature: Add OData Function Support [881]
Just like with actions, please add support for OData Functions. These are easy to implement with WebApi but it is very difficult to advertise the functions in the metadata since webapi odata currently...
View ArticleCreated Unassigned: Model validation does not fail when validation attribute...
__Repro Steps__* Create webapi2 project* Create a simple class with validation attribute on a fieldpublic class Person{ public int Id { get; set; }[StringLength(4)] public string MyName; public string...
View ArticleCommented Unassigned: Model validation does not fail when validation...
__Repro Steps__* Create webapi2 project* Create a simple class with validation attribute on a fieldpublic class Person{ public int Id { get; set; }[StringLength(4)] public string MyName; public string...
View ArticleCommented Task: User.Identity Changed In Between Messagehandler and...
I set the current user to a ClaimsIdentity in a WebAPI Messagehandler derived from DelegateHandler, and retrieve the username and user id from the controller. It used to work quite fine. Now something...
View ArticleCommented Task: User.Identity Changed In Between Messagehandler and...
I set the current user to a ClaimsIdentity in a WebAPI Messagehandler derived from DelegateHandler, and retrieve the username and user id from the controller. It used to work quite fine. Now something...
View ArticleEdited Issue: Fix for issue in...
I'm using Castle Windsor to do various AOP stuff in my web application. I'm having an issue with a controller action method with an optional parameter with a default value:public virtual ActionResult...
View ArticleNew Comment on "Attribute routing in MVC and Web API"
@guillaumez : yes, you can use it with VS 2012. To get the latest bits(post-RC), you can upgrade the packages to use nightly builds. You can find more info about it here:...
View ArticleCommented Task: User.Identity Changed In Between Messagehandler and...
I set the current user to a ClaimsIdentity in a WebAPI Messagehandler derived from DelegateHandler, and retrieve the username and user id from the controller. It used to work quite fine. Now something...
View ArticleReviewed: v5.0 RTM (九月 15, 2013)
Rated 5 Stars (out of 5) - good , i have got the resource.
View ArticleCreated Unassigned: Mark WebApiAppBuilderExtensions.UseHttpMessageHandler()...
We should mark WebApiAppBuilderExtensions.UseHttpMessageHandler() as obsolete because having the overload makes it appear as though OWIN middleware and message handlers are interchangeable.If we...
View ArticleNew Post: OData Entity Creation with Navigation Properties
If I have a model as such:public class Customer { public int Id { get; set; }; public ICollection<Order> Orders { get; set; }; } public class Order { public int Id { get; set; }; public string...
View ArticleEdited Issue: Remove WebApiAppBuilderExtensions.UseHttpMessageHandler() [1298]
Remove WebApiAppBuilderExtensions.UseHttpMessageHandler() because having the overload makes it appear as though OWIN middleware and message handlers are interchangeable.
View ArticleSource code checked in, #b8a4ea9ae77c04a097670b0342955f4b7ceb6582
Remove WebApiAppBuilderExtensions.UseHttpMessageHandler (fixes #1298).
View ArticleEdited Issue: Remove WebApiAppBuilderExtensions.UseHttpMessageHandler() [1298]
Remove WebApiAppBuilderExtensions.UseHttpMessageHandler() because having the overload makes it appear as though OWIN middleware and message handlers are interchangeable.
View Article