Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Dakota Jack
snip I suspect that it is relatively small and, when you introduce sophisticated state and caching options, it may be faster. Relative to what? To the web server dealing with it? I would suspect it's actually relatively BIG compared to that. I'm certainly willing to be proved wrong

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Dakota Jack
I think the worst case is 22 versus 32, Frank. with 10 images. See your note and then my reasoning below that. snip Even if it's all done in the most efficient way, those ten requests look, for all intents and purposes, like 10 simultaneous USERS (assuming 1 request per user). So, maybe

Re: Updating webapps in a running production cluster.

2005-01-30 Thread Peter Rossbach
Hey Robert, i have also successfull test the cluster with mod_jk2.0.4 but this module is out of date and unsupported. Only the mod_jk is under development. s. http://jakarta.apache.org/tomcat/connectors-doc/ Regards Peter Roberto Cosenza schrieb: I do mean mod_jk2. Could this be the problem?

Re: Where is jkstatus function in jk version 1.2.8?

2005-01-30 Thread Peter Rossbach
Hey Richard, I hope also that Mladen can add this feature to next mod_jk release. :-) At the Apache 2.x cvs Head mod_proxy_ajp has a very fine status page. Peter Richard Mixon (qwest) schrieb: I understand that the jk 1.2.8 connector supercedes the deprecated jk2 connector. I had read previous

RE: [OT] Advertising website

