Использование Qlik QRS API с Talend - PullRequest
0 голосов
/ 20 июня 2020

Я хочу использовать qlik QRS API внутри задания Talend с использованием компонентов TRest. Для этого у меня есть много сертификатов .pem.

enter image description here

I have tried to build a jks file this way :

1- concatenating all *.pem files > to combined_file.pem

2- Convert it to pkc12 using open ssl

openssl pkcs12 -export -in client.pem  -inkey client_key.pem -certfile client.pem -out QlikKeystore.p12

3- convert the .p12 file to jks using keytool

keytool -importkeystore -srckeystore QlikKeystore.p12 -srcstoretype pkcs12 -destkeystore Qlik.jks -deststoretype JKS

But I am still getting "unable to find valid certification" error.

PS : Tested with Postman and everything seems to be OK using only those certificates :

enter image description here введите описание изображения здесь

Я что-то упустил?

...