Ang: Get value from a checkbox

2001-09-17 Thread Magnus Jansson
Sorry my fault. It was actually easy. Sorry [EMAIL PROTECTED] 2001-09-17 07:32:38 Hi! I'm a newbi on jsp, and having trouble with forms. I have a form on one page and want to send the information to a jsp page. My form includes a couple of checkboxes and I only gets runtime errors when I try

Generate PDF with Java

2001-09-17 Thread Olivier MAYEUX
Hi ! I want to generate PDF from jsp code. I heard about a package Java PDFWriter but i don't know where i can find it. If anyone have an idea, any suggestions are welcome... Thanks Olivier

Re: Generate PDF with Java

2001-09-17 Thread Ricardo
I have heard about two options: *. iText in http://www.lowagie.com/iText/. *. retepPDF in http://www.retep.org.uk/pdf/ Both are hosted in sourceforge and are good options !!! Bye, Ricardo Borillo Domenech Programació - Servei d'Informàtica Universitat Jaume

Tomcat + gcj

2001-09-17 Thread Anthony Green
This is just an FYI... I recently got Tomcat working on Linux with gcj (a free native code compiler and runtime for the java programming language). Tomcat, and all of the support libraries (xalan, servletapi) are compiled to native executables and shared libraries which run without any

Re: error under Linux

2001-09-17 Thread michael . brohl
Hi, I think Tomcat will get all necessary CLASSPATH entries himself (the install doc said so)? What has to be set here before starting Tomcat? Thanks, Michael Brohl agd@vandemata ram.com To: [EMAIL PROTECTED]

Re: Thanks for the note on JNI and class loading in the release notes

