Re: [Mono-list] .Net Membership API Support

2005-11-15 Thread Cassio R Eskelsen
I started a projetct on SF to create a Membership that support db4o GPL databases: http://db4omembership.sourceforge.net/

In this version, is implemented:


- Create user

- Delete user

- Login user

- Register last login

- Send lost password

- Change password

- Change password question and answer

- Update user 

- List all users

Cassio R. Eskelsen2005/11/15, Ben Maurer [EMAIL PROTECTED]:
On Mon, 2005-11-14 at 21:43 -0500, Kellner, Peter wrote: Speaking of Membership, is anyone working on that class?If so, is the plan to make a provider for mysql since Microsoft does not have that?
Well, there are some basic stubs that I did (a long time ago). ButAFAIK, nobody is working on implementing one of the providers.IMHO, SqlMembershipProvider (if it is implemented) should be written sothat it queries a mssql server with the schema that msft's framework
uses -- there would be some value to being able to share anauthentication database with apps that are written on windows. Also, ifsomebody wants to quickly migrate an application from windows to linux,it may be easiest to first do the web part, then the db part. (in fact
one app that I am working on for school would benefit greatly from beingable to attach to the MSFT schema).If we want to have a provider that uses a free database (which isneeded), it should probably be a mono specific assembly (that way people
on Windows can use it too, if they don't want to pay  $1000 forsqlserver (and for some reason can't use don't want sqlexpress). Wecould still make this class the default in Mono's machine.config, sothat things worked out of the box (however, for this to really work,
we'd need something like sqlexpress's database attaching).In terms of mysql, pgsql might be a better choice as the mysql provideris now GPL and we are no longer updating it from upstream.-- Ben
___Mono-list maillist-Mono-list@lists.ximian.comhttp://lists.ximian.com/mailman/listinfo/mono-list
-- Cássio Rogério Eskelsen
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] .Net Membership API Support

2005-11-15 Thread Thomas Miller

Ben Maurer wrote:

Well, there are some basic stubs that I did (a long time ago). But
AFAIK, nobody is working on implementing one of the providers.

IMHO, SqlMembershipProvider (if it is implemented) should be written so
that it queries a mssql server with the schema that msft's framework
uses -- there would be some value to being able to share an
authentication database with apps that are written on windows. Also, if
somebody wants to quickly migrate an application from windows to linux,
it may be easiest to first do the web part, then the db part. (in fact
one app that I am working on for school would benefit greatly from being
able to attach to the MSFT schema).
  
Would you send me the database schema for this.  It would save me a bit 
of time on working
some of this out.   I am a project manager for an open source project 
writing some portal
software that we want to be both .Net and Mono capable.  So I am sure 
part of our project
will require us to help out in someone ways with the Mono project too.  
As a minimum, testing.


--
Thomas Miller
Chrome Portal Project Manager
Wash DC Delphi SIG Chairperson
Delphi Client/Server Certified Developer
BSS Accounting  Distribution Software
BSS Enterprise Accounting FrameWork

http://www.bss-software.com
http://www.cpcug.org/user/delphi/index.html
http://sourceforge.net/projects/chromeportal/
http://sourceforge.net/projects/uopl/
http://sourceforge.net/projects/dbexpressplus

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] .Net Membership API Support

2005-11-14 Thread Miguel de Icaza
Hello,

 I know this is probably really early to ask, but is this likely to make
  it into Mono for .Net 2

Yes, it will be eventually supported.

Miguel.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] .Net Membership API Support

2005-11-14 Thread Miguel de Icaza
Hello,

  I know this is probably really early to ask, but is this likely to make
   it into Mono for .Net 2
 
 Yes, it will be eventually supported.

I forgot to mention: the best way of getting this supported in a timely
fashion is to contribute an implementation ;-)

You could either contribute here, or contribute in other areas, which
would free up developer time to get to this feature.

miguel.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] .Net Membership API Support

