Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connecting to an ORACLE DB from an IPlanet Instance.

Status
Not open for further replies.

stritec

Programmer
Oct 23, 2000
9
0
0
US
Hello

Quick Question As of right now I have an application that runs on a weblogic server and uses JSP to connect to an Oracle 8.1.6 DB. However I'm wanting to move from the Weblogic server over to an Iplanet Server.

Right now, My code to connect looks like this on the weblogic server.

Code:
Class.forName("weblogic.jdbc.oci.Driver").netInstance();
Properties props = new java.util.Properties();
props.put("user","XXXXXXXX");
props.put("password","XXXXXXXX");
props.put("server","XXXXXXX");
Connection con = DriverManager.getConnection("jdbc:weblogic:oracle",props);
However this will not work on the IPlanet server.

dos anyone have any ides, on what I can put on the Iplanet code to get it to work.

Thanks,

Curt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top