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

I found a simple download manager here. It can download from HTTP sites, but doesn't support HTTPS sites. How can I modify it to support HTTPS links?

share|improve this question
Did you see the line about verifyurl. It checks if the protocol is http explicitly. Try removing it. – doc_180 Mar 2 '11 at 5:15
while you may have a specific scenario, this is just the same issue as opening an HTTPS connection in java. You need a trust manager to do that. – Joset Mar 2 '11 at 5:18

2 Answers

Yes it does. Just try an HTTPS URL. The only possible issue will be whether it trusts the server's certificate.

share|improve this answer
I do not think so. // Verify download URL. private URL verifyUrl(String url) { // Only allow HTTP URLs. if (!url.toLowerCase().startsWith("http://")) return null; – doc_180 Mar 2 '11 at 5:14
So fix that to allow https as well! – EJP Mar 2 '11 at 5:20

This answer will help you.

Apache HttpClient 4.0 Ignore SSL Certificate Errors

share|improve this answer
in addition to EJP's answer, this will allow you to accept untrusted certificates. – Joset Mar 2 '11 at 5:24
But he's not using the Apache HttpClient! – EJP Mar 2 '11 at 5:32
Ok, I removed the explicit HTTP check, but now I'm stuck on the SSL stuff. – Dennis Mar 2 '11 at 5:43

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.