RE: [corba] ORB initializing in Servlet

2002-11-27 Thread Eoin Woods
Here's a working example of a servlet initialising the ORB as it loads: public void init(ServletConfig cfg) throws ServletException { try { String[] orbArgs = {-ORBInitialHost, localhost,

Re: How to I build Tomcat with SSL?

2001-08-13 Thread Eoin Woods
Date: Mon, 13 Aug 2001 09:04:50 -0400 From: Peter Markowsky [EMAIL PROTECTED] Subject: How to I build Tomcat with SSL? I've looked at the documentation, downloaded the classes and xerces 1.4.1. But am now faced with the actual how do I rebuild Tomcat. I'm very new at this. I've just had to

RE: Setting JVM Memory configuration

2001-07-30 Thread Eoin Woods
Firstly, running out of memory after a predictable period of running (rather than because of peak loading) suggests a memory leak. These are possible in Java if you hold onto object references accidentally once you're done with them (or libraries you call do so). If this is the case, adding

RE: tomcat4b6 classpath for poolman.xml

2001-07-27 Thread Eoin Woods
Not tried it with Tomcat 4.0, but with 3.x placing it in $TOMCAT_HOME/classes works fine. Eoin. -Original Message- From: Matt Barre [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 8:35 AM To: [EMAIL PROTECTED] Subject: Re: tomcat4b6 classpath for poolman.xml I guess it might

RE: JDBC in TOMCAT - LINUX - ORACLE 8.0.5

2001-07-17 Thread Eoin Woods
[EMAIL PROTECTED] wrote: I have a Tomcat at a Linux and a Oracle 8.05. What the JDBC driver that i must install ? You need Oracle's JDBC driver. And where i can learn about it ? The manual about it is at: http://technet.oracle.com/docs/products/oracle8i/doc_library/817_doc/java.81

RE: When to start a new JVM?

2001-07-16 Thread Eoin Woods
I mean, when do you know that current jvm is fully used and that you should start a new one and balance the load on two? Interesting question. Generally, I'd suggest that you do a load test. You increase the load against the Tomcat instance until the CPU that Tomcat is using isn't

RE: Error when starting Tomcat

2001-07-12 Thread Eoin Woods
This looks like the dynamic linker can't find libdl.so.1 when it tries to load mod_jk.so - which is really strange because libdl.so.1 is a really fundamental library and is in /usr/lib. Are you running this on the same version of Solaris it was built on? Try running ldd(1m) on mod_jk.so and see

RE: I need help in tomcat configuration with Oracle 8.1.7

2001-07-03 Thread Eoin Woods
Firstly ... post in text, not HTML! What sort of errors are you getting from Tomcat? Have you checked your JDBC URL using Oracle's CheckJDBC class? Eoin. -Original Message- From: Internet Total Solutions LLC - Customer Liaisons Department - [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: PoolMan woes

2001-07-03 Thread Eoin Woods
We're using PoolMan 2.0.x with Tomcat 3.2.x without too many problems. PoolMan does respond rather violently when it can't find its configuration file - which is poolman.xml in version 2. I put this in $TOMCAT_HOME/classes and it appears to be found OK. If PoolMan doesn't find its

RE: PoolMan woes

2001-07-03 Thread Eoin Woods
() and getDataSource() are found. Cheers, Eoin. -Original Message- From: Matt Barre [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 1:47 PM To: Eoin Woods; [EMAIL PROTECTED] Subject: Re: PoolMan woes Thanks for the tip. By taking the two suggestions I now have Tomcat somewhat stabilized. I am

RE: So what *IS* available? Formerly Tomcat SUCKS

2001-06-27 Thread Eoin Woods
For a list of servlet containers see: http://java.sun.com/products/servlet/industry.html Lots to choose from ! Eoin. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 5:46 AM To: [EMAIL PROTECTED] Subject: So what *IS*

RE: Finding the XML parser in Tomcat

2001-06-18 Thread Eoin Woods
I think this has come up before. Tomcat has an XML parser built in (it reads XML files for configuration). To use Xerces in our servlets, we had to add xerces.jar to the front of the CLASSPATH in the tomcat.sh script. Eoin. -Original Message- From: Frank Lawlor [mailto:[EMAIL