Tagged Questions

Project Links: Project home: http://wcf.codeplex.com/ NuGet package: http://nuget.org/List/Packages/WebApi.All

learn more… | top users | synonyms

16
votes
4answers
3k views

WCF Web API vs ASP.NET MVC JSON web services

What is the advantage of using new WCF Web API over ASP.NET MVC 3 to expose a lightweight JSON Web service layer? I like Web API in many ways, but the drawback is that it doesnt work on mono, while ...
13
votes
5answers
751 views

Web services API Keys and Ajax - Securing the Key

This is probably a generic security question, but I thought I'd ask in the realm of what I'm developing. The scenario is: A web service (WCF Web Api) that uses an API Key to validate and tell me who ...
10
votes
3answers
2k views

WCF Web Api vs WebHttpBinding

I'm new to WCF RESTFull services developpment and I'm looking for some usefull information and your experience feedback about using webHttpBinding compared to the new WCF Web API ...
7
votes
3answers
516 views

Ninject working with WCF Web API Preview 5

Can anybody point me in the right direction to get Ninject working with WCF Web API Preview 5? I have it successfully up and running in my ASP.NET MVC 3 project and also in another internal WCF ...
7
votes
1answer
704 views

Difference between WCF Web API and WCF Data Services

Can any one explain the difference between WCF Data Services and http://wcf.codeplex.com Wcf Web API?
6
votes
1answer
523 views

Hosting a WCF Web API app on AppHarbor?

I've implemented a sample app like the one here. It is a really basic app just to get things started. Everything works fine in IIS on my local machine, I've got it running on my IIS Express as well, ...
6
votes
1answer
779 views

WCF Web API UriTemplate Elements Found in Multiple Methods

Let's say I am using the new WCF Web API to build a RESTful service and, in my service, I have a section of the URI that will describe the target resource, but is used on (nearly) all methods of the ...
6
votes
1answer
525 views

Setting up Ninject with the new WCF Web API

So I've been playing around with the latest release of the WCF Web API and decided I wanted to dive into implementing Ninject with it. Based off what I've read I need to implement the interface ...
6
votes
4answers
750 views

ASP.NET MVC API or WCF API

I'm developing an ASP.NET MVC 3 application. I need this application to make use of an API I also need to implement. The API should both be available from ASP.NET MVC controller actions and Ajax. Now ...
5
votes
2answers
192 views

HTTP caching in WCF Web API seems inconsistent across browsers

I'm implementing a simple REST service with the WCF Web API and attempt to set HTTP headers in order to cache responses. For a simple GET like this http://localhost:49302/my/2 the response headers ...
5
votes
1answer
99 views

WCF Web Api as a subdomain of an asp.net mvc 3 app?

I have an mvc app running on mydomain.com, and I have added a wcf web api to the web project. I can access the rest service by going to mydomain.com/MyResource but I actually want MyResource to ONLY ...
4
votes
4answers
415 views

Validating model properties WCF Web APi

I have a set of services hosted with WCF Web Api, what I need to do is validate the properties inside the models of the app. In MVC 3 for example I decorate properties in the model like this: ...
4
votes
1answer
193 views

Can I run an MVC app and WCF Web Api on the same AppHarbor site?

