Hi,
I am trying to upload a cert/key pair in TLS keystore using the below api and getting the below error
{ “message”: “java.lang.StringIndexOutOfBoundsException: String index out of range: -1”, “contexts”: , “cause”: { “message”: “String index out of range: -1”, “contexts”: } }
I am using this api. The difference is that I am using postman instead of curl
curl -u <em>orgAdminEmail:password</em> -X POST -H "Content-Type: multipart/form-data" -F keyFile="@server.key" -F certFile="@signed.crt" \
-F password={key_pword} \
The cert is in PEM format and the key is a .key file
Am I doing anything incorrect ? Please assist
Thanks
Ram