Hi

If i use tomcat (i.e. if lenya 1.4-dev is not deployed in the root
context)  I will be redirected to a non existing page e.g.
lenya/lenya/default/..... after login.

That seems to be due to

   setTargetURL(request.getRequestURI());

in Login.java and the url you will be redirected to is composed in
usecases.js as:
   var url = request.getContextPath() + targetUrl;
For the login usecase you therefore have one ContextPath too much.

Can we use

  setTargetURL(request.getPathInfo());

in Login.java instead? In that case you should get the right url in
usecases.js.

Jann

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

Reply via email to