ASP.
Is there a way I can use the new IHttpActionResult interface to return a HttpStatusCode.NoContent response message? I am …
c# asp.net-web-api2I'm writing some tests for my WebAPI web service and cannot figure out how to send JSON to my service …
c# json unit-testing asp.net-web-api2I am using ASP.NET 5, In my solution I have Web API, Identity Server and Angular 2 project and I am …
angular asp.net-core asp.net-web-api2 asp.net-core-mvc identityserver3I use Web API for the first time to connect my mobile app to Web API. I have MVC 5 project …
asp.net-mvc asp.net-web-api asp.net-web-api2 asp.net-web-api-routingI have an ASP.NET MVC 5 webproject (localhost:81) that calls functions from my WebApi 2 project (localhost:82) using Knockoutjs, to make …
asp.net-web-api asp.net-mvc-5 cors asp.net-web-api2 owinI would like the following architecture (I've made up the product name for this example): Web API 2 application running on …
asp.net-mvc oauth-2.0 asp.net-identity owin asp.net-web-api2I understand that I can use claims to make statements about a user: var claims = new List<Claim>(); …
c# asp.net-web-api2 asp.net-identity claims-based-identity asp.net-authenticationLet's say that we have the following REST call: GET api/companies/5 (get company with id 5) If company '5' …
rest asp.net-web-api http-status-code-404 asp.net-web-api2 api-designI've created a RESTful web service using ASP.NET WebApi v2 and I'm using Swashbuckle to generate swagger UI for …
asp.net asp.net-mvc asp.net-web-api asp.net-web-api2My application is setup where all requests except login must be 'authorized' using the authorization attribute in Web API. E.…
c# .net asp.net-web-api asp.net-web-api2