Re: Bad documentation error on Tomcat 6.0 howto site

2011-09-15 Thread Steve Cohen
On 09/15/2011 08:09 AM, Konstantin Kolinko wrote: 2011/9/15 Steve Cohen: 6.0.20. Yes, it is old... Someone told me that the manager-gui, manager-script stuff was 7.0, I switched it to manager and it worked. So evidently, this was changed in a later 6.0.x version. To me, that seems like

Re: Bad documentation error on Tomcat 6.0 howto site

2011-09-15 Thread Steve Cohen
On 09/15/2011 07:39 AM, Konstantin Kolinko wrote: 2011/9/15 Steve Cohen: There is a bad error on the Tomcat 6.0 documentation website: http://tomcat.apache.org/tomcat-6.0-doc/manager-howto.html#Configuring_Manager_Application_Access They give the 7.0 syntax for manager role names. 6.0

Bad documentation error on Tomcat 6.0 howto site

2011-09-15 Thread Steve Cohen
There is a bad error on the Tomcat 6.0 documentation website: http://tomcat.apache.org/tomcat-6.0-doc/manager-howto.html#Configuring_Manager_Application_Access They give the 7.0 syntax for manager role names. 6.0 requires "manager", not "manager-gui" or "manager-script" and it led astray for s

Re: Tomcat and Outgoing SSL

2009-09-24 Thread Steve Cohen
Caldarale, Charles R wrote: From: Steve Cohen [mailto:sco...@javactivity.org] Subject: Tomcat and Outgoing SSL I would like some way to configure Tomcat This has nothing to do with Tomcat - it plays no role whatsoever in your outbound requests. Whatever certificates you make available

Tomcat and Outgoing SSL

2009-09-23 Thread Steve Cohen
I have an backend application that runs under Tomcat. It does not serve Web pages. It depends on various services that use SSL in one way or another: 1) It connects with a vendor's Web Service over https:, which depends on one of the certificates in the default cacerts file 2) It connects with

Re: [Tomcat] [daemon] java.lang.OutOfMemoryError unable to create new native thread

2009-02-03 Thread Steve Cohen
great tools to monitor your Tomcat installations are: - Jconsole (make sure you get the topthreads plugin) - VisualVM - VisualGC - Jmap Hope that helps. On Tue, 2009-02-03 at 09:31 -0600, Steve Cohen wrote: We have an application that runs under Tomcat under RHEL 5.0 and is launched by a jsvc d

[Tomcat] [daemon] java.lang.OutOfMemoryError unable to create new native thread

2009-02-03 Thread Steve Cohen
We have an application that runs under Tomcat under RHEL 5.0 and is launched by a jsvc daemon. It chugs along seemingly fine on several servers, yet yesterday crashed on one of them with the above exception seemingly without experiencing any kind of abnormal load. I am trying to get a handle o

Client Side TLS Cert in app running under Tomcat

2008-12-05 Thread Steve Cohen
A simple question hopefully: An application running on Tomcat 6.0 on RHEL 5.0 needs is a client of https: protected Web Service that requires a TLS certificate which the Service Vendor will supply. Where and how should the TLS certificate be installed? Is this an OS thing, a Tomcat thing, o

Re: HELP!!! java.lang.NoClassDefFoundError running CXF-based client in Tomcat

