Jon Tonberg wrote:
Hello Guido

Thanks for your reply.


<!--map:parameter name="param_username" value="{request-param:username}"/>
<map:parameter name="param_password" value="{request-param:password}"/-->

I think that should be:

<map:parameter name="param_username" value="{request-param:name}"/>
<map:parameter name="param_password" value="{request-param:passwd}"/>


Surely this depends on what I have named the <INPUT> fields in my login form?  E.g. <INPUT 
NAME="username">, <INPUT NAME="password">.

Or am I mistaken?

Ah, yes sorry.

Actually this depends on the names you gave to the paremeters of your "auth-login" Action (the "parameter_" part ist stripped).

So you have to name it "parameter_username" instead of "param_username".

<map:act type="auth-login">
<map:parameter name="handler" value="auth-handler"/>
<map:parameter name="parameter_username" value="{request-param:username}"/>
<map:parameter name="parameter_password" value="{request-param:password}"/>
<map:redirect-to uri="{request-param:resource}"/>
</map:act>


Another option might be (as Jan suggested) to remove the "raw:" from you authetication uri.

Guido

--
Freundliche Gr��e / With kind regards
Guido Casper

S&N AG
Competence Center Open Source
Klingenderstr. 5
D 33100 Paderborn

voice  +49 5251/1581-87
fax    +49 5251/1581-71
eMail  [EMAIL PROTECTED]
Web    http://www.s-und-n.de

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to