I am using
JSP deployed on
tomcat.
I am using the following code to connect to Oracle 8i on a different machine.
public class ConnectionManager
{
public static Connection getConnection() throws Exception
{
Class.forName("oracle.jdbc.driver.OracleDriver");
return DriverManager.getConnection ("jdbc

racle:thin:@192.168.34.120:1521

rcl", "scott", "tiger");
}
}
But i am getting the following error
Network Adapter could not establish connection
Please help.