tomcat unable to parse HTTP GET variables if & is replaced with %2526

2005-10-11 Thread Isaacson, David A. (James Tower)
Running apache: httpd-2.0.46-46.3.ent tomcat: jakarta-tomcat-4.1.30 using the mod_jk connector. Earlier yesterday we started recieving the following error. java.lang.NumberFormatException: For input string: "88%26order=44%26start=3%26end=3" The page started to get refered to by

Re: Multipart Request

2005-10-08 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dhiren Bhatia wrote: > Hi all, > I'm having trouble with the HttpServletRequest object if my post contains > multipart data. The request object loses all the parameters set from the > html form. > i.e. request.getParameter("myParam"); always returns n

Turning on debugging in Tomcat 5.5

2005-10-06 Thread James Rome
Most of the installed Tomcat classes have something like container.isDebugEnabled() {...} How do I enable these debug statements in Tomcat 5.5? Thanks, Jim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Certificate authentication

2005-10-04 Thread James Rome
I have looked at the source code and it seems to me that presented client certificates are only checked for their validity dates, and NOT for whether they have been revoked. I am able to access my Tomcat site with a revoked certificate. It is easy to implement OCSP and/or CRL checking, so I implem

Re: How to PreCompile JSPs

2005-09-29 Thread James Black
t ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFDPAIUikQgpVn8xrARAjqMAJ9zT3FPwhgnXPGyG9XvrAmlptzzBQCeNfz5 9s+G7lFVcWAObuJZ5L0YYSw=

Realms and certificates

2005-09-28 Thread James Rome
None of the standard realms do certificates properly. For example, o.a.c.authenticator.SSLAuthenticator.java does not check to see if a certificate has been revoked. The LDAP realm compares the presented certificate to the one in the LDAP which puts a burden on the LDAP to unpublish revoked certifi

Re: tomcat exception handling

2005-09-26 Thread James Cowan
thanks. that is what I am looking for. James - Original Message - From: "Alon Belman" <[EMAIL PROTECTED]> To: "Tomcat Users List" ; "James Cowan" <[EMAIL PROTECTED]> Sent: Friday, September 23, 2005 10:41 PM Subject: Re: tomcat exception hand

Re: tomcat exception handling

2005-09-23 Thread James Cowan
thanks for the reply. I tried that but it does not seem to make any difference. what version of tomcat are you using? James - Original Message - From: "Jilles van Gurp" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, September 22, 2005 5

tomcat exception handling

2005-09-22 Thread James Cowan
rapper.java:3 24) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) I just want the HTTP 500 error displayed and no more informati

setting MIME types on a per application basis

2005-09-22 Thread James Annesley
is the correct format for the .war file and web.xml entries? Bare in mind that I am not talking about a servlet here. Thanks James -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.344 / Virus Database: 267.11.4/109 - Release Date: 21/09/2005

Re: Using a custom Manager class

2005-09-19 Thread James Shaw
On 19/09/05, James Shaw <[EMAIL PROTECTED]> wrote: > I want to persuade tomcat to use a custom manager. > > My $CATALINA_HOME/conf/context.xml looks like this: > > > > WEB-INF/web.xml > > > > > Sorry, false alarm. Just rememb

Using a custom Manager class

2005-09-19 Thread James Shaw
ctory should I put the classes in? Thanks James Shaw - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Session timeout issues

2005-09-16 Thread James Shaw
attribute on the element? The documentation just says "Set this attribute to true if you wish to have calls to request.isSecure() to return true for requests received" Thanks James Shaw > > On 9/15/05, James Shaw <[EMAIL PROTECTED]> wrote: > > On 14/09/05, James Shaw

Re: Specify work folder for each application

2005-09-16 Thread James Shaw
er outside the project. In Eclipse 3.0 > I did this using some mapping external resource. But in 3.1 I couldn't > find this option. > This isn't really Tomcat related, but you should be able to 'link' the work directory into the project by choosing 'New Folder',

