error when tomcat4 starts

2001-12-22 Thread Peter Georgiou
HI I'm running Tomcat 4 on Win2k and get the following error when I try to start Tomcat. Tomcat has always worked fine for me, so I don't know why this error has suddenly appeared. Any help please. Here is the error: Starting service Tomcat-Standalone Apache Tomcat/4.0 ERROR reading

Cookies in tomcat-3.2.3

2001-12-22 Thread Zsolt Koppany
Hi, does tomcat-3.2.3 use cookies to administrate sessions? Can I use sessions if the browser does not allow cookies? What's about tomcat-4.x? Zsolt -- Zsolt Koppany -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

Re: JNDI resource for connection pooling

2001-12-22 Thread Amine AMAR
Hi, Sorry for my late answer, I was out of the office. The workarround is writing a class that registers the connection pool in the initial context: Context ic = new InitialContext(); OracleConnectionPoolDataSource cpds = new OracleConnectionPoolDataSource(); ic.rebind(toto, cpds); then

Re: JNDI resource for connection pooling

2001-12-22 Thread Amine AMAR
Hi, Sorry for my late answer, I was out of the office. The workarround is writing a class that registers the connection pool in the initial context: Context ic = new InitialContext(); OracleConnectionPoolDataSource cpds = new OracleConnectionPoolDataSource(); ic.rebind(toto, cpds); then

linux + tomcat 3 memory leaks ?

2001-12-22 Thread Dom
I've installed Tomcat 3.3 in my linux box After a fresh boot, tomcat launched and NO web application running, I can see that the tomcat user memory is growing regulary by watching Top. Why ? Mandake Linux 7.2 with 2.4.16 kernel (not 2.2.16) Apache 1.3.19 Tomcat 3.3 IBMJava2-13 Dom -- To

Unable to compile class for JSP

