Re: InvokeHTTP with SSL

2019-06-10 Thread Martijn Dekkers
HTTPS doesn’t work without a certificate. It’s just not possible. What is possible is for a non-secured webservice to listen on port 443 in which case you can use an http://:443 style invocation. However, the most likely scenario is that you are using a self-signed certificate, in which case

Re: InvokeHTTP with SSL

2019-06-10 Thread Tomislav Novosel
Yeah, I was thinking about that. But what if service doesn't have any certificates at alL? I think that service listens on K8S cluster without SSL certs and inside our corporate network. BR, Tom On Mon, 3 Jun 2019 at 16:16, Bryan Bende wrote: > Hello, > > You should be specifying an SSL

Re: InvokeHTTP with SSL

2019-06-03 Thread Bryan Bende
Hello, You should be specifying an SSL Context Service in the processor which points to a truststore that trusts the certificate of the service you are calling. Alternatively, if the CA certs system truststore trusts the service cert then it should also work. Thanks, Bryan On Mon, Jun 3, 2019

InvokeHTTP with SSL

2019-06-03 Thread Tomislav Novosel
Hi all, I have a case where I need to send POST request on one enpoint which is located on K8S cluster and behind reverse proxy. Only HTTPS can be used. If I put value of endpoint using https:// I get error 'Unable to find valid certification path to requested target'. I spoke to my admin/devops