Re: Session timeout issues

2005-09-15 Thread James Shaw
On 14/09/05, James Shaw <[EMAIL PROTECTED]> wrote: > I have two issues relating to sessions: > > 1) Sessions seem to be expired too soon. This happens very > infrequently for me (perhaps 1 in 1000 requests). I'm adding some > HttpSessionListeners and HttpSessionAttrib

Session timeout issues

2005-09-14 Thread James Shaw
nformation to really diagnose the problem but I'm hoping that you may be able to give me some suggestions for what to do next. Thanks in advance James Shaw - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Apache with Trust and Keystore files

2005-09-07 Thread James R. Marcus
How does Apache2 work with Trust and Key store files that Tomcat is using for SSL? Does any one know of a good doc? I'm using SSL mod_jk apache2 and tomcat 5 Thanks, James - To unsubscribe, e-mail: [EMAIL PROTECTED

Apache httpd Tomcat 5 and SSL

2005-09-06 Thread James R. Marcus
t all my configurations and detailed explanation, I'll just ask are there any good How-Tos or examples of dealing with SSL in this situation. Should SSL even be turned on in Apache httpd? All I need Apache httpd to do is pass the client traffic to Tomcat and ba

re: on adjusting incoming queue

2005-08-29 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - From what I understand there are two queues in Tomcat, and incoming queue and an execution queue. It appears tomcat is rejecting some clients when too many people try to hit my server at one time. During this time the cpu utilization was about 80%-95

Sorry! Miss tomcat version for the customer Valve issue!

2005-08-25 Thread James Liao
Hi all, My tomcat version is 5.0.30 and JDK 1.4.2_08 on Windows XP. I want to add customer valve which extends ValveBase. I want it to be invoked after the AuthenticatorBase Valve(like BasicAuthenticator, DigestAuthenticator, FormAuthenticator, NonLoginAuthenticator, SSLAuthenticator). Can I achie

How to add a valve after AuthenticatorBase Valve?

2005-08-25 Thread James Liao
Context, server.xml's Host and Engine. But my valve always be invoked before the AuthenticatorBase Valve. Any help would be very appreciated! - James Liao - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: Tomcat application won't start with MySQL Connection Pooling

2005-08-08 Thread James Adams
ect MySQL DBCP configuration, just not the right Spring configuration for accessing it via JNDI. Thanks again for your help with this. --James __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

RE: Tomcat application won't start with MySQL Connection Pooling

2005-08-05 Thread James Adams
try? --- META-INF/context.xml - Thanks in advance for any further help/insight... --James __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Tomcat application won't start with MySQL Connection Pooling

2005-08-05 Thread James Adams
Thanks in advance for any help with this! --James __ Yahoo! Mail for Mobile Take Yahoo! Mail with you! Check email on your mobile phone. http://mobile.yahoo.com/learn/mail -

re: how do others deal with classloader not being recycled

2005-07-27 Thread James Black
do, in production, because of this issue? We are going to be doing some testing to see about optimizing the memory allocation, but I am curious how others handle this. Thanx. - -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED]

Serving .jsp's from other dirs (newbie)

2005-07-12 Thread James Coletti
Hello all, Im a bit new to Tomcat and interoperation with Apache thru mod_jk... I seem to have most of it setup. Im running Apache 1.3.33 and Tomcat 5.5.9 on Solaris 10 x86 I'm trying to get .jsp scripts to run within directories of my choice, rather than the default examples dir. In httpd.conf

re: is this issue in the faq still correct wrt Tomcat 5.5.9?

2005-07-08 Thread James Black
redeployment. Thanx. - -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.

Datasource & Drivers Question

2005-07-07 Thread James Reynolds
mcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSourc e.java:540) at com.sun.sql.rowset.internal.CachedRowSetXReader.connect(CachedRowSetXRea der.java:300) ... I can provide further stack trace entries if they are of any

