Hello guys i have a problem
with deploying
J2ee application
the apllication is working fine in case using
tomcat as a webserver
but in case using the oracle application server i can't connect to the database
althogh using the same Way to connect to database
do i need any extra configauration for OAS to connect to DB
i use
OAS 10.1.2
jdbc connection
and this is my connection class
String url ="jdbc:oracle:thin:@SSLWFSRV:1521:DEVDB";
Class.forName("oracle.jdbc.driver.OracleDriver");
conn=DriverManager.getConnection(url,"user","Password");
thanks and regards