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

I am tasked with writing an authentication component for an open source JAVA app. We have an in-house authentication widget that uses https. I have some example php code that accesses the widget which uses cURL to handle the transfer.

My question is whether or not there is a port of cURL to JAVA, or better yet, what base package will get me close enough to handle the task?

Update:

This is in a nutshell, the code I would like to replicate in JAVA:

$cp = curl_init();
$my_url = "https://" . AUTH_SERVER . "/auth/authenticate.asp?pt1=$uname&pt2=$pass&pt4=full";
curl_setopt($cp, CURLOPT_URL, $my_url);
curl_setopt($cp, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($cp);
curl_close($cp);

Heath, I think you're on the right track, I think I'm going to end up using HttpsURLConnection and then picking out what I need from the response.

share|improve this question

5 Answers

up vote 38 down vote accepted

Exception handling omitted:

HttpURLConnection con = (HttpURLConnection) new URL("https://www.example.com").openConnection();
con.setRequestMethod("POST");
con.getOutputStream().write("LOGIN".getBytes("UTF-8"));
con.getInputStream();
share|improve this answer
3  
How would you add basic authentication to this? – BWelfel Sep 7 '10 at 23:11
2  
@BWelfel, con.setRequestProperty("Authorization", "Basic dXNlcm5hbWU6cGFzc3dvcmQ="); //username:password base64 encoded – Karrax Jun 15 '11 at 21:03
Who voted this down, and why? – Heath Borders Mar 2 '12 at 5:38

I'd use the Commons Http Client. There is a contrib class in the project that allows you to use ssl.

We're using it and it's working well.

Edit: Here's the SSL Guide

share|improve this answer
3  
+1 HttpClient really is the way to go for this. – cletus Jan 14 '09 at 20:32

You can try the libcurl Java bindings: http://curl.haxx.se/libcurl/java/.

share|improve this answer
Not a pure 100% Java solution but an option nonetheless. It requires the C libcurl library. – therobyouknow Feb 5 '10 at 15:28

You could also try http://hc.apache.org/ from the Apache Project if you need more features than the ones provided through Commons Net.

share|improve this answer

Try Apache Commons Net for network protocols. Free!

share|improve this answer
No HTTP Client in this library, which is a shame because otherwise Apache Commons is very good (speaking from experience): commons.apache.org/net – therobyouknow Feb 5 '10 at 15:26

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.