Closed Issue: HttpSelfHostServer Controller with post() method gets 405 [747]
... response in Fiddler.I have:public class TestController : ApiController{public string Post(string value){return value;}}when I configure using HttpSelfHostServer and try to get the value back via...
View ArticleClosed Issue: PageSize should limit data loaded from database [901]
[Queryable(PageSize = 10)] will only limit the data sent to the client but not the data loaded from database.This can cause performance issue that SQL server will try to load the whole table to the...
View ArticleClosed Issue: Value validator should not throw if a getter throws [740]
We should catch the exception and not let it bubble up if a getter throwsComments: it is a dup of 611.
View ArticleCommented Issue: Add support for x-domain browser requests [455]
Options include jsonp, cors, iframes.Comments: CORS support is checked in.
View ArticleClosed Issue: Add support for x-domain browser requests [455]
Options include jsonp, cors, iframes.Comments: Cors support is checked in.
View ArticleCreated Issue: Complex ModelBinding error/issue [904]
Given a classpublic class SearchRepresentation{ public string Search { get; set; } public string Code { get; set; }}and a Controller method in controller SomeControllerpublic SomeReturnType...
View ArticleCommented Feature: Integrate "debug=true" setting with...
The Configuration.IncludeErrorDetailPolicy is only configurable through codes. It feels nature if we can switch it by change configuration in web.config.Comments: In the web host scenario, by default...
View ArticleCommented Issue: Tracing formatters should expose the inner formatter [580]
This is required by OData. A workaround was implemented that also needs to be removed.Comments: We have a more general problem with tracer. We need to introduce a interface to expose the actual...
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: 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: [MQ] Ensure the CA1804 FxCop rule runs on the runtime [548]
FxCop violations are being ignored by build.cmd. We need to figure out why and resolve the issue.
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 Article