2001-09-17 Thread Jochen Schneider
Hi Jonathan, we had the same problem and fixed it in the way described now in the Tomcat documentation. Probably one additional remark should be added to the documentation : If you place the Java code loading the native library outside of the web application (for example in

RE: problems using xalan

2001-09-17 Thread Dinu Jose
Hi Kemmler, Could you please check whether xalan.jar and xerces.jar comes before jaxp.jar in the classpath settings.In the classpath, if xalan.jar and xerces.jar comes after jaxp.jar,then some of the classes in jaxp.jar override the same classes in xalan.jar and the error

Problems with Jakarta NT Service

2001-09-17 Thread Tom Wild
I'm running Tomcat 3.3 b2, IIS 4.0 on WinNT 4.0 with latest SP and JDK 1.3 Tomcat is properly configured and runs smootly in window mode. Nevertheless, when using the Jakarta NT Service according to Gal Shakor's Documentation found at:

RE: Is this the way to do it?

2001-09-17 Thread Järkeborn Joacim
HI Magnus, Make use of the simple datatype 'boolean' instead of the object 'Boolean' boolean BoolDans = false; boolean BoolAllman = false; boolean BoolFof = false; boolean BoolTextil = false; boolean BoolHp = false; if (request.getParameter(IntresseDans) != null) { BoolDans = true; }

RE: Error ajp13_process_callback - write failed

2001-09-17 Thread GOMEZ Henri
Hello, I have an error, which will occure, when I refresh in the Web Client is too fast, Tomcat will throw an Error (or better mod_jk ?), which popup on stdout: java.io.IOException: Broken pipe at java.net.SocketOutputStream.write(SocketOutputStream.java:83) at

Re: Is this the way to do it?

2001-09-17 Thread Tom Oinn
Järkeborn Joacim wrote: HI Magnus, Make use of the simple datatype 'boolean' instead of the object 'Boolean' or... : boolean BoolDans = (new Boolean(request.getParameter())).booleanValue(); The Boolean class has a String constructor that returns Boolean.TRUE if the string is not

Re: Thanks for the note on JNI and class loading in the release notes

2001-09-17 Thread simon colston
Jochen, Jonathon, Craig, Would the same thing be true for Tomcat 3.2 and 3.3?? On Mon, 17 Sep 2001 10:06:18 +0200 Jochen Schneider [EMAIL PROTECTED] wrote: JS Hi Jonathan, JS JS we had the same problem and fixed it in the way described now in the Tomcat JS documentation. JS JS Probably one

Reg: Tomcat -Service Problem?????

2001-09-17 Thread JAVA TEAM
HI We are using Apache/Tomcat servers for JSP Development. We have Installed tomcat as NT Service. After Starting the Tomcat Apache Services there are two processes available in TaskManager/Process option. First one is java.exe , Another one is jk_nt_service.exe. The JSP application contains

HttpsURLConnection error

2001-09-17 Thread T.L.TEO
Hi Cud someone enlighten me on this error ?? java.lang.NullPointerException at com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection.getCip herSuite([DashoPro-V1.2-120198]) at testcon.main(testcon.java:25)

RE: Generate PDF with Java

2001-09-17 Thread Eric Hartmann
Hello, You can check http://xml.apache.org/fop if you already use XML (it's an implementation of XSL:FO that can produce pdf with XML). Eric -Original Message- From: Olivier MAYEUX [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 9:04 AM To: '[EMAIL PROTECTED]'

RE: Is this the way to do it?

2001-09-17 Thread Wouter Boers
Java does have a slimmed down version of the Object of most frequently used primitive types boolean - Boolean int - Interger float - Depends what you want BigInteger, Double etc etc Look at the JavaDoc documentation of java int the java.lang.*, usually there is a toInt() method to

Problems with IIS and Tomcat 3.2.3

2001-09-17 Thread Gonzalez Pau
Hi, I am trying to configure Tomcat 3.2.3 with IIS 5.0 in a Windows 2000 Server. I have followed the Tomcat IIS How To instructions and I have checked the configuration, but my IIS can not load the isapi_redirect.dll. Thanks and Regards Pau González

Re: Get value from a checkbox

2001-09-17 Thread Mark Himsley
On Mon, 17 Sep 2001 07:32:38 +0200 you wrote: Hi! I'm a newbi on jsp, and having trouble with forms. I have a form on one page and want to send the information to a jsp page. My form includes a couple of checkboxes and I only gets runtime errors when I try to get the values from the checkbox.

RE: HttpsURLConnection error

2001-09-17 Thread Rupert Jones
Your probably invoking a method on an object that has a value of null... suggest you check for 'null'ness' before you invoke a method on it. cheers Rupert -Original Message- From: T.L.TEO [mailto:[EMAIL PROTECTED]] Sent: Monday, 17 September 2001 16:15 PM To: [EMAIL PROTECTED] Subject:

Re: Tomcat bug? (PropertyResourceBundle)

2001-09-17 Thread Andrew Liles
This fault is caused by declaring two Beans with the same local variable, e.g. html ... jsp:useBean id=test class=bean1/ jsp:useBean id=test class=bean2/ ... /html To: [EMAIL PROTECTED] Subject: Re: Tomcat bug? (PropertyResourceBundle) From: Ryan Schutt [EMAIL PROTECTED] Date: Mon, 17 Jul

RE: Is this the way to do it?

2001-09-17 Thread Michael Wentzel
snip Boolean BoolDans = new Boolean(false); Boolean BoolAllman = new Boolean(false); Boolean BoolFof = new Boolean(false); Boolean BoolTextil = new Boolean(false); Boolean BoolHp = new Boolean(false); if (request.getParameter(IntresseDans) != null) {BoolDans = new

AW: Is this the way to do it?

2001-09-17 Thread Reto Badertscher
Hi Magnus, only two instances of Boolean exists: - TRUE - FALSE your different Booleans just hold a reference on one of the two. Reto -Ursprüngliche Nachricht- Von: Magnus Jansson [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 17. September 2001 09:25 An: [EMAIL PROTECTED] Betreff: Is

Re: AW: Is this the way to do it?

2001-09-17 Thread D. Jay Newman
Sorry, but I think that he has created several instances of a Boolean with a false value. I know that if you use the constants Boolean.TRUE and Boolean.FALSE you will not create any new instances, but I think if you use new you create a new instance (which is why Boolean should not have had a

Re: Tomcat 4 and Log4J

2001-09-17 Thread Craig R. McClanahan
The properties file would need to be in $CATALINA_HOME/common/classes (which you will have to create) instead of $CATALINA_HOME/common/lib. Only JAR files are loaded from lib directories. Craig On Mon, 17 Sep 2001, Jiger Java wrote: Date: Mon, 17 Sep 2001 15:40:26 +0530 From: Jiger Java

Re: Thanks for the note on JNI and class loading in the release notes

2001-09-17 Thread Jochen Schneider
Simon, unfortunately I am not too familar with the classloaders in Tomcat 3.2 and 3.3. If there are separate classloaders for each web app then you have the same situation as with tomcat 4.0 (Catalina). Regards Jochen - Original Message - From: simon colston [EMAIL PROTECTED] To:

Re: Thanks for the note on JNI and class loading in the releasenotes

2001-09-17 Thread Craig R. McClanahan
On Mon, 17 Sep 2001, Jochen Schneider wrote: Date: Mon, 17 Sep 2001 17:08:21 +0200 From: Jochen Schneider [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Thanks for the note on JNI and class loading in the release notes Simon, unfortunately I am

RE: Problems with IIS and Tomcat 3.2.3

2001-09-17 Thread Ratnakar Palle
So, what is the error you are seeing... It would be nice if you can send out the log too... Thanks, -Ratnakar -Original Message- From: Gonzalez Pau [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 2:02 AM To: [EMAIL PROTECTED] Subject: Problems with IIS and Tomcat 3.2.3

Exception in thread CompileThread0

2001-09-17 Thread Venu Babu
Hi, We are using Tomcat 3.2.3+Apache for nearly 2 months. Recently Tomcat is dying every night with the following memory exception. Exception in thread CompileThread0 java.lang.OutOfMemoryError: requested 201326600 bytes The server always has more than 2GB free memory available. Any ideas?

Re: Again JkMount, Apache and Tomcat

2001-09-17 Thread Ruben
hi tonny! you are a master.. thx you very much!!! now is working ok. i just add jkmount line in httpd.conf and thats all! BTW, where i can find the httpservelet class to compile servlets? thx again mariano _ Do You Yahoo!? Get your

RE: form based login

2001-09-17 Thread Craig R. McClanahan
On Mon, 17 Sep 2001, pero wrote: Date: Mon, 17 Sep 2001 14:23:27 +0200 From: pero [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: form based login Hi Craig, thanks for your fast reply. To avoid any misunderstandings - my tomcat configuration works

configuring ajp13 worker on tomcat 3.2.3

2001-09-17 Thread David Lee
hi, i'm using nsapi to configure iPlanet with Tomcat 3.2.3. they're communicating via the ajp13 worker. the workers.properties file on the iPlanet box is configured to setup ajp13, and i know the server.xml file on the Tomcat box needs a tag for an ajp13 socket. i have it setup as follows:

struts and tomcat 4

2001-09-17 Thread Christoph Rooms
Hi all, I tried to run a struts application on tomcat 3.2 and it worked. Now I'm running it under tomcat 4rc2 I get this exception : Cannot find ActionMappings or ActionFormBeans collection anyone an idea ? thanks !!! christoph

Re: struts and tomcat 4

2001-09-17 Thread Craig R. McClanahan
On Mon, 17 Sep 2001, Christoph Rooms wrote: Date: Mon, 17 Sep 2001 18:58:59 +0200 From: Christoph Rooms [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: struts and tomcat 4 Hi all, I tried to run a struts application on tomcat 3.2 and it worked. Now I'm

Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Cor Hofman
I just downloaded catalina and installed it. All runs well, expcept for the example JSP's. I always get the exception listed below. Anybody got a hint as to why? Hep is much appreciated, regards, Cor Hofman org.apache.jasper.JasperException: Unable to compile class for

Re: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Craig R. McClanahan
You've most likely got an old version of servlet.jar (or perhaps j2ee.jar) in your system extensions directory ($JAVA_HOME/jre/lib/ext). That will mess up Tomcat 4, because these classes override the ones shipped with Tomcat that conform to the new specifications. Craig On Mon, 17 Sep 2001,

RE: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Cor Hofman
Craig, You are briljant ;-) Indeed, I had a servlet.jar flying around. I would have never discovered this myself. You just made my day :-) Many thanks, Cor. -Original Message- From: craigmcc@localhost [mailto:craigmcc@localhost]On Behalf Of Craig R. McClanahan Sent: Monday,

RE: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Craig R. McClanahan
On Mon, 17 Sep 2001, Cor Hofman wrote: Date: Mon, 17 Sep 2001 19:56:11 +0200 From: Cor Hofman [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0RC2, JSP examples do not work Craig, You are briljant ;-) Indeed, I had a servlet.jar flying around.

Current status of Tomcat

2001-09-17 Thread Brandon Cruz
To anyone that might have relevant experience: In the near future, we will be adding just under 2000 virtual hosts to a service we provide (linux/tomcat/apache config). Currently, every single host uses the same application, which resides in $tomcat_home$/lib and $tomcat_home$/classes. Our

RE: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Cor Hofman
Craig, I am aware of that and I did consult the mail archives. Actually I ploughed through quite a lot of emails and tried several searches. I guess I did not come up with the golden search phrase. For what its worth: I sincerely apologize for the inconvenience. Kind regards, Cor.

RE: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Craig R. McClanahan
On Mon, 17 Sep 2001, Cor Hofman wrote: Date: Mon, 17 Sep 2001 20:28:05 +0200 From: Cor Hofman [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0RC2, JSP examples do not work Craig, I am aware of that and I did consult the mail archives.

RE: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread John Dell
My 2 cents, the common phrase in all of these is the actual error text 'Unable to compile class'. If you search on this, it gives you the right hits. I've found this to be very effective in troubleshooting when searching archives. Regards, John On Mon, 17 Sep 2001, Cor Hofman wrote: Date:

RE: Tomcat 4.0RC2, JSP examples do not work

2001-09-17 Thread Cor Hofman
John, Yep, you are right it does come up with all the mails answering my newbie question. I'll keep your appraoch in mind. Also Craig thanx again for your patience with me. Enough said though, let's continue with our dialy challenges ;-) Regards, Cor. -Original Message- From: John

Where to put ini file?

2001-09-17 Thread Gauri Tuljapurkar
I have some initialization file which I am using in my application. Where should I put initialization file? Or is there any other way to initialize variables? I am using Tomcat version 3.2 with mod_jk and apache 1.3 Thanks Gauri

Re: Possible to import SSL private/public key pair from Apache into Tomcat?

2001-09-17 Thread Jonathan Eric Miller
Thanks, Ricardo, I'll check it out and give it a try. Jon - Original Message - From: Ricardo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 17, 2001 1:19 AM Subject: Re: Possible to import SSL private/public key pair from Apache into Tomcat? There's a way to do this

Re: Thanks for the note on JNI and class loading in the release notes

2001-09-17 Thread Jonathan Eric Miller
I'm using $CATALINA_HOME/lib, not $CATALINA_HOME/common/lib. I wonder if the problem is specific to using common/lib? Jon - Original Message - From: Jochen Schneider [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, September 17, 2001 3:06 AM

Tomcat 4.0

2001-09-17 Thread Nick Torenvliet
Thanks to the Tomcat docs I've managed to get sssl working on my tomcat4.0 w/ Java sdk1.4 installation. I've been going through the mailing list archives looking to see if anyone has had any success using a verisign certificate with Tomcat. I've seen lots of questions about it but not too many

JSP page to Oracle with Tomcat

2001-09-17 Thread Peter Shankey
Tomcat 4.0 b7 Solaris 8 Oracle 8.1.7 I am trying to perform a Oracle DB query from a jsp page. I have included the web.xml file the jsp page fwtst.jsp and the error message I am having returned to me from the query. I believe the problem is that I do not know how to make system environments

RE: Current status of Tomcat

2001-09-17 Thread Brandon Cruz
Anyone? -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 1:10 PM To: [EMAIL PROTECTED] Subject: Current status of Tomcat To anyone that might have relevant experience: In the near future, we will be adding just under 2000 virtual hosts

JSP page to Oracle with Tomcat all files

2001-09-17 Thread Peter Shankey
Not sure why all the attachments did not come through but here goes again: Tomcat 4.0 b7 Solaris 8 Oracle 8.1.7 I am trying to perform a Oracle DB query from a jsp page. I have included the web.xml file the jsp page fwtst.jsp and the error message I am having returned to me from the query. I

Tomcat startup problem

2001-09-17 Thread Steve Heller
I recently upgraded my PC from Windows 95 to Windows 2000. A Tomcat server and an application were working on the Win95 PC. After upgrading to Win2000, I installed the jdk, copied the jakarta-tomcat-3.2.1 directories and files to the PC and set up environmental variables. I am getting this

tomcat on Embedded Systems?? (J2ME )

2001-09-17 Thread Rajah Kalipatnapu
Is there a lite edition of tomcat available for using with J2ME-CDC-Foundation profile. We want to use tomcat in a memory restricted environment. What are the possibilities. thanks Rajah Kalipatnapu Soundpipe Inc 4082351785 X-790 www.soundpipe.com

RE: Tomcat startup problem

2001-09-17 Thread pero
are you sure that %_STARTJAVA% and %TOMCAT_OPTS% are filled? -Original Message- From: Steve Heller [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 10:56 PM To: [EMAIL PROTECTED] Subject: Tomcat startup problem I recently upgraded my PC from Windows 95 to Windows

RE: Tomcat startup problem

2001-09-17 Thread Hoggatt Matt - mahogg
Can you cd %TOMCAT_HOME%? -Original Message- From: pero [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 4:15 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat startup problem are you sure that %_STARTJAVA% and %TOMCAT_OPTS% are filled? -Original Message- From: Steve

RE: tomcat on Embedded Systems?? (J2ME )

2001-09-17 Thread GOMEZ Henri
Is there a lite edition of tomcat available for using with J2ME-CDC-Foundation profile. We want to use tomcat in a memory restricted environment. What are the possibilities. Take a look at tomcat-3.3. Costin have conducted some test on it's PALM :)

RE: tomcat on Embedded Systems?? (J2ME )

2001-09-17 Thread Ignacio J. Ortega
Go for Tomcat 3.3 Embedded i know there was efforts on J2ME porting.. Saludos , Ignacio J. Ortega -Mensaje original- De: Rajah Kalipatnapu [mailto:[EMAIL PROTECTED]] Enviado el: lunes 17 de septiembre de 2001 22:54 Para: tomcat-ml Asunto: tomcat on Embedded Systems?? (J2ME )

Re: Tomcat startup problem

2001-09-17 Thread Steve Heller
Matt, Yes, I can cd %TOMCAT_HOME% Steve Hoggatt Matt - mahogg wrote: Can you cd %TOMCAT_HOME%? -Original Message- From: pero [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 4:15 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat startup problem are you sure that

Re: Tomcat startup problem

2001-09-17 Thread Steve Heller
pero, I need to try a few things but %TOMCAT_OPTS% appears to be empty although I think that it is the same under the Win95 version. I am using the Startup.bat file which calls tomcat.bat. startup.bat is the same under Win95 and Win2000. Thanks, Steve pero wrote: are you sure that

RE: Tomcat startup problem

2001-09-17 Thread pero
the error I thought of would appear if both %_STARTJAVA% AND %TOMCAT_OPTS% were empty. One thing that came into my mind: Does the path you installed your JDK to contain spaces? (i.e. c:/program files/javasoft...) What does your JAVA_HOME say? -Original Message- From: Steve Heller

RE: tomcat on Embedded Systems?? (J2ME )

2001-09-17 Thread Rajah Kalipatnapu
Is there Tomcat 3.3 embdedded version or the same Tomcat 3.3 build will be used as Tomcat Embedded. I tried compiling Tomcat 4.0 for J2ME, tried to strip some packages, like JMX, I think only JMX I can able to avoid to be built, I couldn't strip JNDI. J2ME doesn't use any depricated API. So I

Re: Thanks for the note on JNI and class loading in the releasenotes

2001-09-17 Thread Craig R. McClanahan
On Mon, 17 Sep 2001, Jonathan Eric Miller wrote: Date: Mon, 17 Sep 2001 14:45:29 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Thanks for the note on JNI and class loading in the release notes I'm using

Re: TOMCAT RC1 SERVLET RELOADING NOT WORKING ON AIX

2001-09-17 Thread Pier Fumagalli
This look all right... It should reload classes, as it it should reload them under the Standalone Tomcat. The only thing missing here is your httpd.conf, and I might think that it's a problem with a double-deployment of the same web application (one automatically deployed by Apache, and one

threads on Linux

2001-09-17 Thread simon colston
Set up -- Linux Redhat 6.2 (with glibc 2.1.3), IBM JVM V1.3.0, Tomcat 3.2.3 Problem --- The number of threads shown by ps gradually increases over time. Research (Mailing lists, documentation, etc.) - 1. The java entries on ps are threads not

How to gaurentee order of server classpath

2001-09-17 Thread Peoter Veliki
I need to make sure the xerces.jar is found in the server classpath before Tomcat's own xml.jar (jaxp.jar or whatever it is called). This is the first step in getting soap working. I have followed the instructions and have not been able to get it to work. I have this in my Tomcat.bat file:

Re: How to gaurentee order of server classpath

2001-09-17 Thread Dmitri Colebatch
Are you sure you're taking care of all of the classpath references in tomcat.bat? An alternative way to do this is to upgrade to 4.0rc2 which doesn't provide any xml support, freeing the web app developer to use whichever parser whey want. hth dim On Mon, 17 Sep 2001, Peoter Veliki wrote: I

Re: struts and tomcat 4

2001-09-17 Thread simon colston
On Mon, 17 Sep 2001 10:06:26 -0700 (PDT) Craig R. McClanahan [EMAIL PROTECTED] wrote: CM CM You need to check the log files created by Tomcat 4 to make sure, but the CM most likely explanation is that you did not include an XML parser inside CM your web app. Tomcat 4, up until this point, has

Re: struts and tomcat 4

2001-09-17 Thread Craig R. McClanahan
On Tue, 18 Sep 2001, simon colston wrote: Date: Tue, 18 Sep 2001 10:35:09 +0900 From: simon colston [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: struts and tomcat 4 On Mon, 17 Sep 2001 10:06:26 -0700 (PDT) Craig R. McClanahan [EMAIL PROTECTED] wrote:

how to test the website scalability

2001-09-17 Thread Huaxin
This is quite general to all website development. When the website is completed, how can I test its scalability by faking a lot of URL request for it from various IPs concurrently? is there kind of such tools for that? thanks a lot!

Problem with Tomcat

2001-09-17 Thread Charles Webber
I'm running into a strange problem with a new installation of Tomcat. I have 3.2.3 installed. I can use the startup script to start Tomcat and everything looks fine until I try to execute a JSP. When I try the JSP examples supplied with Tomcat, I get the following errors - which is a partial

mod_jk

2001-09-17 Thread Serge Seiller
Hi There is a Java parameter to set on Tomcat on Startup.bat, as described in Oracle JDeveloper doc., to enable remote debugging. (-xxdebugondemandquietport4000) I'm using Tomcat as NT Service and mod_jk; how can I set this parameter ? Thank's

Re: Problem with Tomcat

2001-09-17 Thread Dmitri Colebatch
You need to have the jdk - not the jre. btw - someone with access to the site - I'm constantly amazed that this answer is not in the faq (unless I missed it)... perhaps its somewhere else, but I would have thought it should be there. cheesr dim On Mon, 17 Sep 2001, Charles Webber wrote: I'm

Re: Problem with Tomcat

2001-09-17 Thread Charles Webber
It is the JDK. - Original Message - From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 17, 2001 7:56 PM Subject: Re: Problem with Tomcat You need to have the jdk - not the jre. btw - someone with access to the site - I'm constantly amazed that

RE: how to test the website scalability

2001-09-17 Thread Bryan Lipscy
Mercury Interactive's LoadRunner is probably one of the best on the market. Just a bit on the pricey side. -Original Message- From: Huaxin [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 17, 2000 7:09 PM To: [EMAIL PROTECTED] Subject: how to test the website scalability This is

Re: how to test the website scalability

2001-09-17 Thread Charles Webber
Mercury Interactive LoadRunner is probably the most comprehensive tool, but there are others. Radview (www.radview.com) has a tool called webload, that does a fairly good job of this as well. Depends on what kind of load test you require as well. If you just want to simulate a couple hudred

Re: Problems with Jakarta NT Service

2001-09-17 Thread Madock Chiwenda
Hi, I have successfully used Javaservice package (javaservice.exe) to install and run tomcat as service just search for it in google.com, download and it has some sample tomcat istallation scripts for some version of tomcat. All the best Madock 9/17/01 11:27:58 AM, Tom Wild [EMAIL

RE: Problems with Jakarta NT Service

2001-09-17 Thread Bryan Lipscy
Here is the url: http://www.alexandriasc.com/software/JavaService/download.html The Tomcat 3.3.b2 package seems to be missing ant.jar, parser.jar, webserver.jar. The do not exist in the 1.3.1 JDK either. -Original Message- From: Madock Chiwenda [mailto:[EMAIL PROTECTED]] Sent: