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 (63.5k●3●36●46)
| 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'
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Are you saying that j_security_check is failing with the new password?