Reputation: 23
I am trying to figure out if Oracle JDBC driver supports SOCKS proxy or not. I am not finding any documentation related to this. Please let know if you are aware.
Upvotes: 0
Views: 1124
Reputation: 997
Yes, but only when disabling java NIO for jdbc by passing -Doracle.jdbc.javaNetNio=false
to jvm or setting the property programmatically.
You can then use the standard socksproxyHost
and socksproxyPort
properties to configure the proxy.
Upvotes: 1
Reputation: 3763
No the Oracle JDBC driver doesn't support SOCKS5 proxy. In the soon to be release 18.1 version of the thin driver there will be support for HTTPS proxy and websocket.
Upvotes: 0