Re: [ot?] Frontpage extensions for tomcat or related items

2003-01-16 Thread Ken Anderson
Jason Pyeron wrote: I think the parts people use have to do with the navigation widgets. All those useless directories that are created, etc. I guess thats the stuff I am looking for. -jason I don't think anyone has put any effort into an open source replacement for FP. The Mozilla editor

Re: [ot?] Frontpage extensions for tomcat or related items

2003-01-15 Thread Ken Anderson
FP extensions are an MS centric server based technology primarily for MS based Webservers (although there are limited versions for unix/linux with gaping security holes...). They support server based M$ widgets that your FP web pages can talk to and do things like counters and forms and chat

Re: securing tomcat...

2002-12-31 Thread Ken Anderson
Just put this in your web.xml for root webapp or others... error-page error-code404/error-code location/404error.html/location /error-page and create 404error.html to say whatever you like. Ken Jason Pyeron wrote: has any one put together a faq/howto on securing tomcat?

Re: SSL setup Apache - Tomcat

2002-12-20 Thread Ken Anderson
I'm assuming that you are using mod_ssl with Apache, and not running a separate SSL webserver like Stronghold, right??? I've not setup ApacheSSL/Tomcat before except with mod_webapp, but I have setup Apache/Tomcat with mod_jk as well (just not with ssl support). Here's my 2 cents anyway: The

Re: Tomcat SSL Setup

2002-12-18 Thread Ken Anderson
Have you considered the advantages of using one of the apache connectors instead of tomcat standalone for SSL support? I fought with Tomcat ssl support a couple years ago, and was unable to get it to work. I'm sure the support is there now, but ssl support is transparent if you use mod_jk or

Re: Tomcat SSL Setup

2002-12-18 Thread Ken Anderson
Incorporated Justin L. Spies URI: http://www.pantek.com Ph 440.519.1802 Fax 440.248.5274 Cell 440.336.3317 -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 4:51 PM To: Tomcat Users List Subject: Re: Tomcat SSL Setup Have you considered

Re: Naïve question about root

