Authentication Issue
One answer
As far as I am aware the username and password are sent in the post body as URL encoded data.
curl --location --request POST 'https://elm.example.com:9443/jts/j_security_check' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'j_username=userid' \
--data-urlencode 'j_password=password'
Comments
Michael Rowe
FORUM ADMINISTRATOR / FORUM MODERATOR Jun 20 '22, 9:11 a.m.Are you saying that j_security_check is failing with the new password?