additional means of authentication/login

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
6/29/2009 12:59:16 PM
Gravatar
Total Posts 2

additional means of authentication/login

I already have a database full of users/passwords, without importing them into the mojo database whats the simplest way to authenticate pre-existing users...basically...I am trying to allow access to my mojoportal site by authenticating user's from a pre-existing web service...What needs to be done to make this happen?

 

6/29/2009 1:06:36 PM
Gravatar
Total Posts 18439

Re: additional means of authentication/login

You could implement your own Login.aspx page that does what you need and then drop it in replacing the existing one. There is an example of an inline code page in this thread that inherits from out base page so it has an integrated look, you could modify the code to use your web service.

Hope it helps,

Joe

6/29/2009 1:08:50 PM
Gravatar
Total Posts 18439

Re: additional means of authentication/login

You would want to add logic to create a mojoPortal site user corresponding to your user if authentication succeeds and the user does not exist in the mojoportal db, because we do need a SiteUser object for each user internally so it can still use mojoportal roles.

Hope it helps,

Joe 

6/29/2009 1:19:38 PM
Gravatar
Total Posts 2

Re: additional means of authentication/login

Thanks i appreciate the input, im going to attempt to create a new login page like you said! That seems like the most simple and direct solution.

You must sign in to post in the forums. This thread is closed to new posts.