| Author |
datasource jndi cast error. help!
|
Joseph Siao
Ranch Hand
Joined: Feb 26, 2004
Posts: 32
|
|
I need help. I am using websphere 5, and MySQL as my database. I created a datasource in my websphere server test environment. I create a simple java application to lookup the datasource. Here is my code : public static void main(String arg[]){ try{ InitialContext ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("jdbc/ds1"); System.out.println("Finished"); }catch(Exception e){ e.printStackTrace(); } } An error is occuring on DataSource cast. I dont know why.. Here is the error : java.lang.ClassCastException: javax.naming.Reference at ds.test.DsTestMain.main(DsTestMain.java:37) Hope someone can help me.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56166
|
|
"ajsc", We're pleased to have you here with us in the JDBC forum, but there are a few rules that need to be followed, and one is that proper names are required. Please take a look at the JavaRanch Naming Policy and adjust your display name to match it. In particular, your display name must be a first and a last name separated by a space character, and must not be obviously fictitious. Thanks! bear Forum Bartender [ April 14, 2004: Message edited by: Bear Bibeault ]
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Joseph Siao
Ranch Hand
Joined: Feb 26, 2004
Posts: 32
|
|
|
Sorry about that. I didnt know. I have changed it already. Oh, the ajsc was my initials.
|
 |
 |
|
|
subject: datasource jndi cast error. help!
|
|
|