Tomcat error when accessing Apache Web Manager

2004-01-08 Thread Alicia Forsythe
3660    Fx: (954) 763 2872    Please visit our website http://www.mshscompanies.comBEGIN:VCARD VERSION:2.1 X-GWTYPE:USER FN:Alicia Forsythe TEL;WORK:954-763-3660 TEL;PREF;FAX:954-763-2872 EMAIL;WORK;PREF;NGW:[EMAIL PROTECTED] X-GWUSERID:Alicia TEL;CELL:954-821-4866 ORG:Motor-Services Hugo Stamp

Re: Which JVM for Tomcat?

2001-01-23 Thread forsythe
> Also I will also have APPLETS running in addition to servlets & JSPson this > server... So if I create a JAVA2 APPLET that WILL require a user download, > right? Right. Fine. What has that got to do with Tomcat or the JVM you are installing on your server? Nothing. Right? Right. > If you r

Re: Which JVM for Tomcat?

2001-01-23 Thread Charles Forsythe
Quoting Richard Diaz <[EMAIL PROTECTED]>: > Is it OK not to use Java2 with Tomcat Tomcat 3.x will run with Java 1.1.x. > (since that requires a 5+ meg download by the user) ? Um... do you understand what Tomcat is? What is does? How it works? Users don't download anything. > I am also Plan

Re: Two questions from a new user

2001-01-12 Thread Charles Forsythe
Ted Husted wrote: > > On 1/12/2001 at 10:06 AM Collins, Jim wrote: > > 1. Is there an archive of this list I can search to avoid asking > questions that have already been asked. > > The official archive listed on the Web site isn't really searchable, > but the one at mail-archive.com is. (Look f

Re: Q: Apache, Tomcat and HTTP Authentication

2000-12-28 Thread Charles Forsythe
Marco wrote: > 2 - Apache delegates the servlet to make the authentication. This would be > the very best solution, but I suppose it is impossible (could an Apache > module implement this feature?) You can do this! Turn off authentication in Apache and implement it in your Servlet. -- Charles

HTTP/1.1 chunked encoding & Apache

2000-12-28 Thread Charles Forsythe
Am I recalling correctly that Tomcat 3.x *does not* support chunked transfer encoder, but Tomcat 4.0 does? How does this work if I've got Apache as a front end (Apache does support chunked encoding). Can Apache decide to chunk encode a response that is supplied by Tomcat, or is mod_jserv/jk more

Status of overall Tomcat performance

2000-12-27 Thread Charles Forsythe
I've read several places (see link below) that "Tomcat is the slowest Servlet Engine you can run." Is this still true? What are the prospects for Tomcat 4.0 improving speed? -- Charles http://slashdot.org/comments.pl?sid=00/11/30/180246&threshold=-1&pid=45#54

Session != Login

2000-12-16 Thread Charles Forsythe
Andy Nuss wrote: > So assuming the site requires "single sign-on". And that there are > several segmentations of the site, each of which could > be handled by a different web-app: > > I'm getting the impression that I'm supposed to do some > kind of magic with the session cookie. Sessions do no

Re: webapps are useless toys?!

2000-12-15 Thread Charles Forsythe
Andrew Oliver wrote: > From my perspective you should have a secure login. > if your login is passed from a non-secure area to a > secure area there's not really that much purpose in > providing the security in the first place. No argument, but who said anything about logging in? Sessions can b

Re: webapps are useless toys?!

2000-12-15 Thread Charles Forsythe
Andy Nuss" <[EMAIL PROTECTED]> wrote: > > It seems like each webapp is a separate servlet context, which means > > that there is no way to share session info among different components > > of the site, if they are segmented as Webapps. Steve Quail wrote: > > Two words: > cookie >

Re: 2 Configuration Issues

2000-12-14 Thread Charles Forsythe
CPC Livelink Admin wrote: > TO find out what ports are being used and by whom, use 'netstat -a'. grep > can also be useful for that command. Also useful: /sbin/lsof -i -- Charles

Re: getParameter is NOT a string?

2000-11-18 Thread Charles Forsythe
Miles Daffin wrote: > > > Brett Bergquist wrote: > > > Actually the test that you want is: > > > > > > if (user.compareTo("admin") == 0) { > > > ... > > > } > > > > And how is this any different from using > > "if (user.equals("admin"))"? > ... > 'compareTo(Object

Re: HTTP PUT

2000-11-17 Thread Charles Forsythe
[EMAIL PROTECTED] wrote: > Does Tomcat support HTTP PUT? Yes. > How? The same way all Servlet containers support HTTP PUT. Try reading a book on Servlet programming. I recommed Jason Hunter's "Java Servlet Programming" from O'Reilly. -- Charles