RE: Oracle Drivers that work with Tomcat 5.5.x

2005-07-01 Thread James Reynolds
mcat Users List Subject: Oracle Drivers that work with Tomcat 5.5.x James, > > Is anyone else using Tomcat, Oracle & Java Studio Creator together? > How did you do it? We use Qilan, an Mac OS X web application. We routinely access Oracle with the Oracle thin class12 JDBC driver

Oracle Drivers that work with Tomcat 5.5.x and Sun Java Studio Creator

2005-07-01 Thread James Reynolds
I'm using Sun's Java Studio Creator to create a javaserver faces application that I want to deploy to Tomcat. If I use the drivers included with the IDE, Tomcat throws the following error: javax.servlet.ServletException: javax.faces.FacesException: Can't instantiate class: 'insertupdatedelete.Pa

Re: Please help with PermGen OutOfMemory error

2005-06-27 Thread James Black
, but I will need to check if there is some memory leak otherwise. Thanx. - -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.1 (MingW32) Comment: Using GnuPG with Thun

Re: Please help with PermGen OutOfMemory error

2005-06-27 Thread James Black
webapp into my webapps directory. After about 5-8 new versions within a few hours then I get this error and have to restart tomcat. - -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG

RE: Error Running Tomcat 5.0.28 Service on Win2K3

2005-05-17 Thread Jackson James W MAJ MNF-I CIS KM Portal Manager
ost likely logged in as Admin with all the rights in the world. Have you tried setting the service to run as the Admin account (for testing only) as opposed to System? Does SYSTEM have access to the Tomcat files? DW --- Jackson James W MAJ MNF-I CIS KM Portal Manager <[EMAIL PROTECTED]> wrote:

Error Running Tomcat 5.0.28 Service on Win2K3

2005-05-15 Thread Jackson James W MAJ MNF-I CIS KM Portal Manager
We've already checked the web, the FAQ, and the archive for starting Tomcat as a service on Win2K3 as a PDC (primary domain controller) with no luck. We installed Tomcat 5.0.28 (port 80) as a service on Win2K3 (1 GB RAM) with J2SDK 1.4.2_05. Win2K3 is running AD (active directory), DNS, DHCP, and

Tomcat Admin Question

2005-04-25 Thread James Croft
ge to use it. I've had a look around the Jakarta site and can't find this package. Anyone know where I can find this? TIA, James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat ssl configuration

2005-04-04 Thread James T. Studebaker
Did you create the keystore while logged on as the root user? Thank you James T. Studebaker - Original Message - From: "Mustafa BÖLÜKBAŞ" <[EMAIL PROTECTED]> To: Sent: Monday, April 04, 2005 8:24 AM Subject: tomcat ssl configuration I use tomcat 5.0.28 on linux, my

Tomcat / Broswer interaction question

