AW: How to access servlets without prefixes

2000-12-23 Thread Christian Parpart
Hi, unfortunately there was no description of any home attribute. I just found in all Tomcat version I downloaded the following: What does it mean, perhaps 'Extended java bean'? But you meant to add the home attribute to the context (the Context-tag?).

Re: tomcat startup error

2000-12-23 Thread javabettin
You need to put parser.jar in your classpath. Download at: Dave --- utsab koirala <[EMAIL PROTECTED]> wrote: > hi, i am using tomcat server in linux platform. It > was working well but > afterwards i tried to install xml in my linux box. > then xml was also working > we

tomcat startup error

2000-12-23 Thread utsab koirala
hi, i am using tomcat server in linux platform. It was working well but afterwards i tried to install xml in my linux box. then xml was also working well. but when i reboot the system and tried to startup the tomcat-apache server i got this type of error: and also i tried by removing the directori

[repost] endless loop in jsp

2000-12-23 Thread Bruno Raoult
Sorry to repost this question, but I really have no clue. The problem is that java grabs 100% of my CPU in some conditions, when I try to access some jsp files, and I cannot figure how to solve it. Here is the configuration: I am using apache & tomcat. I have some virtual hosts, defined like

Installation Problems

2000-12-23 Thread Jürgen Sommer
Hello, i allready succesfully installed Tomcat with Apache on my Windows NT4 workstation at work. There i have : Apache 1.3.14, Tomcat 3.2, JDK 1.2.2 Now i would like to install it on my home WindowsNT4-Server too. There i have installed: Apache 1.3.14, MS-IIS 3,MS-Proxy 2, Tomcat 3.2 and the ne

Re: Tomcat threads..

2000-12-23 Thread Peter Brandt-Erichsen
What if you configured a servlet to the SingleThreadModel, would Tomcat still create a thread pool to execute this servlet? Peter -Original Message- From: Endre Stølsvik <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Saturday, December 23, 2000 12:24 PM Subject: Re:

Re: need help to run tomcat

2000-12-23 Thread Ted Husted
cannot find file 'c:\jdk1.3;\bin\java (or one of components). In your JAVA_HOME path, remove the semi-colon. *** REPLY SEPARATOR *** On 12/23/2000 at 8:30 PM Amit Madan wrote: hello friends i am using tomcat 3.2 first time and i face a problem to run tomcat3.2 . after settin

need help to run tomcat

2000-12-23 Thread Amit Madan
hello friends i am using tomcat 3.2 first time and i face a problem to run tomcat3.2 . after setting JAVA_HOME & TOMCAT_HOME when i run startup.bat file it show me the message that cannot find file 'c:\jdk1.3;\bin\java (or one of components). Check to ensure the path and filename are correct an

Re: can't build tomcat source

2000-12-23 Thread Sean Yunt
I installed ant 1.2 and everything works perfect. Thanks so much! I'll scrutinized over version #s from now on. Original Message Follows From: "Craig R. McClanahan" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: can't build tomcat source Date: Sat, 2

Re: Tomcat threads..

2000-12-23 Thread Endre Stølsvik
On Fri, 22 Dec 2000, Craig R. McClanahan wrote: | Endre Stølsvik wrote: | | > I'm trying desperately to get tomcat to use only ONE thread. But I always | > seem to end up with 10 or so.. | > | > I guess this is because of tomcat internals, but just how many threads | > does tomcat really need? |

Re: can't build tomcat source

2000-12-23 Thread Craig R. McClanahan
Building Tomcat 3.2 or 4.0 requires Ant 1.2 (which is where the task was introduced). Craig McClanahan Sean Yunt wrote: > I get this error when I attempt to run ./build.sh in my tomcat dir: > > root@stout:/usr/local/jakarta/jakarta-tomcat# ./build.sh > Buildfile: build.xml > > BUILD FAILED >

can't build tomcat source

2000-12-23 Thread Sean Yunt
I get this error when I attempt to run ./build.sh in my tomcat dir: root@stout:/usr/local/jakarta/jakarta-tomcat# ./build.sh Buildfile: build.xml BUILD FAILED build.xml:33: Could not create task of type: copy because I can't find it in the list of task class definitions I use ant fairly often

Re: Tomcat 3.2.1 on SCO O/S 5.0.4

2000-12-23 Thread Dave Smith
Steve, A good first step would be to run javac and see if it is available. The release notes for jdk1.1.7, which are here http://www.sco.com/java/jdk117b/ReleaseNotes.html state that most things are the same as with the Solaris distro. On Solaris, tools.jar is normally in /usr//lib Do you have

