Joey Hsiao

Greenhorn
+ Follow
since Jul 26, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Joey Hsiao

Hi,

I'm using Resin-3.0.12 and trying to define a <resource-ref> in my web.xml. But I always get this error message 'The driver must be assigned before the URL.'. I don't know where went wrong. Below is my web.xml. Thanks in advance.

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app>
<resource-ref>
<res-ref-name>jdbc/SID</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>container</res-auth>
<init-param driver-name="oracle.jdbc.driver.OracleDriver"/>
<init-param url="jdbc racle:thin:@xxx.xxx.xxx.xxx:1521:SID"/>
<init-param user="user"/>
<init-param password="password"/>
<init-param max-connections="20"/>
<init-param max-idle-time="30"/>
</resource-ref>

<servlet>
<servlet-name>Test</servlet-name>
<servlet-class>Test</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Test</servlet-name>
<url-pattern>/test</url-pattern>
</servlet-mapping>
</web-app>
18 years ago
hi all,
i am using eclipse 2.1.2 and jdk 1.3.1 for my project. i imported some external jar files in my project, and then step into my project codes. but the debugger will step into those methods defined in the external jar libraries, which is not i want. does anyone know how to fix this? thanks in advance.
-joey
Thanks Aaron.
I read "SCWCD Exam Study Kit" two times and did JavaRanch's Mock Exam one time. I think it is enough to pass the exam but not if you want to get a high score.
Joey
21 years ago
Dear All,
I passed SCWCD yesterday. The exam was a little harder than I thought before. There were many questions on JavaBean, listeners, and custome tags.
I'd like to thank all of you and JavaRanch.
Joey
21 years ago