Tomcat/IIS intergration - once again ;-(

2002-11-29 Thread Marcel Stoer
Hi all Tomcat is running fine and so is IIS. The integration seemed to be successful for all examples are running through http://localhost/examples/an_so_on on the IIS port. HOWEVER, the web apps I added myself refuse to show up - they only work if called on the Tomcat port directly. Concrete:

[Fwd: Mozilla 1.x/N6+ causes memory leak on Tomcat 3.2.4]

2002-11-29 Thread Christopher Mark Balz
-- . . . / This Cabinet is formd of Gold / And Pearl Crystal shining bright And within it opens into a World / . . . Another England there I saw / Another London with its Tower Another Thames other Hills / And another pleasant Surrey Bower . . . - from The Crystal Cabinet, a poem by William

Mozilla crashes Tomcat.

2002-11-29 Thread Christopher Mark Balz
Mozilla 1.x/N6+ causes a devastating memory leak on Tomcat 3.2.4. In side-by-side tests, IE 5.5 causes no such leak, but Moz1.x/N6+ cause Tomcat to simply start allocating memory until the heap size limit is exceeded by about 20MB, resulting in an eventual shutdown of the JVM. I'm pretty sure

Re: tomcat 4 and javax.sevlet.*

2002-11-29 Thread Andreas Probst
On 28 Nov 2002 at 17:11, David Brown wrote: Tushar Kulkarni writes: Hi, I have installed Tomcat4.1. I want to change the directory webapps\examples\JSP to say C:\myExamples. So that I can store my jsp files in to the myexamples directory and access it through the browser with the

RE: Mozilla crashes Tomcat.

2002-11-29 Thread Ralph Einfeldt
Maybe you should provide the answer to following questions: - Do you run tomcat stand alone ? - If yes which JSSE do you use ? - Which jvm do you use ? - On which operating system ? Maybe you should try to profile tomcat with a tool like OptimizeIt to see if it is tomcat or the underlying ssl

Re: Host Context - Unpacking of WARs

2002-11-29 Thread RXZ JLo
On linux, for tomcat 4.0.6, even without a context in server.xml, my classes got reloaded (ie., the webapp restarted) - no reloadable=true in server.xml Is this correct? --- Kwok Peng Tuck [EMAIL PROTECTED] wrote: For the context of the webapp in the server.xml . RXZ JLo wrote: For

How can I activate a pool of threads using Ajp13 and Tomcat 4.x?

2002-11-29 Thread Luca Ventura
Hello everybody! I have Tomcat 4.x integrated with IIS 5. I would like to activate a pool of threads to serve all requests. I tried to add in the server.xml the following lines: Connector className=org.apache.tomcat.service.PoolTcpConnector Parameter name=handler

How do I get the absolute path of a file in a directory above WEB-INFdirectory of my web application?

2002-11-29 Thread Peter Lee
I am using Tomcat for servlets. How do I get the absolute path of a file in a directory above WEB-INF directory of my web application? Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

How to configure data transport constraint for a URL in Tomcat?

2002-11-29 Thread Peter Lee
I have this online form page that needs to be secure, so I do not want to send it in plain text. How do I apply data transport constraint to the URLused to generate the form in Tomcat? Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

installing mod_jk2

2002-11-29 Thread Joshua
how do i install and set up mod_jk2, i am running tomcat 4.1, and Apache 2.0.43 andrewjj20 __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: mod_jk

2002-11-29 Thread José Moreira
hello how did u install the mod_jk.dll? i copied it to the modules dir and added LoadModule jk_moduke modules/mod_jk.dll ang got module not found -Mensagem original- De: Andrewjj20 [mailto:[EMAIL PROTECTED]] Enviada: quinta-feira, 28 de Novembro de 2002 23:17 Para: tomcat Assunto:

RE: [ Tomcat as Webserver ]

2002-11-29 Thread Steve Beech
Can't you just run Tomcat as a standalone webserver? -Original Message- From: Osvâneo A. Ferreira [mailto:[EMAIL PROTECTED]] Sent: 28 November 2002 18:00 To: Tomcat Users List Subject: Re: [ Tomcat as Webserver ] You´re correct. Now I make a some test integrating Apache with Tomcat.

[repeat] IllegalStateException??? Please help!

2002-11-29 Thread Steve Beech
I've set up a SSL socket in Tomcat and everything appears to work okay. I can connect to the port, install the cert and access the site. However, when I access the HTTPS port with my browser and get the 'Security Alert' prompt telling me about the certificate and asking me if I want to continue,

RE: thread comunicating with ServletContexts

2002-11-29 Thread Reynir Hübner
Hi, I was tired and obviously not thinking straigt as the error I was doing was calling thread.run but not thread.start... And that was the reason for application lockup.. It works fine right now. Thanx -reynir -Original Message- From: Nathan Smith [mailto:[EMAIL PROTECTED]] Sent:

startup classes in tomcat 4.1.12

2002-11-29 Thread P Sasidhar
Hi, Can any one tell me how to configure start up classes in tomcat 4.1.12 server sasi

Re: Apache Mod_jk.conf file.

2002-11-29 Thread mlh
Andoni wrote: I have my .conf files working fine, I just have a question that is bugging me. I am told everywhere to put my mod_jk.conf file under the /tomcat/conf/ directory and then include it in the bottom of my httpd.conf file. Is there any real reason for this separation? Can I just take

RE: startup classes in tomcat 4.1.12

2002-11-29 Thread Reynir Hübner
Sure, there are few possibilities. One is to make a ServletContextListener, with this you can start up what ever class you like when the application starts. Another one is to make servlet and have its load-on-startup parameter set in web.xml For example if I have a servletcontextListener

Re: Programmatic login

2002-11-29 Thread Rodrigo Ruiz
I think the same Bill implements with a Valve could be implemented with a Filter with an HttpRequestWrapper for setting the principal. Am I right? - Original Message - From: Bill Barker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 17, 2002 8:53 AM Subject: Re:

RE: How do I get the absolute path of a file in a directory above WEB-INFdirectory of my web application?

2002-11-29 Thread Reynir Hübner
Try this : String filepath = ServletContext.getRealPath(/WEB-INF/somedir); Hope it helps -reynir -Original Message- From: Peter Lee [mailto:[EMAIL PROTECTED]] Sent: 29. nóvember 2002 09:18 To: [EMAIL PROTECTED] Subject: How do I get the absolute path of a file in a directory

Re: startup classes in tomcat 4.1.12

2002-11-29 Thread David Brown
P Sasidhar writes: Hi, Can any one tell me how to configure start up classes in tomcat 4.1.12 server sasi Hello sasi, what r u trying to do? need more info: is tc running? if tc is running, what happened? what url did u invoke? have u checked ur logs? what more can

RE: startup classes in tomcat 4.1.12

2002-11-29 Thread P Sasidhar
Hi David, Thanks for your help.it got solved. sasi -Original Message- From: David Brown [mailto:[EMAIL PROTECTED]] Sent: Friday, November 29, 2002 4:17 PM To: [EMAIL PROTECTED] Subject: Re: startup classes in tomcat 4.1.12 P Sasidhar writes: Hi, Can any one

Re: How to configure data transport constraint for a URL in Tomcat?

2002-11-29 Thread David Brown
Peter Lee writes: I have this online form page that needs to be secure, so I do not want to send it in plain text. How do I apply data transport constraint to the URLused to generate the form in Tomcat? Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Re: How do I get the absolute path of a file in a directory above WEB-INF directory of my web application?

2002-11-29 Thread David Brown
Peter Lee writes: I am using Tomcat for servlets. How do I get the absolute path of a file in a directory above WEB-INF directory of my web application? Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] Hello,

Re: Mozilla crashes Tomcat.

2002-11-29 Thread David Brown
Christopher Mark Balz writes: Mozilla 1.x/N6+ causes a devastating memory leak on Tomcat 3.2.4. In side-by-side tests, IE 5.5 causes no such leak, but Moz1.x/N6+ cause Tomcat to simply start allocating memory until the heap size limit is exceeded by about 20MB, resulting in an eventual

Servlet and Applet working in Tomcat 4.0.4 standalone

2002-11-29 Thread Patrick Kosiol
Hi, I am using the Tomcat 4.0.4 as a standalone-server. Esspecially because JBuilder7 supports Servlet debugging. OK. I have an webApplication that includes a client- and a server-directory (package). The server-dir contains the Servlet-Class and the client-dir contains the client, of course.

RES: Servlet and Applet working in Tomcat 4.0.4 standalone

2002-11-29 Thread Tiago Ferraz Machado
Hi, I don't know if it is it, but there is a directive called unpackWARs=true that I think you should add to your server.xml. Could anyone confirm that ? Thanks, Tiago. -Mensagem original- De: Patrick Kosiol [mailto:[EMAIL PROTECTED]] Enviada em: sexta-feira, 29 de novembro de 2002

Re: RES: Servlet and Applet working in Tomcat 4.0.4 standalone

