How to set URL encoding & TLSv1.2 to WAS Liberty server?
![]()
How do we force WAS Liberty server to support URL encoding to UTF-8? We needed it because we have some user who's password contains non-ASCII characters (such as the character "123£").
The user can create a password which contain a contains non-ASCII characters, however attempting to login into CLM serer, results into an error message (invalid user name or password). How do we fix this issue?
|
Accepted answer
One other answer
![]()
In case if you'd want to force Liberty server to start with TLSv1.2 then you can append jvm.option file to include the following JVM property and restart JVM for the change to take effect.
-Dcom.ibm.team.repository.transport.client.protocol=TLSv1.2
|