ASP Membership / Role Provider

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
poirazis
Posts: 36
Joined: Mon 23 Jan 2006 16:08

ASP Membership / Role Provider

Post by poirazis » Mon 26 Jun 2006 21:34

I am using CoreLab.MySql.Web, Version=3.50.10.0
I would really appreciate some more documentation or a small sample on how I can use these. I read the documentation, and supposedly did what it said. I copy/pasted the parts that are supposed to be in the web.config file and only changed the connection string. I also run the SQL scripts that create the tables , and the tables are there. I cannot though administer the website and create users and roles. Instead I get an error that the Role provider is already declared in my web.config. Is there a to-do checklist, a step by step tutorial or a sample available ?

Regards
Michael Poirazi

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Tue 27 Jun 2006 08:07

We do not have such example.
The steps are stated clear in the "Using MySQLDirect .NET in ASP.NET Provider Model" article of MySQLDirect .NET help documentation. Please follow them.
How do you try to create users?

geoffHome
Posts: 28
Joined: Tue 09 May 2006 23:55

I might be able to help

Post by geoffHome » Mon 03 Jul 2006 06:38

Michael did you solve your problem?
I got my stuff to work but all your problems were very familiar.
Couldn't believe no code samples existed.

Busy right now but will dig out my sample(s) if you haven't sorted your problem by now.

poirazis
Posts: 36
Joined: Mon 23 Jan 2006 16:08

Problem not solved

Post by poirazis » Mon 03 Jul 2006 11:53

Hey there
unfortunately i was unable to solve my problem. I would really appreciate if you have a sample to send me over!

Thank you very much!

Regards
Michael Poirazi

geoffHome
Posts: 28
Joined: Tue 09 May 2006 23:55

I don't really know what I'm doing but this configuration ended up working

Post by geoffHome » Mon 03 Jul 2006 21:43

I recently tried to get another application working but kept running into problems but this one worked.
I'm shocked that one of the developers couldn't come up with a simple template-recipe of how to use their product.

This is the web.config






// ***I'm pretty sure there was some sort of naming inconsistency so had to do the following










-->








































poirazis
Posts: 36
Joined: Mon 23 Jan 2006 16:08

thank you!

Post by poirazis » Tue 04 Jul 2006 15:09

Thank you very much,
I will try that tomorrow when I am back in the office.
I must also say that I am a bit suprised with the support here. I would expect a simple sample or a step-by-step procedure...

I greatly appreciate your help.
Thank you again

Michael

Paul
Posts: 725
Joined: Thu 28 Oct 2004 14:06

Post by Paul » Wed 05 Jul 2006 11:21

"Using MySQLDirect .NET in ASP.NET Provider Model" topic of MySQLDirect .NET describes what to do for using ASP.NET Providers and what information to include in configuration file for particular provider. You can store configuration information in global machine.config file or in Web.config file of your application.
When the configuration is described in both files, settings from Web.config file are applied.
In your example you have to specify more information in roleManager and membership sections as described in documentation. Please write the following

Code: Select all

     
			
        
        
			
    
    
       
         
         
       
    
We will include sample project to the next version of MySQLDirect .NET

Post Reply