Hello Thierry,
I think request.getEntityAsForm() is THE solution. Why only use it as
workaround? What are I missing?
best regards
Stephan
Thierry Boileau schrieb:
Hello Dustin,
your web form is in fact the entity of the POST request sent to the
server, thus you have access to it via request.getEntity().
There is a shortcut which allows to have a list of all input fields :
Form form = request.getEntityAsForm();
for (Parameter parameter : form) {
System.out.print("parameter " + parameter.getName());
System.out.println("/" + parameter.getValue());
}
You can use it as workaround (or simply as a solution) before we fix
the problem you point to.
best regards,
Thierry Boileau