You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I observe the following:
When I use a form to submit simple text input fields which all have different names, the values are correctly retrieved as UTF-8 via the request object.
I observe the following:
When I use a form to submit simple text input fields which all have different names, the values are correctly retrieved as UTF-8 via the request object.
Form:
In Java you use the following method to get the value:
getEnvironment().getRequest().getParameter("test-1")
This works fine.
However if you decide to submit the input fields with all the same name (which is valid HTML), it does not work anymore:
In Java you use the following method to get the value:
getEnvironment().getRequest().getParameters("test")
The characters äöü are encoded and do not show up correctly anymore.
I suspect that Yanel does some sort of character translation or something like that.
Any guess?
The text was updated successfully, but these errors were encountered: