Updated Wiki: CORS support for ASP.NET Web API
CORS support for ASP.NET Web APIOverviewCross-origin resource sharing (CORS) is a standard that allows web pages to make AJAX requests to another domain. It relaxes the same-origin policy implemented...
View ArticleUpdated Wiki: Specs
Feature SpecificationsCORS support for ASP.NET Web APIThis feature allows cross-origin requests to be made from the browser based the CORS specifications.
View ArticleUpdated Wiki: CORS support for ASP.NET Web API
CORS support for ASP.NET Web APIOverviewCross-origin resource sharing (CORS) is a standard that allows web pages to make AJAX requests to another domain. It relaxes the same-origin policy implemented...
View ArticleSource code checked in, #601a6c18fb98
Rename ODataEntrySerializer and ODataEntryDeserializer 1) Renames 2) Minor change caching logic in DefaultODataDeserializerProvider and DefaultODataSerializerProvider.
View ArticleNew Post: OData Routing
Exact same issue here, right down to returning IQueryable<T> and the SelectMany LINQ expression. I can get "one to one" relationships working fine, but not "one to many". Ever figure this out?
View ArticleNew Post: OData Routing
zlangner wrote: Sorry for not getting back to you sooner. It would seem I've been living out of a meeting room this week. I just wanted to let you know that your solution does work, but I'm still...
View ArticleNew Post: OData Routing
ShadowChaser wrote: Exact same issue here, right down to returning IQueryable<T> and the SelectMany LINQ expression. I can get "one to one" relationships working fine, but not "one to many". Ever...
View ArticleNew Post: Status of OData support
Ah, right, well technically that's still correct as we don't update the core runtime bits (MVC/Web API) in the 2012.2 release. We added framework bits (ex OData) but they all build on the 4.0 runtime....
View ArticleEdited Feature: Add support for x-http-method [456]
MVC currently supports this. We should consider adding the same to ASP.NET Web API.
View ArticleEdited Issue: Remove default namespaces from XML in Web API [413]
The XML serialisation process injects default namespaces into the generated XML: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" These can be...
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: Validation should honor member field in ValidationResult [362]
Reported by a user:The problem I am having is with models like:// the view modelpublic class RegisterModel : IValidatableObject{ public IEnumerable<ValidationResult> Validate(ValidationContext...
View ArticleCreated Issue: HelpPage not showing documentation for actions which have...
From here: [http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri](http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri)Repro:Copy the...
View ArticleEdited Issue: HelpPage not showing documentation for actions which have...
From here: [http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri](http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri)Repro:Copy the...
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 ArticleCommented Issue: PushstreamContent in Win8 App is not working [324]
I am hitting an issue with using PushStreamContent in the Windows store app. I don’t see the same issue in the traditional console app though. It’s a simple scenario where I am ‘POST’ing some small...
View ArticleEdited Issue: PushstreamContent in Win8 App is not working [324]
I am hitting an issue with using PushStreamContent in the Windows store app. I don’t see the same issue in the traditional console app though. It’s a simple scenario where I am ‘POST’ing some small...
View ArticleCommented Issue: PushstreamContent in Win8 App is not working [324]
I am hitting an issue with using PushStreamContent in the Windows store app. I don’t see the same issue in the traditional console app though. It’s a simple scenario where I am ‘POST’ing some small...
View ArticleEdited Issue: Throw exception from ITraceWriter.Trace cause self-host down....
It can be solved by wrapping try/catch structure around all logics in TraceWriter. However it would be nice to provide a inner established mechanism just in cause user provide a bad implementation.
View Article