I would like to make HTTP requests from Rails code running on top of JRuby.

How can I make it to re-use http.proxyHost, http.proxyPort and http.nonProxyHosts settings, given to JVM running it ?

link|improve this question

79% accept rate
feedback

1 Answer

To pass JVM flags through JRuby, use -J.... In this case:

jruby -J-Dhttp.proxyHost=foo -J-Dhttp.proxyPort=1234 -J-Dhttp.nonProxyHosts="*.bar.com" ...

This is explained in JRuby's help text.

-J[java option] pass an option on to the JVM (e.g. -J-Xmx512m)
                use --properties to list JRuby properties
                run 'java -help' for a list of other Java options
link|improve this answer
It will pass the flags to JVM indeed, but Ruby's Net::HTTPClient does not take them into an account... – Dmitry Khalatov Jan 31 '11 at 20:52
I'm not too familiar with Net::HTTPClient, but don't you have to set up proxy in that library as well? From the documentation, it sounds like you have to tinker with ENV["HTTP_PROXY"] and ENV_JAVA["http.proxyHost"], etc. – banzaiman Feb 1 '11 at 13:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.