Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am attempting to implement the example from the DotNetOpenAuth Service Provider solution but instead of using OpenId for authentication, I am using Forms Authentication.

I copied and pasted the Consumer example but removed the Service Reference and added a new service reference pointing to my WCF service.

Getting of the Access Tokens is working great and I can see them appearing in my database table, however, as soon as I attempt to access data, it is failing on this line in the OAuthAuthorizationManager class:

Uri requestUri = OperationContext.Current.IncomingMessageProperties["OriginalHttpRequestUri"] as Uri;

Is there something I am missing somewhere? It seems that this property should exist because I don't see where it is manually added anywhere in the original. I copied and pasted the Web.config from the sample Service Provider project and all of my files are named the same.

Let me know if there is any more information needed or if anyone wants me to email them the sample project to look at.

Thanks for any assistance.

share|improve this question

1 Answer

up vote 3 down vote accepted
Uri requestUri = operationContext.RequestContext.RequestMessage.Properties.Via;

I think it is a more secure way of finding the original HTTP information.

share|improve this answer
Thank you so much! This worked perfectly for me! – Brandon Apr 4 '11 at 13:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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