Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
thanks for the reply i put the jsp page in this location: C:\Program files\Apache Tomcat 4.0\webapps\hello.jsp i've tried requesting http://localhost:8080/ and i got it correctly but when trying to request that hello.jsp page the error awhile ago is displayed. r/gli micael wrote:

Re: HTTP Status 404

2002-10-01 Thread micael
Your original post said you had [...]8080\etc. in the browser, if so, the \ should be /. Or, was that just a typo? At 02:17 PM 10/1/2002 +0800, you wrote: thanks for the reply i put the jsp page in this location: C:\Program files\Apache Tomcat 4.0\webapps\hello.jsp i've tried requesting

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
mic, i entered http://localhost:8080/hello.jsp in the browser's address bar. and i tried typing http://localhost:8080\hello.jsp and still it won't work. micael wrote: Your original post said you had [...]8080\etc. in the browser, if so, the \ should be /. Or, was that just a typo? At

Re: HTTP Status 404

2002-10-01 Thread micael
Well, you were right the first time. Do you have hello.jsp in an application? If so, then you have to type in: http://localhost:8080/myapp/hello.jsp if the hello.jsp is in the folder myapp. At 02:48 PM 10/1/2002 +0800, you wrote: mic, i entered http://localhost:8080/hello.jsp in the

Re: HTTP Status 404

2002-10-01 Thread micael
Oh, I think I see what you have done. You just popped a jsp into the webapps directory? Way off, if so. At 02:48 PM 10/1/2002 +0800, you wrote: mic, i entered http://localhost:8080/hello.jsp in the browser's address bar. and i tried typing http://localhost:8080\hello.jsp and still it won't

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
yes mic, i've tried that also like http://localhost:8080/java_samples/hello.jsp and still it won't work... r/gli micael wrote: Well, you were right the first time. Do you have hello.jsp in an application? If so, then you have to type in: http://localhost:8080/myapp/hello.jsp if

Re: HTTP Status 404

2002-10-01 Thread micael
The initial file that worked for you was in the ROOT application. Do you have access to books on Tomcat? What is your situation? If you put the file hello.jsp into the webapps directory, you are just beginning, I take it? You need to get a book on Tomcat, read some on Servlets, maybe,

Re: HTTP Status 404

2002-10-01 Thread micael
Try it with existing applications, like ROOT and samples. You need to realize that applications have to be properly set up with web.xml and server.xml configurations, etc. I would guess you have not done that. At 02:59 PM 10/1/2002 +0800, you wrote: yes mic, i've tried that also like

[OT] Re: HTTP Status 404

2002-10-01 Thread micael
Where are you Glinn? It is a 10 hour time difference according to the emails. At 02:59 PM 10/1/2002 +0800, you wrote: yes mic, i've tried that also like http://localhost:8080/java_samples/hello.jsp and still it won't work... r/gli micael wrote: Well, you were right the first time. Do

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
i tried droping the file under ..\examples and it works but putting it in the root like http://localhost:8080/hello.jsp won't work... i'm a new user of tomcat. is web.xml matters a lot?... micael wrote: The initial file that worked for you was in the ROOT application. Do you have

Jasper Exception

2002-10-01 Thread Alvaro Armenteros
I've installed Tomcat 4.1.12 with jsdk 1.4.0_02 on windows 2000. When I try to connect to the index.jsp default page I get the next error: org.apache.jasper.JasperException: No se puede compilar la clase para JSP An error occurred at line: -1 in the jsp file: null (Sorry, spanish version, an

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
ohh i see...actually mic, i've tried scanning web.xml seen those codes in it. i just realize that web.xml must go together with the .jsp file i am running... by the way, i'm from the philippines and you are from? r/glinn micael wrote: Try it with existing applications, like ROOT and

Re: HTTP Status 404

2002-10-01 Thread micael
This is not just a Tomcat issue, Glinn, but indemic or essential to servlets and jsp. I suggest you grab a copy of Jason Hunter's book on servlets, if you can. I think it is available on line as well as in paper back. You also can get most of the information from various websites. Here is

