Re: Delivering JSPs without source

2004-11-30 Thread Justin Ruthenbeck
Hi Steve, Hopefully I read your question right. There is no reason why your app wouldn't be able to find classes from a jar in common/lib -- there's something else going on here. Do you have duplicate copies of these classes anywhere? Do these classes rely on other classes found only in the

Re: Delivering JSPs without source

2004-11-30 Thread David Stevenson
When Tomcat receives a request for .jsp page, isn't the first order of business to compare the date of the .jsp page against the .java file in the working directory, so Tomcat knows whether to re-translate and compile the .jsp page? It would seem that if a web page request comes in for a .jsp

RE: What Connector Should I Use?

2004-11-30 Thread Thomas Charles Robinson
Thanks for all your comments. It's starting to make some sense now. Still no luck with my configs though :-( On Tue, 2004-11-30 at 14:24, Shapira, Yoav wrote: Hi, The 4.1 docs, like the 4.1 release, are old. The note in those docs is now wrong (though it was correct for a while, and

Re: Queries on Embedded Tomcat Server

2004-11-30 Thread Jeanfrancois Arcand
Mohamed Rafi S wrote: Hi All, I need to run a Embedded Tomcat server in my application. For this, I checked the sample code and docs, and did the needful. My application's main class is ApplicationLoader.java, and in the main() method of my ApplicationLoader.java, I am doing a

Re: Queries on Embedded Tomcat Server

2004-11-30 Thread Mohamed Rafi S
Hi Jean, There is no exception getting thrown, verified this. Immediately after appLoader.startTomcat(), if I give a Thread.sleep(1), then till that duration, I am able to access http://localhost:8080/ successfully without any issue. So, any pointers on how to make this always available ?

no examples with mod_jk?

2004-11-30 Thread Thomas Charles Robinson
Hi Again, Sorry about the long email. I've included all my logging with the configs. I've read the documentation and had some clarifications on JK/JK2 but still can't get this to work. What am I doing wrong here? Any help is appreciated and thanks in advance. I'm trying to get tomcat4 (4.1.30)

Help installing the Admin Application

2004-11-30 Thread Venkat Radha Venkataramanan
Hello: I downloaded the 5.5.5Admin zip file and copied the different files into the appropriate directories. But I don't see the Admin application listed in the Tomcat Web Application Manager. When I click on the first application which is displayed as /, I see the Jakarta default page. When I

RE: License Reason using JRE(RE: Tomcat JRE vs JDK Issue)

2004-11-30 Thread muimi admin
Hi, thanks to reply. I heard that Sun JDK can redistributed for commercial use with no changes. You heard? ;) Can you please point to an official confirmation of this? I only know the Sun JDK license document. http://java.sun.com/j2se/1.5.0/jdk-1_5_0-license.txt - C. License to Distribute

Q: ISAPI filter for JK 1.2.7-beta Visual C++ requirements

2004-11-30 Thread David Boyer
I'm attempting to build this from source, and I'm getting several errors related to an undeclared identifier '__FUNCTION__'. Visual C++ 7 supports __FUNCTION__, but VC++ 6.0 does not. Does anyone know if this is an intended change in the build requirements, or am I just doing something wrong?

Re: License Reason using JRE(RE: Tomcat JRE vs JDK Issue)

2004-11-30 Thread Parsons Technical Services
With a lot of software that is free to download, the main point is that the end user agrees to the license of the original owner (in this case SUN). If one was to embed or include a package in such a way to circumvent the EULA, then the end user could reverse engineer protected software without

Re: Queries on Embedded Tomcat Server

2004-11-30 Thread Peik Feng
Hi, Just my silly guess, Did you do this: tomcat.startTomcat(); ... Thread.sleep(1); tomcat.stopTomcat(); That is you call stopTomcat() right after you sleep ? On Tue, 30 Nov 2004 17:47:26 -0800, Mohamed Rafi S [EMAIL PROTECTED] wrote: Hi Jean, There

RE: Multipe Tomcat instances

2004-11-30 Thread Ryan Daly
On Mon, 2004-11-29 at 14:53, Shapira, Yoav wrote: Hi, I do it this way all the time. The biggest pro is complete separation. If one app gets whacky (heavy load, OutOfMemoryError, malicious attack), others are not affected at all. If one app needs to be upgraded or a bug fix shipped, or its

RE: Problems with deployment process using Eclipse + Ant + Tomcat

