Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I send GET requests using the Jersey Client API to a server which runs on the HTTPS protocol. Is there any sample code that I can use ?

share|improve this question

2 Answers

up vote 5 down vote accepted

Construct your client as such

ClientConfig config = new DefaultClientConfig();
SSLContext ctx = SSLContext.getInstance("SSL");
ctx.init(null, myTrustManager, null);
config.getProperties().put(HTTPSProperties.PROPERTY_HTTPS_PROPERTIES, new HTTPSProperties(hostnameVerifier, ctx));
Client client = Client.create(config);

Ripped from this blog post with more details: http://blogs.oracle.com/enterprisetechtips/entry/consuming_restful_web_services_with

For information on setting up your certs, see this nicely answered SO question: Using HTTPS with REST in Java

share|improve this answer
Do you have the code from that blog posting? It doesn't appear to be available for download anymore. :( – sdoca Jan 31 '11 at 21:15
Could you please tell me what Hostnames verifier and myTrustManager should be? Thanks! – Hannibal Jun 24 '11 at 11:43

I don't recommend this, but here's how you accept all SSL certs with a Jersey client.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.