We have a solution with this structure. OurApp.Web (mvc 3 project with controllers, views) OurApp.Api (mvc 3 project with wcf web api service classes) OurApp.Domain (entities, repositories, unit of ...
4
votes
3answers
483 views

Set default response type in WCF Web Api

I've a set of services hosted with WCF Web Api and I communicate with them in JSON from javascript. In most cases I'm okay modifying the accepts bit of the header to require a JSON response but there ...
4
votes
4answers
832 views

C# WCF Web Api 4 MaxReceivedMessageSize

I am using the WCF Web Api 4.0 framework and am running into the maxReceivedMessageSize has exceeded 65,000 error. I've updated my webconfig to look like this but because I am uisng the WCF Web Api I ...
4
votes
3answers
942 views

What is better for REST API? WCF Web API (Preview 4) or OpenRasta or something else?

I see in this question that WCF Web API is still in preview and I've just started looking at OpenRasta. Though OpenRasta looks more mature than WCF Web API, I'm still a bit confused. Or please ...
3
votes
2answers
118 views

WCF WebAPI client does not know about server types

I am following along in the .6 release of the WCF Web API chm file. I have built my service and everything works fine when I access it via IE. But when I create my console app, I don't understand ...
3
votes
1answer
139 views

How to communicate WCF exceptions to WebClient

I have a WCF web service which throws exceptions when invalid data is submitted. The data is submitted via an HTTP Post using the WebClient object. Here is the code for the web service: ...
3
votes
2answers
260 views

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 using the WCF Web API HttpClient and I can't seem to find out the write code that would do a post with an empty ...
3
votes
3answers
820 views

Best way to handle authentication on .NET WCF Web API

I'm mildly familiar with DotNetOpenAuth and OAuth in general, but in terms of Web API development, what is the best way to lock down a web service in terms of the following criteria: Ease of ...
3
votes
1answer
243 views

WCF/WebAPI: HTTP 500 error when I pass more than one parameter to a WebGet method

I have a very dumb problem but for some reason I am unable to find any cure or information about it on the Net. Summary: I cannot pass to a WebGet method more than one parameter. If I do, server ...
3
votes
3answers
676 views

WCF Web API security

How can I configure wcf web api service for HTTPS transport? Does anyone know how much this will change in the final release since this is one of the areas they say will change?
2
votes
2answers
130 views

ASP.Net Web API vs WCF - Can the Web API be used to provide REST-based communication to a singleton WCF service?

I have an existing set of singleton WCF services. They are long-running processes that do a lot of work on an ongoing basis and expose themselves with WCF service contracts for communication with ...
2
votes
1answer
46 views

WCF WebApi HttpResponseException Issue

I am trying to throw an HttpResponseException(HttpStatusCode.NotFound) and I am getting the following error The response message returned by the Response property of this exception should be ...
2
votes
1answer
73 views

Unable to deserialize contract after changing route registration

I have an existing WCF Web API app that is registering routes using the following pattern: RouteTable.Routes.Add(new ServiceRoute("MyService", new WebServiceHostFactory(), ...
2
votes
1answer
62 views

Running WCF WebAPI Prev 6 inside MVC3 on AppHarbor, 404 Errors

I was trying to throw a quick WCF WebAPI project together up on AppHarbor tonight and ran into some issues. The WCF API is couched inside an empty MVC3 project just like is demo'd on the WCF CodePlex ...
2
votes
1answer
142 views

ssl channel wcf web api?

I'm currently developing a web api, with WCF web api, which allows me to write restful apis. One concern I have is security. For this reason I decided to protect my api with the OAuth protocol which ...
2
votes
1answer
160 views

WCF Web Api optional parameters in UriTemplate

How to declare optional parameters in UriTemplate in WCF Web Api ? For example : [WebGet(UriTemplate = "?culture={culture}")] HttpResponseMessage<IEnumerable<Contact>> GetAll(); I need ...
2
votes
2answers
199 views

Async REST Services using WCF WebApi

I want to know what is the opinion of you fellow Developers regarding WCF WebApi services. In an N-tier application we can have multiple layers of services. We can have services consuming data from ...
2
votes
1answer
96 views

Programmatically set InstanceContextMode

Is there a way to do this ... [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] ...programmatically? The reason is that I want to pass in an instance of my service directly into ...
2
votes
1answer
97 views

Problems debugging WCF Web Api REST service

So I have created a REST service based on WCF Web API. It runs fine on my local IIS. But when I deploy it to an external server it doesnt work. In my global.asax.cs I map a route "MyRoute" to a class ...
2
votes
3answers
162 views

Implementing a Unit Of Work with WCF WebApi

One of the challenges I'm facing with the new WCF WebApi is that I cannot cleanly implement a UnitOfWork pattern. As a quick background, the pattern works by starting a unit-of-work at the beginning ...
2
votes
5answers
206 views

MachineKey Azure SDK 1.5/1.6

I am using a custom Api Token implementation using WCF Web API on Azure. This uses FormsAuthentication.Decrypt in order to obtain a FormsAuthenticationTicket. To make sure that the decrpyt process ...
2
votes
1answer
106 views

Protecting my REST service, which I will use on the client side with APIkey

Let's assume that I have created my REST service smoothly and I am returning json results. I also implemented API key for my users to communicate for my service. Then Company A started using my ...
2
votes
1answer
68 views

Extract contents from HttpResponseMessage

I'm recieving an object of type System.Net.Http.HttpResponseMessage<List<T>>, how do I get the List<T>? I tried casting the content property and getting a value from the content ...
2
votes
1answer
75 views

How to define configs multiple endpoints for a WCF self-hosted service?

I have two WCF Web API Contracts. Before this, I was happy that I could use TestClient. But after I implemented the second one I had to define endpoints (and could not use the default one) and after ...
2
votes
1answer
113 views

WCF Web API DateTimeOffset Problems

I am using WCF Web API Preview 6 with its inbuilt Test Client to request a resource by Id. The object returns with all its data except for the ‘CreateDate’ and ‘LastModifiedDate’ properties which are ...
2
votes
2answers
176 views

Working with System.Threading.Tasks.Task<Stream> instead of Stream

I was using a method like below on the previous versions of WCF Web API: // grab the posted stream Stream stream = request.Content.ContentReadStream; // write it to using (FileStream fileStream = ...
2
votes
1answer
407 views

WCF Web API preview 6: No 'MediaTypeFormatter' is available

I'm looking at using HttpClient in WCF Web API Preview 6 to consume a third party service. This third party service accepts and returns XML formatted data. Their HTTP responses have the Content-Type ...
2
votes
1answer
193 views

WebApi HttpClient for .NET framework 3.5

Is there any package available of WebApi for .Net framework 3.5? I'm specifically looking forward to use HttpClient component of WebApi. Is there any alternatives that work on .Net 3.5?
2
votes
1answer
99 views

Where can I find up-to-date documentation about the WCF Web API?

I've been strugling with WCF to do REST the way I want it to work. And apparently so has quite a few others. I've heard about the WCF Web Api project, but wrongly dismissed it without looking too ...
2
votes
2answers
126 views

Is the WCF Web.API safe for production applications?

The WCF Web.API hasn't been incorporated into the .NET Framework as of the date of this post. Is it safe to use this library in production code or is it's only usefulness for testing at the moment ?
2
votes
2answers
164 views

What is the difference between making calls to mvc controller methods and WCF WEB API Rest Service Calls?

What is the difference between making calls to mvc controller methods and WCF WEB API Rest Service Calls? I can create an mvc controller post method that will allow me to execute any code i need. I ...
2
votes
4answers
154 views

What framework should I choose to build a WCF Restful API

I am wanting to build a Restful API using WCF however I am struggling to make a decision on how to accomplish this. The WCF Rest Starter Kit was developed for .Net 3.5 and has not progressed past ...
2
votes
3answers
123 views

Protecting my REST service, which I will use on the client side, from others to use

Let's assume that I have created my REST service smoothly and I am returning json results. I also implemented API key for my users to communicate for my service. Then Company A started using my ...
2
votes
2answers
164 views

Set Accepts in HTTP Download Request Header

I have a WCF Web Api endpoint that returns an invoice: http://localhost/api/invoice/23 The format it returns is that of the accepts header in the request. If the Javascript wants JSON or XML then it ...
2
votes
4answers
413 views

Can I tell the WCF WebAPI serializer to ignore nested class objects?

I am using WCF WebAPI to write REST services using WCF. I am returning my POCO classes as json/xml objects from my service. Most of my POCO classes contain ICollections as they are part of EF4.1 Code ...
2
votes
1answer
629 views

Integrating DotNetOpenAuth and WCF WebAPI

I am trying to create a RESTful web service based on WCF Web API. I also need to control access using OAuth and for this I am using the DotNetOpenAuth open source library. Has anyone ever been ...
2
votes
1answer
1k views

How to POST a POCO with WCF WebApi's HttpClient

I'm using the WCF WebApi stack (Preview 4) via NuGet (pkg version 0.3.0) and cannot seem to figure out how to "POST a POCO" using HttpClient. Given the following: Public Class MyInfo Public ...
2
votes
1answer
672 views

How does WCF WebApi map a request URI to the appropriate service type / operation?

How does WCF REST (and WCF WebApi) map a Uri to the correct service endpoint? Within the context of WCF WebApi Preview 4: Inside a custom delegating channel, I would like to find the associated route ...

1 2 3 4