Pbs with tomcat 3.3a and IIS connector : windows auth fails

2002-04-02 Thread henri . simoes
I'm using W2K Professionnal with IIS 5 + Tomcat 3.3a, Tomcat configured with IIS connector. Jakarta virtual dir authentication method setted like this : - anonymous access : unchecked - basic authentication : unckecked - windows auth : checked I try to read the current windows user with

Re: Libraries problem

2002-04-02 Thread RAYMOND Romain
Yeah, thanks a lot Mr. Kjome. Jacob Kjome a écrit : Hi Raymond, Supposedly having the XML parser in the webapp itself is against the Sun classloading spec. The spec was beginning to be implemented in 4.0.2 (in fact, if you look at 4.0.2-b2, you still get the 4.0.1 behavior). 4.0.3 is

mod_apps problem with special appBase

2002-04-02 Thread [EMAIL PROTECTED]
Hi, i am having problems using the mod_apps connection. I tried it first with the default tomcat /webapps/ path und with that I could get it working. But my webBase should be something like /home/meinuser/public_html/docroot/. Tomcat is accessing that path when I browse the site via port 8080.

distinguish new/invalid session

2002-04-02 Thread Michael
Hi! (tomcat v3.3a) *** please help *** If the client requests a page without a valid sessionid, I want to distinguish between: .) first request - no session id = generate new session .) invalid (eg timed out) session = return session-timeout-page; redirect the client to get new

uploading a file greater than 1 mb

2002-04-02 Thread Lalit Nagpal
can someone help me. i am finding a problem uploading file greater than 1 mb i am using oreilly classes (servlets). I have set the upload limit to 5 mb in MultipartRequest.java provided by oreilly, still it does not seem to work Thanks in advance ... - Do

Tomcat and Jmeter

2002-04-02 Thread paolo ciao
I have to test my web application. I use servlet engine with tomcat server. I have this problem: with Jmeter I have to test an unique session. In my application I use: HttpSession session = request.getSession(); How can say Jmeter to use the same idsession? How tomcat manage session id? with

problem in session persistence session affinity

2002-04-02 Thread Parag

Unable to load class

2002-04-02 Thread Chuck Amadi
Hi there having problrms with this one Please note that i was able to get the dbtags running albeit i need to get a connection to MySql Database using the mm.mysql-2.0.4-bin.jar file that is also in my /WEB-INF/lib subdirectory of my web applicationbbnp. I assume that the dbtags Copy the dbtag

SendMail example with Tomcat 4.0.3. Help please.

2002-04-02 Thread Travers Waker
Hi. I've just installed Tomcat 4.0.3, and when I try to use the sendmail example at http://localhost:8080/examples/jsp/mail/sendmail.jsp I get the following exception: javax.servlet.ServletException: Wrapper cannot find servlet class SendMailServlet or a class it depends on Can someone help

session - bug

2002-04-02 Thread Michael
Hi! as there were problems in 3.3, I was very delighted, when I installed 3.3.1 and saw some bugs had vanished! But there is a new bug: If my browser sends an invalid session-id in it's URL, I get: req.isRequestedSessionIdFromCookie(): false req.isRequestedSessionIdFromURL(): true

Re: multiple users using tomcat

2002-04-02 Thread Robert Evans
Joe, I have to do this at JHU for some Java classes. The best I've figured it out, you use a Listener that designates a certain directory as a home directory for web apps. It iterates through all of the directories in the home directory, and builds webapps for any that contain the

BUG!!: Tomcat 4.0.3 + Apache 1.3.24 + warp

