Re: [repost] endless loop in jsp

2000-12-25 Thread Julio Serje (@canada.com)
Hi, Bruno, How are you trying to access a page outside a context? I mean, if your context is "/servlets", mapped (both in apache and tomcat) to /zob/servlets, how are you invoking something in /zob? if you include /zob in your URL, it will make no sense for Tomcat. Probably your problem is assoc

Re: my html can't find my servlet

2000-12-18 Thread Julio Serje (@canada.com)
Try: . I'm assuming that you have the three fields in your form coresponding to the three parameters, and that you are implementing the doGet method in your servlet. Julio - Original Message - From: Mark Koscak <> To: <[EMAIL PROTECTED]> Sent: Sunday, December 17, 2000 5:0

Re: Pbm. in setting the parameter for an applet in servlet...

2000-12-18 Thread Julio Serje (@canada.com)
Try putting the tags before - Original Message - From: Subha Gowri K V <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 18, 2000 6:22 AM Subject: Pbm. in setting the parameter for an applet in servlet... > > Hi, > > We have a problem in passing parameter to an applet

Re: TomCat into NT environment

2000-12-18 Thread Julio Serje (@canada.com)
Consider Apache + Tomcat... (both can be configured as services and run just great...) - Original Message - From: Jose Euclides da Silva Junior - DIGR.O <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 18, 2000 1:30 PM Subject: TomCat into NT environment -BEGIN PGP

Re: wierd problem reading remote mapped files in servlets

2000-12-18 Thread Julio Serje (@canada.com)
Hi, Beti   You may be referencing to the file in the wrong case. Tomcat 3.2 is case sensitive. (I do read files in mapped drives in both NT/98 without a problem... Maybe there's an issue with Win2k)   Julio   - Original Message - From: Betty Chang To: [EMAIL PROTECTED]

Re: oracle - tomcat connection/performance /configuration problem

2000-12-16 Thread Julio Serje (@canada.com)
Are you closing all JDBC objects, including ResultSets AND Statements? you must close them explicitly. You may also consider a connection pool. You may find references in the tomcat user mail archives and in java.sun.com. Julio - Original Message - From: rahul pawar <[EMAIL PROTECTED]>

Re: Tomcat, JSP and Cache

2000-12-06 Thread Julio Serje (@canada.com)
As a suggestion, to help making sure that a page is not cached, add a random parameter to the link, something like http://www.javaclue.org/tomcat/patch32/dopatch.html > > > Kim > > > > On Wed, 6 Dec 2000, Paulo Gaspar wrote: > > > That looks more like a browser/proxy issue. > > > > Notice that:

Re: Increasing memory problem

2000-11-26 Thread Julio Serje (@canada.com)
Hi, Kai. The problem you are experiencing is a difficult one, as it relates to the way you allocate and de-allocate your resources in a way the garbage collector can determine that a resource is not needed anymore. You say that you're using jdbc. You should make sure that you are properly (and e

Re: Apache and Tomcat

2000-11-26 Thread Julio Serje (@canada.com)
Probably 1.3.6, it supports the AJP12 protocol (for Jserv) Julio - Original Message - From: Joseph Wong <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 26, 2000 10:30 AM Subject: Apache and Tomcat > What is the minimum version of Apache that can be integrated with To

Re: How to disable directory listing in Tomcat?

2000-11-26 Thread Julio Serje (@canada.com)
Hi, Joseph, You can: a) create an index.jsp page for your directory, or b) create (or edit, if you have it already...) a web.xml file for your webapp and alter the section: index.jsp index.html index.htm

Re: Tomcat & Cache

