Re: Tomcat 3.3.x VisualAge 3.5.3

2002-05-12 Thread Joaquín Sánchez Jiménez
Hi: I have installed 3.2.3 so I hope this help you. Install Tomcat 3.3 in your machine. Get src folder from tomcat directory and add to a new VA project, for example TOMCAT_3.3. With source you can debug tomcat. You can add TOMCAT_CLASSES instead TOMCAT_SOURCE. In

Re: Tomcat 3.3.x VisualAge 3.5.3

2002-05-12 Thread Sriram N
Hi, You could do this by either importing the Tomcat source/binay into visual Age, or by adding the Tomcat jars to the Visual Age classpath. If you see the tomcat.bat batch file, you'll see that there's just the StartTomcat and StopTomcat batch files being called. You could call these too, and

Configuration - blank web pages from Apache2.0.36 / Tomcat 4.0.3

2002-05-12 Thread David A. Bartmess
I've configured tomcat and apache to what everyone has told me. But when I go to its.home (my default virtual host), I get nothing but blank pages. I've got Dingo.Home set as the main ServerName in httpd.conf, and its.Home is setup as the ServerName of the virtual server. The server.xml I'm

RE: Tomcat 3.3.x VisualAge 3.5.3

2002-05-12 Thread donggen zhang
Hello Sriram, thank you very much for your info. It will be highly appreciated for the further info. thanks a lot donggen -Original Message- From: Sriram N [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 12, 2002 3:00 AM To: Tomcat Users List Subject: Re: Tomcat 3.3.x VisualAge

distributing a WAR w/ hostnames in JSP's

2002-05-12 Thread G.L. Grobe
How do I go about fixing the dependency of having to put in an ip/hostname in a JSP page which is a link that needs to point to the server where my clients have installed my web app? In other words, when they browse the web app on this server as I distribute it, its pointing to my machine as

connector issues: mod_webapp, mod_jk, coyotte, mod_php

2002-05-12 Thread Frederic Jacquet
Dear All, I need more information about the different connectors existing on catalina. To maintain two existing webapps, I need the availability to manage webapps containing php parts. For that I connect a 1.3 apache with tomcat. o Using tomcat and mod_jserv or mod_jk, it is easy but some

RE : distributing a WAR w/ hostnames in JSP's

2002-05-12 Thread Frederic Jacquet
For me you can manage it using a ServerContext parameter or using relative path. No ? -Message d'origine- De : G.L. Grobe [mailto:[EMAIL PROTECTED]] Envoyé : dimanche 12 mai 2002 20:04 À : [EMAIL PROTECTED] Objet : distributing a WAR w/ hostnames in JSP's How do I go about fixing the

Re: Any idea about Session object Failue?

2002-05-12 Thread Milind Nirgun
On Saturday 11 May 2002 01:33 am, you wrote: Hi All, Thanks for your reply for my previous question on 'Session Problem'. In addition to the previous subject, i still could'nt figure out the exact problem in my application. After a close watch, i found some where in the application the

RE: JSP Include Directive

2002-05-12 Thread Greg Trasuk
Hi: There are two types of includes, static and dynamic. Keep in mind that the jsp file essentially gets translated to a Java source file that gets compiled to a servlet. To include method declarations, etc, you need to have the included file treated as though it were part of the

RE: distributing a WAR w/ hostnames in JSP's

2002-05-12 Thread James Mitchell
Use relative links. JM Please ignore this if it appears that I did not understand your question. -Original Message- From: G.L. Grobe [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 12, 2002 2:04 PM To: [EMAIL PROTECTED] Subject: distributing a WAR w/ hostnames in JSP's How do I

Re: distributing a WAR w/ hostnames in JSP's

2002-05-12 Thread G.L. Grobe
I should have given an example. For links I have something like: http://192.168.0.10:8080/myContext So because of the needed host and port number, I'm not sure how this would be done. - Original Message - From: James Mitchell [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]

RE: distributing a WAR w/ hostnames in JSP's

2002-05-12 Thread James Mitchell
Are you saying that you have hard-coded the links within the jsp pages? like this: a href=http://192.168.0.10:8080/myContext;click me/a JM -Original Message- From: G.L. Grobe [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 12, 2002 10:08 PM To: Tomcat Users List Subject: Re:

Web Service only over HTTPS

2002-05-12 Thread Fabian Rezzonico
Hi, I have a WebService which must be callable only over HTTPS now my problem is where and how I configure the web server (web.xml ???) or there is another solution. I have already create the server.keystore and client.store files and modify the server.xml for SSL everything works fine. but the

Out Of Memory Error

2002-05-12 Thread Amit Lonkar
Hi All, I am generating a report using servlets which has 7 records. While processing it gives an OutOfMemory Error. Can any one tell me how and where to add memory? My RAM is 512MB URGENT!!! Thanks Amit Lonkar

Re: JVM Bind error

2002-05-12 Thread kelly, Burrowa
During runtime when I change a class file, tomcat 4.0.3 is supposed to reload that class(due to reloadable=true in server.xml). But instead, I get some JVM Bind error. To be more specific, the error is: WebappClassLoader: Resource '/WEB-INF/classes/TestCC.class' was modified; Date is

Re: Out Of Memory Error

2002-05-12 Thread Micael Padraig Og mac Grene
Look at your options under the java command. At 05:54 AM 5/13/02 +0100, you wrote: Hi All, I am generating a report using servlets which has 7 records. While processing it gives an OutOfMemory Error. Can any one tell me how and where to add memory? My RAM is 512MB URGENT!!! Thanks Amit

Re: Out Of Memory Error

2002-05-12 Thread Micael Padraig Og mac Grene
Try java on the command line with nothing else, and it will give you the information. Also, you can go to a bookstore and read Chapter 8 in Java in a Nutshell on java. Micael At 05:54 AM 5/13/02 +0100, you wrote: Hi All, I am generating a report using servlets which has 7 records. While

Re: Out Of Memory Error

2002-05-12 Thread Micael Padraig Og mac Grene
My guess, though, is that you are trying to do a database job with objects. Don't know what database you are using, but whichever one it is, it usually has some ways to do it better than you can using objects to order the data. I learned that the hard way. Micael At 05:54 AM 5/13/02 +0100,