2002-11-29 Thread Patrick Kosiol
THX, that might be of course, but I am running the default settings of the Tomcat so this option is already set TRUE. That is not the problem. Because of that I don't understand why it doesn't unpack the war-file But without the WAR-File can I also put my webapp onto the server? And how do

Tomcat-IIS-Help!!!

2002-11-29 Thread Mauritz Viljoen
I have a huge problem getting the redirect of IIS to tomcat to work. I have followed all the instructions on the tomcat-iis-howto.html document, but alas, still not working. I get the following error in the logfile 10:50:16 127.0.0.1 GET /jakarta/isapi_redirect.dll 200 According to the

Re: Host Context - Unpacking of WARs

2002-11-29 Thread David Brown
Kwok Peng Tuck writes: For the context of the webapp in the server.xml . RXZ JLo wrote: For the applications deployed through WAR files, where do I specify attributes like reloadable? thanks. rf __ Do you Yahoo!? Yahoo! Mail Plus -

Re: How do I get the absolute path of a file in a directory above WEB-INF directory of my web application?

2002-11-29 Thread Andreas Probst
If you're trying from inside a servlet or so, the getResourceAsStream works fine, as the path pass something like /WEB-INF/somedir/somefile.someextension. Try not to use getRealPath. See list's messages explaining the use of properties files. If you want to access a directory below WEB-INF from

Re: Servlet and Applet working in Tomcat 4.0.4 standalone

2002-11-29 Thread David Brown
Patrick Kosiol writes: Hi, I am using the Tomcat 4.0.4 as a standalone-server. Esspecially because JBuilder7 supports Servlet debugging. OK. I have an webApplication that includes a client- and a server-directory (package). The server-dir contains the Servlet-Class and the client-dir

Help: Standard SQL Tags w/ Connection Pooling Problem

2002-11-29 Thread Matt Fury
Hi All, This is sort of a cross posting with tagging but I am having some problems with configuration. I am trying to use connection pooling w/ the JSTL and Commons. Please let me know if this is not possible. From the limited amount of info I could find, it just seems as though I set my pooling

Re: Servlet and Applet working in Tomcat 4.0.4 standalone

2002-11-29 Thread Patrick Kosiol
David Brown wrote: Patrick Kosiol writes: Hi, I am using the Tomcat 4.0.4 as a standalone-server. Esspecially because JBuilder7 supports Servlet debugging. OK. I have an webApplication that includes a client- and a server-directory (package). The server-dir contains the Servlet-Class and

multiple execution of a 'load-on-startup'

2002-11-29 Thread Maxime Colas des Francs
Hello , A strange thing about 'load-on-startup' servlet. I use tomcat 4.1.12 with multi-host, and log4j 1.2.7 in my web.xml i wrote these lines : servlet servlet-nameSetup/servlet-name servlet-classinit.SetupServlet/servlet-class load-on-startup/ /servlet and i put an

Connecting to Xindice through Tomcat

2002-11-29 Thread Fred O Shea
Hi, Could you recommended any sources which give a detailed description on how to Connect to Xindice(Apaches native XML database) through Tomcat. I want to make use of the servlet programming capabilities of Tomcat and manipulate the XML documents i have stored in Xindice. Many thanks,

Re: Servlet and Applet working in Tomcat 4.0.4 standalone

2002-11-29 Thread Andreas Probst
On 29 Nov 2002 at 15:43, Patrick Kosiol wrote: deleted older messages... Hello, 1. I do not get any expansions. 2. My DirectorySystem is: WEB-INF classes myApp client server Can that works that the client and the server

FreeBSD 4.7 Apache2.0.43 tomcat 4.1.12 - problem with mod_jk2.so

2002-11-29 Thread Michael Galloway McLean
Hi. I have installed apache2 - no problem. It works fine. I have installed tomcat4.1 from binaries - no problem. This too works fine for standalone. The problem I am having is when I try to build the mod_jk2.so module for apache. I am using ant to build the connector (jdk1.3.1). When I first

Tomcat problems

2002-11-29 Thread Lewis, Hugh F
Hi We are attempting to get the ISAPI to work, we have one web server with IIS and win2k a second server with bugseye, emerge and tomcat installed. The Jakarta.dll is on the web server. What we are trying to do is to re-direct people from the web server to the other server with tomcat

RE: How to add a servlet to a new Webapp

2002-11-29 Thread Scott Murray
To get rid of the invoker, this could be your entire web.xml file: *** ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd; web-app

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: Mozilla crashes Tomcat.

2002-11-29 Thread Christopher Mark Balz
Yes, you are right, excuse me for not supplying the basic info of several systems I am using. I'm using: tomcat 3.2 standalone - yes. Java SDK 1.4 (includes JSSE) Sun's JVM standard with SDK 1.4 The problem happens on Win2K and also on Linux RedHat 8.0 (Contains latest OpenSSL). I have by now

Tomcat 4.1.12 doesn't find class in shared/classes/

2002-11-29 Thread Jim Coble
Tomcat 4.1.12 on Solaris 8. Put a new class in $CATALINA_HOME/shared/classes/foo/. Stopped and restarted Tomcat. Tried to use the class in a web app but Tomcat couldn't find it. Put the same class in $CATALINA_HOME/common/classes/foo/ and Tomcat found it just fine. Any idea why it didn't find

Can tomcat redirect to IIS?

2002-11-29 Thread Prashanth Pushpagiri
Hi I am using IIS 5.0 on Windows 2000 Adv Server and tomcat 4.1.12 for my servlet engine. When we configure tomcat with other webservers, we have request filters identifying which requests need to be handled by tomcat right? I want to know if it is possible to do the reverse. Say I have a request

SSL problem

