Re: can i track the user action using right mouse button on thewebpage

2003-10-19 Thread Aleksandr Shneyderman
to filters.U have any pointers? pl send me. thanks again sat - Original Message - From: "Aleksandr Shneyderman" [EMAIL PROTECTED] To: "Tomcat Users List" [EMAIL PROTECTED] Sent: Friday, October 17, 2003 7:53 PM Subject: Re: can i track the use

Re: can i track the user action using right mouse button on the webpage

2003-10-17 Thread Aleksandr Shneyderman
I am not sure what is the significance of right click or left click. What is important is that A - you have a way to track the session of the user, which I assume you do since you use servlets (JSP) B - that your images do get served by the tomcat and not the front end apache or

RE: Tomcat and JBoss

2003-10-13 Thread Aleksandr Shneyderman
Check out JBoss site. They have JBoss version that has Tomcat built into it, saves a lot communication overhead between the two VMs. -Original Message- From: Jerald Powel [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2003 5:27 AM To: [EMAIL PROTECTED] Subject: Tomcat and JBoss

RE: Declaring resources - web.xml vs. server.xml

2003-10-13 Thread Aleksandr Shneyderman
ResourceLink is the Tomcat's way of doing JNDI, so if you port your app on some other server, the deployer will not even know what is wrong if you do not have that entry in your web.xml, because this is the only thing that gets to be moved around (server.xml is not) Looks a bit redundant but it

RE: Custom realm jar file location

2003-10-13 Thread Aleksandr Shneyderman
according to this diagram Bootstrap | System | Common / \ Catalina Shared / \ Webapp1 Webapp2 ... classes sitting in Catalina can see classes in Common but classes in Common can not see classes in Catalina Your

RE: Strange exceptions ...

2003-10-08 Thread Aleksandr Shneyderman
-Original Message- From: Aleksandr Shneyderman [mailto:[EMAIL PROTECTED] Sent: Monday, October 06, 2003 7:46 PM To: Tomcat User List Subject: Strange exceptions ... We are getting some really strange exceptions like the ones below. can someone explain what they mean and how do I fix

Strange exceptions ...

2003-10-06 Thread Aleksandr Shneyderman
We are getting some really strange exceptions like the ones below. can someone explain what they mean and how do I fix it? I am getting them in my logs and I am not sure if they are affecting the users, since they do not complain for some reason, but my gut feeling is that there are problems, I

Startup problems

2002-12-16 Thread Aleksandr Shneyderman
I get the following error on the startup: Starting service Tomcat-Standalone Apache Tomcat/4.1.16 Dec 16, 2002 11:52:56 AM org.apache.commons.digester.Digester fatalError SEVERE: Parse Fatal Error at line 5 column 7: White spaces are required between publicId and systemId.

RE: deactivate and delete unneeded Programm Parts

2002-12-13 Thread Aleksandr Shneyderman
Is there anybody who knows how to deactivate / delete the Web-Administration? just remove/move the admin.xml, and I guess manager.xml from the webapps directory and it should go away. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: deactivate and delete unneeded Programm Parts

2002-12-13 Thread Aleksandr Shneyderman
Document base r:\tomcat\webapps\..\server\webapps\admin does not exist or is not a readable directory You probably still have context/host/engine configured for the admin app. Make sure that none of the configured containers refer to the directory(ies) that do not exist. The attribute to

RE: need help urgently

2002-12-12 Thread Aleksandr Shneyderman
the workaround that would be to put a link (include) in test1 and test2 that links to the ../include Alex. -Original Message- From: Eman Fattouh [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 8:48 AM To: Tomcat Users List Subject: need help urgently dear all;

Custom resource Factory problem

2002-12-12 Thread Aleksandr Shneyderman
(tomcat 4.1.16) I was trying to create a custom resource factory and get the following exception: javax.naming.NamingException: Cannot create resource instance at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory. java:189) at

RE: Tomcat uptime and stability in production environments

2002-12-12 Thread Aleksandr Shneyderman
if I put all the jars in every context, how memory consuming is this? since web application's class loader looks at your WEB-INF/classes/ and WEB-INF/lib/*jar first it loads a class per application. So if you have say ten applications and they use an identical class say A that is say 20K your

RE: learning filters

2002-12-11 Thread Aleksandr Shneyderman
there is also a nice article on JavaPro here is the link http://www.fawcette.com/javapro/2002_02/magazine/features/kjones/ -Original Message- From: Subir Sengupta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 1:21 PM To: 'Tomcat Users List' Subject: RE: learning

RE: URGENT : Multiple host in Tomcat

2002-12-10 Thread Aleksandr Shneyderman
Well one way to go is to putApache in front of it and let Apache do the load balancing for you you can read the following article on how to do it (a bit outdated but still works): http://www.ubeans.com/tomcat/index.html and if you want to cluster you can read

RE: Remotely restart Tomcat.

2002-12-09 Thread Aleksandr Shneyderman
Well you can also reload the context in which you have your struts application Use manager (not the admin) app for that, it accepts the url commands from your browser works for me. -Original Message- From: Michael A. Angelo [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002

RE: Where to put JSP files?

2002-12-06 Thread Aleksandr Shneyderman
-Original Message- From: Lindomar [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 6:59 AM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Where to put JSP files? You can put in: webapps |_your app - yoiu can put here (1) |_you can create a new

RE: Tomacat and apache web server

2002-12-06 Thread Aleksandr Shneyderman
read this http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/aphowto.html -Original Message- From: Tushar Kulkarni [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 7:57 AM To: Tomcat Users List Subject: Tomacat and apache web server How to configure tomcat and

User Authentication question

2002-12-06 Thread Aleksandr Shneyderman
Here my scenario: We have two applications runing on the same server (App A and App B) What we'd like to do is to allow one login prompt but two different role initializations. In other words suppose the user browses the web site and comes upon a page that she needs to authenticate herself

RE: tld locations??? must be directly in WEB-INF

2002-12-06 Thread Aleksandr Shneyderman
make sure that taglib-location/WEB-INF/struts.tld/taglib-location the /WEB-INF/ is important for some reason. it was working in 4.0.4 but gives a problem in 4.1.12 -Original Message- From: Hanasaki JiJi [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 9:46 AM To: [EMAIL

RE: tld locations??? must be directly in WEB-INF - relates to Tomcat xml parser bug

2002-12-06 Thread Aleksandr Shneyderman
. Aleksandr Shneyderman wrote: make sure that taglib-location/WEB-INF/struts.tld/taglib-location the /WEB-INF/ is important for some reason. it was working in 4.0.4 but gives a problem in 4.1.12 -Original Message- From: Hanasaki JiJi [mailto:[EMAIL PROTECTED]] Sent: Friday

SSL Exceptions

2002-12-06 Thread Aleksandr Shneyderman
I have configured the tomcat (4.1.12) as a standalone server with SSL connector. whenever the client request comes in I get the following exception in my log javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated at

JAASRealm docs

2002-12-06 Thread Aleksandr Shneyderman
Is there a documentation or a sample configuration somewhere that demonstrates JAASRealm? (Tomcat 4.1.12) Thanks, Alex. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Tomcat 4.1.12 and Struts problem

2002-12-05 Thread Aleksandr Shneyderman
I just installed tomcat 4.1.12 I had my app using struts 1.0.2 I was trying to deploy it and can't does anyone have any ideas about the error below? note: I have not enabled any security policy on purpose just ran the startup.sh the error I am getting is: 2002-12-05 10:00:29

Hello all

2002-08-12 Thread Aleksandr Shneyderman
I have browsed the archives and seems that there are a lot of questions about the following error but there is really no answers that would be a good solution in my situation: We have an application that we were developing for a long time now and it fairly extensive. Couple of days ago we