Can I offer the authentication, authorization, etc created using "ASP.NET MVC Open Id website" extension.. as a REST service in ASP.NET MVC? How can I create this service(maybe using WCF)? (Please if you can, offer me some examples please).

link|improve this question

57% accept rate
It's possible ? – Csaryus Jan 19 '11 at 21:03
feedback

4 Answers

Yes, you can. OpenID is not about authorizing web services at all. That's what OAuth does. But DotNetOpenAuth does both OpenID and OAuth, so your users can authenticate with OpenID, then authorize RESTful clients via OAuth, and the user story is probably exactly what you're looking for.

There is a project template that shows you exactly how to do it (does it for you, actually) available on the Visual Studio Gallery.

link|improve this answer
feedback

You can easily create REST services using just MVC. WCF is not necessary. There are tons of posts on restful architecture in ASP.NET MVC.

There is code available with a base API for Restful services using ASP.NET MVC available here: http://code.msdn.microsoft.com/MvcWebAPI .

The author of this library has an excellent article explaining how to create such a service that is capable of will serve both JSON and XML. It can be read at: http://omaralzabir.com/create_rest_api_using_asp_net_mvc_that_speaks_both_json_and_plain_xml/

There are plenty of tools that can help you implement the OpenId service, such as http://www.dotnetopenauth.net/ or the solution outlined at http://www.west-wind.com/weblog/posts/899303.aspx. You said you've already created an OpenId logging system. Basically, take the logging system, create an interface like:

 public interface IOpenIdService{
      bool Login(string login, string password);
 }

and execute it in your Controller Action method. If it is successful return a JSON or XML success message. If it fails return a JSON or XML failure message.

*I have also found this article helpful for REST with MVC: http://blog.wekeroad.com/2007/12/06/aspnet-mvc-using-restful-architecture/. Also, if you want to extend JSON functionality, look into JSON.NET.

link|improve this answer
feedback

Have a look at the latest nerddinner tutorial on codeplex. It has OpenId integration built into the MVC example application: http://nerddinner.codeplex.com/

link|improve this answer
maybe you don't understand me.. I already have Open Id logging system, but I want to offer it as a rest service using something like WCF. – Csaryus Jan 12 '11 at 22:07
feedback

Here is another ASP.net MVC 3 project template for OAuth as well as Twitter and Facebook authentication.

to download : https://github.com/mhamrah/Html5OpenIdTemplate

According to Html5OpenIdTemplate

AppBase is a starting point for ASP.NET MVC3 Projects leveraging HTML5 Boilerplate http://html5boilerplate.com and Open Authentication with OpenId and OAuth. You can authenticate with Twitter and Facebook using OAuth. The goal of AppBase is to provide a slim-down MVC 3 site with OpenId/OAuth Authentication for you to build

Features

1.Uses DotNetOpenAuth OAuth 2 CTP for Facebook support

2.Custom OpenId/Oauth page with icons from WebDesigner Depot

3.Latest html5 boilerplate code with jQuery 1.5.1 support / IE9 update

4.web.config enhancements from @jacob4u2 in his MotherEffin Html5 site

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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