Top "Wcf-web-api" questions

The WCF Web API project allows WCF developers to expose their APIs via HTTP.

POSTing JsonObject With HttpClient From Web API

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-api
Difference between WCF, Web API, WCF REST and Web Service?

What 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-api
Post an empty body to REST API via HttpClient

The 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-api
Ajax Post: 405 Method Not Allowed

Within 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-405
moq objects Returns method, should return a null object

I'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-api
HttpClient authentication header not getting sent

I'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-httpclient
Unable to authenticate to ASP.NET Web Api service with HttpClient

I 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-api
What's the difference between WCF Web API and ASP.NET Web API

I'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-api
How do I configure the buffer size and max message size in the ASP.NET Web API

We 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-api
ASP.NET Web API binding with ninject

I 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