2002-11-29 Thread Gabriel Enriquez Perez
I have created my certificate using keytool... After it, i uncommented the lines in the server.xml and all that stuff. When i tried using 127.0.0.1 (https://127.0.0.1:8443/) it functions okay... The problem is that... as soon as i am in a network, if i use the ip address of my computer... if i

HTTP Status 500

2002-11-29 Thread Paul Kavanagh
Hi there, I'm trying to get the attached webapp (from Chapter Three of Mastering Struts) working with Tomcat 4.1.12. My understanding is that I should be able to just drop the attached (unzipped of course) into a webappname/ folder and then be able to access it via http://localhost/webappname. Is

how to set server.xml to show all info on Tomcat Server?

2002-11-29 Thread James HU
_ MSN 8 with e-mail virus protection service: 2 months FREE* http://join.msn.com/?page=features/virus -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: How to add a servlet to a new Webapp

2002-11-29 Thread Steve R. Burrus
Hello David Brown, I am getting the very same 404 server error msg. when I try to run/execute a VERY BASIC JSP, for the current date and time!!! I need some special guidance from u re. how to edit the web.xml file to set the context variable!! And, would you also tell me how to write the and

RE: SSL problem

2002-11-29 Thread mech
Could it be a firewall problem in the network? Port 8443 is not too common. Some admins might block it. Try to change port to 443 to find out if it's a protocol or a port problem. -Original Message- From: Gabriel Enriquez Perez [mailto:[EMAIL PROTECTED]] Sent: Freitag, 29. November

Mozilla 1.x/N6+ causes memory leak on Tomcat 3.2.4

2002-11-29 Thread Christopher Mark Balz
In side-by-side tests, IE 5.5 causes no such leak, but Moz1.x/N6+ cause Tomcat to simply start allocating memory until the heap size limit is exceeded by about 20MB, resulting in an eventual shutdown of the JVM. I'm pretty sure it's not my code since the leak starts immediately on secure (ssl)

Re: How to add a servlet to a new Webapp

2002-11-29 Thread bido
This shouldn't be too hard to solve. Post the associated servlet and servlet-mapping from your web.xml -the one under webapps/study. On Friday, November 29, 2002, at 05:53 PM, Steve R. Burrus wrote: Hello David Brown, I am getting the very same 404 server error msg. when I try to

tomcat linux (SuSE) and latin characters

2002-11-29 Thread Dionisio Ruiz de Zarate
When i start my linux machine the tomcat show me (the jsp pages) some characters bad: ó --? some latin characters (ISO-8859-1) show me in the jsp pages as ? but if i restart the tomcat shows me well. what can be the problem? and the solution? thanks -- To unsubscribe, e-mail: mailto:[EMAIL

set enviroment variables on linux

2002-11-29 Thread Jack_-_Ganzha
How can i set a enviroment variable on linux using kde interface? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

url patterns

2002-11-29 Thread Warner Onstine
I'm trying to figure out if this can be done with url-patterns. I need to protect a sub-string of this url /wo/c/ognl/admin/... I need to protect the ognl/admin part. The problem is that the preceding string before it can change depending on actions that I perform so I can't just do

tomcat 4.1.12 much slower than Tomcat 4.0.3

2002-11-29 Thread Ron Day
I just installed Tomcat 4.1.12. But now my tomcat 4.0.3 webapps run about 10 times slower. Anyone have any ideas as to why this may be. I did not change anything, and it happens for jsp's and servlets !!! ron -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Linux Install of tomcat4-4.1.12 error

2002-11-29 Thread Ken Fawcett
In installing RPM for tomcat4-4.1.12-full.2jpp.noarch.rpm I got a bunch of warnings about files that were created (which I think is OK) but then get this error: error: unpacking of archive failed on file /var/tomcat4/logs: cpio: rename failed -- Is a directory Perhaps someone can point me in

Re: tomcat 4.1.12 much slower than Tomcat 4.0.3

2002-11-29 Thread Steven Burrus
I need some help/assistance right away with trying to see a JSP in my browser!! All that I get for my efforts is a cryptic server error msg. [404] message saying that the requested resource couldn't be found! On Fri, 29 Nov 2002 22:47:02 -0600, Ron Day [EMAIL PROTECTED] wrote: I just

Re: tomcat 4.1.12 much slower than Tomcat 4.0.3

2002-11-29 Thread micael
I don't get why someone answers another person's request for assistance with their own request, but what do I know. The one I am answer is the first guy. You may need to reboot your Tomcat. That happened to me once. 4.1.12 is not slower. Sometimes I have found that if Tomcat is accessed

Re: tomcat 4.1.12 much slower than Tomcat 4.0.3

2002-11-29 Thread micael
Okay, Steve. Don't know why you answered Ron's question with yours. Must have hit the wrong switch? You need to give more information. Where is your JSP, for example. Is this the index.jsp you are talking about, or some other situation? With no information, answering is impossible.