SV: Can´t access Tomcat from outside router, help !

2003-01-13 Thread Daniel.T.Hellstrand
I have registered a dynamic dns (like test.mine.nu), but this is not of value in this case since I use the ip to when testing. The router is a D-link 804, which I have configured with open ports on 22, 80 and 8080. And I have also enabled port-forwarding on these port to the proper computer on

HTTPS access with Tomcat 4.1.18

2003-01-13 Thread KUMAR,PANKAJ (HP-Cupertino,ex1)
Hi, I am having problem with HTTPS setup of Tomcat 4.1.18. I am using Sun's J2SDK 1.4.1_01 on a Windows 2000 machine. I have uncommented the SSL connector in server.xml and have set attributes keystoreFile and keystorePass appropriately. I can even access a resource with HTTPS url using wget

Re: SV: Can´t access Tomcat from outside router, help !

2003-01-13 Thread David Durst
I have registered a dynamic dns (like test.mine.nu), but this is not of value in this case since I use the ip to when testing. The router is a D-link 804, which I have configured with open ports on 22, 80 and 8080. And I have also enabled port-forwarding on these port to the proper computer

RE: request for extra information

2003-01-13 Thread Ralph Einfeldt
I'm on the user list from the very beginning. I never ever heard of anything like tomcat 1.1.1. AFAIK the first available tomcat version was 3.0. -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 11, 2003 5:24 AM To: [EMAIL PROTECTED] Subject:

DBCP seems slow

2003-01-13 Thread David Durst
I recently got DBCP working, it took forever sigh. I went back through all my Factories to make sure all the connections were being closed. BUT now my web app seems REAY slow, like way slower than what it was when only opening and closing a single connection. Should this be expected or

Can Tomcat 4.1.18 and JBoss 2.4.3 be integrated ?

2003-01-13 Thread Ronen Shenkar
We are trying to activate Tomcat 4.1.18 from JBoss 2.4.3 using JDK 1.4.1. We have managed to run Tomcat 4.1.18 in a standalone mode, and we have managed to activate Tomcat 3.2.3 from JBoss. However, when we try to activate Tomcat 4.1.18 from JBoss, we get the exception below. It appears that

default DataSource for mySQL?

2003-01-13 Thread Petter Karlström
Hi all, I'm accessing a mySQL database via JSTL: %@ taglib prefix=c uri=http://java.sun.com/jstl/core; % %@ taglib prefix=sql uri=http://java.sun.com/jstl/sql; % sql:setDataSource var=example scope=application driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost/testDB user=

Re: Can Tomcat 4.1.18 and JBoss 2.4.3 be integrated ?

2003-01-13 Thread David Durst
We are trying to activate Tomcat 4.1.18 from JBoss 2.4.3 using JDK 1.4.1. We have managed to run Tomcat 4.1.18 in a standalone mode, and we have managed to activate Tomcat 3.2.3 from JBoss. However, when we try to activate Tomcat 4.1.18 from JBoss, we get the exception below. It appears that

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
The name is not defined correctly in that context. What kind of a resource is it ? David Durst wrote: Does anyone know what this is caused by? I have admin/larco defined as a resource in server.xml and I am using the resource under admin. Why is this causing a problem -- To

Re: WebDav Problems

2003-01-13 Thread Olaf Jahn
Zsolt Koppany [EMAIL PROTECTED] hat geschrieben: Hi, I use tomcat-4.1.18 and have the following problems with webdav. The Windows Client (webdav folder) does not show the modification dates of the files neither over the list nor for properties [...] How can I get the date listed? In our

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
The name is not defined correctly in that context. What kind of a resource is it ? Context path=/admin docBase=sfadmin debug=1 Resource name=jdbc/larco auth=Container type=javax.sql.DataSource/ ResourceParams name=jdbc/larco

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
The server.xml looks right . What about the web.xml in your webapp ? How does it look like ? David Durst wrote: The name is not defined correctly in that context. What kind of a resource is it ? Context path=/admin docBase=sfadmin debug=1 Resource name=jdbc/larco

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
The server.xml looks right . What about the web.xml in your webapp ? How does it look like ? The strange thing is, I don't have it defined in the web.xml. That is because as soon as I do it I got a jdbc connection 'null' can't be loaded or something like that. But I had it working w/ out it

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
Sure it won't work. Check out the res-ref-name. Here you claim it is admin/larco , but in server.xml you tell tomcat it is jdbc/larco. So if you do a lookup for jdbc/larco or admin/larco the name is not bound to the context. admin/larco should be jdbc/larco. Make the changes and see if it

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
Sure it won't work. Check out the res-ref-name. Here you claim it is admin/larco , but in server.xml you tell tomcat it is jdbc/larco. So if you do a lookup for jdbc/larco or admin/larco the name is not bound to the context. admin/larco should be jdbc/larco. Make the changes and see if it

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
Sounds like you don't have the appropiate driver loaded or you have incorrectly specified your pgsql driver in server.xml. Double check the values. I make that mistake alot. David Durst wrote: Sure it won't work. Check out the res-ref-name. Here you claim it is admin/larco , but in server.xml

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
Sounds like you don't have the appropiate driver loaded or you have incorrectly specified your pgsql driver in server.xml. Double check the values. I make that mistake alot. I have gotten that answer like 10 times now :( I have the correct driver specified :) I must have because I had this all

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
David Durst wrote: Sounds like you don't have the appropiate driver loaded or you have incorrectly specified your pgsql driver in server.xml. Double check the values. I make that mistake alot. I have gotten that answer like 10 times now :( I have the correct driver specified :) I must have

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
David Durst wrote: Sounds like you don't have the appropiate driver loaded or you have incorrectly specified your pgsql driver in server.xml. Double check the values. I make that mistake alot. I have gotten that answer like 10 times now :( I have the correct driver specified :) I must have

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
I've used DBCP on 4.1.12 and 4.0.X David Durst wrote: David Durst wrote: Sounds like you don't have the appropiate driver loaded or you have incorrectly specified your pgsql driver in server.xml. Double check the values. I make that mistake alot. I have gotten that answer like 10 times now

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
I've used DBCP on 4.1.12 and 4.0.X well, its now working. Strangely enough haveing the driver in WEB-INF/lib causes a problem, somone should document that on the page (Specifically telling people where to put the jar) Thanks for the help -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

Re: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread David Durst
I've used DBCP on 4.1.12 and 4.0.X BTW how do you verify that the connections are being pooled -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: javax.naming.NameNotFoundException: Name admin is not bound in this Context

2003-01-13 Thread Roberts, Eric
David, We use DBCP on a mission critical 24 x 7 application - and we have no issues with it. We started with Tomcat 4.1.12 and are about to go to 4.1.18 - already in development and working fine. When we did our initial investigations, we were able to use DBCP at all the levels possible in

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
David Durst wrote: I've used DBCP on 4.1.12 and 4.0.X well, its now working. Strangely enough haveing the driver in WEB-INF/lib causes a problem, somone should document that on the page (Specifically telling people where to put the jar) Strangely enough they did. If you have some time and go

Re: javax.naming.NameNotFoundException: Name admin is not bound inthis Context

