Edited:
I am running Ubuntu 10.04 and this problem seems to occur on Chrome (7.0.517.44), however, everything works fine on Firefox.
This is extremely strange. I have another application where the redirectToOriginalUrl works fine in 'dev' mode on both browsers, but does not work in 'prod' mode (again on both browsers). Wow, I don't have the faintest idea what is happening!
The Problem:
I am getting the strangest error with Playframework (version 1.1.1), where the redirectToOriginalURL is not working in the Secure module.
I have 2 controllers Application.java and NameC.java
The view Application/index.html displays a simple page with a link to an action in NameC.java (NameC.index())
NameC.java is protected with the annotation @With(Secure.class)
Here is the flow I am expecting. First the user goes to the application home page. There they click on the link which would take them to NameC.index. However, since NameC is protected with the Secure module, the user should be taken to the login form (since they are not yet logged in), and upon successful login, they should see the page rendered by NameC.index
I get the login form, but upon successful login, the user is taken to Application.index I tried putting a print statement in Secure.redirectToOriginalURL() method, and it seems like the "url" does not exist in flash scope.
Here is my code:
Application.java
public class Application extends Controller {
public static void index() {
render();
}
}
Application/index.html
<a href="@{NameC.index()}">Click here</a>
NameC.java
@With(Secure.class)
public class NameC extends Controller {
public static void index() {
render();
}
}
NameC/index.html
You should see this after a successful login.
<a href="@{Secure.logout()}">logout</a>
I am sure I am missing something very basic... can anyone please help me figure out what I am missing.