New Post: System.Net.Http.Formatting and Silverlight
Is there a specific reason why the above library does not include support for Silverlight when the Microsoft.Net.Http Nuget package does?
View ArticleCreated Unassigned: Add support for Silverlight 5 to...
While System.Net.Http currently supports Silverlight 5, the above library currently doesn't. Instead the portable version of the library only supports .Net45, Windows Store, and WP8 apps.
View ArticleEdited Issue: Model-binding collection fails when non-collection property...
Given a collection property named "foos" and another property named "foosBar" on an object being model-bound, because of the implementation of the PrefixContainer (specifically the IsPrefixMatch...
View ArticleEdited Issue: Unable to deserialize edm:Time property [975]
I have an working OData service, but as soon as a I add a property of type TimeSpan, I have trouble POSTing to it. The $metadata shows the type as Edm:Time as I would expect. And Fiddler shows the...
View ArticleEdited Issue: Collection property deserialization doesn't work [422]
When send back with collection property data in entity payload, it reports error: no collection property support yet.>...
View ArticleEdited Issue: Unable to deserialize edm:Time property [975]
I have an working OData service, but as soon as a I add a property of type TimeSpan, I have trouble POSTing to it. The $metadata shows the type as Edm:Time as I would expect. And Fiddler shows the...
View ArticleEdited Issue: [Cors] RequestMessageHandlerTracer is not executed for OPTIONS...
__Repro__Setup a CORS enable web site and write a customized trace writer like this:```public class CustomTraceWriter : SystemDiagnosticsTraceWriter{ public override void Trace( HttpRequestMessage...
View ArticleEdited Issue: Add CreateResponse overload that only takes T for body [960]
Currently there is an overload that takes HttpStatusCode and T but in many cases HttpStatusCode.OK is the code and in those cases it would be easier just to be able to pass in T.It would also be useful...
View ArticleEdited Issue: Stack overflow if GetControllerMapping called before 1st...
If tracing is enabled and DefaultHttpControllerSelector.GetControllerMapping() is called before the first request has been processed, the MessageHandler pipeline will be corrupted.The...
View ArticleEdited Issue: Flow the TimedOutToken and ClientDisconnectedToken [858]
With [this commit](http://aspnetwebstack.codeplex.com/SourceControl/changeset/c18dbd8306a2), it's now possible to flow the following two CancellationToken objects through the ASP.NET Web API pipeline...
View ArticleEdited Issue: Add extension method to HttpRequestMessage so that user can...
Internally, we have save the IsLocal result in the HttpRequestMessage's property bag. Here are where we populate them.SelfHost: HttpSelfHostServer.ProcessRequestContext()// Add information about...
View ArticleEdited Issue: Tracing formatters should expose the inner formatter [580]
This is required by OData. A workaround was implemented that also needs to be removed.
View ArticleEdited Issue: Provide API to retrieve wrapped services [382]
The tracing layer wraps a trace-aware object around major services and formatters. Apps that need to downcast a service or formatter need a way to ask for the inner object instance.I recommend we...
View ArticleEdited Issue: HttpConfiguration.ShouldIncludeErrorDetail should be public [361]
This would allow users to easily decide in their action whether or not they should send error detail for custom HttpErrors.
View ArticleEdited Issue: Key to the HttpError dictionary shall be public [187]
Following keys are private: private const string MessageKey = "Message"; private const string MessageDetailKey = "MessageDetail"; private const string ModelStateKey = "ModelState"; private const string...
View ArticleNew Post: Expand does not work with GetEntityByKey
Hi, I use expand with the nightly builds, it works well when calling it this way:http://../odata/Incidents?$filter=IncidentID eq 780&$expand=IncidentComments but when calling it this...
View ArticleNew Post: Expand does not work with GetEntityByKey
Typically the request for a specific entity is handled by a separate action. Have you marked both of your Get actions including the one that takes a key parameter as [Queryable]? Daniel Roth
View ArticleNew Post: Expand does not work with GetEntityByKey
Hi Daniel, As I said' I have [Queryable(AllowedQueryOptions = AllowedQueryOptions.All)] on both "Get" and "GetEntityByKey". I guess the issue is with the returned value of GetEntityByKey which is not...
View ArticleClosed Issue: StackOverflowException at large http message body processing by...
We're using nightly nuget packages 2013-03-30. When we're trying to upload large files (for instance > 2Mb) and process it by using HttpContentMultipartExtensions we've got unhandled exception which...
View ArticleEdited Issue: WebGrid does not allow a complex column header format [431]
It would be useful to allow a complex column header format, similar to the item format, for including sort direction icons etc.
View Article