Having this GET request, it works (sends request to the sever and server is able to handle it):
/* post to server*/
$http.get(\"/forms/FormValidator1/val
I've came up with an answer related to playframework
, which fixes my/this issue.
Here it is: Playframework handling post request
See UPDATE 2 section there.
The point is:
data
The server configuration accepts POST requests on URLs of the form: /forms/FormValidator1/validateForm/:jsonForm
.
The URL the client is POSTing to is/forms/FormValidator1/validateForm/
, which does not fit that form (note the missing :jsonForm
).