2005-11-14 Thread Kellner, Peter
Speaking of Membership, is anyone working on that class?  If so, is the
plan to make a provider for mysql since Microsoft does not have that?

thanks

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Miguel de Icaza
Sent: Monday, November 14, 2005 2:38 PM
To: [EMAIL PROTECTED]
Cc: mono-list@lists.ximian.com
Subject: Re: [Mono-list] .Net Membership API Support

Hello,

  I know this is probably really early to ask, but is this likely to
make
   it into Mono for .Net 2
 
 Yes, it will be eventually supported.

I forgot to mention: the best way of getting this supported in a timely
fashion is to contribute an implementation ;-)

You could either contribute here, or contribute in other areas, which
would free up developer time to get to this feature.

miguel.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] .Net Membership API Support

2005-11-14 Thread Ben Maurer
On Mon, 2005-11-14 at 21:43 -0500, Kellner, Peter wrote:
 Speaking of Membership, is anyone working on that class?  If so, is the
 plan to make a provider for mysql since Microsoft does not have that?

Well, there are some basic stubs that I did (a long time ago). But
AFAIK, nobody is working on implementing one of the providers.

IMHO, SqlMembershipProvider (if it is implemented) should be written so
that it queries a mssql server with the schema that msft's framework
uses -- there would be some value to being able to share an
authentication database with apps that are written on windows. Also, if
somebody wants to quickly migrate an application from windows to linux,
it may be easiest to first do the web part, then the db part. (in fact
one app that I am working on for school would benefit greatly from being
able to attach to the MSFT schema).

If we want to have a provider that uses a free database (which is
needed), it should probably be a mono specific assembly (that way people
on Windows can use it too, if they don't want to pay  $1000 for
sqlserver (and for some reason can't use don't want sqlexpress). We
could still make this class the default in Mono's machine.config, so
that things worked out of the box (however, for this to really work,
we'd need something like sqlexpress's database attaching).

In terms of mysql, pgsql might be a better choice as the mysql provider
is now GPL and we are no longer updating it from upstream.

-- Ben

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] .Net Membership API Support

2005-11-14 Thread Kellner, Peter
I'm currently putting together a mysql provider that works with odbc
3.51 under windows.  Haven't done much with mono yet.  Was hoping it was
done here and I could use it.  Time permitting, I'd be happy to
contribute and help with the mysql provider.  I basically converted the
sqlserver tables to mysql and was going to go from there.  I was hoping
not to use much in the way of SP's. so it  will work with earlier
version of mysql.  Microsoft used quite a few sp's in there
implementation.

-Original Message-
From: Ben Maurer [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 14, 2005 7:31 PM
To: Kellner, Peter
Cc: mono-list@lists.ximian.com
Subject: RE: [Mono-list] .Net Membership API Support

On Mon, 2005-11-14 at 21:43 -0500, Kellner, Peter wrote:
 Speaking of Membership, is anyone working on that class?  If so, is
the
 plan to make a provider for mysql since Microsoft does not have that?

Well, there are some basic stubs that I did (a long time ago). But
AFAIK, nobody is working on implementing one of the providers.

IMHO, SqlMembershipProvider (if it is implemented) should be written so
that it queries a mssql server with the schema that msft's framework
uses -- there would be some value to being able to share an
authentication database with apps that are written on windows. Also, if
somebody wants to quickly migrate an application from windows to linux,
it may be easiest to first do the web part, then the db part. (in fact
one app that I am working on for school would benefit greatly from being
able to attach to the MSFT schema).

If we want to have a provider that uses a free database (which is
needed), it should probably be a mono specific assembly (that way people
on Windows can use it too, if they don't want to pay  $1000 for
sqlserver (and for some reason can't use don't want sqlexpress). We
could still make this class the default in Mono's machine.config, so
that things worked out of the box (however, for this to really work,
we'd need something like sqlexpress's database attaching).

In terms of mysql, pgsql might be a better choice as the mysql provider
is now GPL and we are no longer updating it from upstream.

-- Ben

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list