Hello, I am currently using Wildfly 14.0.1 with Amazon Corretto 11. I have SSO configured using the SPNEGO mechanism. My web.xml has the following <auth-method>.
<auth-method>SPNEGO,FORM</auth-method>
When I submit form data that contains international characters such as à, the resulting data is modified to à on the server side.
If I remove SPNEGO from my <auth-method> in web.xml and only use FORM, the form data is correct on the server side. Also, if the international character is part of the query string, it is also correct on the server side. It seems to only pertain to form data when the form is posted.
Is there some encoding going on when the SPNEGO <auth-method> is enabled? Is there a property in standalone-full.xml that may be set to prevent this behavior?
Thank you for any assistance.