RE: Authentication Framework and database

2007-03-01 Thread J.D. Williams
> right bbelow "Substitution". > > Hope it helps. > > Regards > Armaz > > > -Original Message- > > From: J.D. Williams [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, February 27, 2007 8:57 PM > > To: users@cocoon.apache.org >

RE: Authentication Framework and database

2007-03-01 Thread J.D. Williams
on.apache.org/2.1/userdocs/sql-transformer.html > right bbelow "Substitution". > > Hope it helps. > > Regards > Armaz > > > -Original Message- > > From: J.D. Williams [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, February 27, 2007 8:57 P

RE: Authentication Framework and database

2007-03-01 Thread Armaz Mellati
s [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 27, 2007 8:57 PM > To: users@cocoon.apache.org > Subject: Re: Authentication Framework and database > > Thought it might be some whitespace from careless XSL > writing, but I got rid of the superfluous whitespace (I > think

Re: Authentication Framework and database

2007-02-28 Thread J.D. Williams
Well, I still have not gotten it to work, and frankly I am just guessing as to what the problem is. You know, it is quite frustrating to spend several days looking through docs and email archives and see this same problem over and over, yet I find no solution. Several email threads to the list hav

Re: Authentication Framework and database

2007-02-27 Thread J.D. Williams
Thought it might be some whitespace from careless XSL writing, but I got rid of the superfluous whitespace (I think) and still no luck. I could use another set of eyes on this to help me see what I am missing. The login page is the one from the authentication framework sample in 2.1.9 The only c

Re: Authentication Framework and database

2007-02-27 Thread J.D. Williams
Nice catch on the ":" instead of "-" Unfortunately, it did not work. Tried your other suggestions, as well, and others, too. Any clue on where I might look or how I might determine where the problem is? Here is the authentication matcher.

Re: Authentication Framework and database

2007-02-27 Thread Tobia
J.D. Williams scrisse: > http://apache.org/cocoon/SQL/2.0";> > > select name from user where name = > '' > > That looks wrong. Try name="request-param:username", with a dash in request-param and without the ${ } construct. If that doesn't work, you will have to pass the param

Re: Authentication Framework and database

2007-02-27 Thread Andre Juffer
J.D. Williams wrote: I have been using the DatabaseAuthenticatorAction, but now need to switch to the Authentication Framework, using a database as the authentication resource. In my authentication resource, the following works: http://apache.org/cocoon/SQL/2.0";> select name from user where

Authentication Framework and database

2007-02-27 Thread J.D. Williams
I have been using the DatabaseAuthenticatorAction, but now need to switch to the Authentication Framework, using a database as the authentication resource. In my authentication resource, the following works: http://apache.org/cocoon/SQL/2.0";> select name from user where name = 'example' but