RE: how to users let know application server is down

2003-01-08 Thread Jamie Furtner
Use the Apache directive ErrorDocument. mod_jk throws a 500 error when it is unable to connect to Tomcat, so a statement like ErrorDocument 500 /unavailable.html works to show a plain HTML page from Apache's document root when Tomcat is unreachable. When Tomcat throws a 500 error(eg. due to an

RE: Apache2 and mod_jk

2003-01-08 Thread Turner, John
Yep. 1. For Apache 2, you don't need AddModule 2. Unless it's a typo, your workers.properties says the Ajp13Connector is on 8009, yet your server.xml has it on 8008. 3. You don't have a Context element in server.xml, unless you left it out when pasting. If 2 is a typo, and 8009 is used for

RE: Sharing data between servlets

2003-01-08 Thread Cox, Charlie
create a class to serve the shared data and put it in /common/classes. This way all your webapps will be able to access the same instance. -Original Message- From: Lars Preben S. Arnesen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 7:54 PM To: Tomcat Users List

RE: Apache2 and mod_jk

2003-01-08 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
One potential problem is that you have 8009 in your workers.properties file but have 8008 in the your server.xml -Original Message- From: Bill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 7:24 AM To: tomcat user Subject: Apache2 and mod_jk I've been holding off on

[OFF-TOPIC] RE: limiting access by IP address

2003-01-08 Thread Turner, John
True, assuming that the transmission is occuring over a wire (or wireless), that is, from a remote node/host. An application local to the application listening on a given port can easily spoof an IP address and do all sorts of other protocol mischief, because there is no intervening network or

RE: DTD for server.xml??

2003-01-08 Thread Geiglein, Gary
We are using tomcat 4.1.12 and 4.1.18 with jdk 1.4.1 and we place the axis.jar in the {context_home}/WEB-INF/lib directory and we place xerces.jar and the xml-apis.jar in the CATALINA_HOME/common/lib directory (like the error message says) -Original Message- From: Ghershony, Arie

RE: how to users let know application server is down

2003-01-08 Thread Turoff, Steve
Venkat, Here's one method: 1) Create an HTML Page, in Apache's html document root called something like error500.html. Note that this assumes that Apache is serving HTML pages and Tomcat is serving jsp pages. 2) Add the following line to your httpd.conf file, somewhere in the Main Server

RE: Apache2 and mod_jk

2003-01-08 Thread Bill
The port designation was a typo in the file. Thanks for catching that, however it doesnt seemed to have made a difference. Here are the contexts I have defined currently: Context path= docBase=ROOT debug=0 /Context Context