Re: HTTP Status 404

2002-10-01 Thread micael
I am in the State of Washington in the United States. What is your background? You taking a course on Java or what? At 03:16 PM 10/1/2002 +0800, you wrote: ohh i see...actually mic, i've tried scanning web.xml seen those codes in it. i just realize that web.xml must go together with the .jsp

Security policy files

2002-10-01 Thread Collins, Jim
Hi, I know that when Tomcat starts it uses the catalina.policy file. Does anyone know if it is possible to set a security policy file for individual WebApps? Thanks Jim. PLEASE READ: The information contained in this email is confidential and intended for the named recipient(s) only. If you

Re: Jasper Exception

2002-10-01 Thread micael
The error page should tell you why it cannot be compiled. Read the bottom part. At 09:15 AM 10/1/2002 +0200, you wrote: I've installed Tomcat 4.1.12 with jsdk 1.4.0_02 on windows 2000. When I try to connect to the index.jsp default page I get the next error:

examples source -- numguess.txt vs snoop.txt

2002-10-01 Thread Matthew Hannigan
I'm running tomcat 4.0.4, looking at the examples. Using the source links, I've found that numguess.txt displays as expected, but snoop.txt does not. snoop.txt looks as though it is being parsed, but numguess.txt is untouched. Anyone else see this? If so why does it happen? One difference

Re: HTTP Status 404

2002-10-01 Thread micael
The xml files are used to configure the aspects you will use in tomcat, like initializing servlets, mapping urls to a controller servlet, security, etc. The server.xml is to configure the relations between various parts of the code running under tomcat, such as applications, databases, etc.

Re: Help with test needed.

2002-10-01 Thread Martin Jacobson
Robert L Sowders wrote: I've just about completed a new site and I've been wondering about a few things, specifically how does the public see it. It's an ArcIMS site and I know it will appear to load a bit slow, (that's just how ArcIMS works). I'm hosting the front end in one place and

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
Great!... I have a background in ASP, scripting using VBScript and JavascriptI'm personally studying using java or using .jsp web application... this is the first time i've use tomcat. r/glinn micael wrote: I am in the State of Washington in the United States. What is your

Re: examples source -- numguess.txt vs snoop.txt

2002-10-01 Thread Matthew Hannigan
Aargh, this is probably http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3029 Sorry for wasting peoples time. Bloody IE. On Tue, Oct 01, 2002 at 05:24:00PM +1000, Matthew Hannigan wrote: I'm running tomcat 4.0.4, looking at the examples. Using the source links, I've

Re: examples source -- numguess.txt vs snoop.txt

2002-10-01 Thread Matthew Hannigan
Me again, talking to myself :-o It would be nice for the source to the servlet examples to display like the source to the jsp examples. All colorized n' stuff. Is this possible? Matt On Tue, Oct 01, 2002 at 05:41:56PM +1000, Matthew Hannigan wrote: Aargh, this is probably

Re: HTTP Status 404

2002-10-01 Thread micael
Odd, Glinn, I seem to be getting that your isp is located in California? At 03:35 PM 10/1/2002 +0800, you wrote: Great!... I have a background in ASP, scripting using VBScript and JavascriptI'm personally studying using java or using .jsp web application... this is the first time i've use

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
what do you mean mic?.. micael wrote: Odd, Glinn, I seem to be getting that your isp is located in California? At 03:35 PM 10/1/2002 +0800, you wrote: Great!... I have a background in ASP, scripting using VBScript and JavascriptI'm personally studying using java or using .jsp web

Exception management with Tomcat (URGENT)

