RE: jspc

2001-08-29 Thread Jann VanOver
In other words, go to http://mikal.org/interests/java/tomcat/ and enter "precompile" as a search term. -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 1:40 PM To: '[EMAIL PROTECTED]' Subject: RE: jspc > I'm trying to figure out a

RE: req.getServletPath()

2001-08-29 Thread Jann VanOver
In the API docs, it says getServletPath() Returns the part of this request's URL that calls the servlet. Check out request.getContextPath() & request.getRequestURI() You may need: request.getContextPath()+request.getServletPath() -Original Message- From: Sampath K Settipalli [mail

RE: checkbox with Tomcat

2001-08-28 Thread Jann VanOver
In the code you show, NONE of the boxes should be checked. Are you saying that when you first show the page, they are checked? This shouldn't be happening at all. -Original Message- From: Roy K. Mayr R. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 28, 2001 1:45 PM To: TomcatUser

RE: web.xml

2001-08-28 Thread Jann VanOver
modify some file moreover?. My directories structure is the next: ./webapps/ROOT/WEB-INF |--classes/org/stevengould/javaworld/RequestDetails.class Thank you for your help. -Mensaje original- De: Jann VanOver [mailto:[EMAIL PROTECTED]] Enviado el: martes, 28 de agosto de

RE: web.xml