2004-11-30 Thread Caldarale, Charles R
From: Nilesh Bhattad [mailto:[EMAIL PROTECTED] Subject: Problems with deployment process using Eclipse + Ant + Tomcat Environment: Eclipse 3.0.0 + MyEclipse + Tomcat 5.5.0 (on a different server) Have you tried 5.5.4? It's the only level on the 5.5 leg marked stable. - Chuck THIS

RE: Multipe Tomcat instances

2004-11-30 Thread David Boyer
As far as Tomcat 4.x and 5.0.x, Tomcat uses %CATALINA_BASE%/conf/server.xml unless you specifically specify an alternative. Optionally, you can pass '-config fullpath' to the main method of the startup class where fullpath is the full path to your config file. For example:

Re: suse 9.1, tomcat5.0.27, mod_jk2, apache 2.0.13 problems

2004-11-30 Thread Quinton Delpeche
On Tuesday 30 November 2004 18:05, dawg fan wrote: Thanks for the response! No problem. Actually these were fresh reloads. Kewl. Are you running the same tomcat 5, apache2 versions that I am? Not sure. Tomcat: 5.0.27-9 Apache: 2.0.50-7.2 -joe Q -- Quinton Delpeche Internal Systems

Re: What's the defaukt Admin user id/password

2004-11-30 Thread Quinton Delpeche
On Tuesday 30 November 2004 22:58, Venkat Radha Venkataramanan wrote: Hello: Hi, Can somebody tell me what the default admin user id/password is? Thanks. There isn't one. Add a admin user entry to the tomcat-users.xml file and give the user admin and manager roles. Q -- Quinton Delpeche

RE: JSESSION Internet Explorer

2004-11-30 Thread Arnab Chakravarty
Are these tomcats on the same machine or different machines. I had the same problem with my tomcat setup and as I was running the 2 tomcats on the same machine. To get rid of the problem I added virtual host in apache conf file for the other tomcat and then it started working fine as there were 2

Re: Problems with datasource/DB Connection

2004-11-30 Thread parviz
You need to download: http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-3.0.16-ga.tar.gz/from/http://mysql.mirror.redwire.net/ from: http://dev.mysql.com/downloads/connector/j/3.0.html unzip that file somewhere and copy mysql-connector-java-3.0.16-ga-bin.jar to your

Re: Delivering JSPs without source

2004-11-30 Thread Steve Procter
There is no reason why your app wouldn't be able to find classes from a jar in common/lib -- there's something else going on here. I agree. The following comment in the WebappClassLoader javadoc might be relevant. IMPLEMENTATION NOTE - Due to limitations in Jasper compilation technology, any

Need Clarification on Tomcat SSL Configuration....

2004-11-30 Thread raghavendra.raghu
Hi, I have configured the Tomcat SSL Port for HTTPS. Whenever I access the Web Page the Page Refreshes twice. Need Help on this. Thanks Regards, Raghavendra C N Wipro Technologies, Phone: 91 80 8520408 Extn: 1067 [EMAIL PROTECTED]

Re[2]: JSESSION Internet Explorer

2004-11-30 Thread Alex Korneyev
Hello Arnab Chakravarty, actually it is on 2 servers. can you go into little bit more detail on what you did via virtual hosts on apache side? alex korneyev Tuesday, November 30, 2004, 10:15:31 PM, you wrote: Are these tomcats on the same machine or different machines. I had

Blank Page when using http://192.168.1.100/

2004-11-30 Thread Ted Anagnost
http://localhost/ works http://127.0.0.1/ works http://192.168.1.100/mysite/ works 192.168.1.100 is my internal IP http://192.168.1.100/ displays a BLANK PAGE 1. Why does it display a blank page when using http://192.168.1.100/ 2. What is the proper way to make all of these redirect to

Re: Q: ISAPI filter for JK 1.2.7-beta Visual C++ requirements

2004-11-30 Thread Mladen Turk
David Boyer wrote: I'm attempting to build this from source, and I'm getting several errors related to an undeclared identifier '__FUNCTION__'. Visual C++ 7 supports __FUNCTION__, but VC++ 6.0 does not. Does anyone know if this is an intended change in the build requirements, or am I just

RE: UTF-8 Encoding in Jsp

2004-11-30 Thread Mariano
You should use too: head META http-equiv=Content-Type content=text/html; charset=UTF-8 /head and this scriptlet: request.setCharacterEncoding(UTF-8); at the beginning. I hope this help you -Mensaje original- De: Arnab Chakravarty [mailto:[EMAIL PROTECTED] Enviado el:

RE: Blank Page when using http://192.168.1.100/

2004-11-30 Thread Mark Benussi
Are you using a router? Original Message Follows From: Ted Anagnost [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Blank Page when using http://192.168.1.100/ Date: Wed, 1 Dec 2004 00:26:51 -0600 http://localhost/ works http://127.0.0.1/

Re: Blank Page when using http://192.168.1.100/

2004-11-30 Thread Ted Anagnost
Yes - Original Message - From: Mark Benussi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 1:34 AM Subject: RE: Blank Page when using http://192.168.1.100/ Are you using a router? Original Message Follows From: Ted Anagnost [EMAIL PROTECTED] Reply-To:

Re: Blank Page when using http://192.168.1.100/

2004-11-30 Thread Mark Benussi
I woud like to give you an answer but I experienced similar problems accessing my localhost via IP when using a router. Just thought I would give you an area to look at i.e. I don't think its your Tomcat instance. Original Message Follows From: Ted Anagnost [EMAIL PROTECTED] Reply-To:

<    1   2