2002-10-01 Thread Heligon Sandra
I defined a class MyServletContextListener where I use exceptions for example: public void contextInitialized(ServletContextEvent arg0) { s_context = arg0.getServletContext(); try { ...

Fwd: RE: reloading ApplicationResources

2002-10-01 Thread micael
I should have said a properties object is a hashtable, but I assume you understood that Date: Tue, 01 Oct 2002 00:55:03 -0700 To: Struts Users Mailing List [EMAIL PROTECTED] From: micael [EMAIL PROTECTED] Subject: RE: reloading ApplicationResources A properties file is a hashtable. But, I

Re: Jasper Exception

2002-10-01 Thread Alvaro Armenteros
The error page doesn't give me any information except the list of nested exceptions. It doesn't display the root cause It seems like it couldn't read the jsp file ( error at line : -1 ¿¿??) This file is the default index file which comes with the tomcat distribution. I've been using tomcat 4.0

Re: HTTP Status 404

2002-10-01 Thread Glinn Cortez
yes, mic. our isp is located in california. but i'm here right now in the philippines. r/glinn micael wrote: Odd, Glinn, I seem to be getting that your isp is located in California? At 03:35 PM 10/1/2002 +0800, you wrote: Great!... I have a background in ASP, scripting using VBScript

MySQL empty ResultSet on Solaris

2002-10-01 Thread Diego Castillo
Hi, I have an application that accesses data from MySQL via a datasource configured in config.xml. It works fine in W2K with Tomcat 4.0.3 and the mm MySQL driver 2.0.14. Now I need to install it on a Solaris box. I installed the latest Tomcat 4.1.12. The application can write into the database;

Re: excessive cpu use with 4.0.4

2002-10-01 Thread Craig R. McClanahan
On Mon, 30 Sep 2002, Seb B wrote: [snip] Also, this has been asked already, but I didn't see many answers: is there any sort of real-world benchmark of what load I can expect in such a set-up ? I understand it depends a lot on what the servlets do, so I'm wondering how big the biggest

Re: excessive cpu use with 4.0.4

2002-10-01 Thread Raj Saini
Hi, I am using the Tomcat 4.0.3 in a very big site. I have few hundereds of JSP, around 15 servlets, integrated with JBoss with my own framework (which consists around 500 class files. You can think of it a complete J2EE implementation of a commercial business application. Off late, I have

Exception management with Tomcat (URGENT)

2002-10-01 Thread Heligon Sandra
I defined a class MyServletContextListener where I use exceptions for example: public void contextInitialized(ServletContextEvent arg0) { s_context = arg0.getServletContext(); try { ...

body-less Bodytags with 4.1.12

2002-10-01 Thread Bob Schulze
Hi, when I am using my bodytags in tc4.1.12 like that: my:tag zzz /my:tag my:tag/my:tag .. the latter displays zzz too! I overcome this by clear-ing the bodyContent in the tags setPageContext() method, but I guess its not intended?! Somebody an idea? Bob -- To unsubscribe, e-mail:

RE: mod_jk error under load (errno codes)

2002-10-01 Thread Anthony Milbourne
Hi I just searched through google. I didn't find any lists of error codes - which is something that I would find quite useful as well. All I found was someone elses post to another forum. Question for developers people in the know: I realise that I could read the source to find this out but

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-10-01 Thread Chris Read
Greetings... Have you also noticed a spike in CPU usage on your Apache server running mod_jk, or your network throughput? The reason I ask is we've got a similar problem here. We've got a slightly different setup (Apache 1.3.x, mod_jk, Tomcat 4.0.3, Sun JDK 1.3.1 - all on Solaris), but the same

How to avoid the Default HTTP header being sent from Servlet to Applet

2002-10-01 Thread sunita desai
Hi, To explain my problem, I have a plaing Applet-Servlet communication. The servlet just reads an backend socket connection contents and keeps sending every 50 lines of information to the Applet. And the applet after receiving every 50 lines, displays it in TextArea without interpreting the

what is RequestDumperValve

2002-10-01 Thread Kunal Shah
Hi all, I was going through the comments in server.xml of tomcat application server Here is snippet of the comments !-- The request dumper valve dumps useful debugging information about the request headers and cookies that were received, and the response headers and

RE: Help with test needed.

2002-10-01 Thread Robert L Sowders
That's exactly what I was looking for Nicholas, Thankyou very much, this helps alot. rls Nicholas Orr [EMAIL PROTECTED] 09/30/2002 09:29 PM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject:RE: Help with test

Re: Tomcat 4.1.12: SSL warnings in catalina.out

2002-10-01 Thread Francisco Queiros Pinto
William Lee wrote: I've set up a standalone 4.1.12 Tomcat instance using SSL connection. When I looked into the catalina.out in the log directory, I realized that there are some warning lines in there that are pretty annoying. The lines are like: [WARN] Http11Processor - -Exception

Re: Problem with mod_jk.so

2002-10-01 Thread Henri Gomez
[root@dev bin]# ./apachectl configtest Syntax error on line 208 of /usr/local/apache-new/conf/httpd.conf: Cannot load /usr/local/apache-new/libexec/mod_jk.so into server: /usr/local/apache-new/libexec/mod_jk.so: undefined symbol: ap_ctx_get ap_ctx_get is a standard Apache definition, are

Re: Tomcat 4.1.12 + JDK 1.4.1 + ISAPI.dll + IIS + WinNT 4.0 SP6

2002-10-01 Thread Jean Fotovat
hello, do you already see at http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/ perhaps it could help. jean - Original Message - From: John Naldoza [EMAIL PROTECTED] Newsgroups: basebeans.org.apache.jakarta.tomcat Sent: Thursday, September 26, 2002 9:30 PM Subject: Tomcat

RE: Help with test needed.

2002-10-01 Thread Anthony Milbourne
Hi I had a look from JANET (UK Academic network) which is 10Mbit when we get it. Initial page load was slow and some impatient folks might give up (maybe a please wait message ?). After that it was all fairly responsive. Zooming in was fairly quick (The delay while it went and got the image was

Bug in 4.0.4 DefaultServlet

2002-10-01 Thread Drinkwater, GJ (Glen)
Hi I have just come back off holiday and have heard about the bug with org.apache.catalina.servlets.DefaultServlet where you can see the source code of jsp's. I have been on the jakarta web site and there solution is to comment out servlet-mapping servlet-nameinvoker/servlet-name

RE: Bug in 4.0.4 DefaultServlet

2002-10-01 Thread Reynir Hübner
one way of getting there is to upgrade to either 4.0.5 or 4.1.12. -reynir -Original Message- From: Drinkwater, GJ (Glen) [mailto:[EMAIL PROTECTED]] Sent: 1. október 2002 10:55 To: 'Tomcat Users List' Subject: Bug in 4.0.4 DefaultServlet Hi I have just come back off

RE: Bug in 4.0.4 DefaultServlet

2002-10-01 Thread Drinkwater, GJ (Glen)
I am in the process of upgrading bu i need to test my application with the new version. So i need a patch until i have done this. glen -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: what is RequestDumperValve

2002-10-01 Thread Cox, Charlie
look in the file in the logs dir that you have defined in the Logger element in server.xml. Charlie -Original Message- From: Kunal Shah [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 5:29 AM To: [EMAIL PROTECTED] Subject: what is RequestDumperValve Hi all, I was

Re: excessive cpu use with 4.0.4

2002-10-01 Thread peter lin
I don't know if others have mentioned this, but have you tried using other vm's? I've done several benchmarks and stress tests with 4.x and haven't seen any problems with a real webapp. The webapp is fairly complicated with a couple hundred jsp pages, so arguably a webapp that uses JSP

RE: Documentation

2002-10-01 Thread Turner, John
-Original Message- From: Glenn Nielsen [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 6:18 PM I would tend to agree with the above, those writing the code either don't have the inclination or time to write up good documentation. In my mind, these developers should

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-10-01 Thread Turner, John
I'm not sure it is Tomcat. I have Tomcat 3.1 with Apache 1.3.26 and mod_jserv, many separate instances of Tomcat. My servers rarely go over 40% CPU, and my sites are not only high-traffic but resource intensive (on-the-fly custom graphics manipulation). Uptime is 112 days. I guess it could

RE: Start Apache/Jakarta-Tomcat as Non-root user

2002-10-01 Thread Turner, John
By better off using rc.local I meant a little bit of both. Sometimes the simplest way is the best way, especially if what you are trying to do is not your core skill set. The correct way is to use S and K scripts like you are trying to do. The goal, though, is to get the services started on

Can't get SSL Client Certificate

2002-10-01 Thread M . Mazza
Hy, I've got problems getting ssl client certificate. I'm using tomcat 4.1.2, Apache 2.0.42, mod_jk2 (2.0.0) and I've configured Apache with SSL client verification and mod_jk2 with normal socket connector to port 8009. All seems to work fine: the browser ask me the pin for the access to the

RE: MBeans?

2002-10-01 Thread Shapira, Yoav
Howdy, What kind of bean what you like to add so that tomcat knows about it? In the (current) tomcat world, there are two kind of MBeans: its own and yours. Yours are under your webapp, visible only to you, and tomcat doesn't want to have anything to do with them. Its own MBeans are visible

RE: Warp connections

2002-10-01 Thread Sigurur Bjarnason
Ok.. So what is the use of the connector then ?!?!?!? If not to let Tomcat serve the Jsp and Servlets.. witch it is supposed to do. ?!? This makes no sense at all to have this connector then.. ... If Tomcat ends up serving all the content ! Then it would just be better to leave out Apache

RE: Warp connections

2002-10-01 Thread Andy Eastham
Title: Re: Warp connections Siggi, What this means is that if you map, for example, /myapp to Tomcat, Tomcat will serve all content under /myapp. You cannot get Apache to serve /myapp/my.jpg. Apache will still serve things that aren't under /myapp, so /index.html, /images/my.jpg etc

RE: what is RequestDumperValve

2002-10-01 Thread Kunal Shah
Thanks I got it in Catalina. .log file But its too much. For one post request, it dumps around 280kbs of data. For my one day work, it dumps around 75mbs of data.!! Along with header requests and cookie information, it dumps other things also. Is there any way I can separate the

Re: Documentation

2002-10-01 Thread Thad Humphries
I'll throw in what I can. Most of my TC docs consist of URLs and hardcopy that I've collected here and there from the web, along with my notes. Put me on your list... If nothing else, it will help me to learn more aobut Tomcat... On Mon, 2002-09-30 at 17:01, Robert L Sowders wrote: Since

RE: (Help Needed!!)How to avoid the Default HTTP header being sent from Servlet to Applet

2002-10-01 Thread sunita desai
Hi, In addition to my problem definition in my earlier mail, I would like to add following. Actually I see that the header info is being sent from the Servlet to the applet everytime when it makes a URL connection to Servlet. It is something like this: 200: OK Date: Tue, 01 Oct 2002 12:53:14 GMT

Re: Documentation

2002-10-01 Thread peter lin
I'm still cleaning up my old document on configuring servletcontextlistener, and servlets, but I'd like to help also. I also think documentation is critical and would like to assist in that effort. peter lin Turner, John wrote: -Original Message- From: Glenn Nielsen

RE: what is RequestDumperValve

2002-10-01 Thread Cox, Charlie
you can add a logger under each host. Even if you only have one host, it will separate it from catalina.log. I think you can add a logger under the valve as well but I haven't tried to. Charlie -Original Message- From: Kunal Shah [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October

500 Internal Server Error

2002-10-01 Thread Sigurur Bjarnason
Hi all I have a website.. witch is in frames, the site is run with Tomcat 4.0.4 and Apache 1.3. The site works fine.. for all parts.. except on frame.. it is a login frame that shows this error.. ( 500 internel Server Error ) although the rest of the site is ok ?! This .. happens.. once in

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-10-01 Thread Adam Greene
I have to agree. I have a website that we pounded with 3 test computers and couldn't get Tomcat over 20% usage. -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 9:19 AM To: 'Tomcat Users List' Subject: RE: Can someone PLEASE tell me why

Re: The right path; in more way than one.

2002-10-01 Thread Thad Humphries
I know that Tomcat's docs *say* this and that the JSP servlet specs call for this but it has not been my experience! As I have *twice* pointed out here (to no ones acknowledgement), I have an application that runs fine under Tomcat 4.0.? but not under 4.1.12. It fails on objects in xerces.jar.

Re: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-10-01 Thread Glenn Nielsen
This sounds like the bug I fixed in Tomcat 4.1.x where infrequently I saw a POST request put Tomcat into an infinite loop. We run Apache and Tomcat on different servers. I had noticed the increased CPU usage on the Tomcat server but hadn't noticed the increased CPU usage on the Apache server. I

RE: Warp connections

2002-10-01 Thread Sigurur Bjarnason
It does.. Andy..to a point Thanks But.. :) What i am trying to do..is to let the connector.. just serve the *.jsp and servlets from /myapp if there where .jpg .gif .html and so on.. in there tomcat..would also serve that.. And that ..is what i dont want at all.. I am thinkin of the

Redirect catalina logs to a file in windows

2002-10-01 Thread Deepak R
Hi, I have setup tomcat on windows. When I startup tomcat with the command 'startup.bat', it opens up a new window all the logs from catalina are output in that window. How can I redirect it to a file, like we have 'catalina.out' for unix? Thanks, Deepak -- To unsubscribe, e-mail:

RE: Documentation

2002-10-01 Thread Anthony Milbourne
Hi -1 for shooting developers :-) I can see your point John, but in the real world people are slack and miss bits. Also, as has been pointed out, writing technical notes for technical people is a very different skill to writing a user manual for lay-people. I would rather have the best

RE-REPOST: error pages :-)

2002-10-01 Thread Felipe Schnack
Nobody uses this? I added these lines to my web.xml error-page exception-typejava.lang.Exception/exception-type location/ponto/error.jsp/location /error-page With this, any thrown exception should be redirected to /ponto/error.jsp, right? Well, it seems that when

Please provide any clues for HTTP header Problem

2002-10-01 Thread sunita desai
-Original Message- From: sunita desai [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 6:27 PM To: Tomcat Users List Subject: RE: (Help Needed!!)How to avoid the Default HTTP header being sent from Servlet to Applet Hi, In addition to my problem definition in my earlier

Tomcat, JSSE, JAXM SOAP Problem

2002-10-01 Thread Cooperstock, Dan
Sorry, I posted this yesterday, but my !?@# MS e-mail client insisted on sending it as HTML, and most of the posting was lost. It seems like a lot of people have asked questions similar to the following on this list, but never gotten a helpful answer. I'll be brave and post my version of it! I

Performance testing

2002-10-01 Thread Kaltwasser, Jonathan LT (OP 09WN5B)
Saw a couple of posts recommending testing performance over weeks...what program do ya'll recommend to load test a portal system I'm building. Its a servlet/jsp based portal, with login and workplaces (that pull in remote content). What program do ya'll recommend to simulate a log on, move

Help - why is tomcat so slow in displaying each page?

2002-10-01 Thread andrew mercer
Hi, I have recently had to convert from Jetty to tomcat for one of our customers. The application is run from a war file that has in it among other things java classes and webmacro templates. The main browser views are currently created using frames. When I run the war file using jetty

WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Mauro Daniel Ardolino
Hi! I thought there was an answer to this question in the list, but I've searched in tons of mails and didn't find it. The fact is that we are starting to work more seriously with tomcat and we really don't know which can be the best way to work in a team. We have tomcat 4.1.12 running on a

AW: Performance testing

2002-10-01 Thread Ralph Einfeldt
Some open + free solutions: - ab a part of the apache web server http://httpd.apache.org/docs/programs/ab.html - jMeter a part of the jakarta project http://jakarta.apache.org/jmeter/index.html - Siege http://www.joedog.org/siege/index.shtml Just free: (No money needed) -

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-10-01 Thread Rossen Raykov
Upgrade at least to Tomcat 4.0.4 where this problem is particularly solved. I said particularly since the problem will still occur but it'll be handled more gracefully without to sky rocket the CPU usage. I'm not so sure will an upgrade to the latest mod_jk cure the problem completely. I just

RE: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Turner, John
#2. Basically, you have three instances of Tomcat, with separate environments. Not that hard to setup. I think Ralph Einfeldt posted a description of how to do this within the last couple of weeks, or perhaps it was someone else...my memory has been a little weak lately. John -Original

Load balancing + replicated sessions

2002-10-01 Thread Luiz Ricardo
Hi, I would like to know if there is a way to configure Tomcat + Apache to replicate sessions under a load balancing configuration. Example, I have two Tomcat instances (TC1 and TC2) and the session in TC1 would be replicated in TC2 and the sessions in TC2 would be replicated in TC1, so if TC1

Re: Load balancing + replicated sessions

2002-10-01 Thread Ben Ricker
See http://www.theserverside.com/resources/article.jsp?l=Tomcat. you can do in memmory session replication across JVMs through TCP. Ben Ricker On Tue, 2002-10-01 at 09:29, Luiz Ricardo wrote: Hi, I would like to know if there is a way to configure Tomcat + Apache to replicate sessions

AW: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Ralph Einfeldt
As long as you just need one version of tomcat I recommend to install one tomcat with serveral instances. As I can't find my own post in the archive (gives alway to many or to few results) here's the repost of my last mail: We install different versions of tomcat like this:

RE: Documentation

2002-10-01 Thread Bruce Williams
-Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 8:12 AM To: 'Tomcat Users List' Subject: RE: Documentation -Original Message- From: Glenn Nielsen [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 6:18 PM

Re: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread unix guy
I have found the best way is to have 1 tomcat running on 3 different ports. It increased our throughput exponentially. Just update the server.xml. Also use loadbalancer in the mod_jk.conf and workers.properties. Hope this helps. - Original Message - From: Mauro Daniel Ardolino

Concurrency Problems

2002-10-01 Thread Tomcat Forum
Hi Everybody, Iam having some problems with simutaneous users on the Tomcat 4.0 server. I have made a java client for testing Tomcat with multiple users. This client makes multiple threads with each requesting login and then some page from the tomcat server. But if I send more than 25

Re: AW: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Mauro Daniel Ardolino
Thank you very much! I couldn't find this mail either. I'll try it and if I have any questions I will post them. Thanks again. -- Mauro On Tue, 1 Oct 2002, Ralph Einfeldt wrote: As long as you just need one version of tomcat I recommend to install one tomcat with serveral instances. As

Re: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Mauro Daniel Ardolino
All right. I'm pretty new working with tomcat and it will be very helpful and example of this. I do not even have the mod_jk.conf file anywhere, or the workers.properties. Thanks. -- Mauro On Tue, 1 Oct 2002, unix guy wrote: I have found the best way is to have 1 tomcat running on 3

Re: Load balancing + replicated sessions

2002-10-01 Thread Luiz Ricardo
thanks so much. Luiz Ricardo - Original Message - From: Ben Ricker [EMAIL PROTECTED] To: Tomcat-Users List [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 11:33 AM Subject: Re: Load balancing + replicated sessions See http://www.theserverside.com/resources/article.jsp?l=Tomcat. you

Re: Concurrency Problems

2002-10-01 Thread Nick Sharples
Tomcat Forum writes: Iam having some problems with simutaneous users on the Tomcat 4.0 server. I have made a java client for testing Tomcat with multiple users. This client makes multiple threads with each requesting login and then some page from the tomcat server. But if I send

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-10-01 Thread Brandon Cruz
Glenn Neilson mentioned to me yesterday that I might want to use the -verbose:gc command when starting tomcat so that I can see how garbage collection is working. I have done this but it does not seem to give me much useful info. Is there anything in particular that I should be looking for?

Re: MBeans?

2002-10-01 Thread Randy Secrist
I am building a custom user system which extends that which tomcat 4.1.12 did - basically an extended version of the UserDatabaseRealm and UserDatabase - to meet a companies specific security needs. As such, any classes I write for this go into the server/lib directory. I noticed I could

digital signatures with tomcat?

2002-10-01 Thread Jason Johnston
Does anyone know of any good references sites on implementing digital signatures, such as Entrust TruePass, with Tomcat?

Re: Concurrency Problems

2002-10-01 Thread peter lin
it all depends on the hardware, webapp and a whole bunch of other things. the best way to find out is to stress test it with varying level of threads, preferably increased in regular increments. once you get a baseline, you can then try increasing the max processors in server.xml and repeat

Re: HTTP Status 404

2002-10-01 Thread Thomas T. Veldhouse
I had this same problem with 4.1.10. I was only able to get it to run by stopping and restarting the container -- or deploying my app as a war. Tom Veldhouse - Original Message - From: Glinn Cortez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 12:30 AM

[OFF TOPIC] RE: Documentation

2002-10-01 Thread Turner, John
-Original Message- From: Bruce Williams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 10:56 AM To: Tomcat Users List Subject: RE: Documentation There is a big difference between writing policy and administrative doc, and writing product documentation on a product

Doubt about multiple applications

2002-10-01 Thread Ricardo de Souza Moura
I am using Tomcat 4.0... I have two applications, A and B in the lib directory of A I have a file1.jar, and in the lib directory of B I have the same file, file1.jar. I am not wanting to put my file file1.jar in the lib directory of Tomcat. But when the Tomcat load the applications, only one

RE: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Turner, John
Multiple instances of Tomcat is a better way to go, see Ralph's explanation posted previously in this thread. One instance of Tomcat, even on multiple ports, means that everyone will wait while one person does maintenance or stops and starts Tomcat. It's much more productive to give every one

Applet can't find trusted certificate

2002-10-01 Thread Monte . Gardner
I just upgraded our red-hat 7.1 server from tomcat 4.1.10 to Tomcat 4.1.12. I have an applet on that server which connects to a Servlet on the same server. The applet needs to be able to connect to the servlet over an https connection. When I connect over normal http everything works find, but

[OFF TOPIC] in-process spell check?

2002-10-01 Thread Turner, John
Does anyone know of, or have a pointer to, a software application or module that will perform spell checking on text submitted from a form? The scenario is Tomcat + Apache, JSPs, classes, and servlets. The idea being that if someone accesses a web page, fills out a form, and then submits it,

RE: [OFF TOPIC] in-process spell check?

2002-10-01 Thread Turner, John
Sorry about that...I meant to add also that I have some pointers already via Google, what I am really looking for are some recommendations from people who have implemented this type of solution in the past. Thanks! John -Original Message- From: Turner, John [mailto:[EMAIL

RE: MBeans?

2002-10-01 Thread Shapira, Yoav
Hi, I am building a custom user system which extends that which tomcat 4.1.12 did - basically an extended version of the UserDatabaseRealm and UserDatabase - to meet a companies specific security needs. As such, any Sounds interesting... classes I write for this go into the server/lib

RE: Problem with mod_jk.so

2002-10-01 Thread Ben Ricker
Just to let everyone know, I downloaded John Turner's mod_jk.so and the problem went away (have not finished testing, however). The URL is: http://www.johnturner.com/howto/apache-tomcat-howto.html. Thanks to John! Ben Ricker On Mon, 2002-09-30 at 12:53, Ben Ricker wrote: On Mon, 2002-09-30

RE: WHICH IS THE BEST WAY TO HAVE MULTIPLE TOMCAT SERVERS?

2002-10-01 Thread Mauro Daniel Ardolino
Thanks! See below... Multiple instances of Tomcat is a better way to go, see Ralph's explanation posted previously in this thread. One instance of Tomcat, even on multiple ports, means that everyone will wait while one person does maintenance or stops and starts Tomcat. It's much more

RE: Problem with mod_jk.so

2002-10-01 Thread Turner, John
No problem, glad I could help. John -Original Message- From: Ben Ricker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 11:36 AM To: 'Tomcat Users List' Subject: RE: Problem with mod_jk.so Just to let everyone know, I downloaded John Turner's mod_jk.so and the

  1   2   >