Hi
I do migration from
Jboss AS7 /EAP6 to Wildfly8 and would like to ask here for any hint about undertow, why it doesn't handle request parameters as catalina does in EAP6.
So, I make a request from client to url './client/boom/index.htm?i=1', it comes to an error
servlet where I want to get value of parameter i
With EAP6 it returns 1, but with Wildfly8 it return null. Why?
Additional info. I have a security domain called 'boom' declared in jboss-web.xml
and in standalone.xml
Auth method is declared as basic in web.xml.