Hi,
> But I'd like to have the sitemap remember which URL the user requested.
> After having logged in he/she should be redirected to exact that page
> that was
> requested, not -- as in the example -- to a static page.
iirc the auth-action adds a request parameter to the login-url:
e.g.: login?resource=rederictedFromHere
you can do something like this then:
<map:match pattern="login">
<map:act type="auth-login">
<map:parameter name="handler" value="insurance"/>
<map:parameter name="parameter_userid" value="{request-param:name}"/>
<map:parameter name="parameter_password" value="{request-param:password}"/>
--> <map:redirect-to uri="{request-param:resource}"/> <-- redirects
to the resource specified in the reqest param 'resource'
</map:act>
<map:generate src="content/login.xml"/>
<map:transform src="context:/resources/styles/svm-admin-style.xsl"/>
<map:serialize type="html"/>
</map:match>
hth
--
* best regards
* Jens Maukisch
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]