RE: Getting Apache2 forwarding to tomcat5

2005-10-12 Thread Richard Mixon
I believe that SuSE does not supply JK2, but only JK. And as another poster said, JK2 is now deprecated. I got the RPM apache2-jakarta-tomcat-connectors working pretty easily as I remember. I moved from the RPM to a newer compiled version of JK version 1.2.14 a couple of months ago to get newer

RE: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Richard Mixon
problem from what you have described. There are a range of tools for looking at headers. livehttpheaders is good, as is TcpMon which is distributed as part of Axis. Mark -Original Message- From: Richard Mixon [mailto:[EMAIL PROTECTED] Sent: Monday, October 10, 2005 12:00 AM

RE: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Richard Mixon
-Coyote/1.1 Transfer-Encoding: chunked Date: Wed, 12 Oct 2005 16:33:52 GMT Connection: close -- -Original Message- From: Richard Mixon [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 12, 2005 12:45 AM To: 'Tomcat Users List' Subject

RE: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Richard Mixon
going through Apache and mod_jk? Richard Mixon wrote: OK - yes, it was lack of sleep that was causing the problem to not appear, I was starting Tomcat 5.5.9 instead of 5.5.12, sorry :( The problem is still there. I even took SiteMesh out of the picture, to make sure it was not the problem (should

RE: Tomcat 5.5.12 and user-agent header

2005-10-09 Thread Richard Mixon
tomcat out of the box (5.5.12 tar.gz) and only changed the http port. regards leon On 10/8/05, Richard Mixon [EMAIL PROTECTED] wrote: I am just using the standard HTTP connector. This is on my development workstation so I don't normally run JK and Apache, except for final testing

RE: Tomcat 5.5.12 and user-agent header

2005-10-08 Thread Richard Mixon
. Thanks - Richard -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Sent: Friday, October 07, 2005 10:13 PM To: tomcat-user@jakarta.apache.org Subject: Re: Tomcat 5.5.12 and user-agent header Richard Mixon [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED

Tomcat 5.5.12 and user-agent header

2005-10-06 Thread Richard Mixon
I tested out my application on 5.5.12 yesterday and noticed one small anomally. I had a JSP in my sitemesh decorator default.jsp that ends up wrapping the login page for container managed authentication. This page had a statement String _userAgent =

Problem with file upload corruption.

2005-08-30 Thread Richard Mixon (qwest)
Sorry to kick this up. I know it’s a slightly obscure topic, and I'm hoping it may have rolled by someone knowledgable. I just tried using the Jakarta Commons File Upload instead of the Oreilly MultiPartRequest. I get the same results. No matter what kind of file I try uploading - it treats it

RE: Problem with file upload corruption.

2005-08-30 Thread Richard Mixon (qwest)
the uploaded HTML file for invalid characters and notifies the user if any are found. Hope this helps someone else - Richard -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 30, 2005 7:26 PM To: 'tomcat-user@jakarta.apache.org' Subject: Problem

RE: configuration files for war deployments

2005-08-28 Thread Richard Mixon (qwest)
Patrick, Sorry for the late response. You have received quite a few ideas, but I did not see one quite like what we do. We use the deployer utility to deploy our application and have customized (just added a task actually) the build.xml file to make system-specific changes to our war and then

RE: Array as context parameter

2005-08-19 Thread Richard Mixon (qwest)
Well, Understand that once you enter the domain of having someone edit an XML file, you are already into error prone territory. You might consider changing the parameter to specify a file name. The specified file could be formatted anyway you liked, but probably with one value on each line of

Tomcat 5.5.10 jasper2 fails in deployer build.xml

2005-08-15 Thread Richard Mixon (qwest)
I think I found a problem with the jakarta-tomcat-5.5.10-deployer package. When I run the compile task I get the following error: BUILD FAILED C:\jakarta-tomcat-5.5.10-deployer\build.xml:49: Could not create task or type of type: jasper2. Ant could not find the task or a class this task

JspC compile exception in tomcat-deployer 5.5.10

2005-08-15 Thread Richard Mixon (qwest)
Hello, I am using the jakarta-tomcat-5.5.10-deployer to deploy my customized war file to tomcat. When I have it do the "compile" target so it pre-compiles the JSP's I get theexception below (its sort of long). I've got the source and can see that it is happening as it processes the JSPs.

RE: How to turn off perssitent sessions in Tomcat 4.1?

2005-08-06 Thread Richard Mixon (qwest)
Hmm, I assume you have read the documentation on this: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/manager.html If so, have you tried leaving the manager element out? HTH - Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August

RE: question about deployment (including executables in war)

2005-07-20 Thread Richard Mixon (qwest)
Hope this helps. - Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Murad Nayal Sent: Wednesday, July 20, 2005 12:32 PM To: Tomcat Users List; Richard Mixon (qwest) Subject: Re: question about deployment (including executables in war) Many thanks

RE: question about deployment (including executables in war)

2005-07-19 Thread Richard Mixon (qwest)
Murad/Alon, This has nothing to do with a SecurityManager. Murad is trying to run the executables on the server - from one of his servlets I assume. The problem is the fact that a war files is basically just a zip file. It does not maintain the file attributes that are specific to a particular

RE: Controlling Tomcat Service From Ant

2005-07-10 Thread Richard Mixon (qwest)
Yes, if your service name is tomcat you can do something similar to the following: exec dir=${src} executable=cmd.exe os=Windows 2000 output=dir.txt arg line=/c net start tomcat/ /exec exec dir=${src} executable=cmd.exe os=Windows 2000 output=dir.txt arg line=/c net stop tomcat/

RE: Is Tomcat is an application server ?

2005-06-21 Thread Richard Mixon (qwest)
I think for most practical purposes Tomcat is an application server. What Tomcat does not have is a builtin Enterprise Java Beans container - however Tomcat supports many other parts of the J2EE spec. Simply by the numbers, the vast majority of Java web applications do not use EJBs - so Tomcat

RE: Is Tomcat is an application server ?

2005-06-21 Thread Richard Mixon (qwest)
Java applications. Have a good day - Richard -Original Message- From: Anto Paul [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 12:09 AM To: Tomcat Users List Subject: Re: Is Tomcat is an application server ? On 6/21/05, Richard Mixon (qwest) [EMAIL PROTECTED] wrote: I think

RE: Tomcat keeps growing in size on Win32

2005-06-13 Thread Richard Mixon (qwest)
Are you actually running out of memory? Or is the heap just growing? Garbage collection is a bit arbitrary and may not occur until there is a need. HTH - Richard -Original Message- From: Ed Hamilton [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 4:39 PM To: 'Tomcat Users List'

RE: Tomcat keeps growing in size on Win32

2005-06-13 Thread Richard Mixon (qwest)
Are you actually running out of memory? Or is the heap just growing? Garbage collection is a bit arbitrary and may not occur until there is a need. HTH - Richard -Original Message- From: Ed Hamilton [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 4:39 PM To: 'Tomcat Users List'

RE: Tomcat keeps growing in size on Win32

2005-06-13 Thread Richard Mixon (qwest)
, if that is what the task manager sees as Tomcat's memory usage climbing (I think so); it will do so until I run out of memory - I haven't let it get that far, though. Thanks, Ed -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 5:15 PM

RE: Tomcat keeps growing in size on Win32

2005-06-13 Thread Richard Mixon (qwest)
, if that is what the task manager sees as Tomcat's memory usage climbing (I think so); it will do so until I run out of memory - I haven't let it get that far, though. Thanks, Ed -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 5:15 PM

RE: apache2+mod_jk + ssl: howto

2005-06-04 Thread Richard Mixon (qwest)
faisal mailto:[EMAIL PROTECTED] scribbled on Saturday, June 04, 2005 4:40 AM: i used mod_jk2 when i was integrating tomcat with apache2. i also tried my hands on mod_jk and i find mod_jk2 a bit simpler of the two. regarding SSL, ur gonna ve to enable SSL on both server. Not sure what you

RE: apache2+mod_jk + ssl: howto

2005-06-04 Thread Richard Mixon (qwest)
faisal mailto:[EMAIL PROTECTED] scribbled on Saturday, June 04, 2005 4:40 AM: i used mod_jk2 when i was integrating tomcat with apache2. i also tried my hands on mod_jk and i find mod_jk2 a bit simpler of the two. regarding SSL, ur gonna ve to enable SSL on both server. Not sure what you

RE: [Tomcat] Web Traffic Analisys Tool

2005-05-22 Thread Richard Mixon (qwest)
Omar Adobati mailto:[EMAIL PROTECTED] scribbled on Sunday, May 22, 2005 2:45 AM: thank you for your replay, but I'm looking for anything written in java/jsp 'cose I need to use it with Tomcat, or with any other java/jsp container. Do you know anything about it? On 5/22/05, Michael

RE: [Tomcat] Web Traffic Analisys Tool

2005-05-22 Thread Richard Mixon (qwest)
Omar Adobati mailto:[EMAIL PROTECTED] scribbled on Sunday, May 22, 2005 2:45 AM: thank you for your replay, but I'm looking for anything written in java/jsp 'cose I need to use it with Tomcat, or with any other java/jsp container. Do you know anything about it? On 5/22/05, Michael

RE: Tomcat webserver or appserver?

2005-05-21 Thread Richard Mixon (qwest)
raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May 21, 2005 3:07 PM: Hi all. I am new to appache. I wanted to know where tomcat is webserver or appserver Raju Just to be clear, the Apache HTTP Web server (http://httpd.apache.org) is different than the Tomcat Java web application

RE: Tomcat webserver or appserver?

2005-05-21 Thread Richard Mixon (qwest)
raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May 21, 2005 3:07 PM: Hi all. I am new to appache. I wanted to know where tomcat is webserver or appserver Raju Just to be clear, the Apache HTTP Web server (http://httpd.apache.org) is different than the Tomcat Java web application

RE: Struts

2005-05-21 Thread Richard Mixon (qwest)
raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May 21, 2005 3:20 PM: Hi all , I am new to this group. Pls let me know to which email id i need to subscribe to post struts doubts. Raja, you should point your browser over to Struts project at http://struts.apache.org . First

RE: Struts

2005-05-21 Thread Richard Mixon (qwest)
raja buddha mailto:[EMAIL PROTECTED] scribbled on Saturday, May 21, 2005 3:20 PM: Hi all , I am new to this group. Pls let me know to which email id i need to subscribe to post struts doubts. Raja, you should point your browser over to Struts project at http://struts.apache.org . First

RE: Struts

2005-05-21 Thread Richard Mixon (qwest)
there are (i.e. not hosted by Struts/Apache) then I would suggest that you Google for Struts forums. HTH - Richard From: Richard Mixon (qwest) Reply-To: Tomcat Users List To: 'Tomcat Users List' Subject: RE: Struts Date: Sat, 21 May 2005 15:37:44 -0700 raja buddha scribbled on Saturday, May 21, 2005 3

RE: Struts

2005-05-21 Thread Richard Mixon (qwest)
there are (i.e. not hosted by Struts/Apache) then I would suggest that you Google for Struts forums. HTH - Richard From: Richard Mixon (qwest) Reply-To: Tomcat Users List To: 'Tomcat Users List' Subject: RE: Struts Date: Sat, 21 May 2005 15:37:44 -0700 raja buddha scribbled on Saturday, May 21, 2005 3

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
like it would work? It would be less disruptive because you don't have to restart Apache (if there's more to the web site than the one Tomcat app). Plus this will work with stand-alone Tomcat. On 5/15/05, Richard Mixon (qwest) [EMAIL PROTECTED] wrote: I'm curious how folks handle letting users

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
like it would work? It would be less disruptive because you don't have to restart Apache (if there's more to the web site than the one Tomcat app). Plus this will work with stand-alone Tomcat. On 5/15/05, Richard Mixon (qwest) [EMAIL PROTECTED] wrote: I'm curious how folks handle letting users

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
. - Richard -Original Message- From: Will Hartung [mailto:[EMAIL PROTECTED] Sent: Monday, May 16, 2005 4:43 PM To: Tomcat Users List Subject: Re: How to do Downtime with a Apache/Tomcat webapp From: Richard Mixon (qwest) [EMAIL PROTECTED] Sent: Sunday, May 15, 2005 8:57 PM I'm curious how

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
. - Richard -Original Message- From: Will Hartung [mailto:[EMAIL PROTECTED] Sent: Monday, May 16, 2005 4:43 PM To: Tomcat Users List Subject: Re: How to do Downtime with a Apache/Tomcat webapp From: Richard Mixon (qwest) [EMAIL PROTECTED] Sent: Sunday, May 15, 2005 8:57 PM I'm curious how

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
like it would work? It would be less disruptive because you don't have to restart Apache (if there's more to the web site than the one Tomcat app). Plus this will work with stand-alone Tomcat. On 5/15/05, Richard Mixon (qwest) [EMAIL PROTECTED] wrote: I'm curious how folks handle letting

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
like it would work? It would be less disruptive because you don't have to restart Apache (if there's more to the web site than the one Tomcat app). Plus this will work with stand-alone Tomcat. On 5/15/05, Richard Mixon (qwest) [EMAIL PROTECTED] wrote: I'm curious how folks handle letting

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
Ed, Thank you - a very cool reference with a number of tricks/knowledge. - Richard -Original Message- From: Gmail User [mailto:[EMAIL PROTECTED] Sent: Monday, May 16, 2005 1:23 PM To: Tomcat Users List Subject: Re: How to do Downtime with a Apache/Tomcat webapp I believe this link has

RE: How to do Downtime with a Apache/Tomcat webapp

2005-05-17 Thread Richard Mixon (qwest)
Ed, Thank you - a very cool reference with a number of tricks/knowledge. - Richard -Original Message- From: Gmail User [mailto:[EMAIL PROTECTED] Sent: Monday, May 16, 2005 1:23 PM To: Tomcat Users List Subject: Re: How to do Downtime with a Apache/Tomcat webapp I believe this link has

How to do Downtime with a Apache/Tomcat webapp

2005-05-15 Thread Richard Mixon (qwest)
I'm curious how folks handle letting users know that their webapp is down when doing maintenance. We've got a pretty standard setup. Our informational/static site is served by Apache 2.0.x. We use mod_jk to link to a page in our webapplications, triggering CMA for authentication and login. We run

How to do Downtime with a Apache/Tomcat webapp

2005-05-15 Thread Richard Mixon (qwest)
I'm curious how folks handle letting users know that their webapp is down when doing maintenance. We've got a pretty standard setup. Our informational/static site is served by Apache 2.0.x. We use mod_jk to link to a page in our webapplications, triggering CMA for authentication and login. We run

RE: [ANN] Tomcat 5.5.9 voted stable

2005-04-11 Thread Richard Mixon (qwest)
Christoph Kutzinski wrote: Yoav Shapira wrote: Please note that while all core features have been tested and voted stable, there is a known issue in this build related to the clustering module. The fix for this issue is available by itself at Bugzilla, and will be included in subsequent

RE: Apache - JK2 - Tomcat Question

2005-04-05 Thread Richard Mixon (qwest)
Geoff Wiggs wrote: I have a 'newbie' jk2 / Tomcat question. I am running Tomcat behind Apache with mod_jk2 interfacing the two. snip Just so you are aware, jk2 is deprecated in favor of jk. As of version 1.2.10 of jk, most useful features in jk2 should be in jk. See

RE: [OT] Serialization (was RE: Clustering question)

2005-04-01 Thread Richard Mixon (qwest)
Peter Crowther wrote: From: Dale, Matt [mailto:[EMAIL PROTECTED] Yes this is a problem. All objects contained within a serializable object must in turn be serializable themselves. Or marked as 'transient'. This omits them from serialization. If you mark them as transient, you may need need

RE: webappclassloader

2005-03-25 Thread Richard Mixon (qwest)
Its hard to tell - you need to tell us more - e.g. what version of Tomcat are you using. I have gotten similar messages when I used the deployer app to undeploy a webapp, but due to a lock on a file (i.e. a JSP file was open in a text editor) all of the files were not deleted by the deployer app.

RE: JDBCRealm changes from Tomcat 5.0.x to 5.5.x

2005-03-17 Thread Richard Mixon (qwest)
. Are you using HTTP or Form-based authentication to get the user credentials? On Tue, 2005-03-08 at 11:57 -0700, Richard Mixon (qwest) wrote: Has anything changed with the way that JDBCReal handles connection timeouts in Tomcat 5.5.7? We upgraded from Tomcat 5.0.19 to Tomcat 5.5.7

RE: Being lost in the mailing list

2005-03-09 Thread Richard Mixon (qwest)
Klaus, Was there a reason you did not use the preconfigured Java 1.4, Tomcat 5.0.19 and JK connectors that come with SuSE Pro 9.1? These are listed under the SuSE YAST Install Software panel. Just select RPM groups Productivity-Networking-Web-FrontEnds. The SuSE prepared README

RE: tomcat load-balancing maintenance strategy?

2005-03-08 Thread Richard Mixon (qwest)
Jim, Also check the archives for my post on restarting a downed Tomcat cluster member. This was not working well prior to Tomcat 5.5.8. When the instance was restarted it would throw exceptions trying to re-synchronize vi session replication. - Richard -Original Message- From: Randall

JDBCRealm changes from Tomcat 5.0.x to 5.5.x

2005-03-08 Thread Richard Mixon (qwest)
Has anything changed with the way that JDBCReal handles connection timeouts in Tomcat 5.5.7? We upgraded from Tomcat 5.0.19 to Tomcat 5.5.7 in production and are now getting JDBC connection errors when the site has not been accessed for a while. This is happening when a user tries to login - we

RE: JDBCRealm changes from Tomcat 5.0.x to 5.5.x

2005-03-08 Thread Richard Mixon (qwest)
, the longest inactive period is usually about six hours. - Richard -Original Message- From: Hassan Schroeder [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 4:17 PM To: Tomcat Users List Subject: Re: JDBCRealm changes from Tomcat 5.0.x to 5.5.x Richard Mixon (qwest) wrote: We upgraded

RE: JDBCRealm changes from Tomcat 5.0.x to 5.5.x

2005-03-08 Thread Richard Mixon (qwest)
Remy, Thanks - but where do I get the new class file? - Richard -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 4:01 PM To: Tomcat Users List Subject: Re: JDBCRealm changes from Tomcat 5.0.x to 5.5.x On Tue, 08 Mar 2005 14:28:12 -0800,

RE: Tomcat clustering and NotSerializableException

2005-03-01 Thread Richard Mixon (qwest)
) at Since CoyoteRequestFacade is a tomcat class, I assume it has to be fixed by the tomcat team. Unless the actual object that is not Serializable not CoyoteRequestFacade is available somewhere else... - Jim -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED

RE: Tomcat Cluster

2005-03-01 Thread Richard Mixon (qwest)
Randall, Below is the clustering section of my server.xml running under SuSE Linux (SLES9). Things to check I can think of: 1. Is your server multi-homed (more than one network adapter)? If so you must (at least from my experience) specify both mcastBindAddr and tcpListendAddress as shown below.

RE: skipping state transfer. No members active in cluster group

2005-03-01 Thread Richard Mixon (qwest)
Randall, See my answer to your posting on the subject Tomcat Cluster. Both Tomcat 5.0.28 and Tomcat 5.5.7 should work on Linux - at least on SuSE Pro 9.2 and SLES9. However failover restart under session replication works much better on the Tomcat 5.5.8 that is available as alpha. You might do

RE: Tomcat clustering and NotSerializableException

2005-03-01 Thread Richard Mixon (qwest)
idea. Richard Mixon (qwest) wrote: CoyoteRequestFacade is the first element in the stack trace - it is not the session stored object that is causing the NotSerializableException. As I said in my prior posting, to resolve this issue you need to: 1) Identify each object that you are explicitly

RE: Tomcat clustering and NotSerializableException

2005-02-28 Thread Richard Mixon (qwest)
As Matt said its probably your applications objects. When we switched to clustering I was surprised at how many of my session objects I needed to add serializable to. But it was easy work and quickl done. HTH - Richard Dale, Matt wrote: I would guess that this means you have an object in your

RE: Architecture for application and web server

2005-02-28 Thread Richard Mixon (qwest)
JBoss just did a free webinar that covered the topic pretty well and had some nice PowerPoint slides. You can access the recorded webcast here: https://jboss.webex.com/jboss/onstage/tool/record/viewrecording1.php?E ventID=136098785 But basically, Apache uses Tomcat's AJP protocol to talk with

RE: Tomcat clustering and NotSerializableException

2005-02-28 Thread Richard Mixon (qwest)
-Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Monday, February 28, 2005 8:13 AM To: Tomcat Users List Subject: RE: Tomcat clustering and NotSerializableException As Matt said its probably your applications objects. When we switched to clustering I

RE: Question for Tomcat Developers - How to Plug In Encryption for JDBC passwords

2005-02-27 Thread Richard Mixon (qwest)
Edmon, I am not sure if I understand, but perhaps you should tak a look at Matt Raible's Appfuse application framework at: https://appfuse.dev.java.net/ His solution uses: - SSL (optional of course, just a servlet parameter); - Container Managed Authentication; - a custom login servlet that

RE: JDBC

2005-02-27 Thread Richard Mixon (qwest)
Sounds like you need application logic to do this - probably in conjunction with using Tomcat's Container Managed Authentication (CMA). Tomcat can validate the username against a database (see JDBCRealm at http://jakarta.apache.org/tomcat/tomcat-5.5-doc/realm-howto.html#JDBCRea lm ). However

RE: Cluster: how to set mcast interface for dual LAN card? (SOLVED)

2005-02-24 Thread Richard Mixon (qwest)
The tcpListenAddress (on the Receiver tag) may also need to be set to the correct interface/nic (rather than just auto). - Richard Joseph Lam wrote: I have tried that but still got some weird behavior (seems that it was able to send out broadcast with the proper interface but unable to listen

Under Tomcat 5.5.7 how to get Username xxx successfully authenticated

2005-02-24 Thread Richard Mixon (qwest)
Under Tomcat 5.0.19 I had a logger statement in my application context that created a log file. This log file contained, among other things, a line each time a user successfully/unsuccessfully logged in, similar to: 2005-02-20 07:09:20 JDBCRealm[/stars]: Username xxx successfully authenticated

RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed?

2005-02-22 Thread Richard Mixon (qwest)
denied for user ''@'kingfishS11' I just tried to find some docs to make sure I'm right but I can't see anything under the 5.5 documentation :-S Hope this helps Tom. On Mon, 21 Feb 2005 07:32:29 -0700, Richard Mixon (qwest) [EMAIL PROTECTED] wrote: -Original Message- From: Richard

RE: Tomcat 5.5.7 - error trying to replicate session on Linux

2005-02-22 Thread Richard Mixon (qwest)
as the second network card. Thanks - Richard Mixon -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Monday, February 21, 2005 10:14 PM To: tomcat-user@jakarta.apache.org Subject: Tomcat 5.5.7 - error trying to replicate session on Linux OK, we still have one more

RE: Tomcat 5.5.7 - error trying to replicate session on Linux [SOLVED]

2005-02-22 Thread Richard Mixon (qwest)
watchEnabled=false/ /Cluster --- Richard Richard Mixon (qwest) wrote: OK, we still have one more issue with our Tomcat cluster as we move to our Linux environment. For some reason, both instances (jvmRoute=srv1 and jvmRoute=srv2) see each other at startup. We see that they each join

RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed?

2005-02-21 Thread Richard Mixon (qwest)
Engineer. NorthStar Technologies. www.globalnorthstar.com EE(Computer Engineering), UET Lahore, Pakistan. SCJP,SCWCD SCBCD Sun Microsystems, Inc. Brain Bench Certified Java Programmer. -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: 21 February, 2005 10:24 AM

RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed?

2005-02-21 Thread Richard Mixon (qwest)
Microsystems, Inc. Brain Bench Certified Java Programmer. -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: 21 February, 2005 6:16 PM To: Tomcat Users List Subject: RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed? Shakeel, Thanks for the suggestion

RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed? New approach

2005-02-21 Thread Richard Mixon (qwest)
: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Sunday, February 20, 2005 7:53 PM To: tomcat-user@jakarta.apache.org Subject: Tomcat 5.5.7 cannot connect to mysql datasource - what changed? We have been using Sun Java 1.4.2, Tomcat 5.0.19, MySQL 4.1.7, MySQL Connector/J 3.0.15

RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed? New approach [SOLVED]

2005-02-21 Thread Richard Mixon (qwest)
, but NOT for Linux. Anyway, all seems to be working great now that I used just plain username. Thanks for the earlier help and suggestions. - Richard Richard Mixon (qwest) wrote: We have been using Sun Java 1.4.2, Tomcat 5.0.19, MySQL 4.1.7, MySQL Connector/J 3.0.15 with Hibernate 2.1.7c

Tomcat 5.5.7 - error trying to replicate session on Linux

2005-02-21 Thread Richard Mixon (qwest)
OK, we still have one more issue with our Tomcat cluster as we move to our Linux environment. For some reason, both instances (jvmRoute=srv1 and jvmRoute=srv2) see each other at startup. We see that they each join the cluster just fine. But when the first request comes through we get an exception

Tomcat 5.5.7 cannot connect to mysql datasource - what changed?

2005-02-20 Thread Richard Mixon (qwest)
We have been using Sun Java 1.4.2, Tomcat 5.0.19, MySQL 4.1.7, MySQL Connector/J 3.0.15 with Hibernate 2.1.7c with no problems. This is on both Windows XP Pro SP2 (development) and SuSE Linux SLES9 (test and production). In order to get failover to work the way we wanted we upgraded to Tomcat

RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed?

2005-02-20 Thread Richard Mixon (qwest)
Users List Subject: RE: Tomcat 5.5.7 cannot connect to mysql datasource - what changed? Have you changed the corresponding mysql connector jar file ? -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: 21 February, 2005 7:53 AM To: tomcat-user@jakarta.apache.org

RE: Need simple app to test tc5 session failover - please

2005-02-18 Thread Richard Mixon (qwest)
Dan, I just spent a couple of weeks working with Filip Hanik to get session replication and failover working correctly on Tomcat 5.5.7 (at least for the specifics of my situation). Failover was working fine, though I did have to use a special listener to handle the replication of the jvmRoute

Tomcat 5.5.7 deployer ExceptionInInitializer error

2005-02-15 Thread Richard Mixon (qwest)
When I use the client deployer to compile my web app I am getting this error under SuSE Linux (SLES9). Under Windows XP it deploys fine. It seems sort of puzzling as to why the deployer is running the Struts org.apache.struts.util.MessageResources.getMessageResources during a compile. Here is a

Tomcat 5.5.7 deployer ExceptionInInitializer error in Struts getMessageResources

2005-02-15 Thread Richard Mixon (qwest)
Anybody have any ideas? I have googled this list and others and so far no clues Thank you - Richard -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 1:31 AM To: TomcatUsers Subject: Tomcat 5.5.7 deployer ExceptionInInitializer error

RE: Tomcat 5.5.7 deployer ExceptionInInitializer error in Struts getMessageResources

2005-02-15 Thread Richard Mixon (qwest)
. ? I thought your problem is compiling? This deployer (manager webapps) compiles okay in XP and not in SuSE? aka_sergio --- Richard Mixon (qwest) [EMAIL PROTECTED] wrote: Anybody have any ideas? I have googled this list and others and so far no clues Thank you - Richard -Original Message

RE: Tomcat 5.5.7 deployer ExceptionInInitializer error in Struts getMessageResources

2005-02-15 Thread Richard Mixon (qwest)
-Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 1:58 PM To: Tomcat Users List Subject: RE: Tomcat 5.5.7 deployer ExceptionInInitializer error in Struts getMessageResources Sven, Sorry I was unclear. I should have said that under

RE: SOLVED - commons-logging logger instances - how to initialize in replicated session objects

2005-02-13 Thread Richard Mixon (qwest)
()); } } private void readObjectNoData() throws java.io.ObjectStreamException { if (log == null) { // Initialize log instance if it is null log = LogFactory.getLog(getClass().getName()); } } } -Original Message- From: Richard Mixon (qwest) [mailto

RE: Tomcat 5.5.7 webapp not reload after META-INF/context.xml change

2005-02-13 Thread Richard Mixon (qwest)
Tevor, Not sure if I have much to add, so much as just clarifying what you are asking. Its of interest to me also. If you are using the tomcat-deployer app, then file tomcat/webapps/your-webapp/META-INF/context.xml normally gets deployed to tomcat/conf/Catalina/localhost/your-webapp.xml. I

RE: commons-logging logger instances - how to initialize in replicated session objects

2005-02-12 Thread Richard Mixon (qwest)
Thanks Trond, I had forgotten about readObject.That may be a better option than creating yet another utility method. Trond G. Ziarkowski wrote: Hi, I'm maybe stepping out of my territory here, but I think that static members are not serialized/deserialized. To re-initialize your static

commons-logging logger instances - how to initialize in replicated session objects

2005-02-11 Thread Richard Mixon (qwest)
I have been working with Filip Hanik to get failover/session replication working for my application. Finally it is working quite well. Hooray for Filip! However it did uncover one issue with the way I was handling the commons-logging logger instances in my business objects that I store in the

XML/URI issue on Tomcat 5.5.7 and/or Java version issue

2005-02-03 Thread Richard Mixon (qwest)
Users Subject: Re: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built Richard Mixon (qwest) wrote: My build of FOP from 2004/05/29 works fine on Sun Java 1.4.1_02 with Tomcat 5.0.19, but when I move toSun Java 1.5.1 and Tomcat 5.5.7 I get the URI I/O error listed below

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built

2005-02-03 Thread Richard Mixon (qwest)
again, very much - Richard Thomas DeWeese wrote: Hi Richard, What is 'imageURLProtocol' I'm guessing it's file:// I think it should be either file:/// or file:/. Richard Mixon (qwest) wrote: Thomas DeWeese wrote: Richard Mixon (qwest) wrote: I checked my SVG markup and am not sure

RE: Jakarta Tomcat Connector - Load Balancing

2005-01-31 Thread Richard Mixon (qwest)
Derek Greer wrote: Thanks. I don't recall reading this in any of the documentation. Can you explain what setting this actually does? Derek Mladen Turk wrote: Derek Greer wrote: I'm trying to use the Tomcat Connector to do load balancing through the IIS filter, however the sessions do

RE: JK, Session Replication/Clustering, SSL and failover in Tomcat 5

2005-01-31 Thread Richard Mixon (qwest)
It appears that you are using the deprecated JK2, not JK 1.2.8 that this thread is discussing. Please start a new thread with the appropriate title and you might get better responses. - Richard sulaiman jrar wrote: I am having problem doing sessionreplication apache give me this problem [Mon

RE: Updating webapps in a running production cluster.

2005-01-29 Thread Richard Mixon (qwest)
Roberto Cosenza wrote: Sorry if I insist with this post. Has anybody succeeded in updating a webapp in a tomcat cluster without loosing (any)requests? I´m wondering if this is possible at all with tomcat. If we don´t provide a solution we are forced to switch to an other servlet container

RE: Updating webapps in a running production cluster.

2005-01-29 Thread Richard Mixon (qwest)
Roberto Cosenza wrote: I do mean mod_jk2. Could this be the problem? /roberto Yes - jk2 is deprecated. From what I understand jk 1.2.8 has all significant function of jk2 and is much more stable/reliable. I am not sure whether it has the jkstatus function however. BTW, My tests that showed

RE: Updating webapps in a running production cluster.

2005-01-29 Thread Richard Mixon (qwest)
Peter, I used the Jan 19th version of Tomcat 5.5.7, Apache 2.0.52 (build for ssl), jk 1.2.8, Windows XP SP2 and Sun JRE 1.5 SP1. - Richard Peter Rossbach wrote: Hello, with which tomcat version you test this, please try the new 5.5.7 and tell us the result! :-) Please tell us your env,

Where is jkstatus function in jk version 1.2.8?

2005-01-29 Thread Richard Mixon (qwest)
I understand that the jk 1.2.8 connector supercedes the deprecated jk2 connector. I had read previous posting that indicated version 1.2.8 of jk contained equivalent or better function/features than jk2. However the jk2 connector contains documentation on a jkstatus administration interface that

RE: JK, Session Replication/Clustering, SSL and failover in Tomcat 5

2005-01-28 Thread Richard Mixon (qwest)
Peter Rossbach wrote: That true, I add the JvmRouteBinderValve to the codebase to switch the Session to other node after failure. It works with Tomcat 5.5.5 Config: a) Add Valve at your conf/Catalina/localhost/context.xml.default or context.xml Context Valve

RE: catalina.out

2005-01-28 Thread Richard Mixon (qwest)
Edao Aliye wrote: Hi all, Is there any way i can tell tomcat to limit the file catalina.out in $CATALINA_HOME/logs to for example 2MB in Tomcat 5.5.4?? Please help! Thanks in advance It's in the 5.5 documentation how to limit log size and to rotate:

RE: catalina.out

2005-01-28 Thread Richard Mixon (qwest)
Edao Aliye wrote: Hi Richared, The problem I have ist not localhost_log That works pretty good. Hier ist my configuration: ++ more log4j.properties log4j.rootLogger=info, R log4j.appender.R=org.apache.log4j.RollingFileAppender

RE: logging remote IP address

2005-01-28 Thread Richard Mixon (qwest)
Mark wrote: I'm just tring to see if http request that came from one IP address has more then 1 client behind it. I've seen on some webpages that My IP is displayed as both external and internal - so it means it's doable - but the question is how to get this info in Tomcat. A major purpose of

RE: loadbalancing with mod_jk 1.2.8

2005-01-27 Thread Richard Mixon (qwest)
John, From what I gather, this is the purpose of the properties local_worker and local_worker_only properties in the workers.properties file. They are documented at the bottom of this page: http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html Unfortunately the explanation is not

RE: JK, Session Replication/Clustering, SSL and failover in Tomcat 5

2005-01-27 Thread Richard Mixon (qwest)
? Thank you - Richard Mixon -Original Message- From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 7:29 AM To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: JK, Session Replication/Clustering, SSL and failover in Tomcat 5 yes, There is code that takes

RE: JK, Session Replication/Clustering, SSL and failover in Tomcat 5

2005-01-27 Thread Richard Mixon (qwest)
like any other Lifecycle listener, Server Listener className=o.a.c.c.s.JvmRouteSessionIDBinderLifecycleListener/ Filip - Original Message - From: Richard Mixon (qwest) [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Cc: [EMAIL PROTECTED] Sent: Thursday

RE: JK, Session Replication/Clustering, SSL and failover in Tomcat 5

2005-01-27 Thread Richard Mixon (qwest)
:4001,192.168.1.140,4001, alive=126093] DEBUG TP-Processor3 org.apache.catalina.cluster.session.JvmRouteBinderValve - No Cluster DeltaManager [EMAIL PROTECTED] at /stars TOMCAT LOG - SRV1 END - Richard -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27

RE: JK, Session Replication/Clustering, SSL and failover in Tomcat 5

2005-01-27 Thread Richard Mixon (qwest)
Never mind. Sorry for the dumb questions, its in my application ontext. - Richard -Original Message- From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 11:09 AM To: Tomcat Users List Cc: Filip Hanik - Dev [EMAIL PROTECTED] Subject: RE: JK, Session

  1   2   >