2001-08-28 Thread Jann VanOver
According to your web.xml, your servlet class (org.stevengould.javaworld.RequestDetails) is in a package so that package hierarchy must be reflected in the directories: ./WEB-INF | -- classes/org/stevengould/javaworld/RequestDetails.class -Original Message- From: Ruben Domene [

RE: Tomcat doesnt recognize new context

2001-08-28 Thread Jann VanOver
You can run your server through the validator at http://tomcat.mslinn.com/tomcat/server_xml.jsp and see if there's something in the wrong place. Do your contexts each have the correct directory structure? with a WEB-INF and a valid web.xml in each one? -Original Message- From: Andrej Ro

RE: Structure of the server.xml file?

2001-08-27 Thread Jann VanOver
AKA http://tomcat.mslinn.com/ a great site that includes validation tools for Server.xml and Web.xml -Original Message- From: Knudsen, Joe [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 2:42 PM To: '[EMAIL PROTECTED]' Subject: RE: Structure of the server.xml file? I found thi

RE: JSP page not found - any ideas why ?

2001-08-27 Thread Jann VanOver
Do you have a web.xml file in your WEB-INF directory? -Original Message- From: James Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 3:42 PM To: [EMAIL PROTECTED] Subject: Re: JSP page not found - any ideas why ? I made a mistake in the previous posting - the JSP is act

RE: Is there a way to make a default web.xml?

2001-08-27 Thread Jann VanOver
No, not with Tomcat. -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 7:17 AM To: [EMAIL PROTECTED] Subject: Is there a way to make a default web.xml? Is there a way to make a default web.xml file that will work across all contexts/virtual

RE: RequestDispatcher.forward()?

2001-08-26 Thread Jann VanOver
Or, more specifically: http://java.sun.com/j2ee/tutorial/api/index.html You'll find RequestDispatcher in the "All Classes" frame. -Original Message- From: Rob S. [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 7:55 AM To: [EMAIL PROTECTED] Subject: Re: RequestDispatcher.forwar

RE: web.xml problems

2001-08-22 Thread Jann VanOver
You can try running your web.xml through a validator. There's one at http://tomcat.mslinn.com/ look at the menu at the left and pick Tomcat version 3.2.x and you'll see web.xml validator as one of the choices. This may show you something is going on that you didn't know about. -Original Me

RE: Overriding jar files in /tomcat/lib

2001-08-22 Thread Jann VanOver
Does tomcat care WHICH parser is in TOMCAT_HOME/lib? Which parser does it come with and can it be changed? -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 9:39 AM To: [EMAIL PROTECTED] Subject: Re: Overriding jar files in /tomcat/l

RE: unable to get apache to communicate with tomcat.

2001-08-21 Thread Jann VanOver
In your apache httpd.conf file, what have you specified for "ServerName" ?? Make sure this is ca-apache1.dtv.com , restart Apache & see if that doesn't fix things. -Original Message- From: John Comitas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 4:00 PM To: [EMAIL PROTECTE

RE: how to get the target frame

2001-08-21 Thread Jann VanOver
I don't think you can get it. That's a "client" thing, not a "server" thing. -Original Message- From: Andreas Leitner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 9:28 AM To: [EMAIL PROTECTED] Subject: how to get the target frame Hi, Is it possible to determine the targe

RE: tomcat.policy and WEB-INF/lib?

2001-08-20 Thread Jann VanOver
Make sure you don't have copies of these jars in tomcat\lib -- I've found that can cause class path problems. -Original Message- From: Noel L Yap [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 9:33 AM To: [EMAIL PROTECTED] Subject: RE: tomcat.policy and WEB-INF/lib? Actually,

RE: Newbie help needed: error running JSP

2001-08-15 Thread Jann VanOver
Look at the line: jsp.f_00025rm._0002fjsp_0002fform_0002fForm_0002ejspForm_jsp_0._jspService(_ 0002fjsp_0002fform_0002fForm_0002ejspForm_jsp_0.java:122) THIS is where your error occurred. Tomcat compiled your JSP page into the named java file. Look in your tomcat\work directory for this file.

RE: PLEASE - HELP PLEASE

2001-08-14 Thread Jann VanOver
Using a more descriptive title than PLEASE HELP PLEASE will help your question get answered sooner. You don't say if you're getting any error messages. One comment -- docbase must point to a DIRECTORY that holds your application context. Yours points at an HTML file. That should cause problems

RE: How to prevent Tomcat/Jasper to forward JSP comments ?

2001-08-13 Thread Jann VanOver
Your JSP comments (<%-- this is a JSP comment --%>) will NEVER be sent out to the client, at least not by Tomcat. -Original Message- From: Frederic [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 8:07 AM To: [EMAIL PROTECTED] Subject: How to prevent Tomcat/Jasper to forward JSP

RE: Not related to JSP's feel free to ignore

2001-08-13 Thread Jann VanOver
You mean to post a form without the user getting a dialog box if they've asked to be notified of posts? Absolutely not. -Original Message- From: Kyle Wayne Kelly [mailto:[EMAIL PROTECTED]] Sent: Friday, August 10, 2001 10:19 PM To: [EMAIL PROTECTED] Subject: Re: Not related to JSP's fee

RE: How can i get all table's name from JDBC driver?

2001-07-24 Thread Jann VanOver
Umm ... can you guys take this off to a JDBC list somewhere? -Original Message-From: João Folha [mailto:[EMAIL PROTECTED]]Sent: Monday, July 23, 2001 7:56 PMTo: [EMAIL PROTECTED]Subject: Re: How can i get all table's name from JDBC driver? ODBC, with ms access.

RE: How can i get all table's name from JDBC driver?

2001-07-24 Thread Jann VanOver
What does this have to do with Tomcat?   -Original Message-From: João Folha [mailto:[EMAIL PROTECTED]]Sent: Monday, July 23, 2001 7:48 PMTo: [EMAIL PROTECTED]Subject: How can i get all table's name from JDBC driver? Hi there,   I need to get all table's name from JDBC

RE: Tomcat/Apache advantage without static pages?'tomcat-user@jakarta .apache.org'

2001-07-24 Thread Jann VanOver
I recently read that if you have three or more images on a web page -- you will have faster response by serving them through Apache. In my applications, I make sure to set up Apache to handle images, stylesheets, and javascript includes (

RE: Changing error pages

2001-07-24 Thread Jann VanOver
Loïc, how will this help if Tomcat is not even running? -Original Message- From: Loïc Lefèvre [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 3:36 AM To: [EMAIL PROTECTED] Subject: RE: Changing error pages Try this url, ;) http://www.jguru.com/faq/view.jsp?EID=318806 Loïc Lefèv

RE: HELP! I have already unsubscribed from this list but still get tons of them

2001-07-24 Thread Jann VanOver
When you unsubscribed, did you return the "unsubscribe confirmation"? -Original Message- From: Jing Fan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 9:24 AM To: [EMAIL PROTECTED] Subject: HELP! I have already unsubscribed from this list but still get tons of them __

RE: "request.getAttribute()" problems

2001-07-20 Thread Jann VanOver
Then the bean must be in the SESSION scope Putting it in the REQUEST scope means -- "keep it around with this request" When you go to a new JSP page you usually get a new request to go with it. -Original Message- From: Paul Kofon [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 11

RE: Win2K security

2001-07-20 Thread Jann VanOver
All of us? -Original Message- From: Gabriel Weinberg [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 7:09 PM To: Tomcat-User (E-mail); Ronnie Millar (E-mail) Subject: Win2K security I think that we should implement a higher standard of security in our Win2K production environme

RE: ACME gif encoder - no red ?

2001-07-20 Thread Jann VanOver
And this has WHAT to do with Tomcat? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 2:08 AM To: [EMAIL PROTECTED] Subject: ACME gif encoder - no red ? Has anyone experienced a problem creating gifs with the ACME gif encoder w

RE: Can somebody please reply to my previous email ?

2001-07-18 Thread Jann VanOver
Sorry dude, but if nobody responds, maybe nobody knows the answer. -Original Message- From: Sampige, Srinivas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 3:57 PM To: '[EMAIL PROTECTED]' Subject: Can somebody please reply to my previous email ? Here is the email is sent-> Se

RE: Problem with JSP mapping to subdirectory

2001-07-18 Thread Jann VanOver
That should have said "servlet mapping" -Original Message-From: Jann VanOver Sent: Wednesday, July 18, 2001 3:37 PMTo: '[EMAIL PROTECTED]'Subject: RE: Problem with JSP mapping to subdirectory Please look at Web.XML.  You need TWO elements in Web.xm

RE: Problem with JSP mapping to subdirectory

2001-07-18 Thread Jann VanOver
Please look at Web.XML.  You need TWO elements in Web.xml for each server mapping you want to set up. -Original Message-From: Renato Weiner [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 18, 2001 3:35 PMTo: [EMAIL PROTECTED]Cc: [EMAIL PROTECTED]Subject: Problem with JSP ma

RE: IIS5 + isapi_redirect.dll GREEN ARROW

2001-07-18 Thread Jann VanOver
Do you have any spaces in the path name to isapi_redirect.dll ?? if so, get rid of them. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 2:26 AM To: [EMAIL PROTECTED] Subject: IIS5 + isapi_redirect.dll GREEN ARROW hi all, We have jus

RE: jsp and tomcat 4

2001-07-18 Thread Jann VanOver
My bad -- b6 isn't out yet. I guess you're supposed to get a more recent "nightly build" of b5. -Original Message- From: Jann VanOver Sent: Wednesday, July 18, 2001 1:55 PM To: '[EMAIL PROTECTED]' Subject: RE: jsp and tomcat 4 Move to b6. b5

RE: jsp and tomcat 4

2001-07-18 Thread Jann VanOver
Move to b6. b5 has a problem recompiling JSPs -Original Message- From: David White [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 11:23 AM To: [EMAIL PROTECTED] Subject: RE: jsp and tomcat 4 I've been having the same problem. When I modify a JSP, it isn't recompiled automati

RE: JSP compile error - class not found

2001-07-18 Thread Jann VanOver
put your classes into a package. Put the package in WEB-INF\classes\pkgname (where pkgname is the name of your package) Then it will work. -Original Message- From: Will England [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 8:07 AM To: [EMAIL PROTECTED] Subject: RE: JSP compi

RE: JSP's not finding classes in WEB-INF

2001-07-18 Thread Jann VanOver
No, this is not right. Bean classes ARE SUPPOSED TO go into WEB-INF\classes. As I mention in another post, there is a bug in Tomcat that keeps them from being found unless they are in a package. Put classes into packages and put the packages in WEB-INF\classes and everything works fine! -O

RE: JSP's not finding classes in WEB-INF

2001-07-18 Thread Jann VanOver
Okay -- I can't quote the source, but I read recently that this is a Tomcat bug. If you put .class files into tomcat's WEB-INF\classes directory they go into an "unnamed package" and then can't be found when they're needed. Put your classes into a package -- put the package hierarchy in WEB-INF\

RE: JasperException / classpath(?) problem

2001-07-16 Thread Jann VanOver
Where did you put NumberGuessBean.class ?? It must go into WEB-INF/classes/num/ (because it is in package named "num") -Original Message- From: howard fraser [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 7:29 AM To: [EMAIL PROTECTED] Subject: JasperException / classpath(?) probl

RE: How can I get Tomcat Code?

2001-07-13 Thread Jann VanOver
Go to http://jakarta.apache.org/tomcat/ , click on the link that says "Source Code" Gee, that was tough. -Original Message- From: Sunil Chandurkar [mailto:[EMAIL PROTECTED]] Sent: Friday, July 13, 2001 7:41 AM To: [EMAIL PROTECTED] Subject: How can I get Tomcat Code? Hello all.. How c

RE: Tomcat/Apache advantage without static pages?

2001-07-13 Thread Jann VanOver
I recently saw a message that if you have as few as THREE images on a web page, the page will be faster if the images are served through Apache and not Tomcat. Remember, images, linked css files and included (src=href) javascript files are static elements also -- not just HTML. -Original Mes

RE: jsp mapping

2001-07-12 Thread Jann VanOver
Maybe I'm dense, but why don't you just put: action="/cust/listorders.jsp" in your tag -Original Message- From: Kevin HaleBoyes [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 8:57 AM To: [EMAIL PROTECTED] Subject: jsp mapping First off, I'm running Tomcat 4b5 (standalon

RE: find the NT account name with tomcat for IIS

2001-07-12 Thread Jann VanOver
Once you are properly serving through IIS, you can go to the IIS administration panel and set security for a directory or a page. How you set it is different with each version of Windows & IIS so I can't tell you exactly how to do that. On Win2K, here's what I do: Start=>Settings=>Control Pane

RE: . Help needed.

2001-07-11 Thread Jann VanOver
There was a bug in one of the Tomcat 4 betas that caused this problem. It MAY have been the same beta 5 you're using. Check if there's a more recent version. -Original Message- From: Drinkwater Glen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 5:25 AM To: '[EMAIL PROTECTED]

RE: instantDB in development

2001-07-10 Thread Jann VanOver
Um, what does this have to do with Tomcat? -Original Message- From: Kemp Randy-W18971 [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 10:18 AM To: '[EMAIL PROTECTED]' Subject: instantDB in development I am playing with accessing databases on instantDB in development. Can some

RE: Servlet Error

2001-07-06 Thread Jann VanOver
I think you'll have to look at your servlet code and see where it could be creating a null pointer exception. -Original Message- From: Stuart Shay [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 3:35 PM To: [EMAIL PROTECTED] Subject: Servlet Error Hello All: Below is the error c

RE: Invoke New Window From Applet

2001-07-06 Thread Jann VanOver
You're right dude, this is COMPLETELY the wrong place for this. -Original Message- From: Sunil Chandurkar [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 12:31 AM To: [EMAIL PROTECTED] Subject: Invoke New Window From Applet Hi There I know the question i'm going to ask, the best

RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-06 Thread Jann VanOver
7;s my previous post: -Original Message----- From: Jann VanOver Sent: Tuesday, June 26, 2001 12:27 PM To: [EMAIL PROTECTED] Subject: JDBCRealm doesn't allow a "blank" password -- is this a bug? I'm using Tomcat 3.2.2 I was just beginning to try out JDBCRealm and was continui

RE: Problem changing default web.xml : conf/web.xml is not processed

2001-07-06 Thread Jann VanOver
You didn't mention which version of Tomcat you were running. The thing is, in some version, conf/web.xml became a SAMPLE, not a DEFAULT. You should not count on conf/web.xml to be used because that doesn't follow the J2EE standard. You MUST make a copy of the web.xml and put it into each webapp

RE: document with Cocoon?

2001-07-05 Thread Jann VanOver
Perhaps you need a "/" before a ">" somewhere   Maybe   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"xmlns:xt="http://www.jclark.com/xml/xt.html"    xmlns:xlink="http://www.w3.org/1999/xlink"        extension-element-prefixes="xt"    exc

RE: Does Apache Come With Tomcat Built In or Pre Integrated?

2001-07-05 Thread Jann VanOver
It doesn't. Not everyone who needs Apache needs Tomcat and vice-versa. -Original Message- From: Russell, Steve [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 6:33 AM To: '[EMAIL PROTECTED]' Subject: Does Apache Come With Tomcat Built In or Pre Integrated? Just curious if it d

RE: Registry question

2001-07-05 Thread Jann VanOver
Yes. That is correct. And make sure your path to isapi_redirect.dll does NOT have any spaces in it. This can cause problems. -Original Message- From: Bayi, Omari J. [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 12:29 PM To: '[EMAIL PROTECTED]' Subject: Registry question He

RE: CONTEXTS

2001-06-29 Thread Jann VanOver
OR -- Just make a directory in tomcat's WebApps directory and include a WEB-INF/web.xml file. like this: d:/tomcat/WebApps/myNewContext/WEB-INF/web.xml Restart Tomcat. No need to touch Server.xml at all! Tomcat is real smart that way. -Original Message- From: Vikram Naik [mailto:[EMAI

RE: CONTEXTS

2001-06-29 Thread Jann VanOver
Do you have a WEB-INF/web.xml file in webapps/onsale ?? -Original Message- From: teh j [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 9:46 PM To: [EMAIL PROTECTED] Subject: CONTEXTS Hello all I am currently trying to create a new context to run under Tomcat I have created a

RE: error

2001-06-28 Thread Jann VanOver
Um ... we aren't all "sir" here. I happen to be a Ms. or Maam or just "Hey You" but I am NOT a "sir" Did you restart IIS? Don't just restart the webserver, but go to the Services control panel and restart "IIS Admin Service" to make sure it is fully restarted. Also, did you add a mapping into

RE: isapi_redirect on Win2K

2001-06-28 Thread Jann VanOver
No, you don't need a separate build for Win2K What about it isn't working? > -Original Message- > From: Jay Kaplan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 20, 2001 12:21 PM > To: [EMAIL PROTECTED] > Subject: isapi_redirect on Win2K > > I cannot get isapi_re

RE: javabeans with jsp

2001-06-28 Thread Jann VanOver
A good reference is http://java.sun.com/j2ee/tutorial/doc/JSPBeans.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 4:07 PM To: [EMAIL PROTECTED] Subject: javabeans with jsp I don't know where exactly the javabean class goes in or

RE: cannot run servlet

2001-06-28 Thread Jann VanOver
Yes, I think you need to map the servlet with the web.xml file in your new context (dir) -Original Message- From: Siaw Ling Lo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 7:45 PM To: [EMAIL PROTECTED] Subject: cannot run servlet I have created another URL 'dir' for other w

RE: jasper

2001-06-28 Thread Jann VanOver
Tomcat's JSP engine -Original Message- From: alex chang [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 1:29 PM To: [EMAIL PROTECTED] Subject: jasper forgive me if this is a silly question, but what's jasper? -alex __ Do You Yaho

RE: FIRST POST - Servlet installation problem

2001-06-27 Thread Jann VanOver
ssage----- From: Jann VanOver [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 10:41 PM To: '[EMAIL PROTECTED]' Subject: RE: FIRST POST - Servlet installation problem Have you added a mapping in Tomcat's urlworkermap.properties file ? -Original Message- From: Cli

RE: FIRST POST - Servlet installation problem

2001-06-27 Thread Jann VanOver
Oops -- that should have been uriworkermap.properties -Original Message- From: Jann VanOver Sent: Wednesday, June 27, 2001 7:41 PM To: '[EMAIL PROTECTED]' Subject: RE: FIRST POST - Servlet installation problem Have you added a mapping in Tomcat's urlworkermap.

RE: FIRST POST - Servlet installation problem

2001-06-27 Thread Jann VanOver
Have you added a mapping in Tomcat's urlworkermap.properties file ? -Original Message- From: Clifford P. Helsel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 7:40 PM To: [EMAIL PROTECTED] Subject: RE: FIRST POST - Servlet installation problem Importance: High This does not s

RE: tomcat 4.0b1

2001-06-26 Thread Jann VanOver
Did you try http://jakarta.apache.org/tomcat ?? You should ALWAYS check the jakarta site before asking a question like this. And don't post in HTML. http://jakarta.apache.org/tomcat/tomcat-4.0-doc/index.html -Original Message- From: Sumit Ranjan [mailto:[EMAIL PROTECTED]] Sent: Sunday,

Spaces in JAVA_HOME (was RE: una pregunta)

2001-06-26 Thread Jann VanOver
My problems with spaces in JAVA_HOME have nothing to do with IE or RFC conventions. I just know that I have had nasty install/config problems when environment variables related to tomcat have spaces in them, so it is best practice to just avoid the potential problems. I install tomcat as D:\tomc

RE: una pregunta

2001-06-26 Thread Jann VanOver
NO NO! DON'T use spaces in Java Home -- it could cause problems down the road if you must, use set JAVA_HOME=d:\progra~1\jdk1.3.0_02 -Original Message- From: Krishna Muthyala [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 3:02 PM To: [EMAIL PROTECTED] Subject: Re: una pregunt

RE: Logging System.out/err in Tomcat

2001-06-26 Thread Jann VanOver
Look in server.xml Read the comments there. In Tomcat 3.2.2 (and probably in 3.2.1 also) the following comment appears in server.xml: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 24, 2001 11:15 PM To: [EMAIL PROTECTED] Subject: Logging Syste

RE: Tomcat 3.2.2 and win2000 - problem

2001-06-26 Thread Jann VanOver
Please go back and review the Tomcat installation instructions (http://jakarta.apache.org/tomcat/tomcat-3.2-doc/uguide/tomcat_ug.html)   PS. if you are on Win2K, you should use ControlPanel=>System=>Advanced=>EnvironmentVariables to set your path.  You should not be editing Autoexec.bat

RE: Error: 500

2001-06-26 Thread Jann VanOver
ut it in the lib directory. Thanks for your help and patience, -alex --- Jann VanOver <[EMAIL PROTECTED]> wrote: > Yes, that makes perfect sense. The error message you got was "Unable to > load class com.onjava.HelloTag" so of course you would only see the > error

RE: Tomcat 4 and apache. How to make them work together?

2001-06-26 Thread Jann VanOver
Did you check the tomcat user guide? -Original Message- From: Alejandro Arredondo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 7:31 AM To: [EMAIL PROTECTED] Subject: Tomcat 4 and apache. How to make them work together? I have installed Tomcat 4 configured it and it works fine

RE: altering include files

2001-06-26 Thread Jann VanOver
No, not really. You CAN delete all the tomcat\work files for that context, or "touch" the file that does the include. Either of these things will force the page to be recompiled. I've been trying to replace my includes with: <% request.getRequestDispatcher("nextPieceOfWork.jsp").forward(reque

RE: Error: 500

2001-06-26 Thread Jann VanOver
ib directive up top and replace the word "Welcome" with the . I've done some more checks and it seems I only get the error when I have the tag. That is, if I simply have the taglib directive and no tag, it works. But if I put that tag back in, I get the error. Any more ideas? Thanks,

RE: open MS document in IE 4.01

2001-06-26 Thread Jann VanOver
What does this have to do with Tomcat? -Original Message- From: Jack Li [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 8:38 AM To: '[EMAIL PROTECTED]' Subject: open MS document in IE 4.01 Does anyone know if IE 4.01 can open Microsoft word document or Excel spread sheet? Thank

JDBCRealm doesn't allow a "blank" password -- is this a bug?

2001-06-26 Thread Jann VanOver
I'm using Tomcat 3.2.2 I was just beginning to try out JDBCRealm and was continuing to get an error. The Tomcat.log said: 2001-06-26 11:27:05 - ContextManager: JDBCRealm: SQLException: java.sql.SQLException: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connec

RE: Error: 500

2001-06-26 Thread Jann VanOver
It looks like you were doing step 4 with the JSP from step 5. This code won't work until after you've created and compiled the tag library, which you haven't done yet if you're working in order. Try it with the JSP code from "Listing 3" and you shouldn't get this error. -Original Message---

How to Unsubscribe (was RE: Unsubscribe does not work)

2001-06-25 Thread Jann VanOver
This was originally posted by Thomas Vollmer -- thank you Thomas - it is a little tricky to unsubscribe from tomcat-user when you have changed your e-mail address and need to use this [EMAIL PROTECTED] to unsubscribe. Some mail clients like MS-Outlook have trouble wit

RE: Help! Novice to Tomcat

2001-06-22 Thread Jann VanOver
Take the %path% off of your JAVA_HOME Then, if you're still getting this meesage, you must be on win95/98. Check out this newsgroup archives for "running tomcat on win98" for the answer. -Original Message- From: Ganga [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 2:23 PM To: [E

RE: Automaticaly update the servlets

2001-06-15 Thread Jann VanOver
Tomcat contexts use a different class loader. Put the driver jar file into tomcat webapps\contextname\web-inf\lib directory and the classes will be found. -Original Message- From: Pablo Morillas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 12, 2001 5:03 PM To: [EMAIL PROTECTED] Subjec

RE: Config: zip-files

2001-06-14 Thread Jann VanOver
It should work if you rename the file from blah.zip to blah.jar -Original Message- From: Roland Carlsson [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 14, 2001 5:16 AM To: [EMAIL PROTECTED] Subject: Re: Config: zip-files That didn't help. Tomcat still can't find the driver. I have tri

RE: Java Question

2001-06-12 Thread Jann VanOver
Why are we continuing this thread when it has NOT specific to Tomcat? Please, folks, find a Java list. There are a number of them available from sun and from Topica.com -Original Message- From: William Kaufman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 12, 2001 12:47 PM To: '[EMAIL P

RE: Problem starting TOMCAT on Win 2000

2001-06-11 Thread Jann VanOver
Your TOMCAT_HOME path must be a FULL path like D:\foo\jakarta-tomcat-3.2.2 -Original Message- From: Priya Gupta [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 12:01 PM To: [EMAIL PROTECTED] Subject: Problem starting TOMCAT on Win 2000 Hello I dowloaded the Tomcat 3.2.2 and un

RE: INSTALLATION PROBLEM FOR MORE THAN A MONTH

2001-06-07 Thread Jann VanOver
If you have "SERVLET.JAR" in your classpath, but the file is really "servlet.jar" this COULD BE your problem. Try putting them in the same case. Tomcat/Java are VERY VERY VERY case sensitive. -Original Message- From: subhi adam [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 2:

RE: server side includes, tomcat and jsp files

2001-06-07 Thread Jann VanOver
Ross, the include format he showed was the common server side include format that can be used in HTML with many web servers (including both apache and IIS) -Original Message- From: Ross Dyson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 5:58 PM To: [EMAIL PROTECTED] Subject:

RE: newbie problem: javax.servlet.ServletException at org.apache.jasp er.runtime.PageContextImpl.handlePageException

2001-06-06 Thread Jann VanOver
If any of your parameters are null (and it looks like "issue" is null) you will get an error when you try to use the "equals()" method. It's better style to turn your statements around like this: ("Printout complete issue").equals(request.getParameter("report")); because this way the initial

RE: Tomcat and weblogic

2001-06-06 Thread Jann VanOver
Yes, and Weblogic is also $. Many companies use Tomcat so all their developers can run a copy of it, then run Weblogic as their production JSP/servlet container. If the code written "right", it is nearly effortless to move the code between containers. -Original Message- From: Nirvan

RE: Re: frame for form login

2001-06-06 Thread Jann VanOver
Yes, I would expect it to do that. Instead of this, go to wherever your "login.jsp" writes out any HTML and use the HTML to force the browser to pop out of frames. See http://developer.irt.org/script/206.htm for a good way to do this. -Original Message- From: [EMAIL PROTECTED] [mailto:[

RE: Re: JDBC/ODBC: Technological choice

2001-06-06 Thread Jann VanOver
Even some "JOINS" can be done in Access by using the WHERE clause. Instead of: SELECT * from A INNER JOIN B ON A.stuff = B.moreStuff You say: SELECT * from A, B WHERE A.stuff = B.moreStuff -Original Message- From: aswath satrasala [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 200

RE: Complete credentials

2001-06-06 Thread Jann VanOver
Nowhere, I hope!  You should never be able to "get" a password.  You should only "send" passwords to determine authentication.  If the user is authenticated, the getRemoteUser() will return a non-null. -Original Message-From: Andrew [mailto:[EMAIL PROTECTED]]Sent: Saturday, May

RE: support classes in jar

2001-06-06 Thread Jann VanOver
Umm ... that IS in the context. .../webapps/CONTEXTNAME/WEB-INF/lib -Original Message- From: Zach Hollandsworth [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 9:27 AM To: [EMAIL PROTECTED] Subject: RE: support classes in jar what if you have a JAR that is specific to a context?

RE: Should we do moderation on this mailinglist??

2001-06-06 Thread Jann VanOver
Yeah, but at least with a footer, we can all say RTFF and leave it at that. -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 12:51 PM To: '[EMAIL PROTECTED]' Subject: RE: Should we do moderation on this mailinglist?? > FYI: I just sent a

RE: Should we do moderation on this mailinglist??

2001-06-06 Thread Jann VanOver
E: Should we do moderation on this mailinglist?? wowsers. That's a good idea. -Original Message- From: Jann VanOver [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 12:18 PM To: '[EMAIL PROTECTED]' Subject: RE: Should we do moderation on this mailinglist?? Umm, wou

RE: file not gopund error..

2001-06-06 Thread Jann VanOver
Vinod, tell us more about your setup. you have a "tomcat" directory, right? (maybe named "jakarta-tomcat" or something like that). And in this directory is a subdirectory called "WebApps" right? and THAT is where you put your "purejsp" directory, right? Now, HOW are you trying to access the page

RE: Should we do moderation on this mailinglist??

2001-06-06 Thread Jann VanOver
Umm, wouldn't dividing the groups just give us MORE off topic problems? If someone WANTS the job of moderating the hundreds of post in this list they can, but I am not going to volunteer. I think some kind of canned footer that is added to mail through the list can be very helpful. It should ha

RE: web.xml

2001-05-31 Thread Jann VanOver
Follow that link. Then look along the left side of the page for the word "Specifications" (your quote sayis it's in the Servlet API Spec) and you'll see a link to "Download Implementations & Specifications" Click that. Are you still with me? Scroll down that page for a header that says "SPECI

RE: [ClassPath] JSP, JDBC, and mm.MySql

2001-05-31 Thread Jann VanOver
I use Tomcat to do JSP and I put the JAR file with my db drivers into webapps//WEB-INF/lib directory and they are always found. No need to alter any class paths. -Original Message- From: Jon Shoberg [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 9:49 PM To: [EMAIL PROTECTED] Su

RE: JDBC/ODBC: Technological choice

2001-05-30 Thread Jann VanOver
Yes, not only would the alternative syntax NOT fix the problem, but it could seriously impact your performance. I recently analyzed a JDBC application for performance problems (using JProbe) and found that 2/3 of my time was being spent by the driver looking up my column number with the name. A

RE: What is the value of auto-assigning beans?

2001-05-30 Thread Jann VanOver
e form fields. Perhaps the answer is to have several beans that expire every request, but if you need to persist the data, you still end up copying all of the elements from one spot to another. So I'm still left with the question of Is auto-assigning worth the tr

RE: IIS with Tomcat 3.2.1 on Windows 2000

2001-05-30 Thread Jann VanOver
You didn't mention that you'd defined the virtual directory "/jakarta" to IIS. Did you do that? -Original Message- From: LUN [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 27, 2001 4:07 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: IIS with Tomcat 3.2.1 on Windows 2000 Hi,

RE: server.xml DTD

2001-05-30 Thread Jann VanOver
Here's the DTD that I found in my tomcat\conf directory. I'm not sure how it got there. -Original Message- From: Paulo J S Pereira [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 7:41 AM To: [EMAIL PROTECTED] Subject: server.xml DTD Hi; I am looking for

RE: What is the value of auto-assigning beans?

2001-05-30 Thread Jann VanOver
If you don't want the values to persist, don't put the bean in the "session" scope. Try "page" or "request" and then it will get new values each time. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 9:59 AM To: [EMAIL PROTECTED] Subject

RE: Please help. Accessing protected url from java when using form based authentication

2001-05-24 Thread Jann VanOver
Title: Please help. Accessing protected url from java when using form based authentication You must unsubscribe yourself.    Here's some info posted by another user about unsubscribing:     it is a little tricky to unsubscribe from tomcat-userwhen you have changed your e-mail address and nee

RE: Include question...

2001-05-24 Thread Jann VanOver
Kyle, make sure you read up on your "JSP includes" -- the one that Joel is giving your works DIFFERENTLY than the include you were using before. Specifically, in your original example, it didn't work because the <@ include happens during COMPILATION -- not during RUNTIME. Your problem was that yo

RE: Tomcat & Windows NT & IIS

2001-05-15 Thread Jann VanOver
Make sure you've added the alias to IIS also. (depending on your OS and IIS version) this is usually accomplished with a right-click on your "web root" like .../examples/, select sharing, then web-sharing, and give the alias the same name that is in your uri-workers.properties mapping. That shou

  1   2   >