Abhijeet Patel
Abhijeet Patel
I'm creating some integration tests following the ideas outlined here: http://www.strathweb.com/2012/06/asp-net-web-api-integration-testing-with-in-memory-hosting/ When I try to register routes from a hand crafted HttpConfiguration object I'm getting the following error: "The constraint...
Is there a specific API call to get the location of a created resource via a POST. I have the following POST method. ``` [POST("Products", RouteName = "PostProduct")] public HttpResponseMessage...
Does AttributeRouting support OData routes? I am using AttributeRouting and have an action method decorated with a custom PATCHAttribute derived from "HttpRouteAttribute". Per http://stackoverflow.com/questions/15561874/deltat-in-patch-actions-not-tracking-primitive-types?noredirect=1#comment22055978_15561874 Delta works correctly only with an...
I am trying to use Nancy in a console hosted Owin app. My Bootstrapper and the main startup of Nancy are defined as follows: //NOTE: kernel is a static variable...