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

I want to fetch a URL with java.net but any connection is refused. I know that when I ask for a page, my browser (IE) uses my Windows login ID to authenticate me, then pass my request through a proxy. Can someone please help me translate this process into the Java libraries and steps to fetch webpage? Thank you.

EDIT: - I'm not sure what kind of authentication it uses here. Before any page is retrieved, it pops up a login window where I have to type in my domain\userid and password. How can I figure out the type of authentication?
- The proxy changes via an automatic configuration script.

share|improve this question

3 Answers

up vote 1 down vote accepted

I recommend you use HttpClient, which makes authentication very simple:

http://hc.apache.org/httpclient-3.x/authentication.html

It's not clear from your question what exactly the role of the proxy is here in authenticating you, but a combination of HttpClient + the right headers (if you need them) should be sufficient.

share|improve this answer

You can configure the Java runtime to use a proxy for Network comms. See this article.

share|improve this answer

You may want to try

java.net.Authenticator.setDefault(yourCustomAuthenticator);
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.