Edited Unassigned: Add Feature to WebGrid [1069]
Add opportunity to customize header output. Like it made with "Format" property. Or just change Header type to object. To have a way for manage output.```namespace System.Web.Helpers { public class...
View ArticleNew Post: Odata batch issue - with nightly
Hi, I've figured out the problem, it was simpler than I thought. I assume you have built this request manually on fiddler or with any other utility, am I correct? The problem is that the verb used for...
View ArticleClosed 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 ArticleClosed Issue: Null Ref Exception from ODataEntityDeserializer.ReadEntryOrFeed...
To repro the issue, define entity model as:[EntitySet("Security_ArrayModel")][DataServiceKey("ID")] public class Security_ArrayModel{ public int ID { get; set; } public List<string> StringArray {...
View ArticleCommented Unassigned: [WebApiOnOwin] Response sent in chunked encoding when...
When there is no content assigned to a HttpResponseMessage, the response is being sent in a chunked encoding format.Example:```public HttpResponseMessage ReturnNoContent(){ return...
View ArticleSource code checked in, #ea5c7bdc2c459c64531c2aa0fca3796062902b73
Routing performance improvement - optimization for segments that contain exactly one literal or parameter subsegment
View ArticleCommented Issue: Broken Image link in Bing SearchBox helper [624]
To reproduce this, follow these steps:1. Create a new site that references Microsoft.Web.Helpers.2. Add @Bing.SearchBox to one of the pages.3. Navigate to the page in the browser of your choice.Result:...
View ArticleCreated Unassigned: [WebPages]: Update MimeMapping.cs to be match IIS8...
The file was generated from the mimeMap in %System32%\inetsrv\config\applicationHost.config and it looks like IIS 8 has some slightly different mime mappings. It should probably be updated to match...
View ArticleNew Post: Can OData Action return HttpResponseMessage?
Hi, I want to add an action that will return binary(image for example) content, if I would use a GET api I would return HttpResponseMessage, is it possible to do something like that with an action?...
View ArticleNew Post: Can OData Action return HttpResponseMessage?
Absolutely! The simplest way to achieve your scenario is probably to return an HttpResponseMessage with a custom HttpContent that contains the image. Daniel Roth
View ArticleCommented Issue: application/json should return json verbose when...
We should return json verbose payload when old client requests for json. This is the same behavior as WCF DS. Currently, we always returns json light payload and fails when MaxODataServiceVersion is...
View ArticleEdited Issue: [WebApiOnOwin] Response sent in chunked encoding when it does...
When there is no content assigned to a HttpResponseMessage, the response is being sent in a chunked encoding format.Example:```public HttpResponseMessage ReturnNoContent(){ return...
View ArticleCommented Issue: [WebApiOnOwin] Response sent in chunked encoding when it...
When there is no content assigned to a HttpResponseMessage, the response is being sent in a chunked encoding format.Example:```public HttpResponseMessage ReturnNoContent(){ return...
View ArticleSource code checked in, #8305478a7e9813c8185fb9cdb14b794b348ba5c6
Issue 189: Add extensibility points to XmlMediaTypeFormatter for getting serializers and creating XML writers/readers
View ArticleEdited Feature: More virtual extensibility to XmlMediaTypeFormatter and make...
I'm going to try and keep this brief - but it might be difficult.In the project I'm writing at the moment, I've customised the XML formatter to correctly serialize an instance based on it's actual type...
View ArticleCommented Feature: More virtual extensibility to XmlMediaTypeFormatter and...
I'm going to try and keep this brief - but it might be difficult.In the project I'm writing at the moment, I've customised the XML formatter to correctly serialize an instance based on it's actual type...
View ArticleClosed Issue: [WebApiOnOwin]Provide virtual methods on...
The current signature of OwinBufferPolicySelector is the following:We should make the UseBufferedInputStream & UseBufferedOutputStream methods overridable.```public class OwinBufferPolicySelector :...
View ArticleClosed Issue: [AttributeRouting]Generated route name suffixes should be in...
In the case where action names are the same for multiple actions, to keep route names unique in the route collection, we dynamically generate the names with suffixes like Products.Get1, Products.Get2...
View ArticleEdited Issue: [AttributeRouting]Handle scenario when multiple route prefixes...
Currently the following would cause a problem, as we try to create 2 routes(one for each route prefix) with the same route name calle...
View Article