2008-11-26 Thread Steve Cohen
ialog. Make sure all the jars you want in "WEB-INF/lib" at runtime are checked. Cheers, Larry -Original Message- From: Steve Cohen [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2008 11:44 AM To: Tomcat Users List Subject: Re: HELP!!! java.lang.NoClassDefFoundError runnin

Re: HELP!!! java.lang.NoClassDefFoundError running CXF-based client inTomcat

2008-11-26 Thread Steve Cohen
It's the Real Tomcat, but running inside Eclipse WTP, which starts and stops the server. Caldarale, Charles R wrote: From: Steve Cohen [mailto:[EMAIL PROTECTED] Subject: Re: HELP!!! java.lang.NoClassDefFoundError running CXF-based client inTomcat Another piece of information I omitted

Re: HELP!!! java.lang.NoClassDefFoundError running CXF-based client inTomcat

2008-11-26 Thread Steve Cohen
to do about it if this is the cause. This would be the first time we've tried adding a SOAP client to this application, so it seems likely that this is the case. Caldarale, Charles R wrote: From: Steve Cohen [mailto:[EMAIL PROTECTED] Subject: HELP!!! java.lang.NoClassDefFoundError running

Re: HELP!!! java.lang.NoClassDefFoundError running CXF-based client inTomcat

2008-11-26 Thread Steve Cohen
Tomcat version is 6.0.16. Sorry for not mentioning it originally. Thanks. Caldarale, Charles R wrote: From: Steve Cohen [mailto:[EMAIL PROTECTED] Subject: HELP!!! java.lang.NoClassDefFoundError running CXF-based client inTomcat I am beginning to think the problem is not a missing class but a

HELP!!! java.lang.NoClassDefFoundError running CXF-based client in Tomcat

2008-11-26 Thread Steve Cohen
(Cross-posted on Apache CXF Mailing List) I have developed a Client for accessing a vendor's Web Service. The client is based on the CXF framework, built with source code generated from a Maven-based pom.xml and the vendor's WSDL. I ran this client in a standalone JUnit test and found it to

Re: stupid tomcat/eclipse question

2008-09-09 Thread Steve Cohen
ase of TC 6. -Original Message- From: Steve Cohen <[EMAIL PROTECTED]> To: Tomcat Users List Sent: Mon, 8 Sep 2008 11:03 pm Subject: stupid tomcat/eclipse question I've had a stable development environment running Tomcat 6.0 within Eclipse 3.3. I did something stupid to c

Re: Need help with Tomcat MBean support - SOLVED

2008-09-08 Thread Steve Cohen
0-doc/monitoring.html. I finally realized that if Ant can invoke an operation, so could a non-Ant executable. From there a simple peek at the jmx ant task source code showed me what I needed to do. Voila! Gotta love open source - once you figure out where to look. Thank you to all who helped. Steve

Language/Locale processing within Tomcat

2008-09-08 Thread Steve Cohen
I've just realized I have a problem with my application running in Tomcat related to Spanish-language text input by the users. When running my application on an Ubuntu 7.10 platform, I have no problems with Spanish language characters. When I run the same application on the production RHEL 5

Re: stupid tomcat/eclipse question

2008-09-08 Thread Steve Cohen
ddition by subtraction. D'oh! Larry Isaacs wrote: -Original Message----- From: Steve Cohen [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2008 1:34 PM To: Tomcat Users List Subject: stupid tomcat/eclipse question I've had a stable development environment running Tomcat 6.0 wi

Re: Need help with Tomcat MBean support

2008-09-08 Thread Steve Cohen
know how to do it. 2. If so, how do I surmount these ClassLoader issues? Thank you very much. Steve Cohen wrote: Okay using approach of first article. The MBean server is correctly initialized and everything on the server side looks good. Now we come to the client side. The first article as

stupid tomcat/eclipse question

2008-09-08 Thread Steve Cohen
I've had a stable development environment running Tomcat 6.0 within Eclipse 3.3. I did something stupid to configuration and now I can't get away from this error as soon as the server starts. java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native

Re: Need help with Tomcat MBean support

2008-09-06 Thread Steve Cohen
of createMBean(), one that specifies some other Class Loader but I have no clue what I should be using for that. H. Hall wrote: Steve Cohen wrote: Let me ask my question a little more directly: Does the presence of a descriptor cause instantiation of an instance of an MBean or do I have

Re: jsvc creates pid file owned by root

2008-09-05 Thread Steve Cohen
[EMAIL PROTECTED] wrote: See Thread at: http://www.techienuggets.com/Detail?tx=31984 Posted on behalf of a User You shouldn't be messing about with the ownership of the PID file. It is created by jsvc at startup. If you use jsvc properly it will start as root, create the pid file, startup to

Re: Need help with Tomcat MBean support

2008-09-05 Thread Steve Cohen
t needed 2 - use the commons-modeler xml-file approach (question remains what support, if any, Tomcat provides for this). Do I have this right? H. Hall wrote: Steve Cohen wrote: Let me ask my question a little more directly: Does the presence of a descriptor cause instantiation of an insta

Re: Need help with Tomcat MBean support

2008-09-04 Thread Steve Cohen
this instantiation to happen? Steve Cohen wrote: H. Hall wrote: Okay, thanks again. This got me off square one. Now on to square two. :-) 1. I compose a legal mbeans-descriptor.xml file configuring my MBean according to DTD. I place it in the domain "Catalina". Don't k

Re: Need help with Tomcat MBean support

2008-09-04 Thread Steve Cohen
und within that Domain and the Client app also fails - with a ClassNotFoundException. Is there a preexisting domain within Tomcat to which I should attach my mbean? If not, what must I do to get my mbean found. Steve Cohen wrote: I am trying to write a custom MBean to put a particular f

Re: Need help with Tomcat MBean support

2008-09-04 Thread Steve Cohen
Soon as I get out of this time crunch I will try to do so. Mark Thomas wrote: Steve Cohen wrote: Thank you very much - this is exactly what I was looking for. And a word to the Tomcat team - Documentation would be much improved by simply mentioning the two links provided by Mr. Hall

Re: Need help with Tomcat MBean support

2008-09-04 Thread Steve Cohen
Thank you very much - this is exactly what I was looking for. And a word to the Tomcat team - Documentation would be much improved by simply mentioning the two links provided by Mr. Hall. H. Hall wrote: Steve Cohen wrote: I am trying to write a custom MBean to put a particular function of

Need help with Tomcat MBean support

2008-09-04 Thread Steve Cohen
I am trying to write a custom MBean to put a particular function of our application under management control This application is currently deployed under Tomcat 6.0. I do not need remote monitoring/management. Local management will do. I am perfectly happy to invoke my management function t