PlayFramework 2.0.2 multiple parameters in routes

Viewed 16278

I cant seem to get multiple parameters to work if i add one parameter everything is fine as soon as i add a second parameter i always get a

No data received
Unable to load the webpage because the server sent no data.
Here are some suggestions:
Reload this webpage later.
Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data.

Can anyone else confirm that you can add a second param to a request using play 2.0.2? (using java)

My url is as simple as this

http://localhost:9000/account/foruser?username=somethig&create=0

and the routes

GET     /account/foruser
controllers.user.UserController.foruser(username:String, create:Boolean ) 
3 Answers
Related