Has anyone successfully implemented OpenID with Mono?

I am working on a web project where I would like to use OpenID with Mono on Linux. DotNetOpenAuth has a wiki for configuring OpenID using XSP, but also lists known issues that have yet to be resolved , for example, throwing an error when using https.

What was your experience like?

+2
source share
2 answers

http://wrench.mono-project.com/ is the MVC site I wrote that works on Mono 2.6.1 using mod_mono and Apache. It uses DotNetOpenAuth. I think all you have to do is use the latest version of Mono and compile the DotNetOpenAuth dll from your "mono2" branch in git.

+4
source

As far as I know, XSP is just an easy server to get started with Mono / ASP.NET; not recommended for use in a production environment.

If you are serious about ASP.NET on Mono in a production environment, I would install the correct Apache / mod_mono test environment to run your ASP.NET projects.

+1
source

All Articles