Re: Xalan performance within Tomcat

2002-07-21 Thread Mario Felarca
At 09:57 PM 7/17/2002 +, you wrote: I am bumping my thread in the hopes that some people may not have seen it before, or that others may have come across some new ideas. Also, for informational purposes, the time that I am actually measuring is the actual time that the transform call takes

Xalan performance within Tomcat

2002-07-17 Thread Mario Felarca
Hello all, I have a small thread going on the xalan-j-users list, but I thought I would ask a similar question here since the performance issue involved has tomcat as one of its major components. My original email: "I am running Tomcat 3.3.1 with the JRE 1.3.1_03 server vm, and Xalan-J 2.4D1

RE: Tomcat 3.3.1 and additionalJars

2002-05-21 Thread Mario Felarca
>From: Larry Isaacs <[EMAIL PROTECTED]> > >After adding the jdom.jar and making the server.xml changes >you describe, I find that I can compile and display the >following JSP page: Hrmm, ok well I am going to rip everything off the system and try again. Perhaps something has been convoluted

RE: Tomcat 3.3.1 and additionalJars

2002-05-20 Thread Mario Felarca
>From: Larry Isaacs <[EMAIL PROTECTED]> > >That's basically correct. The jar is added to the >web application's classloader classpath. The web >application's classloader is switched in as the context >class during request handling for that context. > >Larry Ok, I just wanted to make sur

RE: Tomcat 3.3.1 and additionalJars

2002-05-18 Thread Mario Felarca
Date: Fri, 17 May 2002 12:30:33 -0400 > >Both of those should work. There could be some >classloader issue involved. Can you provide a test >case of what you are trying to do? > >Cheers, >Larry So the base case I am trying is simply allowing access to the jdom.jar from my webapps. This is to

RE: Tomcat 3.3.1 and additionalJars

2002-05-17 Thread Mario Felarca
>From: "Larry Isaacs" <[EMAIL PROTECTED]> >Date: Thu, 16 May 2002 14:09:12 -0400 > >What did you set the additionalJars attribute to and >where did you put the jdom.jar? > >Larry The additionalJars attribute I tried setting to a couple of different things. One was an absolute path with the jd

RE: Tomcat 3.3.1 and additionalJars configuration

2002-05-16 Thread Mario Felarca
>From: Larry Isaacs <[EMAIL PROTECTED]> > >This was originally added as a way to add jasper.jar >to each web application so it could be used with >extensions other than ".jsp". It worked for me at the >time. What exactly is the problem you are experiencing. > >Cheers, >Larry Hey, I am

Tomcat 3.3.1 and additionalJars configuration

2002-05-15 Thread Mario Felarca
Hello, I was wondering if anyone has had any experience with using the additionalJars attribute of the LoaderInterceptor11 module within Tomcat. There was a thread on classloaders that I started a couple of weeks ago, and a possible work-round was suggested by using the additionalJars feature.

RE: Classloader question

2002-05-07 Thread Mario Felarca
From: Larry Isaacs <[EMAIL PROTECTED]> To: 'Tomcat Users List' <[EMAIL PROTECTED]> Subject: RE: Classloader question Date: Tue, 7 May 2002 08:17:44 -0400 MIME-Version: 1.0 Content-Type: text/plain >Because Tomcat 3.3.x uses the JDK delagation model for >classloading, classes in the "apps" clas

RE: Classloader question

2002-05-07 Thread Mario Felarca
Message-ID: From: tamir <[EMAIL PROTECTED]> To: 'Tomcat Users List' <[EMAIL PROTECTED]> Subject: RE: Classloader question Date: Tue, 7 May 2002 10:05:36 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="WINDOWS-1255" > What I don'

Classloader question

2002-05-06 Thread Mario Felarca
Hello, I have a situation with Tomcat 3.3a where I am trying to allow a specific servlet context to load a version of a class from within their WEB-INF/classes directory, while other contexts on the server use a different version of that class that is loaded by the apps classloader. I can curren