2002-12-17 Thread Ken Anderson
Denise Mangano wrote: I know this is a naïve question, and slightly irrelevant to the newsgroup... I keep getting told left and right not to work as root. I heeded this advice a while back and created a user. Here is the thing. My RH 7.3 box, running Apache 1.3.27 Tomcat 3.1.17 (no I

Re: Simultaneous request from same IP

2002-12-16 Thread Ken Anderson
You just need a new traffic cop object created at the beginning of doGet(); TrafficCop tc = new TrafficCop(); That way you are not talking to the same tc object when you say tc.add(); Ken A. Chris Bick wrote: Not sure I understand your last two statements. Could you elaborate a bit more?

apache/mod webapp - Premature packet header end

2002-12-12 Thread Ken Anderson
versions of mod_webapp detect this more gracefully? Thanks, Ken Anderson -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: cgi-bin

2002-05-02 Thread Ken Anderson
kidding? um... rewrite them as servlets, or reinstall apache. Ken Oki DZ wrote: Hi, I replaced Apache with Tomcat; problem is, what should I do so that these cgi scripts could get executed...? Thanks in advance, Oki -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

Re: Tomcat 4.0.2 and JDK1.4

2002-05-02 Thread Ken Anderson
Running on R.H. linux 7.2 with jdk 1.4 and Tomcat 4.0.4-b2. No classloading issues so far Had some weirdness with ibm's jdk 1.3 leaving piles of jar_cache temp files, but that's gone now. Ken [EMAIL PROTECTED] wrote: In tomcat 4.0.2-b2 release note, it said tomcat has issues with Jdk1.4

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-29 Thread Ken Anderson
: CALLING STARTUP CLASSES ... Fri Apr 26 04:02:35 : 104 : TRACE : system : *** Reading the license file *** Fri Apr 26 04:02:49 : 104 : TRACE : system : targetHost :172.16.40.104 -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Ken Anderson
and you lose the user supplied prefix (bad thing). Any other suggestions out there? There has to be a way to restrict (or add) more than one targetHost for tomcat to allow several access methods. Brian -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Ken Anderson
I just tried this, and it works! Also, 'UseCanonicalName' is On. Ken Ken Anderson wrote: h... have you tried Apache's ServerAlias Directive? I know this works with static content, but I'm not sure if mod_webapp respects it or not.. VirtualHost 192.168.1.1 ServerName blah1.blah.com

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Ken Anderson
On NameVirtualHost 192.168.1.10 VirtualHost 192.168.1.10 DocumentRoot /home/user/public_html ServerName www.domain.com ServerAlias test.domain.com WebAppConnection conn warp localhost:8008 WebAppDeploy mywebapp conn /go /VirtualHost - Ken Anderson Brian Bernardo

Re: mod_status.so

2002-04-26 Thread Ken Anderson
http://groups.google.com/groups?q=__floatdisf:referenced+symbol+not+found Always try google first - it will save you some time waiting for the answer. Ken [EMAIL PROTECTED] wrote: Starting up Apache with either mod_status or mod_authdigest, returns the error message __floatdisf:referenced

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Ken Anderson
is the ServerName. This sucks. This is a terribly lame limitation with tomcat. WebLogic can do it, even back with 5.0!! Brian -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 10:46 AM To: Tomcat Users List Subject: Re: tomcat/apache

Re: Apache 2.0, mod_webapp, tomcat 4.x integration

2002-04-25 Thread Ken Anderson
Did you try www.liquidshell.net/examples/ (the last slash is important) Ken Simon Stewart wrote: On Thu, Apr 25, 2002 at 01:49:33PM -0400, digital synapse wrote: i've managed to load tomcat and apache 2.035 fine with your supplied mod_webapp.so file Simon. I both tomcat and apache work on

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Ken Anderson
Does something like this work? - NameVirtualHost 192.168.1.1 VirtualHost 192.168.1.1 ServerName blah1.blah.com DocumentRoot /blah WebAppConnection conn warp localhost:8008 WebAppDeploy webappconn /test /VirtualHost VirtualHost 192.168.1.1 ServerName blah2.blah.com

Re: Which Apache-To-Tomcat Connector

2002-04-24 Thread Ken Anderson
It isn't so. There is no problem serving static content through apache using mod webapp to server only servlets, jsp. The setup is different than when using mod_jk, that's all. Ken Lance Smith wrote: Using: Apache 2.0.35 and Tomcat 4.0.3 on Red Hat 7.2. Say it isn't so: There is no way to

Re: Which Apache-To-Tomcat Connector

2002-04-24 Thread Ken Anderson
-c 100 load. It returned 'broken pipe' for anything over -c 5. Ken Anderson Cavan Morris wrote: I've recently done some benchmarking on mod_webapp and I wasn't too impressed. I am using it anyway though until I can compare to something better. The upshot was this. Apache+tomcat was taking 5

Re: mod_webapp + httpd.conf

2002-04-19 Thread Ken Anderson
Or, specify a virtualhost and deploy the connector within that virtualhost. - NameVirtualHost 192.168.1.1 VirtualHost 192.168.1.1 ServerName www.blah.com DocumentRoot /blah WebAppConnection conn warp localhost:8008 WebAppDeploy examplesconn /examples [other statements go

Re: Questions about Tomcat and Apache Integration?

2002-04-18 Thread Ken Anderson
Seems to be a common problem. The webapp Deploy statement (using mod webapp) will run everything in the 'deployed' directory tree, including images through tomcat. It's not a good idea to put static resources there, IMHO. If you have to put them there, but want apache to serve them, then us

Re: Tomcat 4.0.x and OpenSSL

2002-04-17 Thread Ken Anderson
If Apache is an option, I'd use it, since current builds (for many distros of linux) come with mod_ssl openssl built in. All you have to do is install Tomcat, configure the apache connector 'mod_webapp' (there are good links on the list for how to do that), then Apache will handle all SSL

Re: URLConnection was rejected in Apache-Tomcat Web envirment!

2002-04-17 Thread Ken Anderson
For apache limits, see: http://httpd.apache.org/docs/mod/directives.html For linux, try 'sysctl -a' to see a list of limits. How many connections/sec were you creating? Ken Yaogeng Cheng wrote: Hi: I was testing my servlet under Apach-Tomcat envirment in Linux system. I opened 200

Re: processing page

2002-04-17 Thread Ken Anderson
see the server push example - countdown.java http://www.servlets.com/jservlet2/examples/ch06/index.html#ex06_13 On 2002.04.17 03:54 Michael Reutter wrote: Hi! PLEASE HELP ME how to implement this with servlets: A page is requested - but tomcat needs 15-30 seconds to create the result! What

Re: Apache serving static content

2002-04-16 Thread Ken Anderson
mod_webapp already works this way. That's the whole point of using it with Apache, right? See http://dcb.sun.com/practices/howtos/tomcat_apache.jsp Ken Hello Again: I know I can be kinda annoying, but I really need to know if someone could make mod_webapp + warp configuration to serve only

Re: Serving images with Apache

2002-04-16 Thread Ken Anderson
Unless you have WebAppDeploy pointing to the document root of the site, you won't have any problems serving static content from Apache. Ken Gabriel Maffia wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. I think I´ve sent this question before, but I´m not sure if it got to the

Re: Exception when executing JSP

2002-04-16 Thread Ken Anderson
You need jsdk. jre will not compile anything. Ken Darsey, Charlie wrote: I cannot get any jsp pages to execute on my Sun server. SunOS 5.8, jre 1.3.1. I've tried both jakarta-tomcat-3.2.2 and jakarta-tomcat-4.0.3 and I keep ketting the mesage below: What's the scoop? It works fine on my

Re: Apache serving static content

2002-04-16 Thread Ken Anderson
What is the advantage of deploying all resources of a webapp inside the webapp directory? If there is a need for a webappIgnore feature, perhaps this question should be brought to the the dev list? Ken Brandon Cruz wrote: I have the same issue with mod_jk. We deploy all of our web

Re: Apache serving static content

2002-04-16 Thread Ken Anderson
to eradicate a few issues with it before I send it to them. Regards, James Williamson www.nameonthe.net UK Tomcat Hosting - Original Message - From: Ken Anderson [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, April 16, 2002 9:25 PM Subject: Re

Re: Apache serving static content

2002-04-16 Thread Ken Anderson
looks at the uri, the Alias directive modifies the filename (as do things like mod_rewrite) during the uri translation phase, obviously doing this has no effect. Regards, James Williamson www.nameonthe.net UK Tomcat Hosting - Original Message - From: Ken Anderson [EMAIL

Re: Authentication without using forms

2002-04-15 Thread Ken Anderson
Or, just use basic authentication. See the manager example configuration. Ken Steve Vanspall wrote: We have a similar situation here. In our case we keep the bean in which you store this information, in session when they logon. You could just store the userid and password in session when

Re: Tomcat:Port 8080 or 8007?

2002-04-13 Thread Ken Anderson
If you have all the examples installed, and tomcat is starting okay, you should see content at http://localhost:8080 The apj12 connector (and port 8007) is for apache; you can ignore it, unless you are running tomcat with apache You need full jsdk to run jsp, not just jre. Ken [EMAIL

Re: Tomcat 3.3.1 and JDK 1.4

2002-04-12 Thread Ken Anderson
4.04b2 JDK 1.4 works very well. Using it on XP and R.H. Linux 7.2 No reason 3.3.1 wouldn't work also. Ken Carlos Martins wrote: Yep. i'm using it. actually, i'm using tomcat 4.0.2 with JDK 1.4, and it's working fine. -Original Message- From: Michel COTE [mailto:[EMAIL PROTECTED]]

Re: password protection

2002-04-11 Thread Ken Anderson
See the manager example that comes with tomcat. You have to define a security constraint in web.xml, and specify username / password in tomcat-users.xml Ken David Gladstone wrote: i am trying to figure out how to password protect a directory. i am realativly new to tomcat. i know it its very

Re: Please help me on a question about TOMCAT OR APACHE + TOMCAT

2002-04-10 Thread Ken Anderson
Tomcat Standalone is not an enterprise webserver, and will not stand up to the pounding that Apache can take. I think you would find that your response time drops off rather quickly if you are hosting 200 active virtual domains. If you don't serve many concurrent requests, and don't need the

Re: How can I automatically start a servlet in a specific time?

2002-04-10 Thread Ken Anderson
You mean you don't want to load it until a specific time, or you don't want it to respond to requests until a certain time? Ken Carlos Martins wrote: Kelly, Boa pergunta... não sei nenhuma maneira directa, mas podes sempre criar um servlet tipo scheduler que arranca automáticamente com o

Re: RES: How can I automatically start a servlet in a specific time?

2002-04-10 Thread Ken Anderson
for this. Ken Kelly Prudente Pereira wrote: Yes Ken, I mean I don't want to load it until a specific time. I need to load it to do a specific job at a certain time. Do you know how can I do this? -Mensagem original- De: Ken Anderson [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 10 de

optimizing tomcat for use with apache only

2002-04-09 Thread Ken Anderson
This is a barebones server.xml for using mod_webapp with apache only (no standalone tomcat service) I'm using tomcat 4.04b2, a fresh mod_webapp.so, apache 1.3.22, on redhat 7.2. Everything works nicely, and it's fast, but I'd like to squeeze as much performance as possible out of the

Cannot shutdown conn error in apache logs

2002-04-09 Thread Ken Anderson
Tomcat works fine, but this shows up in apache error log. Any ideas? [Tue Apr 9 10:53:13 2002] [error] Cannot shutdown conn [Tue Apr 9 10:53:15 2002] [error] Cannot shutdown conn [Tue Apr 9 10:53:18 2002] [error] Cannot shutdown conn Seems to result after every request conn is the name

Re: Cannot shutdown conn error in apache logs

2002-04-09 Thread Ken Anderson
Ahh.. found the issue. Seems that unless I restart apache after restarting tomcat this error exists, otherwise it doesn't. This didn't happen with previous mod_webapp. Ken Ken Anderson wrote: Tomcat works fine, but this shows up in apache error log. Any ideas? [Tue Apr 9 10:53:13 2002

Re: Starting Tomcat 4 as an NT service

2002-04-09 Thread Ken Anderson
On WinXP, I found I had to do %CATALINA_HOME%\bin\tomcat.exe -uninstall Apache Tomcat To uninstall the Tomcat Service. %CATALINA_HOME%\bin\tomcat.exe -uninstall Apache-Catalina gave me a cryptic error about overlapped i/o in progress and didn't remove the service. Ken Jacob Kjome wrote:

Re: xml - unspecified error in IE 5.5, Tomcat 3.2.1

2002-04-09 Thread Ken Anderson
You might try hitting the good(jrun) url and bad(apache) url with lynx or wget; somthing that will give you all headers. That will tell you what is different. Ken [EMAIL PROTECTED] wrote: i tried MSXML 3.0 SP2 and MSXML 4.0. For both these guys, the browser displayed the error message -

ibm jdk 1.3 or sun jdk 1.4 ?

2002-04-08 Thread Ken Anderson
Which is faster for a tomcat webapp? IBM JDK 1.3 or SUN JDK 1.4? Any reported problems with 1.4 Tomcat? Any decent benchmarking tools I can download and test with myself? Ken -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the

jar_cache

2002-04-05 Thread Ken Anderson
Does tomcat ever clean up these jar_cache files in the work directory? There's over 900 of them in there. Thanks, Ken -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: jar_cache

2002-04-05 Thread Ken Anderson
sorry, that's the temp dir, not work. Ken Ken Anderson wrote: Does tomcat ever clean up these jar_cache files in the work directory? There's over 900 of them in there. Thanks, Ken -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED