views:

210

answers:

1

My ASP.NET MVC application has been successfully ported to Mono. It works very well in xsp on port 8080, including the OpenID authorization process which is relying on RPX. In the process, the website makes some calls to RPX API (https://rpxnow.com/api/v2/...) in the background. At first, it triggered a HTTP 500 error in xsp. The problem has been solved by simply executing once the "mozroots --import --sync --quiet" command to install certificates on the server.

Now I am trying to configure Apache with mod_mono to make the same site work on port 80. To my surprise, the HTTP 500 problem has resurfaced while trying to authenticate a test user. This time, I cannot figure out how to get rid of it. It seems that there is something missing in apache's configuration files.

Thanks for any help!

A: 

Do you have any logs that you could share with us so we can help you diagnose the problem?

miguel.de.icaza
Sorry Miguel, the application has evolved quite a bit since. I have found a workaround. I now use ExtremeSwank for my OpenId implementation. My application is working perfectly since then.Thanks for the Mono framework by the way... it's a dream come true!
RooSoft