2002-04-02 Thread @Basebeans.com
Subject: BUG!!: Tomcat 4.0.3 + Apache 1.3.24 + warp From: Hyunjin Kim [EMAIL PROTECTED] === Ok.. I've had enough.. - I installed Struts 1.1b and the warp connector didn't correctly handle *.do calls. - I changed the configuration so that I use /execute/* instead of *.do - I configured Tomcat's

JSP 1.2 Erratta.

2002-04-02 Thread Jeff Plager
Does anyone know when Tomcat is planning on implementing the JSP 1.2 erratta? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: BUG!!: Tomcat 4.0.3 + Apache 1.3.24 + warp

2002-04-02 Thread @Basebeans.com
Subject: Re: BUG!!: Tomcat 4.0.3 + Apache 1.3.24 + warp From: Hyunjin Kim [EMAIL PROTECTED] === oh... disregard this post.. I just wrote this outta frustration.. I actually had one blank space in front of password 'hyunjin' in the database.. (usual error is you use ms sql...) one question..

ajp12 works on AIX 4.3.3 but ajp13 fails -- anyone heard of this?

2002-04-02 Thread Jay Balunas
Hey all, With some help from this mailing list I was able to get the mod_jk working on AIX at least partially. The really weird thing is that ajp12 works fine, but any web-apps that use ajp13 fail. The log just stops - not errors nothing. It seems to get the message, and realize it has

Re: Problem with 4.0.3 - NoClassDefFoundError

2002-04-02 Thread Ken Nordquist
I figured out why I got this error. The xerces-j (1.4.4) loads the xml parsers into the /var/tomcat4/lib directory. The jars should be loaded in the /var/tomcat4/common/lib directory. I copied the jars from the former directory to the latter and VOILA! It works. I am running Tomcat on RedHat

Re: Where can I find TC3.2.2 ?

2002-04-02 Thread Shunsuke Masuda
Thank you for your reply. I managed to find it by searching CD-ROMs attached with local magazines' backnumbers. Still, I wonder why there is no archive. Regards, Shunsuke Masuda - Original Message - From: Gerhard Kreutzer [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent:

Re: Tomcat and Jmeter

2002-04-02 Thread peter lin
have you looked at this page? http://jakarta.apache.org/jmeter/usermanual/build-adv-web-test-plan.html It might not have what you need, but it's a start. If you're trying to mimic a secure session, by using session ID, you're going to have to either extend JMeter, or write your own to benchmark

Problem Running Servlets

2002-04-02 Thread Smalley, Howard
Hi All Perhaps someone can help me with this, I'm trying to get a very simple servlet to run, I'm using Tomcat 4.0.3 on Windows 2000. I've set up my application in the webapps directory, then added my servlet name to the web.xml in this directory. Tomcat starts up ok, but when I try to run the

Fixed my problem with SendMailServlet example.

2002-04-02 Thread Travers Waker
Hi. I've got the example working. It turns out that the SendMailServlet.java file was just not compiled, so using the mail.jar and servlet.jar that came with Topmcat, it compiled fine and now the example works. Travers -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands:

Re: losing session info with netscape 4.x

2002-04-02 Thread Jeff Larsen
To encode a URL with the session id, you call HttpServletResponse.encodeURL() or HttpServletResponse.encodeRedirectURL(). If the session id is being stored as a cookie, these methods will leave the URL unchanged. If cookies are disabled, then these methods will embed the session id within the

[TC403] Cannot find message associated with key 'responseStream.suspended'

2002-04-02 Thread Endre Stølsvik
[TC4.0.3, Jre 1.4.0, Linux 7.2] If you after a redirect try to close the output stream as in: try { // Getting encoding String encoding = res.getCharacterEncoding(); // Setting content type res.setContentType(text/html; charset= +

Getting error with IIS and Tomcat

2002-04-02 Thread Alex Colic
I have somewhat successfully installed tomcat and IIS 5. Periodically I when viewing a page I get the following error: Apache/Tomcat 4.0.3 HTTP Status 404 /pwC.jsp Type status report message /pwC.jsp description The requested resource pwC.jsp is not available. I do prefix my web pages with

reading html-form parameters within servlet filter on tomcat 4.0.3

2002-04-02 Thread Alexander Thomas
Hi gents, I am trying to set up a servlet filter which uses the HttpServletRequest.getParameterNames() and HttpServletRequest.getParameter(...) methods. However, the terminating servlet in the filterchain has to be allowed access to these methods as well! Currently, I am confronted with an

Re: Calling all AIX mod_jk Binaries

2002-04-02 Thread Mike McGuinness
If you're interested, I've got a working mod_jk.so for AIX 5.1. Mike On Fri, 2002-03-29 at 14:32, Jay Balunas wrote: Hello All, We have a binary compiled on AIX 4.3.3 and it does not seem to be working correctly. Does anyone have another AIX mod_jk binary

RE: Tomcat 3.3a and mod_jk on AIX 4.3.3 built OK, but not sending requests

2002-04-02 Thread Mike McGuinness
Jay, mod_jk does work on AIX. Although I'm on AIX 5.1, I've got apache 1.3 communicating with tomcat 4 just fine. With help form others in this group, I was finally able to compile the module. If you like, I can get you my copy of the hacked-for-aix apxs and the build script. Maybe a re-compile

Re: package org.apache.jasper.runtime does not exist

2002-04-02 Thread hatem zanaty
Include jasper-runtime, jasper-compiler to your class path and logoff/login your computer then try agin Have luck Chuck Amadi [EMAIL PROTECTED] wrote: Hi any takers . All my previous work no longer functions due to this error . Note unfortunatley i don't run cvs and it's been while that i

Re: reading html-form parameters within servlet filter on tomcat4.0.3

2002-04-02 Thread Craig R. McClanahan
On Tue, 2 Apr 2002, Alexander Thomas wrote: Date: Tue, 02 Apr 2002 05:57:11 +0200 From: Alexander Thomas [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: reading html-form parameters within servlet filter on tomcat 4.0.3 Hi gents, I

Re: AW: AW: sessions, security, and the RFCs

2002-04-02 Thread Craig R. McClanahan
On Tue, 2 Apr 2002, Ralph Einfeldt wrote: Date: Tue, 2 Apr 2002 09:40:48 +0200 From: Ralph Einfeldt [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: AW: AW: sessions, security, and the RFCs As I understand it, the spec

RE: losing session info with netscape 4.x

2002-04-02 Thread Huy K Dung
I am using Turbine 2.1 with velocity macro. Is there an equivalent of encodeURL() in velocity macro? I am not doing anything with cookies. Is session id automatically saved as a cookie? This is what I did: session.setAttribute(name, value); popup can't seem to retrieve correctly:

Building mod_webapp

2002-04-02 Thread Thomas Gideon
I have made some progress on my original problem in that I finally realized I needed a complementary jar under Tomcat to receive and interpret WARP requests coming in from Apache. The problem is, with the Tomcat 4.02-01 binary version of mod_webapp.so, even though I get promising debug messages

mod_jk and load distribution among tomcat servers

2002-04-02 Thread PERIYANAN,VISWA (Non-HP-Cupertino,ex1)
Hi, I am using two tomcat severs load balanced by mod_jk(with apache). The load factor (as specified in the workers.properties) for the both the tomcat servers are the equal. To test whether the load is being distributed equally, I sent 100 requests to the apache server. The servlet

Re: Reloading Web Applications without manager and without reloadable=true

2002-04-02 Thread Tarun Ramakrishna Elankath
Sorry, This reply has been late in coming... Thanks Jeff, for your solution. I'll try this out. I am still not quite sure whether this will prevent users from reloading other user's webapps. I'll try it out and let you know. Thanks for the help, Tarun Jeff Larsen wrote: As long as the

TC3.3 blocking (was: In jk_endpoint_t::service, get_reply failed in send loop 1)

2002-04-02 Thread PSA
Bill - Thanks for your efforts. We finally tracked the problem to a servlet which was trying to make a JDBC connection to a server that it couldn't reach. This was easy to fix, but what I don't understand is 1) Why did all of the other requests to the server have to wait for this one? Is

Unable to start Tomcat(4.0.3)

2002-04-02 Thread Kairam, Raj
Installed Tomcat on a HP machine running HP-UX 11. Also running Netscape Navigator 4.x Set required environment variables in the start up .profile file and verified. Not able to see Tomcat welcome page and facing problems not mentioned in any of the books I read. Please Help

jakarta + MySQL / JDBC Problem

2002-04-02 Thread subceero
Hello everyone, I'm running tomcat on a linux system. My test JSP-Page runs fine, but if I try to connect to a mySQL-database, all I get is a Class loading error . Does anyone know what this could mean? Is some class missing? what do I need to run JDBC? Do I need to configure tomcat to access a

Re: jakarta + MySQL / JDBC Problem

2002-04-02 Thread Peter Choe
do you have the jdbc driver for the mySQL? At 12:52 PM 4/2/2002, subceero wrote: Hello everyone, I'm running tomcat on a linux system. My test JSP-Page runs fine, but if I try to connect to a mySQL-database, all I get is a Class loading error . Does anyone know what this could mean? Is some

Re: jakarta + MySQL / JDBC Problem

2002-04-02 Thread Thomas Gideon
On Tue, Apr 02, 2002 at 07:52:44PM +0200, subceero wrote: Hello everyone, I'm running tomcat on a linux system. My test JSP-Page runs fine, but if I try to connect to a mySQL-database, all I get is a Class loading error . Does anyone know what this could mean? Is some class missing? what do

Re: Unable to start Tomcat(4.0.3)

2002-04-02 Thread Fabien Nisol
You already have a process that is listening on port 8080. Try to change the port in server.xml or try to determine which program is using port 8080 on your system At 12:40 PM 02/04/2002 -0500, you wrote: Installed Tomcat on a HP machine running HP-UX 11. Also running Netscape Navigator 4.x

Setting up a virtual host

2002-04-02 Thread Diego, Emil
I have a web server configured to use apache 1.3 and tomcat 3.2.3 on Redhat Linux 7.2. It is currently working fine without any problems. My problem is that I setup a virual host on the apache server using a Named based virtual host tag. The web part of it works fine. But the JSP files I

Re: Problem Running Servlets

2002-04-02 Thread Jason Johnston
Try running your servlet from the address: http://localhost:5001/core/servlet/HelloWWW I ran into this problem and found several things that I changed to get it to work. 1. I moved it into a test directory and made the servlet part of a test package i.e. package test; I could not get

Re: Problem Running Servlets

2002-04-02 Thread Jason Johnston
Sorry, the structure I meant was /core/WEB-INF/classes/test/HelloWWW

ISAPI for unix

2002-04-02 Thread Alexander Wanko
hello, is there a machanism like isapi (Programming C++ threads, not cgi) under UNIX od LINUX? Does tomcat support this? thank you Alexander Wanko -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Problems with JDBC-Datasource as Resource in JNDI

2002-04-02 Thread Frank Marx
Hi, I defined a mysql-Datasource as a resource in JNDI. I can lookup the datasource but everytime when I call the Datasour - getConnection Method the error message no suitable driver shows up. Here are my configuration files: WEB.XML: (only resource part) resource-ref description

doubt regarding apache tomcat 4.0.3

2002-04-02 Thread naval jajoo
Dear friend, I am working on Apache Tomcat 4.0 and to run servlets on it. It is installed in C:\Program Files\Apache Tomcat 4.0 and all the folders appears as in 3.2.1 version. now in this Apache Tomcat 4.0 folder I had created nilesh folder. it's heirarchy is webdev-- web-inf

need advice on getting SSL to work

2002-04-02 Thread Mikhail Kruk
Hi, I need to make my Tomcat serve JSPs over secure connection ASAP so I'm asking for your advice on what's the best way to go. I'm running Tomcat 4. I saw two possilibities: use ISAPI dll or setup Tomcat with a certificate. I've tried setting up ISAPI but it didn't seem to work, so I decided

ClassCastException after ant build in getting object from ServletContext

2002-04-02 Thread braswell
Been working on a connection pool to make is to we do not need to bounce tomcat all the time. Initially we had it setup so tomcat would start and stop the connection pool when the server started. I have created an admin servlet that starts and stops the connection pool the same way starting and

load balancing and inactive workers

2002-04-02 Thread Matthew Tepel
We are working on transitioning from Jserv to Tomcat 4.0 (believe it or not), and there is one problem I haven't found the answer to in the documentation. We use apache with a pool of remote java servers. There is a tool (and web interface) that allows us to tell mod_jserv not to send new

Tomcat 4.0.3 load balancing

2002-04-02 Thread perumal90
hi, I am trying to connect two Tomcat 4.0.3 with Apache 1.3.24 in load balancing .I am using AJP13 .I commended out the default http listener in zserver.xml. I started the two tomcats when i try to start the apache i am getting the folling error [Tue Apr 2 13:57:22 2002] [emerg] (2)No such

RE: Pbs with tomcat 3.3a and IIS connector : windows auth fails

2002-04-02 Thread Larry Isaacs
Make sure that you set tomcatAuthentication=false on the Ajp13Connector element in the server.xml file. Otherwise, Tomcat 3.3.x ignores any authentication done by IIS. Cheers, Larry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002

Re: jakarta + MySQL / JDBC Problem

2002-04-02 Thread subceero
Hello, Unfortunately, it still doesn't run. I have no idea where tomcat expects those jar file to be ( I have downloaded the JDBC-Driver for mysql, the file is named mm.mysql-2.0.4-bin.jar) and copied it to $JAKARTA_HOME/common/lib, but still the same Class loading error . Maybe I need to put it

Tomcat and Certificate Revocation List

2002-04-02 Thread Ian Huynh
Does Tomcat support CRL during setup? If I need to use clientAuth but also need to make sure that the certificate presented by the client has not been revoked yet, how would I set that up? Thks. -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

Re: session object [urgent!]

2002-04-02 Thread Nancy Crisostomo Martinez
I have found a kind of bug or I don't know what I tried to access to the session's attributes, with another servlet-engine and it works perferct! So... I think Tomcat 3.3 (I'm using) has a bug or maybe it is a cause of a bad configuration because the track is lost What do you think

RE: Pbs with tomcat 3.3a and IIS connector : windows auth fails

2002-04-02 Thread Ignacio J. Ortega
De: Larry Isaacs [mailto:[EMAIL PROTECTED]] Enviado el: martes 2 de abril de 2002 21:07 Make sure that you set tomcatAuthentication=false on the Ajp13Connector element in the server.xml file. Otherwise, Tomcat 3.3.x ignores any authentication done by IIS. AFAIK There is a problem ( i

Apache/Tomcat Form Submissions

2002-04-02 Thread David Christian
Hello, I am a Tomcat newbie and I am trying to find an answer to this one by looking at past postings and by RTFM, but am having little luck. Platform: Win 2000 SP2 Web Server: Apache 1.3.24 Tomcat version: 4.0.3 JDK: 1.4.0 We have a servlet we have run successfully on JServ (Win32, Linux,

Help with Apache

2002-04-02 Thread Mariano
I have the following simple problem with apache runnign under w2k. I have a directory under c:\program files\apache\htdocs\ called shop. the thing is when i point to http://myserver/shop i get 404, but if i try http://myserver/shop/ it works ok. what shou i do to make the first way work.

Re: jakarta + MySQL / JDBC Problem

2002-04-02 Thread Thomas Gideon
On Tue, Apr 02, 2002 at 09:26:59PM +0200, subceero wrote: Unfortunately, it still doesn't run. I have no idea where tomcat expects those jar file to be ( I have downloaded the JDBC-Driver for mysql, the file is named mm.mysql-2.0.4-bin.jar) and copied it to $JAKARTA_HOME/common/lib, but

RE: Problems with JDBC-Datasource as Resource in JNDI

2002-04-02 Thread Ozgur Sahoglu, KonneKtia
Hi, I suspect that the driverName value (jdbc:mysql:@qhds0004:3306:qRoom) has a valid syntax in your server.xml file. The format should be in jdbc:mysql://host:port/db form. Also instead of InitialContext ic = new InitialContext(); DataSource ds

Re: load balancing and inactive workers

2002-04-02 Thread costinm
There is no such tool for mod_jk yet. Next version ( Jk2 ) will have such a thing - but it's not even alpha, it'll take few more months to complete it. Costin On Tue, 2 Apr 2002, Matthew Tepel wrote: We are working on transitioning from Jserv to Tomcat 4.0 (believe it or not), and there

Re: load balancing and inactive workers

2002-04-02 Thread Matthew Tepel
This is a feature that we really need. I would consider writing it myself if I knew more about how mod_jk works, what previous discussion has gone on in this area, how much work it involves, etc. Any suggestions? On Tue, 2 Apr 2002 [EMAIL PROTECTED] wrote: There is no such tool for mod_jk

Re: load balancing and inactive workers

2002-04-02 Thread costinm
On Tue, 2 Apr 2002, Matthew Tepel wrote: This is a feature that we really need. I would consider writing it myself if I knew more about how mod_jk works, what previous discussion has gone on in this area, how much work it involves, etc. Any suggestions? Any help is great. You can start by

JSP and MYSQL: Connection Sample??

2002-04-02 Thread subceero
Hi everyone, Does anyone of you have a sample SMALL code of a mysql-connection from jsp? just to check if the connection can be established. Thanks in advance Subceero

Question about container-managed security

2002-04-02 Thread Wellie W. Chao
I'm using Tomcat 4.0.2 and noticed that the security attributes returned by request.getRemoteUser(), request.isUserInRole(x), and request.getUserPrincipal() seem to only be present when the user is in a protected directory, even if he has already logged in. That is to say, the user can log in and

Re: Communication Link Failure

2002-04-02 Thread Jacob Kjome
When you close your connections, do you do it in a finally block? I'm not saying that this is definitely causing your problem in this case, but it most definitely will become a problem later. If your sql breaks before closing the connection, your connection is left dangling. Same goes for

Re: Question about container-managed security

2002-04-02 Thread Craig R. McClanahan
On Tue, 2 Apr 2002, Wellie W. Chao wrote: Date: Tue, 2 Apr 2002 16:59:38 -0500 From: Wellie W. Chao [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Question about container-managed security I'm using Tomcat 4.0.2 and noticed

package org.apache.jasper.runtime does not exist

2002-04-02 Thread Chuck Amadi
Hi any takers . All my previous work no longer functions due to this error . Note unfortunatley i don't run cvs and it's been while that i worked on my jsp's/javabeans as at the moment i have created my work project under a html application and is working prior to converting to jsp , session

RE: Question about container-managed security

2002-04-02 Thread Wellie W. Chao
It's within the same webapp (the context path is the same). At first I thought it was a cache issue, but I hit reload on both protected and unprotected pages and it shows what I originally pulled up on each particular page. That is, users remain logged in, but when they visit unprotected sites,

Re: Question about container-managed security

2002-04-02 Thread Aditya
On Tue, Apr 02, 2002 at 06:42:40PM -0500, Wellie W. Chao wrote: It's within the same webapp (the context path is the same). At first I thought it was a cache issue, but I hit reload on both protected and unprotected pages and it shows what I originally pulled up on each particular page. That

Working Directory

2002-04-02 Thread M.A. Tilley
I am having problems setting the working directory for file i/o to anything other than c:\windows\system32 Is there an easy way to configure this? I am on a machine running WindowsXP. Thanks, Matt == I was bold in the

Tomcat, webapp, SSL, and index files?

2002-04-02 Thread Barris, Wes (LI, Uni of Queensland)
We are running tomcat 4.0.1 and apache 1.2.23 with mod_ssl and mod_webapp. The line in apache/conf/httpd.conf that is used to specify the servlet url is: WebAppDeploy seqa conn /seqa If I try to access this URL, everything works properly: https://www.myserver.com/seqa/myfile.jsp

Tomcat4 and JCE

2002-04-02 Thread Daniel Ellermann
Hello, I've read a lot about it in some newsgroups but there were no solution. How can I configure Tomcat 4.0.3 to work with JCE 1.2.1. I've already copied the 4 JCE jar files into the ${JAVA_HOME}/jre/lib/ext dir, into the ${TOMCAT_HOME}/lib dir, into the WEB-INF/lib dir of my web application -

Standalone tomcat 4.0 on port 80

2002-04-02 Thread D Henton
Hi -- I want to run tomcat 4.0x on a Solaris 8 box in standalone mode on port 80 as a user other than root. Is this possible? I been zipping through the archives and what I am hearing is that because root can only open ports 100, this scenario wouldn't be possible. There was a post on jguru

Re: Setting up a virtual host

2002-04-02 Thread @Basebeans.com
Subject: Re: Setting up a virtual host From: Hyunjin Kim [EMAIL PROTECTED] === Assuming you are using mod_webapp, add the following to virtualhost directive: WebAppConnection warpConnection warp localhost:8008 WebAppDeploy [tomcat webapp name] warpConnection / VirtualHost 211.116.250.145

Re: Standalone tomcat 4.0 on port 80

2002-04-02 Thread Aditya
On Tue, Apr 02, 2002 at 06:42:51PM -0600, D Henton wrote: I want to run tomcat 4.0x on a Solaris 8 box in standalone mode on port 80 as a user other than root. Is this possible? I been zipping through the archives and what I am hearing is that because root can only open ports 100, this

RE: uploading a file greater than 1 mb

2002-04-02 Thread jagan mohan
hi all! it is the same problem with me also, can anybody help? jagan -Original Message- From: Lalit Nagpal [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 5:24 PM To: [EMAIL PROTECTED] Subject: uploading a file greater than 1 mb can someone help me. i am finding a problem

Configuring Merant SequeLink Drivers with Tomcat

2002-04-02 Thread Sayre Robert
Hello, I'm trying to configure Tomcat to use pooled connections with Tomcat 4.0.3. and Merant's SequeLink 5 JDBC drivers. I was able to use the JDBC 1.0 methods with no problem, but I'd like to get DataSources, JNDI registration, etc. working. I'd like to know if the resource type parameter

Re: TC3.3 blocking (was: In jk_endpoint_t::service, get_reply failed in send loop 1)

2002-04-02 Thread Bill Barker
- Original Message - From: PSA [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 9:34 AM Subject: TC3.3 blocking (was: In jk_endpoint_t::service, get_reply failed in send loop 1) Bill - Thanks for your efforts. We finally tracked the problem to a

Re: Help with Apache

2002-04-02 Thread Joel Rees
Hello Mariano: You wrote: - Original Message - From: Mariano [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 03, 2002 5:33 AM Subject: Help with Apache I have the following simple problem with apache runnign under w2k. I have a directory under c:\program

RE: tomcat with ssl

2002-04-02 Thread Lawlor, Frank
How are you trying to connect? What is the URL you are using? Is there anything in the logs? I assume you followed all the directions in the How-to? Frank Lawlor Athens Group, Inc. (512) 345-0600 x151 Athens Group, an employee-owned consulting firm integrating technology strategy and software

Tomcat lagging Apache

2002-04-02 Thread tomcat
Hi I have a terrible issue with one of my servers, since yesterday, Tomcat started to lag all the apache request, the strange thing is that If I have apache running and start tomcat, nothing change, but, if I restart apache with tomcat running, apache start to crawl, it take 30-35 seconds to load

RE: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-04-02 Thread Barris, Wes (LI, Uni of Queensland)
-Original Message- From: Schulze Christian [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 26 March 2002 11:13 PM To: '[EMAIL PROTECTED]' Subject: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching Hi I have a problem with my configuration of tomcat connected to apache

RE: tomcat with ssl

2002-04-02 Thread Tomasz . Ciolek
I have noticed that there is no SSL keystore specified in the factory... that will kill the SSL on startup, as it will try to laod SSL certificates it wants to use... regards TMC -- Tomasz M. Ciolek Systems Administrator - CSIRO Entomology Phone: 02-62464391 * Fax: 02-62464000

file access (security?)

2002-04-02 Thread David Kavanagh
I'm having a problem with TC4.0.3 (Win2K, JDK1.3.1) I have some code that reads a property file and tries to load fonts listed within. ClassLoader.getResource() is used to locate the prop file and font files I'm attaching the servlet test code. This code works fine under TC3.2.2 and TC3.3a

About reloading of classes

2002-04-02 Thread kelly, Burrowa
I use tomcat 4.0.1. I have reloadable=true for my context in server.xml. But when I compile 4 classes, only one class is getting loaded - atleast that is what is shown in the tomcat runtime window. I am not sure if all the classes have been reloaded. What are others observations on this?

AW: Tomcat, webapp, SSL, and index files?

2002-04-02 Thread Ralph Einfeldt
It looks like the module that is responsible for the welcome file has a bug or mod_webapp provides this module with wrong informations so it constructs a wrong url for the redirect to the welcome file. -Ursprüngliche Nachricht- Von: Barris, Wes (LI, Uni of Queensland)

Images and STRUTS

2002-04-02 Thread Micael Padraig Og mac Grene
I tried to do an ordinary image tag with the struts application, and could not. What is happening with that? I could not get the index.jsp page to reference an image in the same location. I used the same page without struts, and it worked. I am just getting the clue on struts. I am

Question re: Tomcat 4.0.3 (LE) and JDK 1.4

2002-04-02 Thread Joseph Molnar
I have a question regarding the Tomcat 4.0.3 LE package that was put out (by Apache) specifically for JDK 1.4. This version purposely does not contain things like JavaMail, an XML parser, etc. In some cases they are missing because JDK 1.4 comes with the feature (an xml parser, regexp)...others

Re: reading html-form parameters within servlet filter on tomcat 4.0.3

2002-04-02 Thread Alexander Thomas
Dear Craig, thanks for your swift reply! As you suggested I tried to foist the servlet a new instatnce of the BufferedReader class. The codesection in the doFilter method of my filter class looks like this: HttpServletRequestWrapper httpServletRequestWrapper = new HttpServletRequestWrapper()

Re: Tomcat, webapp, SSL, and index files?

2002-04-02 Thread Gary McGowan
Guys, Looking at the tomcat-apache how to : http://jakarta.apache.org/tomcat/tomcat-3.2-doc/tomcat-apache-howto.html Near the bottom it says: mod_ssl - getScheme() always returns HTTP! -- The protocol used by mod_jserv can't identify whether

AW: AW: AW: sessions, security, and the RFCs

2002-04-02 Thread Ralph Einfeldt
I can't find in the spec that the session shall be maintained if you switch from http to https. Can you provide a reference? Wouldn't this be as dangerous as to keep the session after you go back from SSL to non-SSL ? As I see it, this would open the door to anyone who could listen to the

AW: Tomcat, webapp, SSL, and index files?

2002-04-02 Thread Ralph Einfeldt
Although that sounds like a good explanation, what makes you think that this applies to tomcat 4 and mod_webapp ? At the time this was written mod_webapp didn't even exist. This remark is about mod_jserv vs. mod_jk. (As mod_webapp is intended as the successor of mod_jk it's a 'downgrade')

Re: Tomcat, webapp, SSL, and index files?

2002-04-02 Thread Gary McGowan
Yea - 'intended' being the key word here... From my experience, mod_webapp isn't as flexible as mod_jk I may be wrong, but I have not yet seen a solution for mod_webapp and https redirects. Gary - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

Re: load balancing and inactive workers

2002-04-02 Thread Bernd Koecke
I sent a mail with a similar content to the list and discussed it on the dev list. The solution is to divide routing from load balancing. The following functionality would be easy: a) sends requests with a session cookie for an inactive worker to that worker but b) sends requests with no

Re: Tomcat, webapp, SSL, and index files?

2002-04-02 Thread Joseph Molnar
I am actually in the process of doing just that. I currently have it partially working (I at least have directory browsing and simple serving working through Tomcat); I am using Tomcat 4.0.3. There are really no docs on the Apache site (as of yesterday), but been getting through it thus far

session object [urgent!]

2002-04-02 Thread Nancy Crisostomo Martinez
Hi everybody! I need your help.. I'm trying to track some attributes I added to the session object, but I can't... I have an html file (main.htm) which opens a new window browser (validate.jsp) when you press a button to access to one service... Then when the user is validated in the