2000-11-26 Thread Julio Serje (@canada.com)
I would expand a bit what Serg is just saying: If you are modifying a jsp file that is *included* JSP will not "detect" the change, as it only looks for the main page date. Just change the date of the main page (modifiyng it , or with a touch command) and that should work. Also(I know it may so

Re: mod_jk

2000-11-26 Thread Julio Serje (@canada.com)
Hola, Carlos You should only append the following line to your http.conf: include c:/tomcat/conf/tomcat-apache.conf Note: I am assumming you are running Tomcat 3.1, on a win machine. Similar settings must be arranged for other confs. Julio -- Suerte con eso, Carlos. Si quieres, envia

Re: Shutdown problem

2000-11-26 Thread Julio Serje (@canada.com)
Hi, Tom   The maximun environment space size is 4096. You can set it in different ways, I have had very good results setting it using system.ini  (in the [NonWindowsApp] section add a line with CommandEnvSize=4096.   I would also recommend you to look at the nice JustGo, an application that

Re: Database connection pooling with tomcat

2000-11-22 Thread Julio Serje (@canada.com)
Hi, Kaushal, I haven't used that specific conn pool, but looks like that you are having a CLASSPATH problem. - first, make sure that your drivers (and your poolmanager jars) are available using the global classpath of Tomcat. You'll have to modify startup.sh in order to include them in the class

Re: Database connection pooling with tomcat

2000-11-22 Thread Julio Serje (@canada.com)
- Original Message - From: Kaushal Patel <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 22, 2000 10:46 AM Subject: Database connection pooling with tomcat > > > Question What is the best way to do connection pooling to > multiple oracle database

Re: Changing root webapp-Can you take a look of my server.xml file?

2000-11-22 Thread Julio Serje (@canada.com)
Oops, I mean use normal slashes / !!! Julio - Original Message - From: Julio Serje (@canada.com) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, November 22, 2000 12:26 PM Subject: Re: Changing root webapp-Can you

Re: Changing root webapp-Can you take a look of my server.xml file?

2000-11-22 Thread Julio Serje (@canada.com)
ttpConnectionHandler on > 8080 > 2000-11-22 10:53:19 - PoolTcpConnector: Starting Ajp12ConnectionHandler on > 8007 > > > Could you tell me what did I miss?? > > Thanks a lot > > PiFen Ellwood > > > -Original Message- > From: Julio Serje (@canada.com

Re: I need mod_jserv.so for HP-UX 10.20

2000-11-21 Thread Julio Serje (@canada.com)
Hola, Antonio,   We recently configured our HPUX 11 and got a lot of stuff from the HPUX user group at the University of Liverpool:   United Kingdom - University of Liverpool   You can also check these other user groups:   Alberta (Canada) - University of Alberta France - Univers

Re: Changing root webapp

2000-11-21 Thread Julio Serje (@canada.com)
You may define your root app in a different location than webapps. Just move it to another directory and give the absolute path in your server.xml: I have a setup like this and works fine. Julio - Original Message - From: Richard Evans <[EMAIL PROTECTED]> To: <[EM

Re: installed jbuilder 4.0 and now tomcat will not run

2000-11-21 Thread Julio Serje (@canada.com)
Check that the installation of JBuilder hasn't changed your environment variables, i.e. TOMCAT_HOME, JAVA_HOME, PATH, etc. Julio - Original Message - From: Chris Huisman <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 21, 2000 6:45 PM Subject: installed jbuilder 4.0 a

Re: Is there an archive of this list that can be searched and question on "Error reading request: connection reset"

2000-11-16 Thread Julio Serje (@canada.com)
There are possibly three archives. Check: http://marc.theaimsgroup.com/?l=tomcat-user&r=1&w=2 Julio - Original Message - From: Brett Bergquist <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 16, 2000 8:39 PM Subject: Is there an archive of this list that can be sear

Re: Ajp13 Problems w Mod_JK

2000-11-16 Thread Julio Serje (@canada.com)
Regarding item 2): When you unpack the distribution of Tomcat it comes with several WAR files (inlcuding test.war admin.war and examples.war). You have to: - get rid of the WAR files - remove the corresponding directories - and of course, remove the contexts from xerver.xml Julio - Origi

Re: /test interferes - how to get rid of it?

2000-11-15 Thread Julio Serje (@canada.com)
When you unpack the distribution of Tomcat it comes with several WAR files (inlcuding test.war admin.war and examples.war). You have to: - get rid of the WAR files - remove the corresponding directories - and of course, remove the contexts from xerver.xml (I had the same problem, but with an /a

Re: Tomcat 3.1 crashes when closing ODBC connection

2000-11-14 Thread Julio Serje (@canada.com)
Hany,   I run a little site in an NT with using the  ODBC-JDBC bridge (and Tomcat 3.1...) and everything works fine. Can you be more specific?   - What set of ODBC:JDBC drivers are you using (Use the one that comes with JDK1.3...).. - To what type of database are you connecting   If you can s

Re: jsp not running

2000-11-12 Thread Julio Serje (@canada.com)
1) I would suggest you install things in steps: a) make sure Tomcat is running (and that your app runs fine under Tomcat) b) Make Apache work with Tomcat. If you can't execute JSP's is likely you don't have set your environment properly (i.e. TOMCAT_HOME, JAVA_HOME, CLASSPATH, PATH variables).

Re: error 405 when using post

2000-11-07 Thread Julio Serje (@canada.com)
Check also the permissions of the work directory. (Tomcat compiles the .jsp's to .java files in this directory and then javac's the resulting .java to generate the .class that is finally executed.) The work directory is normally created under $TOMCAT_HOME or under the same directory the starup.s

Re: Servlets and SSI

2000-11-07 Thread Julio Serje (@canada.com)
Tomcat does not have support for SSI. (SSI is a servlet that works with Apache and Jserv and processes html pages with tags embedded). However, you can use instead the include tag. Julio. - Original Message - From: Jim Urban <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, No

Re: Setting Tomcat to Cooperate with the Apache Web Server

2000-11-07 Thread Julio Serje (@canada.com)
Once Apache is coperating with Tomcat, you dont need to specify a port (I'm assuming that your Apache is running on port 80 - default -) Do not mess with port 8007 as it is the port used for the communication between Apache and Tomcat, just use http://localhost/examples Julio Serje Calian Tech.

Re: Starting TomCat

2000-11-07 Thread Julio Serje (@canada.com)
Title: Starting TomCat Try moving \Tomcat3.1\jakarta-tomcat to \tomcat   Julio - Original Message - From: Philip Chan To: [EMAIL PROTECTED] ; Julio Serje (@canada.com) Sent: Tuesday, November 07, 2000 1:50 PM Subject: Re: Starting TomCat Hi   I am

Re: Starting TomCat

2000-11-06 Thread Julio Serje (@canada.com)
Title: Starting TomCat A couple of suggestions (I assume you are using a Win platform as you are mentioning bat files...):   a) install tomcat in a path with no spaces  (i.e. do not use Program files). Rename the jakarta-tomcat directory to tomcat. I suggest you install it at the root level (

Re: redistributing Tomcat

2000-11-03 Thread Julio Serje (@canada.com)
You can freely distribute Apache Software Foundation software as long as you follow the guidelines of the license... see: http://www.apache.org/LICENSE.txt Julio - Original Message - From: Ingo Luetkebohle <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 03, 2000 12:37

Re: Tomcat ISAPI

2000-11-03 Thread Julio Serje (@canada.com)
Some other people have reported the same problem in this list, and a couple of solutions have been posted. To save you time searching the archives: - Be sure the first line of your page is an HTML tag (put ...) NOT a JSP tag. The point is that lines with JSP tags appear in the output as empty l

Re: Problem with tomcat-apache

2000-11-02 Thread Julio Serje (@canada.com)
I think you don't need to modify tomcat.conf to set up a new context. Modify only server.xml as per the documentation, and it should work fine. If you are working with servlets modify web.xml to map them to directories. Julio Serje Calian Tech. - Original Message - From: Abhiman Srikan

Re: Changing Root

2000-11-02 Thread Julio Serje (@canada.com)
To configure the root just put an empty context path:       debug="0" reloadable="true" > Julio Serje. Calian Tech.   - Original Message - From: Alain Origlia To: [EMAIL PROTECTED] Sent: Thursday, November 02, 2000 1:46 PM Subject: Changing Root

Re: talking to MS SQL server from Tomcat?

2000-11-02 Thread Julio Serje (@canada.com)
If your Tomcat is running under NT, you can use the SUN ODBC-JDBC driver. Is good enough for most simple tasks. It it runs under other operating systems you may be in trouble.. Anyway, take a look at OpenLink (http://www.openlinksw.com/) they provide a JDBC type 3 or 4 for MS Sql. I haven't used

Re: Is there Tomcat on HP-UX?

2000-10-31 Thread Julio Serje (@canada.com)
Tomcat is written in java, so you should not have a problem running tomcat. ( Your HP-UX should have a VM, and you just have to modify the scripts to include the path to your JVM. In my N-Class HP-UX server the java machine is located at /opt/java/bin Julio Serje Calian Tech. - Original M

Re: Problems in Installing

2000-10-31 Thread Julio Serje (@canada.com)
Another method to increase the environment space (that I think is better because is not associated with a DOS window..) is to add the line: CommandEnvSize=4096 in the [NonWindowsApp] section of your system.ini file (in \windows). It requires a restart, after which you can try \tomcat\bin\startup

Re: Win98 & Tomcat 3.1 - Starts to launch but then exists???

2000-10-31 Thread Julio Serje (@canada.com)
I also have experienced the same problem in some machines, and have found another esoteric solution: (given that you have setup Tomcat according to the documentation, and solved the issue of the environment space., etc.). For some reason the commmand tomcat run works fine, while tomcat start

Re: socket exception errors on startup

2000-10-31 Thread Julio Serje (@canada.com)
It may be that a) you have another process that is using port 8080, or b) you already have an instance of tomcat running that is using that port. In case a), change in server.xml the port number Tomcat is listening to. Julio Serje Calian Tech. - Original Message - From: John Howay <[EMA

Re: Tomcat with Apache

2000-10-31 Thread Julio Serje (@canada.com)
Title: Tomcat with Apache Hi, Juan   It seem that the automatic start of Tomcat is one of the to-do's of the development group. In the meanwhile you can put together  bot tomcat and apache startup scripts.   Julio Serje Calian Tech.   - Original Message - From: Juan Esteban

Re: JSPs anywhere

2000-10-31 Thread Julio Serje (@canada.com)
Hi, Joe, You may have any directory structure for your HTML pages as long as you comply with a minimum set of requirements: - each application should be declared (as a "context") in the server.xml file of Tomcat. The organization of that diectory is up to you, with the exception of the directory

Re: Help : can't get java compiling through

2000-10-31 Thread Julio Serje (@canada.com)
Looks really weird. When tomcat is starting it tells you what classpath is using, and normally it should contain tomcat_home/lib/servlet.jar. Check that you have servlet.jar in your claspath ( tomcat_home/lib directory), check permissions (if you are running a unix/linux system) or your environm

Re: jsp compilation problem

2000-10-30 Thread Julio Serje (@canada.com)
Hi, Sibon Looks like you are not putting your class Service800NumberBean in the right place... (WEB-INF/classes, WEB-INF/lib, or the system CLASSPATH). If you haven't jar'ed your class it should be located at: /tomcat/webapss/yourapp/WEB-INF/classes/com/ss8networks/smp/sms/provisioning /jsp.

Re: ClassCastException,Beans, and Constant Restarts

2000-10-30 Thread Julio Serje (@canada.com)
I agree with you, there's no clarity about that issue, so I tried to put together some of the references in the different available documents: >From the User Guide, defining the RELOADABLE parameter of the tag in server.html: "When developing a servlet it is very convenient to have Tomcat reloa