2005-01-30 Thread Peter Crowther
From: Didier McGillis [mailto:[EMAIL PROTECTED] One trick that I know of and requires some software. Is to setup 4 to 5 sites filled with links back to your pages, and similar content, and of course you link to those sites. If Google notice you spamming the index in this way then they

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Frank W. Zammetti
Dakota Jack wrote: I just mean the more complicated parsing rules that go with JSP, as well as everything else. Ok, gotcha. But, this only applies for the first access to the JSP, right? From then on it's a servlet invocation (which is more expensive than returning just a plain'old HTML

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Frank W. Zammetti
Dakota Jack wrote: app server = (AS) struts server = (SS) req = request -- = pass res = response You lost me here already... What's the difference between the app server and the struts server? Isn't Struts running IN your app server? With ResourceAction

[VOTE][RESULT] Tomcat 5.5.7 Stability

2005-01-30 Thread Yoav Shapira
The Apache Jakarta Tomcat team is proud to announce that Tomcat 5.5.7 has been voted stable after substantial evaluation and testing. The vote thread is archived at http://marc.theaimsgroup.com/?t=11067421773r=1w=2 among other places.

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Dakota Jack
snip I think that the ResourceAction class actually acts as the web server and that is why the return is null. The class writes to the responses output stream and that is all the server does, right? I thought so too at first, but upon further reflection I'm not so sure... If a request

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Dakota Jack
Too late when I sent this. Let me make the necessary alterations to the nomenclature. Sorry! web server = df. (WS) app server = df. (AS) request= df. req response = df. res = df. passing the control With ResourceAction 1.0 WS req WS res HTML [2] 1.1

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Frank W. Zammetti
Dakota Jack wrote: I am certain on this one, because you can do this sort of thing *without* the web or app servers at all. I do this fairly frequently with code not unlike and heavily borrowing in principle from Jason Hunters HttpMessage and HttpsMessage in COS. The ResourceAction sends the

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Frank W. Zammetti
I still don't understanding the 32 and 22... What do the [2] and [3]'s represent? Dakota Jack wrote: Too late when I sent this. Let me make the necessary alterations to the nomenclature. Sorry! web server = df. (WS) app server = df. (AS) request= df. req response = df. res =

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Dakota Jack
snip The question that's in my mind though is what happens when you have a web server in front of Tomcat? Just rendering to the response in a servlet might not be enough in that case... /snip *Before* ResourceAction returns null, the response output stream has been written, flushed, and

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Dakota Jack
snip On Sun, 30 Jan 2005 14:11:24 -0500, Frank W. Zammetti [EMAIL PROTECTED] wrote: I still don't understanding the 32 and 22... What do the [2] and [3]'s represent? /snip A total of three possible processes (1) getting the request; (2) passing the request to another server; (3) handling the

RE: Catalina Log File - Coyote can't register jmx for protocol

2005-01-30 Thread HockChai Lim
Below is all I see in catalina_log.2005-01-29.txt file: 2005-01-29 23:03:39 CoyoteConnector Coyote can't register jmx for protocol. I'm using win98, jdk1.4.2. Tomcat 4.1. --- Caldarale, Charles R [EMAIL PROTECTED] wrote: Whatever error or stack trace you were trying to include didn't make it

Re: Trouble with XSL transforms with JSP

2005-01-30 Thread Alan Deikman
The error message you are getting I haven't seen before, but it seems that you have some text before the root element of your document. This would be outside of the ? .. ? elements. Personally, I wrote a java class to do my XSL transforms. My JSPs call them, so other than that there is

Edit session timeout

2005-01-30 Thread Aris Javier
Hello! How to edit session timeout? Tomcat's default value is 30mins... 30 minutes of inactivity then a session will expire... In my apps, i think 30minutes is too long.. i want 5 minutes of inactivity before session expires... is it in server.xml? i only see connectionTimeout which is 2?

Re: Failed JDBC connection hangs Tomcat

2005-01-30 Thread Hari Mailvaganam
The JTDS driver can cause the hanging you described - this has occured in a test we did on Win 2k, SQL Server 2k, 1.5 JDK. reagrds, Hari Mailvaganam On Sun, 30 Jan 2005 08:39:50 +0200, Igor [EMAIL PROTECTED] wrote: We have the same problem, that described in

Running Tomcat as service

2005-01-30 Thread ohaya
Hi, I've been running (an older) version of Tomcat (4.1.31) on a test Windows 2000 system for awhile as an application, and this weekend, I wanted to try to run it as a service, so I downloaded and ran the .EXE version from www.apache.org. The installation seemed to go ok, but whenever the

Re: [OT] Re: JSP under /WEB-INF folder PROTOCOL PAGES (ProtocolPages)

2005-01-30 Thread Frank W. Zammetti
Dakota Jack wrote: The good is that the web site designer knows when a change has been made and the assumption is that you are going to see what the web site designer has to offer. No? Jack I concur with the assumption, but I don't see it making any difference... Remember that what we

Re: Edit session timeout

2005-01-30 Thread Wendy Smoak
From: Aris Javier [EMAIL PROTECTED] How to edit session timeout? Tomcat's default value is 30mins... Look in web.xml instead of server.xml. You can change it for the entire container, or on a per-webapp basis, depending on which web.xml you edit. (Works for Tomcat 4.1, I haven't moved to 5

RE: Edit session timeout

2005-01-30 Thread Aris Javier
I looked at my web.xml, and no sessionTimeout found there... can you give me an example on how to write it down in web.xml? thanks! aris -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Monday, January 31, 2005 12:25 PM To: Tomcat Users List Subject: Re: Edit

RE: Edit session timeout

2005-01-30 Thread Caldarale, Charles R
From: Aris Javier [mailto:[EMAIL PROTECTED] Subject: RE: Edit session timeout I looked at my web.xml, and no sessionTimeout found there... can you give me an example on how to write it down in web.xml? Not sure what you meant by my web.xml, since, as Wendy noted, there's a global one in

RE: Edit session timeout

2005-01-30 Thread Drew Jorgenson
session-config session-timeout120/session-timeout /session-config Look, at the web.xml file inside the conf directory, the global web.xml file that is. You can usually find this right above the mime-type mapping definitions. Drew. On Sun, 2005-01-30 at 20:28, Aris Javier

RE: Edit session timeout

2005-01-30 Thread Aris Javier
Thanks Drew! I found it.. =) can I also use this setting per web app? by editing web.xml per web app? -Original Message- From: Drew Jorgenson [mailto:[EMAIL PROTECTED] Sent: Monday, January 31, 2005 12:41 PM To: Tomcat Users List Subject: RE: Edit session timeout session-config

Re: Edit session timeout

2005-01-30 Thread Parsons Technical Services
Yes. Doug - Original Message - From: Aris Javier [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Sunday, January 30, 2005 11:53 PM Subject: RE: Edit session timeout Thanks Drew! I found it.. =) can I also use this setting per web app? by editing web.xml per

RE: Edit session timeout

2005-01-30 Thread Aris Javier
Thanks Everybody! =) -Original Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent: Monday, January 31, 2005 12:56 PM To: Tomcat Users List Subject: Re: Edit session timeout Yes. Doug - Original Message - From: Aris Javier [EMAIL PROTECTED] To: Tomcat

Apache-Coyote/1.1 application configuration

2005-01-30 Thread Paul Denham
We are having some problems with the configuration of an Apache-Coyote/1.1 server and the installaition of a Broadband Speed test from Visualware http://myspeed.visualware.com/faq.html http://myspeed.visualware.com/faq.html Over 50% of users are experiencing an error when the 'Upload' test