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 successful integrating the two? I am struggling converting from the HTTP entities representations of the WCF Web API into something that's understandable by DNOA (e.g. HTTP requests, HTTP headers, etc...).

Any tip would be greatly appreciated.

link|improve this question

I'd suggest cross-posting your question at the WCF WebAPI discussion page. Some pretty smart and in-the-know people are floating around there. Being such a young (and alpha) library, may get extra visibility there to this great question. – ckittel Aug 4 '11 at 22:09
I suggest you bug this guy twitter.com/#!/GQAdonis2008 He was working on an OAuth implementation for WCF Web API. – Darrel Miller Aug 10 '11 at 19:41
feedback

1 Answer

up vote 2 down vote accepted

Could you be a little more specific?

In WebAPI a request is represented by the HttpRequestMessage class. A response is represented by the HttpResponseMessage class.

I've no previous knowledge of DNOA, but from what I saw, you can easily create a HttpRequestInfo from an HttpRequestMessage using the public HttpRequestInfo(string httpMethod, Uri requestUrl, string rawUrl, WebHeaderCollection headers, Stream inputStream).

The HTTP method and request uri are directly HttpRequestMessage properties. The input stream is obtained via the Content property. I don't see a direct way of creating a WebHeaderCollection from the WebAPI's HttpRequestHeaders. However, you can iterate the HttpRequestHeaders entries and insert then on the WebHeaderCollection one by one.

link|improve this answer
Yes, that's exactly what I ended up doing after some more research. Good that you confirmed it. Marking your answer as correct for future readers. – Stefano Ricciardi Aug 12 '11 at 10:58
how did you create de Stream object from the Content property of the HttpRequestMessage? @PedroFelix – Daniel Jan 2 at 20:34
I'd love to see some sample code for this implementation. – Raelshark Mar 6 at 17:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.