Authentication Issue
![]()
I am authenticating Client using /j_security_check?j_username=sdsds&j_password=xxxx, and i was successful in establishing the connection to RQM.
Now the password has been updated and login is failing, could you please support here, to make it suceessful
|
One answer
![]()
Ralph Schoon (62.0k●3●36●43)
| answered Jun 20 '22, 9:33 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER 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
Are you saying that j_security_check is failing with the new password?