Many times, a Java app needs to connect to the Internet. The most common example happens when it is reading an XML file and needs to download its schema.
I am behind a proxy server. How do I set my JVM to use the proxy ?
|
1
|
|
|
|
|
|
To set an HTTP/HTTPS and/or SOCKS proxy programmatically:
Remember that HTTP proxies and SOCKS proxies operate at different levels in the network stack, so you can use one or the other or both. |
||
|
|
|
|
You can set some properties about the proxy server as jvm parameters -Dhttp.proxyPort=8080, proxyHost, etc. but if you need pass through an authenticating proxy, you need an authenticator like this example: ProxyAuthenticator.java
Example.java
Based on this reply: http://mail-archives.apache.org/mod_mbox/jakarta-jmeter-user/200208.mbox/%3C494FD350388AD511A9DD00025530F33102F1DC2C@MMSX006%3E |
||
|
|
|
|
Also, if you are always looking to download the same schema, then you can add the schema to your classpath (filesystem or JAR), and then use a custom EntityResolver See here for a more complete discussion of this approach. Edit: See @me.yahoo.com/a/0QMxE's discussion of CatalogResolver, which uses the EntityResolver approach:
|
|||
|
|
|
|
If you are counting on retrieving schemas or DTDs over the internet, you're building a slow, chatty, fragile application. What happens when that remote server hosting the file takes planned or unplanned downtime? Your app breaks. Is that OK? See http://xml.apache.org/commons/components/resolver/resolver-article.html#s.catalog.files URL's for schemas and the like are best thought of as unique identifiers. Not as requests to actually access that file remotely. Do some google searching on "XML catalog". An XML catalog allows you to host such resources locally, resolving the slowness, chattiness and fragility. It's basically a permanently cached copy of the remote content. And that's OK, since the remote content will never change. If there's ever an update, it'd be at a different URL. Making the actual retrieval of the resource over the internet especially silly. |
||
|
|
|
|
You can set those flags programatically this way:
Just return the right values from the methods needsProxy(), getProxyHost() and getProxyPort() and you can call this code snippet whenever you want Greetz, GHad |
||
|
|
From the Java documentation (not the javadoc API): http://java.sun.com/j2se/1.5.0/docs/guide/net/properties.html Set the JVM flags http.proxyHost and http.proxyPort when starting your JVM on the command line. This is usually done in a shell script (in Unix) or bat file (in Windows). Here's the example with the Unix shell script:
When using containers such as JBoss or WebLogic, my solution is to edit the start-up scripts supplied by the vendor. Many developers are familiar with the Java API (javadocs), but many times the rest of the documentation is overlooked. It contains a lot of interesting information: http://java.sun.com/j2se/1.5.0/docs/ |
||
|
|