2003-01-13 Thread Peng Tuck Kwok
print out the connection object. See what it says. For example in this code fragment : datafinder = new JNDIFinder(java:comp/env/jdbc/AthenaDB) ; ds = datafinder.ReturnDataSource() ; if(ds!=null){ Connection conn = ds.getConnection() ; System.out.println(conn.toString()) ; Should result

j_security_check invalid direct reference problem

2003-01-13 Thread Willie Vu
Dear Tomcat User, If a user bookmarks and accesses the login page directly, Tomcat will display Invalid Direct Reference error because it doesn't know what page to redirect a client after login. If you are using form-based authentication, you probably run into this Invalid Direct Reference

JSP not working with Tomcat + Eclipse

2003-01-13 Thread C F
Tomcat 4.1.9 Eclipse M4 build Has anyone gotten later builds of Tomcat + Eclipse working with JSP? I'm using the tomcat and jsp plugins from http://www.sysdeo.com/eclipse/tomcatPlugin.html. It looks like from the doc that the latest supported version of Tomcat is 4.1.2 but I was hoping it

Tomcat Won't start on NT

2003-01-13 Thread Raj
Hi, I installed Tomcat 4.1.17 on Win NT 4. Installation went through fine without any problems. Previously, I have installed JDK 1.3.0. When I started installing, it said Using JDK found in c:\jdk1.3. Then, when I click on StartProgram FilesApache GroupStart Tomcat, nothing happens. The console

RE: Tomcat Won't start on NT

2003-01-13 Thread Reynir Hübner
There are many things that may be wrong. Try opening a command console, browse to the tomcat/bin directory and type in the following to start up tomcat : C:\ tomcat\bin\catalina run It will then try to start it self on the console and you should be able to see the error messages as the error

Tomcat 4.1.18 can't start

2003-01-13 Thread Pierre Yves Monnet
Hello, Here my problem : I install on a W2000 professional a J2re1.4.1, then a Tomcat 4.1.18-LE-JDK14 Tomcat don't want to start correctly. After a start, I receive on the URL the following error via a web browser : ETAT HTTP 500 Message : Description : the server meet an internal error

RE: Tomcat Won't start on NT

2003-01-13 Thread Triptpal Singh Lamba
Raj do a ctrl alt delete and tell us if tomcat the process is running or not. It is possible that you chose run as a system process while installing on NT. To do a double check run it as you are and then check http://localhost:portno/ If u see the page - it means tomcat is running as a

Wolfe Linux. Tomcat and apache.

2003-01-13 Thread Triptpal Singh Lamba
Hi all, I have been using Tomcat 4.1 ..on win XP and its been working fine. My dev environment has been eclipse. Now I need to install it for staging on a server which has multiple problems. I plan to get apache-tomcat working together as a first subgoal. Is it possible to install tomcat on a diff

Re: Basic questions

2003-01-13 Thread Rasputin
* [EMAIL PROTECTED] [EMAIL PROTECTED] [0115 21:15]: # run the following script #!/bin/sh JAVA_HOME=/usr/java TOMCAT_HOME=/usr/local/tomcat su - myuser -c ${TOMCAT_HOME}/bin/startup.sh This is pretty much what I do, only I find it's generally better not to set a CLASSPATH - tomcat

Re: Tomcat Won't start on NT

2003-01-13 Thread Raj
In Control PanelServices, Tomcat is Started. In the processes list, I can see Tomcat.exe, but it is not running because I can't view localhost:8080. I even tried reading the startup.bat file and figured out that it calls CATALINA.bat with a start option. So, I typed catalina start, but didn't

RE: Tomcat Won't start on NT

2003-01-13 Thread Reynir Hübner
Catalina run (not catalina start). Read the catalina log (from your tomcat\logs\ directory). Often it's because you have an error in one of the configuration XML files or because there is something else running on the port you are trying to start tomcat on. Hope it helps -reynir

Re: Tomcat Won't start on NT

2003-01-13 Thread Raj
Hello Reynir, This is what I get. What could be wrong? C:\Program Files\Apache Group\Tomcat 4.1\bincatalina run Using CATALINA_BASE: .. Using CATALINA_HOME: .. Using CATALINA_TMPDIR: ..\temp Using JAVA_HOME: c:\jdk1.3 Exception during startup processing

Re: Tomcat Won't start on NT

2003-01-13 Thread Stefán Freyr Stefánsson
I imagine that you have a problem with an XML parser definition. If you have JDK 1.4.x installed you might try to run tomcat using that JDK since it has a built in XML implementation. Regards, Stefan. On Monday 13 January 2003 12:03, Raj wrote: Hello Reynir, This is what I get. What could

Re: Tomcat Won't start on NT

2003-01-13 Thread Raj
But can't I use JDK 1.3? Is it absolutely necessary to use 1.4? - Original Message - From: Stefán Freyr Stefánsson [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, January 13, 2003 5:51 PM Subject: Re: Tomcat Won't start on NT I imagine that you have a problem

RE: Tomcat Won't start on NT

2003-01-13 Thread Reynir Hübner
I suspect the same as stefán. No you can use 1.4. bu then you have to download the correct full version of tomcat (not the LE dist). http://apache.rhnet.is/dist/jakarta/tomcat-4/binaries/ Hope it helps -reynir -Original Message- From: Raj [mailto:[EMAIL PROTECTED]] Sent: 13.

Re: Tomcat Won't start on NT

2003-01-13 Thread Raj
You mean I can still use JDK 1.3? - Original Message - From: Reynir Hübner [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, January 13, 2003 6:04 PM Subject: RE: Tomcat Won't start on NT I suspect the same as stefán. No you can use 1.4. bu then you have to

RE: Tomcat Won't start on NT

2003-01-13 Thread Reynir Hübner
Yeah... -Original Message- From: Raj [mailto:[EMAIL PROTECTED]] Sent: 13. janúar 2003 12:41 To: Tomcat Users List Subject: Re: Tomcat Won't start on NT You mean I can still use JDK 1.3? - Original Message - From: Reynir Hübner [EMAIL PROTECTED] To: Tomcat Users

RE: mod_jk error 404 with Apache 1.3.27, Tomcat 4.1.18

2003-01-13 Thread Turner, John
The error message in this case is correct, as was the previous post. The correct lines would be: JkMount /*.jsp ajp13 JkMount /examples/* ajp13 Note the leading / in the first line that was missing previously. Also, in the original post, the error message specifically said done without a

Start tomcat before apache on RedHat7.3

2003-01-13 Thread Arcadius A.
Hello! I've successfully installed tomcat+apache+mod_jk. Everything work fine...except : At boot time, apache starts before tomcat so after the system boots, I still need to restart apache before I can access the jsp pages Note that I have placed startup scripts for both apache and tomcat in

tomcat manager question

2003-01-13 Thread Geoff Peters
I recently upgraded from 4.0.2 to 4.1.18 on a development box running Windows 2K server. I am in the process of migrating some applications to this version of Tomcat, also to jdsk 1.4.1_01. Got everything up and running with one small problem related to the manager interface. I have the

RE: Win2K, Apache 2.0.43 and Tomcat 4.1.18

2003-01-13 Thread Turner, John
I don't use JK2, but I have this URL bookmarked: http://www.geovelocity.com/index_apache-tomcat-arcims.html I have no idea what ArcIMS is, but from previous posts on this list, that HOWTO is a known good configuration. If you can read past the ArcIMS stuff, it might help. As an aside, is

Re: Tomcat Won't start on NT

2003-01-13 Thread Stefán Freyr Stefánsson
I think you can still use JDK 1.3 but I'd reccommend using 1.4. How you get this to work on JDK 1.3, I'm not sure... you can start by trying to get an XML parser implementation (like Xerces) and either put that somewhere in your classpath or (better yet since I hate the global classpath) put

RE: Start tomcat before apache on RedHat7.3

2003-01-13 Thread Turner, John
I'm assuming that you are using the ApacheConfig class to auto-generate configuration directives for Apache's httpd.conf. Tomcat needs time to start up, and the ApacheConfig class needs time to write mod_jk.conf (or whatever file you are using). So, you have to put a delay into the process

Precompiling JSP

2003-01-13 Thread Hari Venkatesan
Is there any definitive advantage of precompiling JSPs' when tomcat server starts UP. Does this have any effect on performance? Hari

RE: Precompiling JSP

2003-01-13 Thread Reynir Hübner
Hi, In my understanding it really only affects performance. The first request on a jsp always takes longer to execute because at that time it must precompile the jsp. If you run a precompiler (such as jspc) on the jsp pages before you start up the server (or at startup) you will shorten the

Re: Start tomcat before apache on RedHat7.3

2003-01-13 Thread Arcadius A.
Turner, John [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm assuming that you are using the ApacheConfig class to auto-generate configuration directives for Apache's httpd.conf. Tomcat needs time to start up, and the ApacheConfig class needs time to

RE: Can´t access Tomcat from outside router, help !

2003-01-13 Thread Turner, John
If you port scan your public IP address from a computer known to be external to that IP address, and you don't see port 8080, then my guess (99%) is that your ISP is blocking ports on the router upstream from yours. That is, it doesn't matter what port you open on your router, traffic will never

Re: 4.1.18 installation problems

2003-01-13 Thread Nathan McMinn
I forgot to mention that this error occurs while trying to access any jsp page within the application Hi all, After installing tomcat 4.1.18 on windows 2000, I get the following exception trying to access my web application. This app worked fine with 4.0.6. I have also included my web.xml

Re: Win2K, Apache 2.0.43 and Tomcat 4.1.18

2003-01-13 Thread Robert Riley
I think the stock server.xml comes preconfigured for stand alone and the tomcat-apache is commented out. I don't run stand alone; Here is what mine looks like for out of process communication with Apache: Server port=8005 shutdown=SHUTDOWN debug=4 Service name=Tomcat-Apache-dev Connector

How do I unsubscribe?

2003-01-13 Thread Krishna_R . _Nagaraj
How do I unsubscribe from the forum? I did try to 2 times by sending an email to un-subscribe address. But no luck. Thanks Krishna Nagaraj

Tomcat 4.1.18 + Apache 1.3.22 (mod_jk): SEVERE: Error in action code

2003-01-13 Thread Marco Bucciarelli
I am working on RedHat Linux 7.0, Sun JDK 1.4.1_01, Apache 1.3.22 and Tomcat 4.1.18 connected together using mod_jk (Thanks to John Turner's howtos). I did not compile the jk module, but I got an RPM of the 1.2.2 version. Everything seems to work fine, but if I see at catalina.out I get this

RE: Precompiling JSP

2003-01-13 Thread Hari Venkatesan
Thanks Reynir, This was exactly I was looking for. Our Jsp's are loading very slow. We are using JDBC connection to DB2/400 and our initial database has only about 10 records. It takes about 7 - 10 seconds for our JSP's to load. Hari -Original Message- From: Reynir Hübner

RE: Start tomcat before apache on RedHat7.3

2003-01-13 Thread Turner, John
Nope, where startup (and shutdown) scripts are located has no bearing whatsoever on when they are started. Where != when. The init directories are known as rcN.d, where N = a number. That number defines runlevel, not startup order. A UNIX/Linux machine has different runlevels. Single user,

RE: Class clash error with log4j?

2003-01-13 Thread Shapira, Yoav
Howdy, Try having a hard copy of the commons jars, not a symlink... Yoav Shapira Millennium ChemInformatics -Original Message- From: Holger Wiechert [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 12, 2003 10:04 AM To: Tomcat-user Subject: Class clash error with log4j? I've got a

RE: Win2K, Apache 2.0.43 and Tomcat 4.1.18

2003-01-13 Thread Turner, John
AFAIK, the default install has a connector on port 8009 enabled for JK and JK2. John -Original Message- From: Robert Riley [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 8:45 AM To: [EMAIL PROTECTED] Subject: Re: Win2K, Apache 2.0.43 and Tomcat 4.1.18 I think the

RE: Tomcat 4.1.18 + Apache 1.3.22 (mod_jk): SEVERE: Error in action code

2003-01-13 Thread Denise Mangano
Marco, I noticed the same thing in my catalina.out and posted the question to the list about a week or so ago - same scenario - everything worked perfectly with my webapp, but I always get this error message. I thought the problem was caused by my SSL certificate on Apache not working properly

RE: help - Tomcat/Linux deployment

2003-01-13 Thread Shapira, Yoav
Howdy, I can't help much with DBCP, but I noticed your other thread was hijacked with a how did you get DBCP to work? ... question ;) I did want to comment on something else: Also, immediately after I start Tomcat on Linux I see a lot (26) of java processes running. As I understand, they are

Tomcat with JBOSS

2003-01-13 Thread Konstantinis Evagelos ([EMAIL PROTECTED])
Hi to all, I am new to this list and i need your help, I have the following problem, 1 Case: I have created a project which contains 2 jsp, and some entity beans. I have created a ear file which contains both war, jar files. when the ear is deployed to tomcat which is inside jboss

tomcat 4.1.18 can't start on W2K - java.endorsed.dirs is empty ?

2003-01-13 Thread Pierre Yves Monnet
Hello, Here my problem : I install on a W2000 professional a J2re1.4.1, then a Tomcat 4.1.18-LE-JDK14 Tomcat don't want to start correctly. After a start, I receive on the URL the following error via a web browser : ETAT HTTP 500 Message : Description : the server meet an internal error

RE: Cookies

2003-01-13 Thread Luc Foisy
Paul Yunusov [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Friday 10 January 2003 04:23 pm, Luc Foisy wrote: Is the Cookie defined in the Servlet API permanent by default? It doesnt really say that in the docs. You might be able to assume that

RE: Tomcat 4.1.12 Directory Listing

2003-01-13 Thread Venkateshwar Bommineni
I would like to use default tomcat directory listing functionality in one of my application. Following is the context added to server.xml configuration. Context className=org.apache.catalina.core.StandardContext path=/directory docBase=C:\application\data debug=0

JK2, JkUriSet and virtual hosting

2003-01-13 Thread Q. Werty
Hi, I'am facing a problem with JK2 and virtual hosting. Configuration : Tomcat 4.1.18/Apache 2.0.43/JK2 2.0.2/Windows 2000 SP3. As said in previous messages and in some documentation, it's possible to configure URI mapping with JK2 in Apache httpd.conf file (as with mod_jk). There

Tomcat 4.1.18: Problems redirecting the page

2003-01-13 Thread Neginder Singh
Dear All I am using the Tomcat Version 4.1.18. I am trying to run and application which was running fine on Tomcat3.2.1 Version. The aaplication is installed under tomcat as follows: C:/tomcat4.1.18/webapps/app1: This application uses another application uses app2 (also under

Starting an .exe though out of a servlet

2003-01-13 Thread Patrick Kosiol
Hi, I'm runnung TomCat 4.0.4 and I want to start an external .exe-File. My Code: String[] runString = {relativeDataPath + data.exe, parameter0, parameter1, parameter2, parameter3}; Process p = Runtime.getRuntime().exec(runString); System.out.println(runString);

RE: Starting an .exe though out of a servlet

2003-01-13 Thread Ricardo_Bosch
try using an absolute path. Also not that there is an output and error stream which you are not aquireing that may have more detailed information. -rickb -Original Message- From: Patrick Kosiol [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 10:58 AM To: Tomcat Users List

RE: help - Tomcat/Linux deployment

2003-01-13 Thread Igor I. Tovstopyat-Nelip
Yoav, thanks a lot for your response. Let me describe my situation more clear as I see it now. It's definitely not DBCP, DBCP works fine. This morning again the server was running but it couldn't serve my request. This time I copied the exception which I will paste later. The number of threads

Reloading an application non-interactively

2003-01-13 Thread Mary Loos Sage
All, I would like to reload an application non-interactively. I do not want to use Ant to do this because it will not be installed on my target system. Instead I'd rather use a URL. That is, I would like to be able to enter the username and password as parameters to the URL, not in the login

Re:Reloading an application non-interactively

2003-01-13 Thread Q. Werty
Try this : http://admin:password@localhost/manager/reload?path=/myapp Be aware : username and password can be catched on the wire and in log files ... All, I would like to reload an application non- interactively. I do not want to use Ant to do this because it will not be installed

Re: Cannot load JDBC driver class 'null'

2003-01-13 Thread Daren R. Sefcik
I am using Apache 1.3.19 and here are the lines I added to the httpd.conf file: IfModule !mod_jk.c LoadModule jk_module libexec/mod_jk.so /IfModule AddModule mod_jk.c #Tomcat jk connector IfModule mod_jk.c JkWorkersFile /usr/local/tomcat/conf/jk/workers.properties JkLogFile

Re: Reloading an application non-interactively

2003-01-13 Thread Holger Klawitter
Am Montag, 13. Januar 2003 17:20 schrieb Mary Loos Sage: All, I would like to reload an application non-interactively. I do not want to use Ant to do this because it will not be installed on my target system. Instead I'd rather use a URL. That is, I would like to be able to enter the

RE: Cookies

2003-01-13 Thread Luc Foisy
Paul Yunusov [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Friday 10 January 2003 04:23 pm, Luc Foisy wrote: Is the Cookie defined in the Servlet API permanent by default? It doesnt really say that in the docs. You might be able to assume

Re: How do I unsubscribe?

2003-01-13 Thread Vladimer Shioshvili
send an email to [EMAIL PROTECTED] At 08:38 AM 1/13/2003, you wrote: How do I unsubscribe from the forum? I did try to 2 times by sending an email to un-subscribe address. But no luck. Thanks Krishna Nagaraj Vladimer Shioshvili QRC Division of Macro International Inc.

IE 6.0 and Missing Request Param. [CODE LISTING]

2003-01-13 Thread Carl Walker
I don't know if this will help anyone. I was having a problem with a form submission using IE 6. When I posted a form loaded by HTTP to JSP under Apache 1.3/mod_jk/Tomcat 4.1.12 (I tried 4.1.18 too) using HTTPS, IE sent a Content-type of 'application/x-www-form-urlencoded,

FW: HTTPS access with Tomcat 4.1.18

2003-01-13 Thread KUMAR,PANKAJ (HP-Cupertino,ex1)
Just wanted to add something to my earlier post: The Tomcat setup with SSL works on my other machine with IE6.0. The only difference I can see is that the misbehaving machine has autoupdate of security patches from Microsoft on. /Pankaj. -Original Message- From: KUMAR,PANKAJ

RE: Precompiling JSP

2003-01-13 Thread Reynir Hübner
Hi again, Few tips : Use connection pooling, cache data from database if you can, lazyload data from database when that is a good idea etc. Creating connections to DB2 is not the fastest thing around, so I suspect connection pooling may take 2 seconds of that time. Hope it helps -reynir

mod_jk2 - jni linking problems

2003-01-13 Thread Faine, Mark
Solaris 8 Apache 2.0.43 Tomcat 4.0.6 When I attempt to compile mod_jk using ant native the mod_jk.so compiles but at jni section I get the following error: jni: [so] Compiling 0 out of 37 Linking /export/home/temp/appserv/jakarta-tomcat-connectors-4.0.6-src/jk/build/jk2/j ni/libjkjni.so

RE: mod_jk2 - jni linking problems

2003-01-13 Thread Ido Shaked
how do i get off this mail list? the auto unsubscrib doesn't work. PLEASE HELP -Original Message- From: Faine, Mark [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 7:45 PM To: '[EMAIL PROTECTED]' Subject: mod_jk2 - jni linking problems Solaris 8 Apache 2.0.43 Tomcat 4.0.6

RE: JK2, JkUriSet and virtual hosting

2003-01-13 Thread Mladen Turk
Try something like: VirtualHost * ServerName www.srv1.com #... others directives for this host Location /samples JkUriSet uri www.srv1.com JkUriSet worker ajp13:local_1 /Location /VirtualHost Or... Location /samples JkUriSet uri

Re:Reloading an application non-interactively

2003-01-13 Thread Andreas Probst
On 13 Jan 2003 at 17:35, Q. Werty wrote: Try this : http://admin:password@localhost/manager/reload?path=/myapp Be aware : username and password can be catched on the wire and in log files ... It doesn't make a difference, whether the name and password are put into the URL or into the

RE: mod_jk2 - jni linking problems

2003-01-13 Thread Brzezinski, Paul J
Look in the Apache's library directory. 2.0.43 of apache has a new name for the apr library...so that the linker won't find libapr.so...then adjust the makefile accordingly. : -Original Message- : From: Faine, Mark [mailto:[EMAIL PROTECTED]] : Sent: Monday, January 13, 2003 12:45 PM

encodeURL vs redirectEncodeURL

2003-01-13 Thread Erik Price
Just curious -- why are there two different versions of encodeURL? (One is for URLs passed to sendRedirect(), apparently.) The Javadoc doesn't say why. Thanks, Erik -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: mod_jk2 - jni linking problems

2003-01-13 Thread Faine, Mark
Could you elaborate a little. What makefile? I'm talking about building it with ant. Should I not be? Thanks, -Mark -Original Message- From: Brzezinski, Paul J [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 11:56 AM To: Tomcat Users List Subject: RE: mod_jk2 - jni linking

Perl CGI Problem W/Tomcat Help Needed

2003-01-13 Thread Scott Purcell
Hello, I am trying to run some CGI scripts (perl cgi's) on my Tomcat 4.0.3 under Win 2000. I followed the documentation showing: Rename $CATALINA_BASE/server/lib/servlets-cgi.renametojar to $CATALINA_BASE/server/lib/servlets-cgi.jar. and Remove the XML comments from around the CGI servlet and

RE: Precompiling JSP

2003-01-13 Thread Hari Venkatesan
Thanks again. I have connection pooling which works fine. Also I have created SQLPackages and data compression to true. Hari -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 12:40 PM To: Tomcat Users List Subject: RE: Precompiling JSP

setting unpackWars=false

2003-01-13 Thread Craig S. Connell
This afternoon I began to look at running some of our WAR files in Tomcat (4.0.4) without unpacking them. I set the unpackWars=false in server.xml. This seems pretty straightforward, although there appear to be some issues. None of the application that I try to run this way work now. These

Default Content-Type in tomcat

2003-01-13 Thread Reynir Hübner
Hi, Can I set the default Content-Type header for servlet/jsp responses somewhere or do I have to do it in my code ? This is because of a problem with the new SAFARI browser from apple. Thanx -reynir -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

RE: mod_jk2 - jni linking problems

2003-01-13 Thread Brzezinski, Paul J
-- mailto:[EMAIL PROTECTED] Enterprise Distributed Capabilities EDS Corporation 248-265-8283 : -Original Message- : From: Faine, Mark [mailto:[EMAIL PROTECTED]] : Sent: Monday, January 13, 2003 1:03 PM : To: 'Tomcat Users List' : Subject: RE: mod_jk2 - jni linking problems : : :

troubleshooting web.xml

2003-01-13 Thread Erik Price
I've got a JSP in the top level of my webapp which has a form that submits to this URI: login. In my web.xml, I have the following, based off of the default web.xml: servlet servlet-nameLoginServlet/servlet-name description This servlet is submitted to by index.jsp's

jsp versus xml syntax

2003-01-13 Thread Jeff Ousley
Hello! I'm using (learning) tomcat-4.1.18 and I'm trying to get the following example page to work: HTML jsp:declaration // this is a local helper bean for processing the HTML form static public class localBean { private String value; public String getValue() { return value;}

Re: troubleshooting web.xml

2003-01-13 Thread Lajos Moczar
Erik - I presume the action for your form is login and not /login? Perhaps you can show use your form as well. Lajos Erik Price wrote: I've got a JSP in the top level of my webapp which has a form that submits to this URI: login. In my web.xml, I have the following, based off of the

Re: setting unpackWars=false

2003-01-13 Thread Craig R. McClanahan
On Mon, 13 Jan 2003, Craig S. Connell wrote: Date: Mon, 13 Jan 2003 13:12:41 -0500 From: Craig S. Connell [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: setting unpackWars=false This afternoon I began to look at running some of our WAR

Checking if Tomcat is up

2003-01-13 Thread Abhijat Thakur
Is it pssible to check intemittently through my java application if my Tomcat server is up ? What can i check for to see if my Tomcat server is up. The scenaruio is that if something happens to Tomcat where my it hangs up i should ring my application down, for that i have to check

Re: jsp versus xml syntax

2003-01-13 Thread Craig R. McClanahan
On Mon, 13 Jan 2003, Jeff Ousley wrote: Date: Mon, 13 Jan 2003 10:49:51 -0800 (PST) From: Jeff Ousley [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: jsp versus xml syntax Hello! I'm using (learning) tomcat-4.1.18 and I'm trying to get

RE: Checking if Tomcat is up

2003-01-13 Thread Turner, John
Myabe I'm missing something, but if Tomcat is down how can your application run to be checking that Tomcat is up? Your application needs Tomcat to execute. John -Original Message- From: Abhijat Thakur [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 1:55 PM To: [EMAIL

RE: mod_jk2 - jni linking problems

2003-01-13 Thread Faine, Mark
I have to use a 4.0.x version of tomcat in order to maintain compatibility with a proprietary vendor. You think I'd have better luck with the jakarata 4.1.18 sources. Are they compatible? Thanks, -Mark -Original Message- From: Brzezinski, Paul J [mailto:[EMAIL PROTECTED]] Sent:

Re: troubleshooting web.xml

2003-01-13 Thread Erik Price
Lajos Moczar wrote: Erik - I presume the action for your form is login and not /login? Perhaps you can show use your form as well. Lajos Hi Lajos, Yes, the action of the form is login -- good point, I should have posted it earlier: div class=main h2Please log in:/h2 form method=post

  1   2   >