RE: Problem with invalidating a session

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, Ralph Einfeldt wrote: Date: Wed, 8 Jan 2003 14:53:22 +0100 From: Ralph Einfeldt [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: Problem with invalidating a session See below: -Original

Re: Resource - Cannot load JDBC driver class 'null'

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003 [EMAIL PROTECTED] wrote: Date: Wed, 08 Jan 2003 07:54:31 -0500 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Resource - Cannot load JDBC driver class 'null' Hello, I created a DataSource(jdbc/SAA) through Tomcat

RE: Apache2 and mod_jk

2003-01-08 Thread Turner, John
OK. What URL are you trying to access? http://192.168.1.250/mrccores/some.jsp? What are the contents of the JK logs and the Catalina logs? Those unable to open config file messages are very strange, as is bad read. How much editing have you done to the default configuration files? John

Re: DTD for server.xml??

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, Turner, John wrote: Date: Wed, 8 Jan 2003 11:31:16 -0500 From: Turner, John [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: DTD for server.xml?? Hello - I notice that the top of web.xml has: ?xml

SSL cert on Apache not working properly with Tomcat?

2003-01-08 Thread Denise Mangano
I'm attempting to break down each of my individual problems into separate posts, hoping that makes it a little easier to address each issue. This error appears in my catalina.out even though my webapp works properly. Any suggestions on what would cause this error? I checked the line indicated

Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Jeffrey Winter
I would like to have a url structure of the form: myplace.com/user/xxx/resource/yyy where user and resource are handled by individual servlets. I would like users to have the ability to POST there username/password to /user and have it respond with their personal url, e.g.:

RE: DTD for server.xml??

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, Geiglein, Gary wrote: Date: Wed, 8 Jan 2003 12:18:53 -0500 From: Geiglein, Gary [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: DTD for server.xml?? It might be useful to have a reference DTD for

Re: using catalina-ant.jar in Tomcat 4.0.6

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, Erik Price wrote: Date: Wed, 08 Jan 2003 12:12:14 -0500 From: Erik Price [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: using catalina-ant.jar in Tomcat 4.0.6 My Tomcat container is 4.0.6. I would

RE: JSP Question

2003-01-08 Thread Ricardo_Bosch
I may be referring to an oldschool version of tomcat but the include directive occurs during compilation, not execution. So to do what you want you'd have to say % if(goo){% %@ include file=filenameA % % }else{ % %@ include file=filenameB % % } % or do your thing

RE: DTD for server.xml??

2003-01-08 Thread Turner, John
Got it. Thanks. John -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 3:11 PM To: Tomcat Users List Subject: Re: DTD for server.xml?? On Wed, 8 Jan 2003, Turner, John wrote: Date: Wed, 8 Jan 2003 11:31:16 -0500

RE: mod_jk tomcat/apache connector issue (dead horse)

2003-01-08 Thread John Bullock
Okay... last-ditch attempt before I reinstall Solaris 8 and start over from scratch... I tried manually running the following command to compile mod_jk.so /usr/local/apache2/bin/apxs -DSOLARIS -o mod_jk.so -I../common -I/usr/java/include -I/usr/java/include/solaris -lposi x4 -c ../common/*.c

RE: JSP Question

2003-01-08 Thread Luc Foisy
Actually, after the post I figure using the %@ include filefilename % would be useless because it was static So I started to look at %jsp:include ... \ for dynamic includes, and then soon realized it was more trouble that it was worth :) So I have decided just to redirect to individual jsp

RE: Apache2 and mod_jk

2003-01-08 Thread Bill
John What URL are you trying to access? http://192.168.1.250/mrccores/some.jsp? I've been testing using http://192.168.1.250/examples . That url gets a 500 error. I figured if I got the example app working the rest would fall into place... What are the contents of the JK logs and the

Re: Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Justin Ruthenbeck
There's no way to accomplish what you're shooting for using only the mappings in the web.xml. However, you could pretty easily do it through a filter running on requests to /user/*. If you do this, you could forward any requests that match URI /user to your UserServlet and anything that

RE: mod_jk tomcat/apache connector issue (dead horse)

2003-01-08 Thread Mark Eggers
Looks like there is a problem with setting up the build environment (gcc, libtool, ld). I don't have a Solaris machine handy, so I'll try to comment on this from memory. You have been warned. I'm guessing that libtool is sending options for the GNU ld command, while it is executing the

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
Oh. :( But this was actually a solution offered specific to a Tomcat issue: Issue: Unlike Apache, tomcat automatically redirects to the welcome page, rather than forwarding. In other words, to present the welcome page tomcat will literally redirect (http 302) to www.xyz.com/index.html, rather

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
That would explain why I found references to RewriteRules for Apache on the Internet, but none for Tomcat. Damn! -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 7:16 AM To: 'Tomcat Users List' Subject: RE: RewriteRules and

RE: Apache2 and mod_jk

2003-01-08 Thread Turner, John
I was referring to server.xml and httpd.conf. Just for grins, can you put the default server.xml back? You don't have to change anything for /examples, there is a JK-compatible Connector on port 8009 enabled by default. John -Original Message- From: Bill [mailto:[EMAIL PROTECTED]]

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Turner, John
Yes, specific to a Tomcat issue, but the solution incorporates Apache. :) John -Original Message- From: neal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 3:54 PM To: Tomcat Users List Subject: RE: RewriteRules and Standalone Tomcat Oh. :( But this was

Tomcat Standalone Redirects auto redirects to index.html

2003-01-08 Thread enLogica
Issue: Unlike Apache (and every other http server), tomcat standalone automatically redirects to the welcome page, rather than forwarding to it. In other words, to present the welcome page tomcat will literally redirect (http 302) the user to www.xyz.com/index.html, rather than staying at

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
Oh, does that mean it *is* possible to use RewriteRules with Tomcat Standalone then? :-\ Neal -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 1:04 PM To: 'Tomcat Users List' Subject: RE: RewriteRules and Standalone Tomcat Yes,

web.xml for webdav

2003-01-08 Thread Zsolt Koppany
Hi, how do I have to modify web.xml that my application supports webdav? I understand that tomcat-4 supports webdav, but because my application uses a customized classes of the webdav servlet thus the lines below must be somehow modified because the url-pattern//url-pattern would include all

Installation woes

2003-01-08 Thread Nathan McMinn
When installing Tomcat 4.1.18, during the installation, it autodetects the jdk install location. Is there any way to override this? If not, how do you change the jdk that tomcat uses? It is automatically using an older jdk that Jbuilder installed, and I don't want it to use this one. --Nathan

RE: Installation woes

2003-01-08 Thread Turner, John
Change the JAVA_HOME environment variable to point to the JDK you want to use. John -Original Message- From: Nathan McMinn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 4:39 PM To: Tomcat Users List Subject: Installation woes When installing Tomcat 4.1.18,

Re: using catalina-ant.jar in Tomcat 4.0.6

2003-01-08 Thread Erik Price
Craig R. McClanahan wrote: Tomcat 4.1.x includes catalina-ant.jar (in the server/lib directory) and supports the custom Ant tasks. Tomcat 4.0.x does not. I see. Well, looks like the wget solution is the one that will work after all to reload the /manager from my ant scripts! Erik --

RE: Tomcat Standalone Redirects auto redirects to index.html

2003-01-08 Thread Tim Moore
Somebody recently posted a patch to tomcat-dev that is supposed to fix this. See http://www.mail-archive.com/tomcat-dev%40jakarta.apache.org/msg38868.htm l -- Tim Moore / Blackboard Inc. / Software Engineer 1899 L Street, NW / 5th Floor / Washington, DC 20036 Phone 202-463-4860 ext. 258 / Fax

Re: Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Jeffrey Winter
So you're talking about using the sorts of Filters available as of the Servlet 2.3 spec? That actually sounds promising, I'll take a look at it. One thing that bothers me about my current plan though is that I feel like I'm not making use of some of the functionality potentially provided by

Re: Installation woes

2003-01-08 Thread Nathan McMinn
John, Here's the kicker, running SET from the command line (win xp) doesn't list JAVA_HOME as an existing env var, neither does sys properties - advanced - environment variables. Is there somewhere else to look for it? - Original Message - From: Turner, John [EMAIL PROTECTED] To:

Tomcat oddities

2003-01-08 Thread Michael Molloy
My company is in the deployment stage of a project that uses tomcat to serve information from an oracle database to about 25 people. When the app goes live, there will be about 150 people connected at any one time. Tomcat 4.1.12 is running behind Apache on Windows 2000 on a single cpu box, and

Re: Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Will Hartung
From: Justin Ruthenbeck [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 12:40 PM Subject: Re: Servlet Mapping Strategy w/ user-specific URLs There's no way to accomplish what you're shooting for using only the mappings in the web.xml. However, you could pretty easily do it through a

One other freaky thing

2003-01-08 Thread Michael Molloy
Our application is running on a server in Pennsylvania. A user there was working as well as a user in Tennessee. The user in Tennessee got an error on a page, hit her back key, and the user in Pennsylvania's screen showed up on the Tennessee user's screen. The people in Tennessee are

RE: Installation woes

2003-01-08 Thread Tam, Michael
Nathan, Adding JAVA_HOME as environment variable under Sys. Properties should work. Where did you add your JAVA_HOME variable i.e. as User variable or System variable?? It should be under System Variable. I am running XP Home on my notebook and it works for me. Hope this help. Michael

Tomcat 4.1.18 jsp import and include error

2003-01-08 Thread Hongsong Zhou
I installed Tomcat 4.1.18 under Windows 2000 Server and IIS, everything is fine except two errors: 1. In jsp, when I import a class, this class should in some package, otherwise you get ClassNotFoundException. But in Tomcat 4.0.4 I can import a class without package. Is this a Tomcat 4.1.18

Custom Tag Scripting Variables via the TLD

2003-01-08 Thread Robert Girardin
I was trying to create a scripting variable for a custom tag via the tld using: tag nameMyTag/name ... variable name-from-attributeid/name-from-attribute variable-classcom.MyClass/variable-class declaretrue/declare scopeAT_BEGIN/scope

Re: Installation woes

2003-01-08 Thread Bill
Nathan Forgive me if I misunderstood, but it seems you believe this variable exists in the OS without creating it. I cant speak with 100% accuracy as to winXP, but in previous versions of windoze, you create the variable, it doesnt exist until you do. Go back to sys props--advanced--env

Re: Installation woes

2003-01-08 Thread Nathan McMinn
I added it, and it appears to be using the correct jdk. However, now the damn thing won't start. And it closes the terminal window before I can retreive the error message. - Original Message - From: Tam, Michael [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent:

Re: Installation woes

2003-01-08 Thread Nathan McMinn
I understand this. Usually, however, the Tomcat install process creates this automagically. When it autodetects the location of the jdk, it sets the java home for you. I think. I went ahead and set the variable, and am having a host of other problems now. Thanks for the advice though. If the

RE: Tomcat 4.1.18 jsp import and include error

2003-01-08 Thread Wendy Smoak
1. In jsp, when I import a class, this class should in some package, otherwise you get ClassNotFoundException. But in Tomcat 4.0.4 I can import a class without package. Is this a Tomcat 4.1.18 feature or bug Did you by chance change from JDK 1.3 to 1.4 when you moved from Tomcat 4.0 to 4.1?

Re: Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Justin Ruthenbeck
At 01:48 PM 1/8/2003, you wrote: So you're talking about using the sorts of Filters available as of the Servlet 2.3 spec? That actually sounds promising, I'll take a look at it. Yep. One thing that bothers me about my current plan though is that I feel like I'm not making use of some of the

Re: Installation woes

2003-01-08 Thread Larry Meadors
Go to the $CATALINA_HOME/bin directory and run catalina run The terminal will stay after it dies. Larry [EMAIL PROTECTED] 01/08/03 15:23 PM I added it, and it appears to be using the correct jdk. However, now the damn thing won't start. And it closes the terminal window before I can

Tomcat version 4

2003-01-08 Thread Reis, Tom
Is there a way to record errors I am getting on the Dos screen? After I start up Tomcat and I try to run a servlet I receive a list of errors on the Tomcat Dos screen and I need to save these to send them to our programmer. Thanks. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

Re: Installation woes

2003-01-08 Thread jeff . guttadauro
Open a terminal window yourself first, then run %CATALINA_HOME%/bin/startup.bat. Now you should be able to see the error message without the window disappearing on you. Also, make sure the JAVA_HOME points to the top level directory of your JDK (C:\jdk1.3 instead of C:\jdk1.3\bin for

Re: Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Will Hartung
From: Jeffrey Winter [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 1:48 PM Subject: Re: Servlet Mapping Strategy w/ user-specific URLs There certainly is some overlap between those services as outlined in the Servlet spec, and the functionality provided by Apache itself. Are there

Re: RewriteRules and Standalone Tomcat

2003-01-08 Thread Gary Gwin
Yes, but your requests must be passed through Apache to Tomcat-Standalone via mod_jk. We do this on our site and it works nicely. The URL requests are processed by mod_rewrite before mod_jk forwards them to Tomcat, so the Apache behavior you desired is achieved. I don't think that

RE: Tomcat 4.1.18 jsp import and include error

2003-01-08 Thread Hongsong Zhou
I did use JDK 1.4, but when I use JDK 1.4 and Tomcat 4.0.4, everything is fine. So I think it is a Tomcat 4.1.18 issue. [EMAIL PROTECTED] 01/08/03 04:26PM 1. In jsp, when I import a class, this class should in some package, otherwise you get ClassNotFoundException. But in Tomcat 4.0.4 I can

RE: Installation woes

2003-01-08 Thread Tam, Michael
Nathan, In this case, which jdk are you using?? 4.1.18 requires jdk1.4. If you're using the right jdk then it is very likely the problem is not coming from the JDK but your configuration if you did change something there. Michael -Original Message- From: Nathan McMinn [mailto:[EMAIL

RE: Tomcat 4.1.18 jsp import and include error

2003-01-08 Thread Wendy Smoak
I did use JDK 1.4, but when I use JDK 1.4 and Tomcat 4.0.4, everything is fine. So I think it is a Tomcat 4.1.18 issue. Well, since all production code should be in a package, I don't see an issue. I'd regard the 4.0 behavior to be wrong and the 4.1.18 behavior to be fixed. -- Wendy Smoak

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
It sounds like you are saying that you must also run Apache ... that Tomcat alone is not sufficient. Is this correct? And that I would setup mod_rewrite within Apache before it gets to Tomcat? Wouldn't this then mean that you're not actually using Apache as a Standalone? Are you connecting to

Re: HP-UX 10.20 + Oracle

2003-01-08 Thread mlh
On Wed, Jan 08, 2003 at 01:03:06PM -, John Clark wrote: I have tried setting LD_LIBRARY_PATH but it still does not work. hp-ux binaries have an inbuilt idea of where to find share libraries. It's called 'chattr' (change attributes). This is in addition to the LD_LIBRARY_PATH var. btw,

Re: why doesn't tomcat see my correct keystore?

2003-01-08 Thread Rob Lagana
I found out that tomcat was looking at the .keystore default... However I specified in the server.xml file the below and tomcat just ignores it. The traditional: !-- Define a SSL Coyote HTTP/1.1 Connector on port 443 -- - Connector className=org.apache.coyote.tomcat4.CoyoteConnector

Another JNDI Configuration issue

2003-01-08 Thread srinath narasimhan
I am running tomcat 4.1.12 on Windows 2000 with jdk 1.4.1. I have configured my datasource as a JNDI resource. This works just fine. I am trying to deploy my application on linux ( jdk 1.4.1 and tomcat 4.1.12 ), when I try to access the JNDI resource I get a exception : Name java:comp is not

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Turner, John
Many people do not run Tomcat on port 80. Some do. Those who don't, run Apache on port 80 and use a connector to pass requests to Tomcat. Tomcat Stand-alone means Tomcat running on port 80, or some other port with the port number appended to the request. That is, no Apache in the mix. The

RE: Installation woes

2003-01-08 Thread Turner, John
Nope, it doesn't detect a thing, as far as I know. Check my Win 2000 Pro/XP Pro HOWTO, I explain everything step by step, and I guarantee it works, I've used my own HOWTO twice since I wrote it to install JDK + Apache + Tomcat on various machines. http://www.johnturner.com/howto John

RE: Installation woes

2003-01-08 Thread Turner, John
True, but you can create environment variables that only exist or have a particular value for a particular console session. For example, if you have MY_VAR set as an OS-level environment variable, you can open a console window and change it's value. When you close the window, or log off and log

RE: Tomcat version 4

2003-01-08 Thread Turner, John
Check the Tomcat log files, in CATALINA_HOME/logs. Typically, you'll want the file that has a name of the form: hostname_log.-MM-DD.txt Provided the logger defaults haven't been changed. You can also look for files stdout.log and stderr.log for messages from Tomcat itself (like

RE: how to users let know application server is down

2003-01-08 Thread Venkat Reddy Valluri
Thank you very much, I worked well Thks, --Venkat -Original Message- From: Turoff, Steve [mailto:[EMAIL PROTECTED]] Sent: Wed 1/8/2003 2:55 PM To: Tomcat Users List Cc: Subject:RE: how to users let know application server is down Venkat, Here's one method: 1)

RE: Tomcat version 4

2003-01-08 Thread neal
John, You say there is a patch for Tomcat that will fix this redirect thing ... or at least allow me to configure it to not redirect like this? Great! Do you know specifically which patch this is? Is there any documentation that you know of regarding the patches ability to tweak this behavior?

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
John, You say there is a patch for Tomcat that will fix this redirect thing ... or at least allow me to configure it to not redirect like this? Great! Do you know specifically which patch this is? Is there any documentation that you know of regarding the patches ability to tweak this behavior?

RE: Tomcat oddities

2003-01-08 Thread Subir Sengupta
Issue One: If Tomcat used up all your memory, you would see OutOfMemory exceptions being thrown, not a freeze. Do you see these? Everything will stop *while* GC is occurring (not until GC occurs). Have you tried increasing the amount of memory allocated to Java? Use the -Xms and -Xmx flags

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Turner, John
See Tim Moore's reply to your post earlier today: http://marc.theaimsgroup.com/?l=tomcat-userm=104206237029628w=2 The discussion on the tomcat-dev list is here: http://www.mail-archive.com/tomcat-dev%40jakarta.apache.org/msg38868.html My point was that as you can see in the tomcat-dev

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
John, Thanks for the threads. I will certainly read them. I can't imagine why Tomcat wouldn't support this behavior unless there is another issue in Tomcat that this is covering up ... I mean this is basic http server stuff, I thought. All the same...thanks! :) Neal -Original

HTTPS gives MalformedURLException in 4.0.x

2003-01-08 Thread Dan Lipofsky
The following code works fine in Tomcat 3.2.4 but fails in Tomcat 4.0.6 and throws a MalformedURLException. %@page import=java.net.URL% % java.security.Security. addProvider(new com.sun.net.ssl.internal.ssl.Provider()); System.getProperties().put(java.protocol.handler.pkgs,

Re: One other freaky thing

2003-01-08 Thread Jason Pyeron
We had a similar problem running tomcat 3.x (3.3?) and apache 1.x (1.19?) mod_jk sometimes would deliver static html/gfx from one context to another. Also there would be session corruption. To the best of my knowledge there was a on-line casino which had the same problem. I was never able to

Re: One other freaky thing

2003-01-08 Thread Jason Koeninger
I've seen the same thing on Tomcat 3.3.x. Our upgrade to Tomcat 4.0.6 seems to have corrected it. Good luck... Best Regards, Jason Koeninger JJ Computer Consulting http://www.jjcc.com On Wed, 8 Jan 2003 19:59:25 -0500 (EST), Jason Pyeron wrote: We had a similar problem running tomcat 3.x

Tomcat 4.1.18 rpm available

2003-01-08 Thread Henri Gomez
After some delay the TC 4.1.18 rpms are available at : http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.1.18/rpms/ Regards -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Turner, John
No problem, glad to help. Remember, Tomcat is not a HTTP server. It supports HTTP as a matter of convenience. You can run Tomcat all day long without a HTTP or HTTPS connector, and as far as I know, there is nothing in the spec that says Tomcat has to meet certain requirements for HTTP or

Re: Another JNDI Configuration issue

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, srinath narasimhan wrote: Date: Wed, 8 Jan 2003 18:17:50 -0500 From: srinath narasimhan [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Another JNDI Configuration issue I am running tomcat 4.1.12 on

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, Turner, John wrote: Date: Wed, 8 Jan 2003 20:33:50 -0500 From: Turner, John [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: RewriteRules and Standalone Tomcat No problem, glad to help. Remember,

Re: why doesn't tomcat see my correct keystore?

2003-01-08 Thread Rob Lagana
I solved the problem. This apparently works fine..and uses the .keystore that I am actually specifying in the server.xml. See procedures below: I created a new keystore file but this time I specified the directory to be saved in and not the default dir.. such as C:\keytool -genkey -alias

Repost: Can't connect to a running network-enabled mysql server onlocalhost

2003-01-08 Thread John
Since I didn't get a response the first time round, and I CAN'T believe that nobody has ever run into this before, and I can't find what I'm looking for in the FAQ or the archive, and the doc. for tomcat4 seems to be pretty much non-existent, and the notes with mm.mysql don't help, I'll ask

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
Hmm. But the fact still remains that Tomcat Standalone will not be a commercially viable http server on its own if it can't display a welcome page without redirecting to the page. Dispite all of Tomcat's other abilities, not having this ability is like shooting the standalone notion in the foot.

RE: Servlet Mapping Strategy w/ user-specific URLs

2003-01-08 Thread Noel J. Bergman
Is it possible to setup a servlet mapping such that a UserServlet handles requests to /user/xxx, but a ResourceServlet handles requests to /user/xxx/resource/yyy? Easy enough to do with mod_rewrite, as you have planned since you have apache as a front end, or you could write a Servlet Filter.

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Noel J. Bergman
Neal, I told you that solution in the context of your avoiding a redirect (302), not in the context of standalone Tomcat. mod_rewrite is an Apache module. http://www.mail-archive.com/tomcat-dev%40jakarta.apache.org/msg38750.html is the start of a thread on patching Tomcat to do a forward

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Turner, John
OK, so what's the rationalization for the 302? Can you shed some light on that? John -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:07 PM To: Tomcat Users List Subject: RE: RewriteRules and Standalone Tomcat On Wed, 8

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Turner, John
Sounds like the makings of a good debate, and a classic chicken and egg problem. Does Tomcat submit to how some search engines work, even if there are reasons not to do so, or do search engines accept 302 behavior? Do ALL search engines disregard 302s? Think about it...search engines probably

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread Craig R. McClanahan
On Wed, 8 Jan 2003, Turner, John wrote: Date: Wed, 8 Jan 2003 22:19:47 -0500 From: Turner, John [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: RewriteRules and Standalone Tomcat OK, so what's the rationalization for

Re: JDBCRealm

2003-01-08 Thread Rick Fincher
- Original Message - The MD5'd password *is* in the pg_shadow.passwd column. I don't see what I'm doing wrong. Is Postgres (or anything other than Java) generating the MD5'd passwords for the pg_shadow table? If so, have you manually generated the MD5's to see if they are the same?

Re: Repost: Can't connect to a running network-enabled mysql server on localhost

2003-01-08 Thread Mark Eggers
John, I haven't seen this, but I'm running a more convoluted setup. jdk 1.4.1_01 tomcat 4.1.18 cocoon2-dev (from cvs) all on a Win2K/Pro box. I have been able to get connections to mysql and xindice. I haven't tried postgresql yet since I don't have a database in that. All databases are

Re: HP-UX 10.20 + Oracle

2003-01-08 Thread mlh
On Thu, Jan 09, 2003 at 10:01:33AM +1100, [EMAIL PROTECTED] wrote: On Wed, Jan 08, 2003 at 01:03:06PM -, John Clark wrote: I have tried setting LD_LIBRARY_PATH but it still does not work. hp-ux binaries have an inbuilt idea of where to find share libraries. It's called 'chattr'

Getting a security alert msg box on https

2003-01-08 Thread Santosh Kulkarni
I'm getting a security alert msg box that says This page contains both secure and nonsecure items. Do you want to display the nonsecure items? when I use the browser back to return to the previous page. The flow is like this: I have a relative link in page1.jsp to go to page2.jsp. I land on

IPv6 Support in Tomcat

2003-01-08 Thread Surendra Kumar
Hi All Is IPv6 support available for any version of Tomcat ? Where can i get the documentation related to this ? Thanks Surendra -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: IPv6 Support in Tomcat

2003-01-08 Thread David Kavanagh
IPv6 is a jdk1.4 feature, that is not availble on Windows (due to problems with the IPv6 support in the OS). I'd guess tomcat will work with IPv6 if you get JDK1.4 on Solaris or Linux. See this web page for details. http://java.sun.com/j2se/1.4/docs/guide/net/ipv6_guide/ David Surendra Kumar

Re: IPv6 Support in Tomcat

2003-01-08 Thread Surendra Kumar
Hi David Thanks for the info. Is there anything specially needs to be done from tomcat side ? So If the jdk supports then tomcat also supports Ipv6. Is this correct ? Thanks Surendra - Original Message - From: David Kavanagh [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

Re: IPv6 Support in Tomcat

2003-01-08 Thread David Kavanagh
Surendra, I can't vouch for the tomcat implementation meeting the criteria set for on that web page. That is probably a question for the dev list. It sounds like if it was coded without IPv4 references, it should just work. David Surendra Kumar wrote: Hi David Thanks for the info. Is there

Re: Repost: Can't connect to a running network-enabled mysql server on localhost

2003-01-08 Thread Paul Campbell
You might start mysql with --log and see if that gives more info. At 10:26 AM 1/9/2003 +0800, you wrote: Since I didn't get a response the first time round, and I CAN'T believe that nobody has ever run into this before, and I can't find what I'm looking for in the FAQ or the archive, and the doc.

Re: SSL cert on Apache not working properly with Tomcat?

2003-01-08 Thread Bill Barker
This is a known problem. See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15456 for more details. It has to do with the (non-existent) client cert, and has nothing to do with the Apache cert. Also (besides filling up log space), it's pretty harmless. Denise Mangano [EMAIL PROTECTED] wrote

Help with Tomcat 4.1 installation please?

2003-01-08 Thread Mark
Hi, I am attempting to install and run Tomcat 4.1 on my Windows XP system. I have followed the instructions as far as: 1. Downloading and installing J2SDK 1.4.1_01 2. Setting the CATALINA_HOME variable to c:\Program Files\Apache Group\Tomcat 4.1 3. Setting the JAVA_HOME variable to

Re: Java Bean Scope questions (a lengthy one)

2003-01-08 Thread Bill Barker
Denise Mangano [EMAIL PROTECTED] wrote in message 5D83C44941AFD4118B6F0002B302984F43863C@EXCHANGE_SERVER">news:5D83C44941AFD4118B6F0002B302984F43863C@EXCHANGE_SERVER... Bill, I'm not sure what you mean. The transaction Bean gets instantiated when I call CCSubmit.jsp. That is the first time

HTTPS to HTTP

2003-01-08 Thread David Hemingway
Hi, I am trying to allow session cookies that created via https to retain the session when stepping down to http, however by default a new session will be made. It seems that a session made under http will sustain if you step up to https but not the reverse. I read in the following document

RE: Tomcat oddities

2003-01-08 Thread Noel J. Bergman
Tomcat 4.1.12 is running behind Apache on Windows 2000 on a single cpu box, and Oracle is running on a separate Windows 2000 2-way box. (Windows was the client decision, not ours.) Have you checked the 4.1 change log to see if there are fixes past 4.1.12 that might impact you? When there are

Re: Help with Tomcat 4.1 installation please?

2003-01-08 Thread Peng Tuck Kwok
Are you installing tomcat from a exe ? If so you may have already started tomcat from the service, in this case it is already started, you can test by going to port 8080 on your own machine using the web browser. If you prefer to run from a batch file, either stop the current service and

RE: RewriteRules and Standalone Tomcat

2003-01-08 Thread neal
Noel, Yes that was you that gave me this solution. But know ... it was actually in the context of finding a way around this very problem which I brought up a while back. I guess the detail that I was using tomcat standalone was not understood. I appreciate the solution but yeah ... now that I'm

<    1   2   3   >