Re: help with SSI directives on tomcat 4.1.12

2003-02-28 Thread Becky Phaneuf
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssi-howto.html -B [EMAIL PROTECTED] 02/27/03 06:55PM Hello all I am using the following SSI directive in a .shtml file in the ROOT directory: !--#include virtual=/OutputServlet1.class -- OutputServlet1 is a servlet class that just prints

Re: Whats a good way to solve this ... ?

2003-02-14 Thread Becky Phaneuf
A) In every non-login page check to see if a user is logged in by getting the current session (passing false). B) If no session exists, redirect them to the login page, but also pass the parameter goTo=MyNotes.jsp (or something similar). Have them log in, and create a session. Your login page

Re: Please help!

2003-02-13 Thread Becky Phaneuf
When your client app is connecting via HTTPS to a server the server will pass the client a certificate that your client should validate. Implement the javax.net.ssl.TrustManager class. Actually, you should implement X509TrustManager. Then create an SSLContext (using getInstance(SSL)) and

RE: who can give me an example to to configure /myapps intomcat4.1.18

2003-02-13 Thread Becky Phaneuf
I think he was talking actual servlet specification: http://java.sun.com/products/servlet/download.html#specs (Which isn't very short, or easy to read. :) ) -B [EMAIL PROTECTED] 02/13/03 02:39PM If you mean the servlet API, it's in the Tomcat \webapps\tomcat-docs\servletapi dir of your

