Source code checked in, #09ae4f6ccbc6b31770972e043a3f9fbc3f27787f
Handle DBNull.Value and simple runtime types in BSON formatter (fixes #1440 & #1457) - http://aspnetwebstack.codeplex.com/workitem/1440 - "Roundtripping DBNull value using Bsonformatter thrown an...
View ArticleEdited Issue: Bsonformatter throws an error when passing simple types as...
Server side code public class MyController : ApiController{[AcceptVerbs("PUT", "POST", "DELETE")] public object EchoDBNullFromBody(object input) { return input;}}On the client, if I use...
View ArticleCommented Issue: Bsonformatter throws an error when passing simple types as...
Server side code public class MyController : ApiController{[AcceptVerbs("PUT", "POST", "DELETE")] public object EchoDBNullFromBody(object input) { return input;}}On the client, if I use...
View ArticleEdited Issue: Roundtripping DBNull value using Bsonformatter thrown an error...
Value I am roundtripping - DBNull.ValueAll Webapi action (POST) does is return the value.Exception{"Error writing Null value. BSON must start with an Object or Array. Path ''."}Stack Trace: at...
View ArticleCommented Issue: Roundtripping DBNull value using Bsonformatter thrown an...
Value I am roundtripping - DBNull.ValueAll Webapi action (POST) does is return the value.Exception{"Error writing Null value. BSON must start with an Object or Array. Path ''."}Stack Trace: at...
View ArticleClosed Issue: Make ODataActionParameters work in untyped mode. [1384]
Right now, customers in untyped scenarios cannot use ODataActionParameters as the deserializer always tries to deserialize the individual parameters as strongly typed CLR objects instead of...
View ArticleSource code checked in, #ee0c95dd252467a38f0dc687dcd91b06be4e0138
Issue 1201: Tracing extension methods should interpret HttpResponseException 1) GetTraceLevelAndException defaults to the callers trace level which is incorrect. Using TraceLevel.Error as default while...
View ArticleEdited Issue: Tracing extension methods should interpret...
The ITraceWriter extension methods trace all exceptions at TraceLevel.Error, which is often incorrect when the exception is HttpResponseException (which could hold warning or success codes). Even a...
View ArticleCommented Issue: Tracing extension methods should interpret...
The ITraceWriter extension methods trace all exceptions at TraceLevel.Error, which is often incorrect when the exception is HttpResponseException (which could hold warning or success codes). Even a...
View ArticleClosed Issue: Tracing extension methods should interpret...
The ITraceWriter extension methods trace all exceptions at TraceLevel.Error, which is often incorrect when the exception is HttpResponseException (which could hold warning or success codes). Even a...
View ArticleCreated Unassigned: MQ - Update our nuget targets to use the new restore...
Based on Pranav's feedback, our nuget package restore integration does things the old way - there's a more performant way to do it once you have NuGet 2.7. He's suggested some changes for our build...
View ArticleNew Post: Authentication CORS POST AngularJS ASP.NET Web API
I finally got it working. There is a Trick to it. You need to configure the Cors before the UseBearerToken e.g. public void Configuration(IAppBuilder app) { // This must come first to intercept the...
View ArticleCreated Issue: System.Web.Webpages.Html.HtmlHelper.ValidationMessage(string,...
Observation: System.Web.Webpages.Html.HtmlHelper.ValidationMessage(string, string) does not return the error message specified in the second parameter when it is used with...
View ArticleCreated Unassigned: [Regression]: Unexpected validationError thrown when...
Here is my model[DataContract] public class ValidationModel{[Required][DataMember][Range(1, 10)] public int IntReq { get; set; }[Required][DataMember][StringLength(5)] public string StrReq { get; set;...
View ArticleCommented Unassigned: Parameters binding [1453]
Hi,I'm actually migrating from MVC 3 to MVC 4 and I'm confronted to a weird issue.All this was working well on MVC3, and an empty MVC4 project can easily reproduce this issue.I have a controller...
View ArticleCreated Unassigned: WebApi validation ignores ErrorMessage in Data Annotation...
WebApi validation ignores custom Error Message in Data Annotation attributes, f.e. Required.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties///...
View ArticleNew Post: ASP .NET MVC 5 Owin Self Hosting
I am curious as to whether MVC 5 can be self hosted in Owin. I haven't found any example of such a configuration - everything points to Web API 2 and SignalR.
View ArticleNew Post: How to replace routes generated with MapMvcAttributeRoutes
Thanks, sounds good :)
View ArticleEdited Unassigned: WebApi validation ignores ErrorMessage in Data Annotation...
WebApi validation ignores custom Error Message in Data Annotation attributes, f.e. Required.Given the code:View Model:```public class InputVM : IValidatableObject{#region Properties///...
View Article