RE: TC on Suse 8.1, urgent, please

2003-03-06 Thread Uros Kotnik
- From: Tom Anderson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 19:19 To: Tomcat Developers List Subject: Re: TC on Suse 8.1, urgent, please Have you read this document? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html On Thursday, March 6, 2003, at 09:58 A

TC on Suse 8.1, urgent, please

2003-03-06 Thread Uros Kotnik
Hi I know this is for tomcat-user but maybe I can get faster answer here. I'm using TC 4.1.18 I developed app in W2K environment, but have problems to configure TC on Suse 8.1 Linux. I have my base classes with my realm implementation and other stuff in framework.jar, framework.jar is in TChom

TC on Suse 8.1, urgent, please

2003-03-06 Thread Uros Kotnik
Hi I know this is for tomcat-user but maybe I can get faster answer here. I'm using TC 4.1.18 I developed app in W2K environment, but have problems to configure TC on Suse 8.1 Linux. I have my base classes with my realm implementation and other stuff in framework.jar, framework.jar is in TChom

RE: DataSource realm, apply fix for 16316 bug, still not working ?

2003-03-03 Thread Uros Kotnik
problem isn't in the DataSourceRealm that comes with Tomcat? It is in your own Realm implementation? If so, debugging the problem is up to you. From your config you might try using the fully qualified JNDI name in your Realm config "java:env/jdbc/hsqldb". Regards, Glenn Uros Kot

RE: DataSource realm, apply fix for 16316 bug, still not working ?

2003-02-26 Thread Uros Kotnik
problem isn't in the DataSourceRealm that comes with Tomcat? It is in your own Realm implementation? If so, debugging the problem is up to you. From your config you might try using the fully qualified JNDI name in your Realm config "java:env/jdbc/hsqldb". Regards, Glenn Uros Kot

RE: DataSource realm, apply fix for 16316 bug, still not working ?

2003-02-25 Thread Uros Kotnik
ors which get logged. Glenn Uros Kotnik wrote: > Hi, > > Applyed fix for bug 16316, DataSourceRealm can not find JNDI name in > context. > Before fix solution was to put JNDI Named DataSource which is used > by the DataSourceRealm in the GlobalNamingResources section of your &g

DataSource realm, apply fix for 16316 bug, still not working ?

2003-02-25 Thread Uros Kotnik
Hi, Applyed fix for bug 16316, DataSourceRealm can not find JNDI name in context. Before fix solution was to put JNDI Named DataSource which is used by the DataSourceRealm in the GlobalNamingResources section of your server.xml config and that worked. I thought than now I can left JNDI Named DataS

RE: Accessing DataSourceRealm from servlet

2003-02-11 Thread Uros Kotnik
JNDI named JDBC DataSource, it is not a JNDI named resource itself. Glenn Uros Kotnik wrote: > Hi, > > I implemented my own class for user authentication based on RealmBase > class, basicaly it's DataSourceRealm class just changed to my needs > (added some methods like getUserR

Accessing DataSourceRealm from servlet

2003-02-11 Thread Uros Kotnik
Hi, I implemented my own class for user authentication based on RealmBase class, basicaly it's DataSourceRealm class just changed to my needs (added some methods like getUserRealName() etc.) So the class is public class MyDataSourceRealm extends RealmBase {. I put jar with my class in tc_ho