Following from my previous question regarding OpenRasta authentication, I’d like to know if NTLM authentication can be configured for OpenRasta service that is running as executable outside IIS.
Cheers.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sorry, I didn’t read the question carefully enough. Unfortunately, I don’t believe you can do this out-of-the-box. There is an
HttpListenerHostprovided by OpenRasta which encapsulates a System.Net.HttpListener instance as a private variable. See the code in this forum thread to see how to use theHttpListenerHostin a Console app. If theHttpListenervariable werepublicor at leastprotectedit should be a simple matter of setting theAuthenticationSchemesproperty along the lines of this code:If you really need this capability, you can get the source for OpenRasta and update it to expose the underlying
HttpListenervariable so you can configure it to your heart’s content.===================>>
ORIGINAL ANSWER FOR IIS:
First you create a standard WebForms or MVC project configured for OpenRasta as shown in the Getting Start wiki page. Next, configure the project as described in this Wrox article to support Windows authentication. Supporting Windows authentication will enable both NTLM & Kerberos authentication.