Trish Dirac

Greenhorn
+ Follow
since Sep 29, 2005
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 Trish Dirac

I mean user database, wich contains user/role configuration specially for my application, with no changes of global user database at TOMCAT/conf/users.xml.
18 years ago
Hi all.
I want my application to use it's local user database (like users.xml). Is it ever possible on Tomcat/5.5.4?
18 years ago
That's ok, I've found it in %WINDOWS%/system32=)
18 years ago
If you're using JNDI Datasource..
As I know, this problem is ordinarry for Tomcat/JDBC/JNDI bundle. Try Google for "Cannot create JDBC driver of class '' for connect URL 'null'", it should help =)
18 years ago
I mean JVM error log file. There is no such file by this path, only catalina logs.
18 years ago
I'm running application under Tomcat/5.4.4 and sometimes it (Tomcat) crashes - the process just simply disappears. I suppose there must be JVM error, but I don't know where i can find log. Does anybody know?
18 years ago
I think the problem is java.sql.Date, which designed to store Date info, but not Time. That also means it's .toString() method will return "yyyy-mm-dd".
Try to use Timestamp instead, or use PreparedStatement.setDate(1, yourJavaSqlDateVariable).
18 years ago