The WCF Web API project allows WCF developers to expose their APIs via HTTP.
I'm trying to POST a JsonObject using HttpClient from Web API. I'm not quite sure how to go about this …
c# asp.net wcf asp.net-web-api wcf-web-apiWhat is difference between WCF and Web API and WCF REST and Web Service? Is WCF really so complicated that …
rest web-services wcf asp.net-web-api wcf-web-apiThe API I'm trying to call requires that I do a POST but with an empty body. I'm new to …
c# httpclient wcf-web-apiWithin my API Controller called Payment, I have the following method: [HttpPost] public HttpResponseMessage Charge(Payment payment) { var processedPayment = _paymentProcessor.…
asp.net-web-api wcf-web-api http-status-code-405I'm developing a Web API, and one of the test I came up with is that, if client makes a …
c# asp.net-mvc-3 mocking moq wcf-web-apiI'm trying to use an HttpClient for a third-party service that requires basic HTTP authentication. I am using the AuthenticationHeaderValue. …
c# .net-4.5 wcf-web-api dotnet-httpclientI have an ASP.NET Web API service that runs on a web server with Windows Authentication enabled. I have …
iis-7.5 windows-authentication asp.net-mvc-4 asp.net-web-api wcf-web-apiI've done a bit of work in the past using WCF WebAPI and really liked a lot of its features, …
c# wcf wcf-web-api asp.net-mvc-4 asp.net-web-apiWe used to have these properties in the WCF Web API configuration. MaxBufferSize = int.MaxValue, MaxReceivedMessageSize = int.MaxValue,
c# rest wcf-web-api asp.net-web-apiI have just installed the mvc4 rc update and I am trying to build an api application with little luck. …
c# asp.net-mvc-4 asp.net-web-api wcf-web-api