2005-04-01 Thread James Sherwood
Hello, Is there a way to have tomcat monitor a port or socket for incomming events, then from those events, talk to a currently open broswer in javascript events? Thanks in advance, James - To unsubscribe, e-mail: [EMAIL

RE: Apache as front-end for several tomcat

2005-03-30 Thread Montz, James C. (James Tower)
Are the Tomcat instance running on the same physical server and you are just using IP Aliases, or are the workers running on 3 sperate backend machines? You apache config looks OK, so I don't believe its an issue with Apache Virtual Host configuration. I believe all work in being forwarded to Demo

Re: Data file owner and group difficulties

2005-03-30 Thread James T. Studebaker
owner:group of their own accounts. Can this be done? Thank you James T. Studebaker - Original Message - From: "QM" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, March 30, 2005 7:15 AM Subject: Re: Data file owner and group difficulties On Tue, Mar 29

Data file owner and group difficulties

2005-03-29 Thread James T. Studebaker
My servlets create data files.  The webapp is running on a Linux system.  The app user is jims and my group is jims.  I have to set permissions to 777 in order for tomcat to read data files.  When data files are created, the user is tomcat and the group is nobody.  As a result my servlets

Re: Configuration of https in tomcat failure

2005-03-16 Thread James T. Studebaker
IE displays: The page cannot be displayed No errors in the log files. I do not have a tool to trace packets. The firewall does not block port 8443. Here is connectors in server.xml: How do I view the certificate with keytool? Thank you James T. Studebaker - Original Message

Configuration of https in tomcat failure

2005-03-16 Thread James T. Studebaker
I have tried over and over again to configure https for tomcat using the instructions found on the apache tomcat web site.  I am unable to get https to work.  I am running tomcat on a linux core 2 server, version 5.0.28 tomcat and version 1.4.2_05 jdk.  I am lost.  Help. Thank youJames T. S

RE: Why so much virtual memory?

2005-03-14 Thread Montz, James C. (James Tower)
On a related note, It would appear to me that java is not adhering to the -Xmx option; I have several instances that report using 3-4X RSS Memory what -Xmx is set to. For example, Instance1: CATALINA_OPTS="-sqerver -Xms64m -Xmx128m" PS Ouput: USER%CPU%MEMVSZ RS

how do I correct keytool error

2005-03-13 Thread James T. Studebaker
I ran the keytool utility to create a self signed certificate.  I used the changeit password.  The utility completed successfully.  However when I used the keytool -list command I get the following error:   keytool error: java.io.IOException: Keystore was tampered with, or password was inco

James Richardson is out of the office.

2005-03-10 Thread James Richardson
I will be Out of the Office Start Date: 10/03/2005. End Date: 14/03/2005. I will respond to your message when I return. -- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the

Re: How to access web site from other computers

2005-03-09 Thread James T. Studebaker
When you type in http://dummy.dnsalias.net/web/JSP/login.html in the IE do you get a tomcat error or do you get a "The page cannot be displayed" or do you get some other error? Thank you James T. Studebaker - Original Message - From: "U K Laxmi" <[EMAIL PROTEC

Re: application can not reconnect when database restarts

2005-03-08 Thread James Sys
u in the right direction. Good luck. Regards, James. ===== Hi James, In mine case I am using jdbc:oracle:thin driver class oracle.jdbc.driver.OracleDriver and going through Tomcat doc I can only guess for reconnecting to datbase a parameter tag in Context tag can solve the issue. validationQuer

Re: Tomcat 4.1.30 crashing on production site - need help

2005-03-07 Thread James Sys
e are various tools around to check object allocation and release. So if you see objects of a certain type have a gradually increasing number, you may well have a memory leak. Hope this helps. Regards, James. = Hi All, For the past couple of months we have been facing a peculiar problem o

Re: application can not reconnect when database restarts

2005-03-07 Thread James Sys
lhost:3306/MyDatabase?autoReconnect=true ...which seems to do the trick for us. Regards. James. = Hi, I am using Apache Tomcat/4.1.27. Problem: when datbase restarts connection is not established. Connection pool is done by Tomcat using DBCP. Context congiguration under server.xml f

Re: how to make manager available to each virtual host

2005-02-28 Thread James T. Studebaker
Bingo!! That did it. Thanks. Thank you James T. Studebaker - Original Message - From: "alis asma alias" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Monday, February 28, 2005 4:12 AM Subject: Re: how to make manager available to each virtual host

how to make manager available to each virtual host

2005-02-27 Thread James T. Studebaker
I am running tomcat 5.0.28 on a linux fedora core 2 machine.  I have configured virtual hosts for tomcat.  I wish to make the manager application available to each vertual host that  I have configured so that users can deploy applications to their account.  What I did is add a context to e

Re: Tomcat 5.0.28 and ssl

2005-02-23 Thread James Sys
I've had the same experience. The fix was to use our domain name in the name fields requested by the csr tool. Hope this helps. Regards, James. = I am not sure, this may have nothing to do with it but On the documentation I read it said you should use your domain name for the firs

RE: Load balancing SSL sessions

2005-02-23 Thread James Richardson
h to do the load balancing. It can do sticky load balancing, and if a server fails then coherence will ensure that your other boxes still have the session state. http://www.foundrynet.com/products/webswitches/serveriron/ http://www.tangosol.com/coherence-uses-a.jsp Best Regards, James ---

RE: Sniffing loaclhost traffic for HHTP headers

2005-02-21 Thread James Richardson
Depending on why you want to do this, you might find this useful: Its normally commented out in the server.xml, simply uncomment to dump out the requests. Cheers James > -Original Message- > From: Marco Mastrocinque [mailto:[EMAIL PROTECTED] > Sent: 21 February 2005 1

RE: Restart-On-Failure for Tomcat?

2005-02-07 Thread James Richardson
instances, and be alerted on state changes etc. It would be a bit of coding though James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: 403 Forbidden

2005-01-27 Thread James Sys
Hi Soren and Wendy, I wondered if either of you have made progress with this problem. It's so= mething I too would like to use, so I'm keen to pick your brains. Thanks, James. -- Have you tried this. WEB_INF/web.xml 403 /errorpages/403.jsp From: Sør

Tomcat 4.1.24, Classloader problems

2005-01-17 Thread James Milks
Hi all, Having a weird problem that is driving me nuts. In the past week, every time I update a supporting class (Not a servlet or JSP) and refresh my page, I get all kinds of null pointer exceptions and must log out and back into my application or restart Tomcat. This is a pain in development. FY

RE: HttpSession usage

2005-01-17 Thread James Milks
FYI - putAttribute() has been depricated and you shoud use setAttribute() when working with sessions. -Original Message- From: Pawson, David [mailto:[EMAIL PROTECTED] Sent: January 17, 2005 4:37 AM To: Tomcat Users List Subject: RE: HttpSession usage Sounds to me like you need to d

Custom Socket Factory in 5.0.28

2005-01-10 Thread James Richardson
xt element, but couldn't find any more about it. If anybody could point me in the right direction, would be much appreciative. Thanks! James package com.db.es.jxta.tomcat.connector; import org.apache.catalina.net.ServerSocketFactory; import org.p2psockets.P2PServerSocket; import org.p

Still need help! - DBCP/DB2/Tomcat 4.1.24 problem!

2004-12-23 Thread James Milks
Hi, despite the fact that I did get some responses (and a thread hijack), I am still trying to solve this. Any help appreciated. I am trying to get DBCP connection pooling to work with Tomcat 4.1.24 and DB2 8.X. I can connect directly, but whenever I try to use DBCP, I receive a "Cannot load driv

RE: DBCP/DB2/Tomcat 4.1.24 problem!

2004-12-21 Thread James Milks
Hi Andreas, I think your comments would help me if I was having the opposite problem. In other words, if I was using the Class.forName... That works fine, it is the DBCP code that is failing. James -Original Message- From: Andreas Vombach [mailto:[EMAIL PROTECTED] Sent: December 21

DBCP/DB2/Tomcat 4.1.24 problem!

2004-12-20 Thread James Milks
Hi, I am trying to get DBCP connection pooling to work with Tomcat 4.1.24 and DB2 8.X. I can connect directly, but whenever I try to use DBCP, I receive a "Cannot load driver class 'null'" error. The DB2 and JNDI jar files are located in \common\lib. This code snippet works: ... String url = "jdbc

Log File Rotation in Tomcat 4.1?

2004-12-14 Thread Montz, James C. (James Tower)
). Thanks! James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat 5.5 / Admin How ?

2004-12-14 Thread Montz, James C. (James Tower)
Just verified; Tomcat 5.5.6 Does resolve the Service Tree Issue On a side note, save yourself some trouble/work by altering the 5.5.6 installation path to; C:\Program Files\Apache Software Foundation\jakarta-tomcat-5.5.6 Then just extract jakarta-tomcat-5.5.6-admin.zip to C:\Program Files\Apache

RE: Log on linux

2004-12-14 Thread Montz, James C. (James Tower)
I don't believe this is Tomcat at all, and is more likely the result of a log rotation application. What Linux Distribution are you using? RedHat uses an application called logrotate. Sounds to me like you are either; Writing your logs to some place like /var/log You have a logrotate entry defin

Tomcat Admin Tool Server::Service Drop Down not Populating (was RE: Tomcat Administration Application)

2004-12-13 Thread Montz, James C. (James Tower)
r 13, 2004 12:27 PM To: Tomcat Users List Subject: RE: Tomcat Administration Application James, Thanks for that. That's done the trick. Dunno why there was not a valid admin.xml file as there is on the Windows install. However, I still have a problem. I'd expect to see a tree a bit like

RE: Tomcat Administration Application

2004-12-13 Thread Montz, James C. (James Tower)
page in \webapps\ROOT\admin\ -Original Message- From: Kelly, Steve [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 2:52 PM To: Tomcat Users List Subject: RE: Tomcat Administration Application James, I'm on RedHat Linux V9. Everything (tomcat and the admin packag

RE: Tomcat Administration Application

2004-12-10 Thread Montz, James C. (James Tower)
Drag & Drop those directory contents to the true tomcat installation directory. Perhaps the .zip could be re-packaged and remove the path jakarta-tomcat-5.5.4 from the archive? This would allow users to simply unzip admin.zip into their installation directory. James -Original Mes

Re: prevent multiple form posts using only servlets

2004-12-09 Thread James Black
form, and ignore duplicate names. - -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.5 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBu

Re: [OT] connecting a profiler (WAS: Re: Connector debug)

2004-12-07 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 QM wrote: | I've changed the subject, since this your question is effectively a new | train of thought. | | On Tue, Dec 07, 2004 at 11:08:58AM -0800, Sunitha Kumar wrote: | : Is there a way we could attach a debugger to an already running instance | : o

RE: liberaries

2004-12-02 Thread James Peterson
there is also servlet-api.jar somewhere in /tomcat/common/lib. Either one should do the trick. -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com James Peterson wrote: > ok I am trying to recompile one of the examples that comes with tomcat

liberaries

2004-12-02 Thread James Peterson
or how can I fix this? -- James Peterson Network Administrator Roman Meal Milling Company Phone 701.282.9656 Fax 701.282.9743 Email [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

RE: not starting up

2004-12-02 Thread James Peterson
ok I figured out the errors I had to upgrade from libc6-2.2.3 to libc6-2.2.5 -Original Message- From: James Peterson [mailto:[EMAIL PROTECTED] Sent: Thursday, December 02, 2004 8:55 AM To: Tomcat Users List Subject: RE: not starting up ok I looked at the logs and updated java to 1.5.0

RE: not starting up

2004-12-02 Thread James Peterson
-Original Message- >From: James Peterson [mailto:[EMAIL PROTECTED] >Sent: Thursday, December 02, 2004 9:27 AM >To: [EMAIL PROTECTED] >Subject: not starting up > >I am having a problem getting Tomcat to stay up. > >I do the following command >$: ./startup.sh star

not starting up

2004-12-02 Thread James Peterson
CATALINA_TMPDIR: /usr/src/jakarta-tomcat-5.5.4-src/jakarta-tomcat-5/build/temp Using JAVA_HOME: /opt/jdk1.5.0/ and nothing shows up under ps aux. any help please -- James Peterson Network Administrator Roman Meal Milling Company Phone 701.282.9656 Fax 701.282.9743 Email [EMAIL PROTECTED

FW: JK2 Errors

2004-10-27 Thread James McGovern
Think I have a solution to the errors I have been experiencing. I found a configuration that was causing problems for another user in the tomcat forum and figured I would be silly and try it myself. Suprisingly, it worked. Get a couple deprecated errors on startup of apache but hasn't returned a r

RE: Random 500 errors

2004-10-27 Thread James McGovern
xml ? If you could also post any of the other info that I mentioned in my last post, I'm sure this would improve the chances of someone being able to help you :) > -Original Message- > From: James McGovern [mailto:[EMAIL PROTECTED] > Sent: Wednesday 27 October 2004 01:02 &g

RE: Random 500 errors

2004-10-27 Thread James McGovern
10:34 PM To: [EMAIL PROTECTED] Subject: Re: Random 500 errors "James McGovern" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I am currently running Apache 2.0.48 with JK2 and Tomcat 5.0.28 on Redhat > Enterprise 2.1 and experience random 500 errors. I am g

RE: Random 500 errors

2004-10-26 Thread James McGovern
you configured your own? Can you give an example URL that triggers the 500, and your web.xml config (esp your servlet mappings)? > -----Original Message- > From: James McGovern [mailto:[EMAIL PROTECTED] > Sent: Tuesday 26 October 2004 11:55 > To: [EMAIL PROTECTED] > Subject: Ran

Random 500 errors

2004-10-26 Thread James McGovern
I am currently running Apache 2.0.48 with JK2 and Tomcat 5.0.28 on Redhat Enterprise 2.1 and experience random 500 errors. I am getting them for GIFs files and other non Java related access. I am not finding anything in the error logs to indicate the problem. The access log does show the file with

re: performance difference between tomcat 5.0 and 5.5?

2004-10-22 Thread James Black
rvice that will be used constantly, and needs to be fast. Thank you. -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: null array in FileDirContext?

2004-10-15 Thread James Clark
Shapira, Yoav wrote: Hi, We shouldn't crash with an NPE, regardless, but out of curiosity, are there actually any files in your docBase? Yes, the structure is like this: WEB-INF classes com/dimins/so-on-and-so-forth lib diveline.jar web.xml cacheroot pages header.j

null array in FileDirContext?

2004-10-15 Thread James Clark
I just added the following line to my in server.xml: And now Tomcat crashes upon startup, with the following in 'stdout.log': java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) Caused by: java.lang.NullPointerException at java.uti

re: optimizing Tomcat 5 for webservices, that is using encryption

2004-10-14 Thread James Black
When I had rolled out my application, where the client is on about 400 machines, we ran into problems when the useage was too high, but didn't have time to figure out what was going on. One thing I noticed is that one field in the webservice may be encrypted, and decrypting is a slow operation,

RE: mod_jk2 Ready/Recommended For Production?

2004-10-14 Thread Montz, James C. (James Tower)
On a somewhat related note; Anyone have best practices/recommendations on handling traditional .htaccess control on content? I don't particularly care to have the 2 separate layers of security, purely from an ease of administration perspective. .htaccess controls are totally bypassed when request

RE: Tomcat 5 pause (free gmail account for fix :-)

2004-10-14 Thread Montz, James C. (James Tower)
Are you defining any Memory Min/Max (-Xms/-Xmx) constraints on the JVM? Are you collecting any verbose GC information (-verbose:gc)? How much physical memory available on the machine? At times of 100% CPU Utilization, is it java that is consumnig the majority of it? -Original Message- F

RE: Help with mod_jk2

2004-10-14 Thread Montz, James C. (James Tower)
I set the Apache Vhost DocumentRoot to the same directory where the JSP pages reside; i.e. DocumentRoot /home/tomcatapp/webapps/ROOT -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 1:22 PM To: Tomcat Users List Subject: RE: Help with

RE: administration webapp

2004-10-14 Thread Montz, James C. (James Tower)
In server.xml, I'm not exactly sure what MD2 is. I know what MD5 is, and it's clear that your passwords in tomcat-users.xml are clear text. Try removing digest= from Realm and restart. -Original Message- From: Michael Simpson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 7

RE: Help with mod_jk2

2004-10-14 Thread Montz, James C. (James Tower)
Just a simple questions, then an answer. If you are front-ending Tomcat with a web server, why are you passing things like .html, .gif, .jpg, etc. to Tomcat to process? The web server itself is a bit more efficient in handling this content. Secondly, what web server front end are you using? On

RE: Apache MaxClients vs. what in JK2 configuration?

2004-10-13 Thread Montz, James C. (James Tower)
I believe the equivalent is maxProcessors -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13, 2004 11:41 AM To: Tomcat Users List Subject: Re: Apache MaxClients vs. what in JK2 configuration? Is the answer to this, that the associated connec

allowTrace noSuchMethodException in Multiple Instace Admin TC 4.1.30

2004-10-11 Thread Montz, James C. (James Tower)
fine (can view/modify/save changes) Context path of ~/webapps/admin.xml statically maps Context path for admin Context. Using Sun J2SDK 1.4.2_05 Anyone run into this? Know a solution? Thanks! __ James jcmontz AT jamestow

RE: Simple server.xml config question... AJP13 Connector vs. CoyoteConnector

2004-09-21 Thread Montz, James C. (James Tower)
two connectors are not mutually exclusive. Whether they're redundant depends on your requirements. Yoav Shapira Millennium Research Informatics >-Original Message- >From: Montz, James C. (James Tower) [mailto:[EMAIL PROTECTED] >Sent: Monday, September 20, 2004 6:43 PM >To:

Simple server.xml config question... AJP13 Connector vs. CoyoteConnector

2004-09-20 Thread Montz, James C. (James Tower)
dled the inter process communication for Apache to Tomcat. Thanks, James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Relative redirects: Tomcat 5 using machine local hostname instead of the FQDN fr

2004-09-09 Thread James Pope
in advance! -- James _ MSN Search, le moteur de recherche qui pense comme vous ! http://search.msn.fr - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: Reading Servlet OutputStream

2004-08-31 Thread James Sherwood
I am not using JSP, I am using Tapestry, any other ideas on how to accomplish this? James - Original Message - From: "John Villar" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, August 31, 2004 1:31 PM Subject:

Re: Reading Servlet OutputStream

2004-08-31 Thread James Sherwood
I am in roughly the same boat as you John as I need to manipulate the response. I cannot find a pushBody method for HttpServletResponse:( James - Original Message - From: "John Villar" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent

How to view what is sent to the browser

2004-08-31 Thread James Sherwood
I am looking for a way to view what is being sent to the browser in the servlet. Lets say I want to create a bad word filter(and cannot use an actual filter) once I get the response, is there a way to manipulate it before it is sent to the browser? Thanks, James

Re: MySql driver not available in JSP.

2004-08-23 Thread James Black
F/lib directory, perhaps? -- "Love is mutual self-giving that ends in self-recovery." Fulton Sheen James Black[EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Mod JK - RedHat Enterprise 2.1 - Tomcat

2004-08-16 Thread McGovern, James F (HTSC, IT)
Thanks for the various URLs. Was hoping that I would get a better answer than having to find source and compile or reinstall. Those answers are what I expect from MS. Was hoping for a simple get patch here download. This communication, including attachments, is for the exclusive use of address

RE: Mod JK - RedHat Enterprise 2.1 - Tomcat

2004-08-16 Thread McGovern, James F (HTSC, IT)
: Mod JK - RedHat Enterprise 2.1 - Tomcat I would suggest building it yourself, that way you are guaranteed to get the right one. Ta Matt -Original Message- From: McGovern, James F (HTSC, IT) [mailto:[EMAIL PROTECTED] Sent: 16 August 2004 18:42 To: '[EMAIL PROTECTED]' Subje

  1   2   3   4   5   6   7   8   9   >