Hello,
I try to access Fuse jolokia.
Fuse web console is using the https protocol.
So I define J4pClient as below:
J4pClient j4pClient = J4pClient.url("
https://localhost:8444/jolokia")
.user("admin")
.password("admin")
.authenticator(new BasicAuthenticator().preemptive())
.connectionTimeout(3000)
.build();
But I get an SSLHandshakeException because I have not defined any certificate.
How can I do that using java or can I disable the certificate needed?
Please help