Re: How to access servlets without prefixes

2000-12-23 Thread Dave Smith
Christian, add the "home" parameter to the Context. This is explained in the the server.xml comments near the Context entries. This seems to be required whenever you use a directory as docbase which is not in webapps. Dave - Original Message - From: "Christian Parpart" <[EMAIL PROTECTED

Tomcat 3.2.1 on SCO O/S 5.0.4

2000-12-23 Thread Steve Wyatt
I am trying to get Tomcat 3.2.1 running under SCO Openserver 5.0.4. The JSP examples fail with an Error 500. I have seen entries somewhere (the FAQ I believe) that suggest that the problem could be that "jasper.jar" or "tools.jar" are not in the CLASSPATH. The "jasper.jar" file is easy; it is

Re: How to access servlets without prefixes

2000-12-23 Thread Anand Raman
Hi I think this url could be of some help though i havent tested it out myself.. http://www.iris.dti.ne.jp/~u-osamu/indexfreebsd122.html Hope this helps Anand On Sat, Dec 23, 2000 at 05:59:06PM +0100, Christian Parpart wrote: >> -Ursprungliche Nachricht- >> Von: Craig R. McClanahan [mailt

AW: How to access servlets without prefixes

2000-12-23 Thread Christian Parpart
> -Ursprungliche Nachricht- > Von: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Christian Parpart wrote: > > > Hi all > > > > how can I access a servlet wich is > > mapped to any *.xml file without giving him > > any prefix like /mywebapp? > > > > > > XmlFilter > > myServlets.xm

Re: How to access servlets without prefixes

2000-12-23 Thread Craig R. McClanahan
Christian Parpart wrote: > Hi all > > how can I access a servlet wich is > mapped to any *.xml file without giving him > any prefix like /mywebapp? > > > XmlFilter > myServlets.xmlFilter.XmlFilter > > > XmlFilter > *.xml > > > This should be accessable from every sub directory on

Re: Tomcat 3.2.1 servlet load on startup problem

2000-12-23 Thread Craig R. McClanahan
"Sunny L.S.Chan" wrote: > Hi, I have been following the instructions in the tomcat faq to start a > servlet whenever tomcat starts, but with no luck, can someone give me a > light? > When-ever I start tomcat, the console should beam out a message which says > "Servlet Loaded" and set a "appServer

Re: mod_jk and apache 1.3.12

2000-12-23 Thread Faisal Mahdi
Did you verify that there is no syntax error in your httpd.conf ? apachectl -configure ? -Original Message- From: Boon Yeo <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: December 23, 2000 5:51 AM Subject: mod_jk and apache 1.3.12 I have compile mod_jk with no errors

Re: Reloading JSP is a bug? [humor]

2000-12-23 Thread Andreas Sheriff
- Original Message - From: "Ted Husted" <[EMAIL PROTECTED]> To: "Tomcat User List" <[EMAIL PROTECTED]> Sent: Saturday, December 23, 2000 3:15 AM Subject: Re: Reloading JSP is a bug? [humor] > On 12/23/2000 at 2:29 AM Andreas Sheriff wrote: > > To complete the pedantic discussion, the d

Re: Reloading JSP is a bug? [humor]

2000-12-23 Thread Ted Husted
On 12/23/2000 at 2:29 AM Andreas Sheriff wrote: > To complete the pedantic discussion, the difference between a bug and a feature is that a bug is unintended. Oh, come-on, completing a pendantic discussion is clearly an oxymoron. Given the usual lack of architectural documentation, what was int

Re: Reloading JSP is a bug?

2000-12-23 Thread Andreas Sheriff
- Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 22, 2000 11:55 PM Subject: Re: Reloading JSP is a bug? > Andreas Sheriff wrote: > > > Hi, > > > > JGuru states that there is a bug in Tomcat 3.1 where a jsp page converted

How to access servlets without prefixes

2000-12-23 Thread Christian Parpart
Hi all how can I access a servlet wich is mapped to any *.xml file without giving him any prefix like /mywebapp? XmlFilter myServlets.xmlFilter.XmlFilter XmlFilter *.xml This should be accessable from every sub directory on my host. This data is stored in $tomcat/

Tomcat 3.2.1 servlet load on startup problem

2000-12-23 Thread Sunny L.S.Chan
Hi, I have been following the instructions in the tomcat faq to start a servlet whenever tomcat starts, but with no luck, can someone give me a light? When-ever I start tomcat, the console should beam out a message which says "Servlet Loaded" and set a "appServerPath" variable, however, its just s