Java and proxy authentication on xp

  • Context: Java 
  • Thread starter Thread starter DrDu
  • Start date Start date
  • Tags Tags
    Java
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 4K views
Messages
6,423
Reaction score
1,004
I would like to use Jabref to connect to internet from a windows xp computer.
However, I have to access interent through a proxy which requires authentication.
Although I can pass the ip address and port to java, I didn't find a way to
authenticate. Any ideas?

Thank's
DrDu
 
Physics news on Phys.org
DrDu said:
I would like to use Jabref to connect to internet from a windows xp computer.
However, I have to access interent through a proxy which requires authentication.
Although I can pass the ip address and port to java, I didn't find a way to
authenticate. Any ideas?

Thank's
DrDu

Have you tried everything here? - http://www.javaworld.com/javaworld/javatips/jw-javatip42.html"

I've only had to set the items below but, my user name and password is probably passed when I connect to my corporate network. I have also seen cases where I had to configure the proxy in IE so that XP would find it.

System.getProperties().put("proxySet", "true");
System.getProperties().put("proxyPort", "80");
System.getProperties().put("proxyHost", "<Your proxy host address>");
 
Last edited by a moderator: