I would really appreciate your help if you know how to connect to an
Oracle Remote Server when your LAN has a proxy/firewall Linux in the
middle.
I'm trying with the following method:
"(description="+
"(address_list="+
"(address=(protocol=tcp)(port="+ port +")(host="+ proxy +"))"+
"(address=(protocol=tcp)(port=1521)(host="+ host +")))"+
"(connect_data=(sid=MyOwnSID))(source_route=yes))";
Connection oracle = DriverManager.getConnection(url,login,password);
But I get this exception:
java.sql.SQLException: Excepcin de E/S: Got minus one from a read
call
Does anybody know something I should do or I'm doing wrong???
Thanks
Raymond Rockfield