-
1. Re: How to configure SoapUI with client certificate authentication
Srinanda Das Jun 18, 2019 4:45 AM (in response to Srinanda Das)any help or anybody did this in recent times?
-
2. Re: How to configure SoapUI with client certificate authentication
Srinanda Das Jun 19, 2019 7:29 AM (in response to Srinanda Das)any help guys??
-
3. Re: How to configure SoapUI with client certificate authentication
vladodias Jun 19, 2019 10:52 PM (in response to Srinanda Das)Hi mate,
I'm not sure what help are you requesting? The steps in the tutorial don't work for you? Are you seeing any error message?
Cheers,
Vlad
-
4. Re: How to configure SoapUI with client certificate authentication
Srinanda Das Jun 25, 2019 4:29 AM (in response to vladodias)Hi vladodias,
i am not able to exsport personal exchange format(.pfx) as it is disabled or grayed out. is there any option to convert .cer to .pfx format to use? please suggest.
Thanks,
Srinanda
-
5. Re: How to configure SoapUI with client certificate authentication
vladodias Jun 25, 2019 5:03 AM (in response to Srinanda Das)Hi mate,
Try using openssl...
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt
If you have a root CA and intermediate certs, then include them as well using multiple -in params
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt -in intermediate.crt -in rootca.crt
I have just copied the above from stack overflow...
https://stackoverflow.com/questions/6307886/how-to-create-pfx-file-from-certificate-and-private-key
Cheers,
Vlad
-
6. Re: How to configure SoapUI with client certificate authentication
Srinanda Das Jul 1, 2019 5:18 AM (in response to vladodias)Thank you mate. it sounds complicated. then i need to install openssl. dont have permission to install. better i will search another approach if possible.thanks again.