RE: VirtualHost www.zcompany.com:80 overlaps VirtualHost www.abc.com:80

2003-02-04 Thread Ralph Einfeldt
As your example doesn't contain www.zcompany.com I would guess that you have an config error in the part of the http.conf that you didn't post. (Like a ServerName www.zcompany.com outside the virtual host definitions) -Original Message- From: tomcat guy [mailto:[EMAIL PROTECTED]]

RE: java processes after tomcat exits

2003-02-04 Thread Ralph Einfeldt
Which vm do you use? For IBM and Sun you can call 'kill -QUIT pid' to get the stacktraces of the threads. You can find the output in catalina.out. That might give you an idea what's causing these behaviour. -Original Message- From: Sven Köhler [mailto:[EMAIL PROTECTED]]

Re: WAR format question

2003-02-04 Thread Bill Barker
Read-only files can be placed anywhere you want. For files that you need to write to, use the 'javax.servlet.context.tmpdir' attribute of the ServletContext (since you can't write to a WAR file :). Assuming that your servlet extends GenericServlet (this includes the cases of HttpServlet, and

Re: classloader issues using ../common/lib vs. ../shared/lib

2003-02-04 Thread Bill Barker
Except for stuff like jdbc drivers, 90% of the time you will see no difference between common/lib and shared/lib. The difference is that the internal Tomcat classes can see what is in common/lib (which the above mentioned 90% of the time means that they could care less :). Mark [EMAIL PROTECTED]

RE: Object pooling (was: more about custam tag life cycle)

2003-02-04 Thread Ralph Einfeldt
As Craig already said, it's not good to generalize. The only way to find out, is to test. (And always be prepared that the result may change in the next release of the vm) If the garbage collector works as you describe, it's quite easy to improve it in a way that it does the opposite of your

RE: Error 500

2003-02-04 Thread Ralph Einfeldt
There happens a NullPointerException in line 47 of eshop.share.LoginCommand. Without the source of that class (or at least a relevant snippet) we can't help you much. -Original Message- From: Lindomar [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 6:03 PM To: Tomcat Users

Clustering

2003-02-04 Thread Chris Faulkner
Hello I am looking at running a cluster of Tomcat servers running on separate machine behind a cluster of web servers. I need the same session information stored and to be available across all instances of Tomcat - I can't guarantee that requests from the same client will end up at the same

RE: Object pooling (was: more about custam tag life cycle)

2003-02-04 Thread Joe Tomcat
On Tue, 2003-02-04 at 00:34, Ralph Einfeldt wrote: I prefer to use pooled objects either for relative small number of long lived objects or for objects that are expensive to create, or immutable objects that consume some memory and are likely to be in use concurrently. Pooling is actually a

Re: more about custam tag life cycle

2003-02-04 Thread Bill Barker
Craig R. McClanahan [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Mon, 3 Feb 2003, Will Hartung wrote: Date: Mon, 3 Feb 2003 11:00:46 -0800 From: Will Hartung [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List

Re: Reading client certificates

2003-02-04 Thread Martin Craig
Thanks for this! I now have it working too! http://jakarta.apache.org/tomcat/tomcat-3.2-doc/tomcat-ssl-howto.html This is also what I was following - what seems to be missing to make it work is: SSLVerifyClient require Presumably it doesn't read or pass on the certificate info unless

Could this be a Tag Libs implementation bug?

2003-02-04 Thread Switch
Hello everybody. I've just signed up this list, then I must present myselft first. My name is Paco. I'm a J2EE developer for a local SW copany at Balearic Islands (Spain - Europe). I apologize me for my english. I write as well as I can :-) I've read the etiquette and I've read the FAQ and I've

tomcat 4.1.12 ssl connector stop responding

2003-02-04 Thread ing.Marco Baiguera
i'm using tomcat 4.1.12 on jdsk 1.4.0 as a standalone server with coyote http 1.1 connector having http (8080) connector accessible from internal lan only and https (8443) accessible from external hosts (natted to port 443) after two-three days tomcat stops responding on the https connector

STILL NEED HELP! - Tomcat 4.1 acting weird with redirect / sessions

2003-02-04 Thread Noncubicle Corp
Hi all, I have an application that has been up and running on Tomcat 3.x for over a year and I rewrote it on a Windows 2000 box using Tomcat 4.0 recently. I have uncovered a weird error once I moved it to the production server, which is running Linux 7.2 and Tomcat 4.1.X. Once I log into the

DB Connection Pooling with Tomcat

2003-02-04 Thread Noncubicle Corp
Hi, I am wondering about connection pooling. I am using Tomcat 4.1 with Sybase. Does Tomcat have some some of pooling functionality, or do I look to my DB vendor? Right know we use one put together by someone (no one seems to know where it came from), and I am not convinced it is as good as it

RE: Could this be a Tag Libs implementation bug?

2003-02-04 Thread Barney Hamish
Have you considered using the struts logic tags (http://jakarta.apache.org/struts/index.html) or the JSTL (http://jakarta.apache.org/taglibs/index.html) rather than implementing this stuff yourself? There are some useful custom tags (like the iterate tag you're trying to implement). Hamish

Graphics (CEWOLF) using tomcat4.0.3

2003-02-04 Thread Iain Downie
Deat List, I'm trying to get charts embedded into my web applications using Tomcat 4.0.3 and JDK1.3.1. The graphing and servlet software is CEWOLF (incorporating JFreeChart). I have no bother getting the charts to show on Windows, but I face a problem rendering the images on Linux, which is what

RE: Could this be a Tag Libs implementation bug?

2003-02-04 Thread Switch
From: Barney Hamish To: 'Tomcat Users List' Subject: RE: Could this be a Tag Libs implementation bug? Hi Hamish, thanks for your response. Have you considered using the struts logic tags (http://jakarta.apache.org/struts/index.html) or the JSTL

Re: more about custam tag life cycle

2003-02-04 Thread Felipe Schnack
The way to look at it is simply that the generated code is going to use a tag pool for each distinct class of tags. Unfortunately, there is no specific action that tells the tag it is being pulled from or being put back from the pool. The page will call release() before it is

RE: Object pooling (was: more about custam tag life cycle)

2003-02-04 Thread Felipe Schnack
I prefer to use pooled objects either for relative small number of long lived objects or for objects that are expensive to create, or immutable objects that consume some memory and are likely to be in use concurrently. And what you think about objects that are created millions of times and

form based authentication problem

2003-02-04 Thread Ralf Lorenz
guess that was to much of description last time! next try can anybody tell me how to do some action, say put an object in the session or/and update a list in the servlet context directly after a user was logged in successfully via form-based authentication (context) with a jdbc-realm? ralf

RE: form based authentication problem

2003-02-04 Thread Barney Hamish
I did something like that using struts. I wrote a base action class which all my other action classes extended. The base class performs any initialization (initializing objects in the session etc) as required. If you don't want to use struts you might consider using a filter. Hamish

RE: Can't get Apache 2.0.44 / tomcat 4.1.18 / mod_jk-2.0.43.dll to wo rk together properly

2003-02-04 Thread Turner, John
There were no attachments. Instead of copying the localhost Host container, what happens if you just change the localhost Host container to www.your-domain.com? John -Original Message- From: Dave Taylor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 12:25 AM To:

Re: Error 500 - OK

2003-02-04 Thread Lindomar
Ok Ralph. I didn't sad that this class is calling from a command of websphere, then my application jsp stay ready. The problem was from macro, not from form, how i was thinking. Thanks for all. - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

IIS 5.0 Tomcat 4 , HTTP 500 error

2003-02-04 Thread Siyavus
Hello friends, I have a got a problem with publishing my jsp pages under windows 2000. My entry page under IIS 5.0 (with Tomcat 4) is login.jsp. When I press login button on login.jsp page to enter to another page I receive error Http-500 Internal Server Error Could you help me? Seyavoush

RE: Graphics (CEWOLF) using tomcat4.0.3

2003-02-04 Thread Oliver Meyn
Not sure if it's relevant to you, but if you move to JDK1.4.1 you can run headless, which means the JFreeChart libraries won't try to call the X11 libraries for drawing (which seems to be what you're trying to get around with the PJA). It's a very annoying problem you're trying to solve - good

Re: Graphics (CEWOLF) using tomcat4.0.3

2003-02-04 Thread Iain Downie
Not sure if it's relevant to you, but if you move to JDK1.4.1 you can run headless, which means the JFreeChart libraries won't try to call the X11 libraries for drawing (which seems to be what you're trying to get around with the PJA). It's a very annoying problem you're trying to solve -

Re: form based authentication problem

2003-02-04 Thread Ralf Lorenz
thanks, that's exactly the solution i discussed right now with some other developers of my company. the question with the filter is whether it is called when the container forwards or redirects to the claimed resource after the authentication is done? theoretically i'd say yes but who knows? try

RE: JNDI context in ServletContextListener

2003-02-04 Thread Shapira, Yoav
Howdy, This is a tricky issue. First of all, see section SRV 9.11 of the Servlet Specification, v2.3. Tomcat 4.x is an implementation of that Servlet Specification. Tomcat 4.x is NOT a J2EE 1.3 implementation, and therefore is not required to support JNDI lookups as outlined in the J2EE spec.

RE: Graphics (CEWOLF) using tomcat4.0.3

2003-02-04 Thread Ralph Einfeldt
We use the xvfb to achieve that goal. (It's typically part of the linux distribution) With that it works quite transparently without any additional toolkit. The only thing we have to change in the tomcat installation is to set an env var DISPLAY that points to te virtual frame buffer.

RE: form based authentication problem

2003-02-04 Thread Raible, Matt
If you map the filter to the same url-pattern as your protected resource, it will be called immediately after someone authenticates. HTH, Matt -Original Message- From: Ralf Lorenz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 6:59 AM To: Tomcat Users List Subject: Re:

deploying a WAR file to Tomcat 4.0

2003-02-04 Thread Inocencio Richiez
Hi can someone here please help??? I have a WAR file that was succesfully deployed in WebSphere Application Server. The file now needs to be deployed in Tomcat apache 4.0. I copied the WAR file into the webapps folder. Restarted the machine and tomcat was able to extract the contents of

problems starting tomcat

2003-02-04 Thread Softwareentwicklung Hauschel
Hey all, my tomcat wouldn't start anymore ;-( where can i set a pause command to see what's his problem ? Sorry, I'm using w2k ;-) Fredy P.S. there are no entries in the log - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Path index.jsp does not start with a /

2003-02-04 Thread Inocencio Richiez
Hi can someone here please help??? I have a WAR file that was succesfully deployed in WebSphere Application Server. The file now needs to be deployed in Tomcat apache 4.0. I copied the WAR file into the webapps folder. When I run the application, my first page (login page) comes up great. But

Re: Tomcat startup question

2003-02-04 Thread Milt Epstein
On Mon, 3 Feb 2003, Kenny G. Dubuisson, Jr. wrote: I'm running Tomcat 4.0.5 on RedHat 7.3. I'd like to know if it is normal that you can start Tomcat multiple times in a row via the $CATALINA_HOME/bin/startup.sh script? I can run the script and then if I run it again (without shutting down

problem using Tomcat 3.3.1

2003-02-04 Thread Liquid
Hi, im using Tomcat 3.3.1 on FreeBSD with JDK1.3.1 and my aplication go very well but afther that take 99% of CPU time and i must restart Tomcat. And it doing around. Can you help me? Liquid - To unsubscribe, e-mail: [EMAIL

RE: problems starting tomcat

2003-02-04 Thread Turner, John
- open a command window - cd %CATALINA_HOME% - bin\catalina.bat run (instead of startup.bat) This will open a second command window that will not disappear if Tomcat shuts down due to error, leaving the error displayed on the screen. You can also review the log files like catalina.out. John

RE: deploying a WAR file to Tomcat 4.0

2003-02-04 Thread Shapira, Yoav
Howdy, Try adding a /, e.g. /index.jsp, to your welcome-file elements. That should make the error go away. Please note that for tomcat 4.x, your deployment descriptor (web.xml) must conform to the Servlet Specification v2.3 standard. It's written to the 2.2 standard right now, as shown by the

RE: problem using Tomcat 3.3.1

2003-02-04 Thread Larry Isaacs
There isn't enough information here to offer much help. Not knowing what your web application is doing, it can't be determined if this is a bug in Tomcat or a bug in your web application. You are welcome to give Tomcat 3.3.2-dev a quick try to see if it behaves differently. You can find it here:

Re: Graphics (CEWOLF) using tomcat4.0.3

2003-02-04 Thread Iain Downie
We use the xvfb to achieve that goal. (It's typically part of the linux distribution) Yeh, I have read about this, but I did a 'find' for Xvfb on our RedHat 7.2 installation, and it didn't appear as an executable. As usual (being a bit of a Linux grunt) I could find no obvious documentation on

Re: problem using Tomcat 3.3.1

2003-02-04 Thread Liquid
I use it, but its looks like the same. Wahat informations do yuou need from me for help me? In my logs is this terrible error. java.io.IOException: Broken pipe at java.net.SocketOutputStream.socketWrite(Native Method) at java.net.SocketOutputStream.write(SocketOutputStream.java:83) at

RE: Graphics (CEWOLF) using tomcat4.0.3

2003-02-04 Thread Oliver Meyn
Umm... http://www.rpmfind.net/linux/rpm2html/search.php?query=xvfbsubmit=Search+.. .system=redhat-7.2arch= Finding and using rpmfind made all the difference for me on the road to linux happiness :) Cheers, Oliver ps sorry for wrap... -Original Message- From: Iain Downie

RE: tomcat 4.1.12 ssl connector stop responding

2003-02-04 Thread Mohamed Nasser
I know there was a bug with the coyote connector for tomcat 4.1.12 as I configured with apache. I upgraded to 4.1.18 and I have had no problems. -Original Message- From: ing.Marco Baiguera [mailto:[EMAIL PROTECTED]] Sent: Tue, February 04, 2003 5:09 AM To: [EMAIL PROTECTED] Subject:

Tomcat3.2, IIS 5, and ISAPI (ajp12)

2003-02-04 Thread derrick . robertson
I am currently running the above for my servlet application. My problem is that I am getting a page not found error(405.htm i think) when I push the number of simultaneous threads up to 250. I can set my server up to a limit on 200 threads (get 403-9.htm) and dont get the previous error page.

Re: WAR format question

2003-02-04 Thread Erik Price
Jacob Kjome wrote: In order to obtain access to a file under WEB-INF in a completely portable way, use something like... getServletContext().getResourceAsStream(/WEB-INF/myproperties.xml); What about if we have a tag descriptor somewhere below WEB-INF, is it safe to refer to the path

RE: problem using Tomcat 3.3.1

2003-02-04 Thread Larry Isaacs
This implies you are using mod_jk. What version of mod_jk are you using? There has not been much maintenance on the local mod_jk provided with Tomcat 3.3.1. It will be removed in Tomcat 3.3.2 and replaced by the version which is part of the jakarta-tomcat-connectors project. If you haven't

Transalating Compiling JSP: Name conflicts

2003-02-04 Thread Gustavo Nestares
Hi, I'm trying to pre-compile my jsp pages of my web app in order to be free of statics errors (those erros that can be catched in compilation face). I have no problem adding a task to ANT for the transalting face, the problem emerge when i want to compile my page_jsp.java. In my web app i

RE: Path index.jsp does not start with a /

2003-02-04 Thread Tim Moore
What does your login page do when it's submitted? It sounds like it's calling ServletContext.getRequestDispatcher(index.jsp) which isn't quite legal. From the Javadocs for getRequestDispatcher: The pathname must begin with a / and is interpreted as relative to the current context root. I guess

Error Message Explanation

2003-02-04 Thread Hari Venkatesan
Any idea what this error means? 1) org.apache.jk.server.JkCoyoteHandler - Error in action code java.net.SocketException: Connection reset by peer: socket write error 2) WARN - Server has closed connection 470508266 [Thread-6] WARN org.apache.jk.common.ChannelSocket - Server has

RE: more about custam tag life cycle

2003-02-04 Thread Tim Moore
-Original Message- From: Felipe Schnack [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 6:20 AM To: Tomcat Users List Subject: Re: more about custam tag life cycle The way to look at it is simply that the generated code is going to use a tag pool for

RE: Throwing jar file through servlet..CODEBASE problem

2003-02-04 Thread Tim Moore
-Original Message- From: paridhi bansal [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 10:56 PM To: [EMAIL PROTECTED] Subject: Throwing jar file through servlet..CODEBASE problem Hi!! I have a servlet throwing a jar file with a main applet..I have my

Re: Conflicts between 2 lib in Tomcat 4.0.3

2003-02-04 Thread Elodie Tasia
Or maybe he is using the old Xerces (1.4.4) with the new Xerces(2.x). They have make huge changes between the 2 versions and backward compatibility is no longer supported (Xerces 1.4.4 doesn't fully supports JAXP, Xerces 2.x does). They probably use a public API, but not the JAXP one.

RE: error page for error code 500?

2003-02-04 Thread Jeff_Mychasiw
Thank you for the reply. I should be clearer. We are developing a struts app and I am using tiles and declarative error handling features. My goal is to have the user only my error pages (not server errors ect.) I know that certain errors fall outside of the struts controller. Over the course

RE: more about custam tag life cycle

2003-02-04 Thread Felipe Schnack
because sometimes we have a tag attribute that isn't actually an getter/setter attribute for declaring in TLD file... is just a instance variable that you need, like a counter, or something like it. On Tue, 2003-02-04 at 13:44, Tim Moore wrote: -Original Message- From: Felipe

RE: [BUG?] Can't set my app as root app without errors

2003-02-04 Thread Raible, Matt
Moving my app to ROOT and changing my context's path to point to ROOT vs. appname fixed the problem. I believe this is a bug, so I'll enter it in bugzilla. Thanks, matt -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 5:19 PM To: Tomcat

Re: error page for error code 500?

2003-02-04 Thread Jon Wingfield
If you are trying to generate a 500 by accessing a url outside a context then the error page defined within the context won't get triggered. Where are you putting your error-page tags? You could try altering the web.xml in tomcats conf directory... [EMAIL PROTECTED] wrote: Thank you for the

RE: Can't get Apache 2.0.44 / tomcat 4.1.18 / mod_jk-2.0.43.dll t o wo rk together properly

2003-02-04 Thread Dave Taylor
Good idea! I tried it unsuccessfully last night, unfortunately. I also tried: 1. Lots of experimentation with IP addresses, versus localhost or www.mydomain.com (behavior unchanged). 2. Turning up logging on mod_jk.log to debug. This logged consistent done without match on GETs. Not very

Re: problem using Tomcat 3.3.1

2003-02-04 Thread Liquid
In now using 1.2.2 version of mod_jk. But this problem is continue if i set up comunication Aapche to Tomcat without mod_jk. (by mod_proxy to localhost:8080/aplications) Thanks for help. Liquid - Original Message - From: Larry Isaacs [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

RE: more about custam tag life cycle

2003-02-04 Thread Tim Moore
-Original Message- From: Felipe Schnack [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 10:59 AM To: Tomcat Users List Subject: RE: more about custam tag life cycle because sometimes we have a tag attribute that isn't actually an getter/setter attribute for

Re[2]: WAR format question

2003-02-04 Thread Jacob Kjome
Hello Erik, Sorry, I don't do JSP and haven't a clue about taglibs Jake Tuesday, February 04, 2003, 9:31:27 AM, you wrote: EP Jacob Kjome wrote: In order to obtain access to a file under WEB-INF in a completely portable way, use something like...

Re: error page for error code 500?

2003-02-04 Thread Jeff_Mychasiw
That is a good point. You can tell that I am new to server issues. ( so far I just live in my little web app world ). It is my desire to trap JSPExceptions as well, and if possible all java.lang.Exceptions.. Do other people do this? More testing Thanks again. Jon Wingfield [EMAIL

RE: Can't get Apache 2.0.44 / tomcat 4.1.18 / mod_jk-2.0.43.dll t o wo rk together properly

2003-02-04 Thread Turner, John
Well, the first thing: httpd.conf, either through manual entry or mod_jk.conf, needs an entry that looks something like this: VirtualHost www.meetdave.com ServerName www.meetdave.com Alias /examples C:/tomcat/Tomcat-4-1-18/webapps/examples Directory

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I don't think it's starting a second instance...I think it's just stopping and restarting??? I really don't know. But I do know that I don't get any exceptions. I would think that I should given that it's trying to use the same port. Thanks, Kenny - Original Message - From: Haytham

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I don't think it's starting a second instance...I think it's just stopping and restarting??? I really don't know. But I do know that I don't get any exceptions. I would think that I should given that it's trying to use the same port. Thanks, Kenny - Original Message - From: Haytham

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I don't think it's starting a second instance...I think it's just stopping and restarting??? I really don't know. But I do know that I don't get any exceptions. I would think that I should given that it's trying to use the same port. Thanks, Kenny - Original Message - From: Haytham

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I don't think it's starting a second instance...I think it's just stopping and restarting??? I really don't know. But I do know that I don't get any exceptions. I would think that I should given that it's trying to use the same port. Thanks, Kenny - Original Message - From: Haytham

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I don't think it's starting a second instance...I think it's just stopping and restarting??? I really don't know. But I do know that I don't get any exceptions. I would think that I should given that it's trying to use the same port. Thanks, Kenny - Original Message - From: Haytham

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I don't think it's starting a second instance...I think it's just stopping and restarting??? I really don't know. But I do know that I don't get any exceptions. I would think that I should given that it's trying to use the same port. Thanks, Kenny - Original Message - From: Haytham

Re: Tomcat startup question

2003-02-04 Thread Kenny G. Dubuisson, Jr.
I would think that I would get port binding exceptions too but I don't get any error. I just starts up Tomcat like I had never started it. Thanks, Kenny - Original Message - From: Milt Epstein [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003

Joey: First mobile J2EE application server for PocketPC and J2ME

2003-02-04 Thread info
Hello, We are pleased to announce the release of Joey 1.0. Joey is the world's first mobile J2EE application server that runs in disconnected mode on J2ME and J2SE devices, including Compaq iPaq and other PocketPC 2002 devices, Sharp Zaurus Linux PDA, and all Windows/Linux laptops. What is

Re: WAR format question

2003-02-04 Thread Erik Price
Jake, Well, thanks anyway. Maybe somebody else knows the score on this one and will pipe up. :) Erik Jacob Kjome wrote: Hello Erik, Sorry, I don't do JSP and haven't a clue about taglibs Jake Tuesday, February 04, 2003, 9:31:27 AM, you wrote: EP Jacob Kjome wrote: In order to

tomcat-apache.conf not created during Tomcat startup

2003-02-04 Thread Bert Catsburg
Hello, I am trying to setup the Struts Framework. The install docs tell me to edit the tomcat-apache.conf file. But I do not have one. The docs tell me also that this file is created during startup of Tomcat in the $TOMCAT_HOME\conf directory. Well, it isn't. My configuration: OS: Windows 2000

Session lost between HTTPS and HTTP

2003-02-04 Thread Zabel, Ian
All; We are having a chronic problem that is causing a lot of trouble with our application's users. In our app, we authenticate users on our HTTPS server and then serve the homepage also on HTTPS. All links on the homepage to the other pages in our app switch the user to the same url on

tomcat realm issue

2003-02-04 Thread Keppel Yin
Hi, All, After installing and starting tomcat 4.1.10, I can load the home page http://localhost:8080/. Then in the server.xml, I added my own context parameter just below the tomcat root context. !-- Tomcat Root Context -- !-- Context path= docBase=ROOT debug=0/

RE: JNDI context in ServletContextListener

2003-02-04 Thread Craig R. McClanahan
On Tue, 4 Feb 2003, Shapira, Yoav wrote: Date: Tue, 4 Feb 2003 09:02:56 -0500 From: Shapira, Yoav [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: JNDI context in ServletContextListener Howdy, This is a tricky issue.

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Filip Hanik
yeah, it is a security issue I believe. Not sure how tomcat does that, but it shouldn't allow a session that was created on HTTPS to switch to HTTP. Filip -Original Message- From: Zabel, Ian [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 9:35 AM To: [EMAIL PROTECTED]

Re: tomcat-apache.conf not created during Tomcat startup

2003-02-04 Thread Bert Catsburg
And I forgot to tell that both Apache and Tomcat are running as a Windows Service. Bert Catsburg wrote: Hello, I am trying to setup the Struts Framework. The install docs tell me to edit the tomcat-apache.conf file. But I do not have one. The docs tell me also that this file is created during

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Zabel, Ian
As far as I know, http://www.app.com/ and https://www.app.com/ are supposed to be allowed to share cookies on standard ports. http://w6.metronet.com/~wjm/tomcat/2000/Dec/msg00626.html Ian. -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Filip Hanik
This scenario will convince you...maybe :) 1. You enter a bank on non secure page- HTTP 2. You log in and start messing with your accounts 3. Then you go back to HTTP and somebody can hi-jack your sessionID 4. They use that ID to go back to HTTPS and now have access to your account information.

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Filip Hanik
I could be wrong of course :)) -Original Message- From: Filip Hanik Sent: Tuesday, February 04, 2003 9:51 AM To: Tomcat Users List Subject: RE: Session lost between HTTPS and HTTP This scenario will convince you...maybe :) 1. You enter a bank on non secure page- HTTP 2. You log in and

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Zabel, Ian
Cookies are only valid for a domain though. So if the cookie was created on http://banksite.com it will be valid for https://banksite.com as well. It is the same website. Banksite.com resolves to the same IP address either way. It's just a protocol switch. You session id will never be sent to a

deployment descriptor priority

2003-02-04 Thread Stas Gushcha
Hello tomcat-user, Could anybody explain me the way of processing deployment descriptors (web.xml): one of them is default and placed in /conf folder an another one is placed in /WEB-INF folder of my application. I tryes to configure descriptor to process *.jsf files

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Filip Hanik
maybe you misunderstood me. if I want to pretend that I am you, all I have to do is to put a network packet sniffer between your computer and your bank, look up your session Id and then make a request to your bank server using your sessionId. So I am not switching domain. Filip -Original

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Mike Jackson
Hijacking is possible for any man-in-the-middle situation. That's one of the reasons that going https for just the login is a bad idea (tm). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Zabel, Ian [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Filip Hanik
for example https://banking.wellsfargo.com, once you are logged on to https, they will not let you access that server using http. filip -Original Message- From: Filip Hanik Sent: Tuesday, February 04, 2003 9:58 AM To: Tomcat Users List Subject: RE: Session lost between HTTPS and HTTP

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Zabel, Ian
Hm, I understand what you're saying, and I agree. But, this used to work fine before Tomcat. ServletExec maintained our sessions across HTTP and HTTPS. I don't know how Tomcat deals with this, which I guess is why I'm asking the list. One thing I have discovered by using a bit of a sniffer

RE: problem using Tomcat 3.3.1

2003-02-04 Thread Larry Isaacs
I would assume the stack trace is different when using mod_proxy. What does it look like? Larry -Original Message- From: Liquid [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 11:15 AM To: Tomcat Users List Subject: Re: problem using Tomcat 3.3.1 In now using 1.2.2

Re: can I define a subcontext within a global context?

2003-02-04 Thread Jan-Michael Ong
Hi there, This sounds like a dumb question (probably is) but can I define a subcontext within another global context? In other words if I define a web application context to be /myapplication and I want another mini-web application (separate from /myapplication but within it) i.e.

/examples Application at context path /examples could notstart

2003-02-04 Thread Dennis Hasch
Hello, This used to work, but now it does not. Every time I try to start the /examples app. in the the Tomcat Web Application Manager, I get the following error: Application at context path /examples could not And then when I try to get to http://localhost:8080/examples The requested

RE: WAR format question

2003-02-04 Thread Tim Moore
Hi Erik, EP What about if we have a tag descriptor somewhere below WEB-INF, is EP it EP safe to refer to the path directly from the uri attribute of the %@ taglib % directive? Yeah, you can do that. :-) -- Tim Moore / Blackboard Inc. / Software Engineer 1899 L Street, NW / 5th

RE: Can't get Apache 2.0.44 / tomcat 4.1.18 / mod_jk-2.0.43.dll to work together properly

2003-02-04 Thread Sean Dockery
This seems to me to be an Apache configuration issue--rather than a mod_jk/Tomcat issue. Two suggestions: First, ensure that you are restarting Apache after restarting Tomcat so that Apache picks up changes that Tomcat makes to the mod_jk.conf file (after you've changed the server.xml file).

Re: VirtualHost www.zcompany.com:80 overlaps VirtualHost www.abc.com:80

2003-02-04 Thread chris schild
Galbayar, I didn't get an explanation but let me try and decipher... You are saying for EACH VirtualHost to have a Directory directive? Defined where? Below the DocumentRoot in httpd.conf? Or below each VirtualHost? Would the JkMount(s) also go below each VirtualHost? - Original Message

Re: VirtualHost www.zcompany.com:80 overlaps VirtualHost www.abc.com:80

2003-02-04 Thread chris schild
Oscar, per the docs that I used NameVirutalHost is suppose to use the *. - Original Message - From: Oscar Carrillo [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, February 03, 2003 10:26 AM Subject: Re: VirtualHost www.zcompany.com:80 overlaps VirtualHost

RE: can I define a subcontext within a global context?

2003-02-04 Thread Shapira, Yoav
Hi, You would have to do many workarounds and remappings and have robust servlets that handle all sorts of redirection. It would suck. You could probably save a lot of time and effort, and end up with a maintainable and portable product, if you redesign your app to either be one webapp or two

Env vars, mod_jk and JkEnvVar?

2003-02-04 Thread Jack on vacation
Hi, What's the way to pass environment variables from Apache to Tomcat when using mod_jk? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/aphowto.html gives JkEnvVar SSL_CLIENT_V_START as an example, but how do I read this in a JSP? Will it appear as an attribute, if so, with what name?

Apache 2.0.44 / tomcat 4.1.18 / mod_jk-2.0.43.dll/ ssl to work together properly

2003-02-04 Thread Shufelt, Jonathan S.
Hello, I'm sure a few people on the list have gotten Apache 2.0.44, tomcat 4.1.18, mod_jk-2.0.43.dll working together with ssl. I would be grateful if a few of you could post your working .conf files; ie httpd.conf, ssl.conf..etc. Perhaps that will help some of us figure out our

RE: Can't get Apache 2.0.44 / tomcat 4.1.18 / mod_jk-2.0.43.dll to work together properly

2003-02-04 Thread Dave Taylor
Okay -- making progress! I changed Tomcat's server.xml Host name=*... This seems to fix all addressing woes. Does anyone have reason to believe this will be problematic? Next hurdle: JSP's don't work, because C:\tomcat\Tomcat-4-1-18\work\Standalone\*\ doesn't exist. I'll start working on this

Re: tomcat-apache.conf not created during Tomcat startup

2003-02-04 Thread Bert Catsburg
I think I can answer my own question: The tomcat-apache.conf is not created when using the warp connector... Is this correct? So, I dit a couple of things: - Extract the struts-documentation.war cd wepapps\struts-documentation jar -xvf ..\struts-documentation.war - Deployed the application

Re: WAR format question

2003-02-04 Thread Erik Price
Tim Moore wrote: Hi Erik, EP What about if we have a tag descriptor somewhere below WEB-INF, is EP it EP safe to refer to the path directly from the uri attribute of the %@ taglib % directive? Yeah, you can do that. :-) Thanks. Actually, I've already done it and it works --

system.conf parameter values

2003-02-04 Thread Marcelino Cruz
Hello: I recently downloaded ccm-core-cms-5.0.3 and am in the process of setting it up. The CCM configuration section on the CCM Installation Guide does not define nor provide values for these parameters: state-dir publish-to-fs-servers publish-to-fs-source publish-to-fs-this-server

RE: WAR format question

2003-02-04 Thread Tim Moore
-Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 2:14 PM To: Tomcat Users List Subject: Re: WAR format question Tim Moore wrote: Hi Erik, EP What about if we have a tag descriptor somewhere below WEB-INF, is EP it

  1   2   3   >