RE: MY (Steve's) ATTITUDE

2003-02-11 Thread Becky Phaneuf
Too bad Abby's dead :) Steve needs a shrink. -B P.S. RTFM means Read the F*cking manual [EMAIL PROTECTED] 02/11/03 02:48PM Dear Abby, Please help Steve. -Original Message- From: Steve Burrus [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 4:31 PM To: Tomcat Users

Re: SSI in TOMCAT

2003-02-07 Thread Becky Phaneuf
Didn't I just answer your exact same question in the servlet email group? Jeeze -B [EMAIL PROTECTED] 02/07/03 10:47AM Has anyone activated Server Side Include(SSI) in Tomcat 4.1 ? I have followed the normal instructions under Apache's Tomcat website, including : 1. Renaming

Re: Tomcat 4.1.18 and HttpsURLConnection

2003-01-21 Thread Becky Phaneuf
Ed, I had this same problem and discovered that JDK 1.4.1 no longer uses com.sun.ssl., but somehow my url.openConnection() was returning it. I spent days tearing out my hair and couldn't figure out how it was happening (I even began declaring and instantiating everything using the fully

Re: tomcat as service

2002-12-30 Thread Becky Phaneuf
That's wonderful and all, but it still doesn't change the fact that Tomcat doesn't run as a service with 1.4.1_01. I also have this problem. -B [EMAIL PROTECTED] 12/26/02 09:49AM We use the Java Wrapper Service with JDK 1.4 to run Tomcat as an NT service. You can find it at:

RE: tomcat as service

2002-12-30 Thread Becky Phaneuf
; no, there are no known issues. I don't use the wrapper, I simply select the Run as service option when I install Tomcat. -Original Message- From: Becky Phaneuf [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 12:20 PM To: [EMAIL PROTECTED] Subject: Re: tomcat as service That's

RE: tomcat as service

2002-12-30 Thread Becky Phaneuf
as a service on Win2K for nearly 3 weeks. Guess I better tell the user's its not working. To answer the original question; no, there are no known issues. I don't use the wrapper, I simply select the Run as service option when I install Tomcat. -Original Message- From: Becky Phaneuf [mailto

Re: Re[2]: tomcat as service

2002-12-30 Thread Becky Phaneuf
SP2 here, and a fresh installation of Tomcat 4.1.18 and JDK 1.4.1_01. Yeah, of course I'm going to assume it doesn't work. All my environment variables are configured properly and I've installed Tomcat at least 5 times now on other machines so I know how it goes. Runs fine when started via the

RE: tomcat as service

2002-12-30 Thread Becky Phaneuf
created a HOWTO for the process: http://www.johnturner.com/howto John -Original Message- From: Becky Phaneuf To: [EMAIL PROTECTED] Sent: 12/30/02 12:19 PM Subject: Re: tomcat as service That's wonderful and all, but it still doesn't change the fact that Tomcat doesn't run as a service

RE: tomcat as service

2002-12-30 Thread Becky Phaneuf
4.1.18, and JDK 1.4.1_01 on Win2k(SP3) and it fired up as a service out of the box. I'm only using it as a test machine but have deployed some .war's against it and it worked as advertised. Regards, Drew -Original Message- From: Becky Phaneuf [mailto:[EMAIL PROTECTED]] Sent: Monday

Re: URGENT.. org.apache.jasper.JasperException: Unable tocompile class for JSP

2002-12-18 Thread Becky Phaneuf
So show us how you're importing your SurveyBean class. It's not contained within any packages? If not is it in the root directory of your web-inf/classes directory? Also, don't forget JSP syntax for importing classes is: %@ page import = packagename.Class % -B [EMAIL PROTECTED] 12/18/02

Re: basic tomcat configuration

2002-12-18 Thread Becky Phaneuf
Uncomment it out in tomcat's web.xml file under the conf directory if you want all your apps to use it: servlet servlet-nameinvoker/servlet-name servlet-class org.apache.catalina.servlets.InvokerServlet /servlet-class init-param

Re: can't get w2k tomcat service running again

2002-12-17 Thread Becky Phaneuf
Tomcat runs fine when started via startup/shutdown batch files, and there are no errors in the logs either way. -B [EMAIL PROTECTED] 12/16/02 03:43PM That's usually a configuration error. See what the Tomcat logs tell you. /mde/ just my two cents . . . .

can't get w2k tomcat service running again

2002-12-16 Thread Becky Phaneuf
I installed 4.1.16 on a new server (with NT/2K start-as-service option) and did some tweaking (enabled SSL, uncommented servlet invoker, etc...). While I was tweaking I stopped the service because was easier to start/stop via the batch files for quick debugging). When I finished debugging,

OT: how can an intranet Internet share the same appserver,but remain secure?

2002-12-09 Thread Becky Phaneuf
Has anyone tried to do this before? The dilemma: How would one architect a system that requires an intranet and an Internet site be able to share the same appserver (EJBs, logic), but still remain as secure as possible? It doesn't have to be a Tomcat/JBoss-specific solution (actually, they've

Re: JSP + custom tags (XML)

2002-11-29 Thread Becky Phaneuf
Hi Paul, I believe I've shuffled through everyone's answer to your question. But, lets assume you're doing everything right from a tag library perspective. This error could simply be because your XML document doesn't refer to a DTD (from what you've posted it appears it does not). The

Re: Know a good Apache HTTP Stat Collector???

2002-11-20 Thread Becky Phaneuf
Thanks everyone for your help. Someone passed me the link below and it provided a good solution b/c I don't care about the server's certificate (in this case): http://javaalmanac.com/egs/javax.net.ssl/TrustAll.html?l=rel -Thanks [EMAIL PROTECTED] 11/04/02 08:51AM Webalizer is really easy to

RE: HTTP and SSL Connector port problems

2002-11-20 Thread Becky Phaneuf
Disable the web server service. Would likely be called IIS Web Server or something similar. -B [EMAIL PROTECTED] 11/20/02 12:17PM I am using Windows2000 and I think it is the IIS server that is already using port 80. this prevents tomcat from using port 80. Does anyone know how to disable

Re: display default servlet

2002-11-19 Thread Becky Phaneuf
Hi Paul, The easiest way to do this is have your index.jsp/index.html page redirect to the servlet. META HTTP-EQUIV=Refresh CONTENT=0; URL=http://www.xyz.com/MyServlet/MyServletMappedName/; -B [EMAIL PROTECTED] 11/19/02 11:44AM I tried to search the archive but wasn't even sure what to

after increasing debug level Tomcat shuts down when callingJSP

2002-11-18 Thread Becky Phaneuf
Hello, I am running Tomcat 4.1.12 on a Windows 2000 machine. I have a web application that contains one servlet and one JSP page. The only functionality of the JSP page right now is to call the servlet via: jsp:include page=/servlet/DownloadServlet/ I have been working on the servlet for a

unable to authenticate against company-generated certificate

2002-11-18 Thread Becky Phaneuf
Hi everyone, I have a servlet that is tasked to download various files from a secure site. It uses an HttpsURLConnection to connect to the site's root and passes my Authenticator class (w/ username and password) as the default authenticator. It used to work fine until the site's admin

Re: InvocationTargetException upon server start (new issueclassNotFound: org.apache.jasper.runtime.HttpJspBase)

2002-10-23 Thread Becky Phaneuf
() - [EMAIL PROTECTED] 10/22/02 08:04PM Seems to be related to a parsing error. Are you sure your web.xml file is a proper XML instance? Try to validate your XML file againts the DTD included in the DOCTYPE element of the file. -- Jeanfrancois Becky Phaneuf wrote: Hello, After installing

InvocationTargetException upon server start

2002-10-22 Thread Becky Phaneuf
Hello, After installing Tomcat 4.1.12 I copied a relatively simple web application called ISOdownload (1 jsp invoking 1 servlet that prints http headers) from my post-ant build directory to /webapps/ISOdownload/. Upon restarting Tomcat I received the exception below: - Oct