Servlet destroy ordering

2002-03-20 Thread Mario Felarca
Hello, I had a quick question about Tomcat 3.3a. In what order will it unload servlets? For my load-on-startup servlets, in the log, I see the init calls get executed in the order that I specify based off the value I give to load-on-startup. Are they unloaded in the same order? The reverse or

Tomcat 3.3a and context loading order

2002-02-14 Thread Mario Felarca
Hello, In Tomcat 3.2.x one could specify the order in which contexts were initialized by the order in which they were entered in the server.xml file. In Tomcat 3.3 I have not found a way to do this yet, short of putting the contexts into one file (be it the server.xml file or an apps-ordered.x

RE: Tomcat 3.3a - classloader hirearchy questions

2002-02-12 Thread Mario Felarca
At 08:34 AM 02/12/2002 -0500, you wrote: >Tomcat 3.3 follows the JDK implementation for classloaders >where child classloaders delegate to their parent classloaders >first, before attempting to load a class themselves. This is >why Base1.class is found in the CLASSPATH classloader even though >i

Tomcat 3.3a - classloader hirearchy questions

2002-02-11 Thread Mario Felarca
Hello, I had a problem a few days ago with Tomcat 3.3a and loading classes that I have tracked down. I wanted to ask if my understanding of the classloader hirearchy is correct or if there are other people that have experienced similar behavior. I was running Tomcat 3.3a as a service, and on t

RE: servlet.jar and 3.3

2002-02-08 Thread Mario Felarca
At 03:53 PM 02/08/2002 -0500, Larry Isaacs wrote: >Hi Mario, > >At this point my "help" may be in the form of a sequence >of possibly worthless guesses. Since it is a pain for me >to try to keep up with tomcat-user from home over the >weekend, reply directly to me if need an answer during >this t

RE: servlet.jar and 3.3

2002-02-08 Thread Mario Felarca
At 12:36 PM 02/08/2002 -0500, you wrote: >Sorry. I'm having trouble connecting yesterday to today. Not a problem. I know the feeling. :) >Next, I think I would need to see the startup log output and >the full stack trace of the error to make further guesses. Here is my stderr.log. There is abs

RE: servlet.jar and 3.3

2002-02-08 Thread Mario Felarca
At 09:04 AM 02/08/2002 -0500, you wrote: >I believe that org.apache.tomcat.startup.Main now requires >a task to be specified. It no longer defaults to starting. >Include "start" or "-start" (without quotes) as an argument >to the Main class. Thanks for the idea, unfortunately I still see the sam

RE: servlet.jar and 3.3

2002-02-07 Thread Mario Felarca
At 05:36 PM 02/07/2002 -0500, you wrote: >I haven't used JavaService.exe. What are the other "java startup" >arguments and parameters being specified. Having just >tomcat.jar for the classpath should be fine. The other parameters relevant to tomcat are: -Dtomcat.home, the value is the Tomcat d

RE: servlet.jar and 3.3

2002-02-07 Thread Mario Felarca
At 04:38 PM 02/07/2002 -0500, you wrote: >I can't make much of a guess yet. Can you be more >specific about what "can't seem to see the servlet.jar" means. >Having an old servlet.jar or j2ee.jar in your jre/lib/ext >directory can cause problems, but I can't tell if that >would apply in your case.

Re: servlet.jar and 3.3

2002-02-07 Thread Mario Felarca
At 03:45 PM 02/07/2002 -0500, you wrote: >Mario, > > I had sort of the same problem yesterday. Make sure your CLASSPATH > is set correctly. > >For linux I put the CLASSPATH in /etc/profile and exported it and > everything "lit" up. >I am not sure about windows??? I thought for Tomc

servlet.jar and 3.3

2002-02-07 Thread Mario Felarca
Hello, I had a quick question. We are migrating to Tomcat 3.3a and for some reason my servlets can't seem to see the servlet.jar, even though it is in the lib/common directory. I am sure it is probably just a small configuration error on my part, but from the Tomcat Users Guide, it appears to

Help tracking down a problem please.

2002-02-04 Thread Mario Felarca
Hello, I am using Apache 1.3.22+mod_jk+mod_ssl(2.8.5 I believe)+Tomcat 3.3a on Win2K. Currently, we have a context that has all data (i.e. images, scripts, applets) served up through Tomcat. The request comes in via HTTPS and on particularly heavy pages, for example ones that have a lot of ima

RE: Sessions Timeout

2002-01-30 Thread Mario Felarca
At 09:40 AM 01/29/2002 +, you wrote: > > Is there a way to configure > > Tomcat to check the expire time against last access time and not > > creation time? > >Sessions *are* invalidated when the timeout period has passed without >access. *Not* when the timeout period has passed from creation

Re: JBUilder and connectionn pool

2002-01-21 Thread Mario Felarca
At 02:00 PM 01/21/2002 -0300, you wrote: >The big problem is to continue to debug apps directly inside JBuilder 5, as >it uses a server8080.xml for each debugging (and recreates it each time, so >you can't add a Context path in server8080.xml), and sets the contexts >paths directly in it. And I h

Re: Tomcat without apache

2002-01-17 Thread Mario Felarca
At 11:17 AM 01/17/2002 -0800, you wrote: >Is there some way to use alias in tomcat without apache? You could create a context with a path the same as your alias, and point the docbase to the correct location. Hope that helps, Mario- _

Quick classpath clarification

2002-01-14 Thread Mario Felarca
I just wanted to clarify my understanding with the list. Say I have Tomcat 3.2.4 running as a service, and on its classpath, there is a jar called test.jar. My understanding is that if a webapp has its own version of test.jar in its web-inf/lib directory, that will NOT take priority over the o

RE: Sessions across contexts, is it possible?

2002-01-11 Thread Mario Felarca
At 04:21 PM 01/11/2002 -0600, you wrote: If you have your context's set to crossContext="true", you can receive the request in one context, set a request attribute with the value (setAttribute("otherContextPath", getServletContext().getRealPath("")), and then forward the request to the other c

Uninstalling Tomcat as a service

2002-01-09 Thread Mario Felarca
Hello, I am using JavaService to run Tomcat 3.2.3 as a service on a Win2k machine. Sometimes, when I do an uninstall of the service, Tomcat does not fully uninstall. From the service control manager, it is listed as "Disabled", and you cannot do anything with it because Windows will come bac

RE: Odd Apache+Tomcat errors

2002-01-07 Thread Mario Felarca
At 03:26 PM 01/07/2002 -0600, you wrote: >are you logging at debug level? >what does it show when you do? > >SSLLog logs/SSL.log >SSLLogLevel debug > >in your httpd.conf (in case you are not familiar) >B We were logging at info level. I will try this. Should I be on the look-out for anything in

RE: Odd Apache+Tomcat errors

2002-01-07 Thread Mario Felarca
At 04:34 PM 01/07/2002 -0500, you wrote: >I had the same lock-up problem for the myapp sample webapp when Apache, >Tomcat, and IE5.0 where all running on the same win2000Pro box. > >I got the myapp sample webapp to work (serve images) though in both of the >following two situations: > >1. runnin

RE: Odd Apache+Tomcat errors

2002-01-07 Thread Mario Felarca
gy. Hrmm. Thanks for the info. Are there any known configurations that causes this to be a less frequent occurrence? Does anyone have experience with these types of problems and 1.3.20 and 3.2.3? Thanks in advance, Mario- >-Original Message- >From: Mario Felarca [mailto:[EMAIL PR

Odd Apache+Tomcat errors

2002-01-07 Thread Mario Felarca
Hello, I have a problem and I was wondering if anyone could give me some ideas or information about a possible solution. I am running Apache 1.3.20, Tomcat 3.2.3 and using mod_jk on Win2k. We are accessing our servlets through https, and every once in a while (i.e. not all the time, but often