2001-12-22 Thread Softwareentwicklung Hauschel
Hey all, does anybody know this Problem ? Unable to compile class for JSP C:\WebApplikations\Tomcat4.0\work\localhost\xmlprofile\pub\ueberweisung$jsp. java:61: Incompatible type for method. Explicit cast needed to convert java.lang.Throwable to java.lang.Exception. if (pageContext !=

Re: What does it mean - Name on certificate does not match name of the site

2001-12-22 Thread Pae Choi
Richard - Seems like you've been barking at the wrong tree if you've been playing with the Company Org Unit field. Look my previous message what field you need to play with. /Pae Greetings! Thanks for the replies so far. Unfortunately, I haven't got it to work yet. I'm putting various

Re: HTTP error 503.

2001-12-22 Thread Caroline Clewlow
That's great thanks. I knew it wasn't the server.jar that was causing the problem as I'd already moved any conflicting copies, but I didn't think to remove the j2ee.jar from my ext dir. That''s fixed it. Thanks to all for your help Caroline 12/21/01 5:33:22 PM, Craig R. McClanahan [EMAIL

jsp:include

2001-12-22 Thread Ray Madigan
If anyone can shed some light on this i waould appreciate it, thanks in advance. I am building a system where i compute the name of the page. When i do this the page attribute in the jsp:include directive doen't get evaluated. It is really simple and looks like: . % String destination =

Re: What does it mean - \Name on certificate does not match name of the site\

2001-12-22 Thread Richard S. Huntrods
Pae wrote: It usually means that the name, e.g., Common Name, in your certificate and the name of your server, e.g., http server, where the certificate originated from don't match. How did you created the certificate? Ex, openssl? Pae Pae, Thank you for your assistance so far. I'm using the

Re: What does it mean - \Name on certificate does not match name of the site\

2001-12-22 Thread Pae Choi
The CN in the distinguished name is standing for Common Name. Pae - Original Message - From: Richard S. Huntrods [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, December 22, 2001 8:21 AM Subject: Re: What does it mean - \Name on certificate does not match

A problem with manager and Valves...

2001-12-22 Thread Richard S. Huntrods
Greetings! I have the manager servlets working quite fine - even have the HTTP version running. I added the user to tomcat-users.xml, edited server.xml to enable the manager (it was commented out), and even edited the manager/WEB-INF/web.xml to change it to HTMLManagerServlet. However, if I add

Need Binary web-app Module for RedHat 7.1

2001-12-22 Thread Cynthia Jeness
When I tried to install the webapp-module in order to connect tomcat to Apache, I got the warning that the module might crash and that I needed to recompile with DEAPI. So I got the source code for the weapp-module as a tar.gz file from the Apache site. The README file indicated that the source

Re: Jakarta-Tomcat 4.01 startup problem

2001-12-22 Thread John Clayton
Kenneth, forgive my ignorance here, I'm new to using Tomcat on Linux. you say use service, what is that? the rpm installed only bootstrap.jar in my tomcat4/bin directory, not the usual .sh files. Anybody? Thanks, John -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

Re: Jakarta-Tomcat 4.01 startup problem

2001-12-22 Thread John Clayton
OK - I figured out service. I got tomcat to start, at least service says it's started. But ... requesting localhost:8080 gets a connection failure. Anyone come across this? I am using RedHat 7.2 for this. Thanks, John On Saturday, December 22, 2001, at 06:51 PM, John Clayton wrote:

Tomcat with apache for virtual hosting

2001-12-22 Thread rakesh
Hi I have recently installed the tomcat 4.0.1 with apache but i am facing the problem while using the virtual hosting with tomcat can any one help me that how can i host multiple sites on tomcat Thanks Rakesh

Re:

2001-12-22 Thread Ladjicke Diouf
Hi Unix gurus, I'm trying to install tomcat but I'm having a very simple problem. I can seem to be able to set the environment variable JAVA_HOME. I used set end setenv but it doesn't do it for me. Am I going crazy? From: rakesh [EMAIL PROTECTED] Reply-To: Rakesh Narang [EMAIL PROTECTED] To:

Re:

2001-12-22 Thread rakesh
How r u defining the JAVA_HOME path u can use JAVA_HOME=your java path and then export JAVA_HOME thanks Rakesh - Original Message - From: Ladjicke Diouf [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, December 23, 2001 6:01 AM Subject: Re: Hi Unix gurus,

Re: Tomcat with apache for virtual hosting

2001-12-22 Thread John Clayton
Hi Rakesh, From what I understand, you simply specify your context directives inside your VirtualHost tags as you would if you were running apache normally. See http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/context.html John On Saturday, December 22, 2001, at 07:30 PM, rakesh

Re:

2001-12-22 Thread Cynthia Jeness
What shell? For Bash and Korn shell: JAVA_HOME=/usr/java/jdk1.3.1 (for example) export JAVA_HOME The C shell uses setenv; e.g., setenv JAVA_HOME /usr/java/jdk1.3.1 Windows and OS/2 use SET. Cynthia Jeness Ladjicke Diouf wrote: Hi Unix gurus, I'm trying to install tomcat but I'm having

Re:

2001-12-22 Thread Ladjicke Diouf
Cynthia, I think I have C shell I've just used # setenv JAVA_HOME /usr/java/jdk1.3.1 # setenv JAVA_HOME=/usr/java/jdk1.3.1 # set JAVA_HOME /usr/java/jdk1.3.1 # set JAVA_HOME=/usr/java/jdk1.3.1 It seems to take it but it's not showing up in the variables. Rakesh may be I should use export.

Re: Tomcat with apache for virtual hosting

2001-12-22 Thread rakesh
Hi John The context will be the same as we use in tomcat 3.2.3 but how we will tell apache to forward .jsp and servlet request to tomcat as we use to do JkMount /* ajp 12 in 3.2.3 How can disbale servelt caching in tomcat 3.2.3 becasue when ever i am making any changes in any class fine so its

Re: Tomcat with apache for virtual hosting

2001-12-22 Thread John Clayton
Hi Rakesh, I haven't yet installed TC4, but I think i remember seeing some documentation on how to set up the contexts. Just can't remember where. It's similar, but not identical. Sorry I can't help more, John On Saturday, December 22, 2001, at 08:23 PM, rakesh wrote: Hi John The

Re: Jakarta-Tomcat 4.01 startup problem

2001-12-22 Thread Cynthia Jeness
John, It appears to me that Tomcat4 listens on port 8180 and not port 8080. This is what I see through lsof and I can connect to locahost:8180. Cynthia Jeness John Clayton wrote: OK - I figured out service. I got tomcat to start, at least service says it's started. But ... requesting

Taglib

2001-12-22 Thread Law Kim Soon
Hi all, How can i create a taglib that all me to put the below code to my jsp file-for example. %@ taglib uri=/E--BookMalltaglib prefix=E-BookMall % As far as i've know,it needs a jar file. Thank you! Cheers, andy