Re: transport CONFIDENTIAL based on remote ip/host filter?

2012-06-04 Thread Timothy J Schumacher
Comments inline below. On 6/4/2012 4:18 PM, Konstantin Kolinko wrote: 2012/6/5 Timothy J Schumacher: We make a piece of IT equipment with tomcat running inside serving an application that acts as the administration console for the device. There is also a firefox browser running inside the

Re: transport CONFIDENTIAL based on remote ip/host filter?

2012-06-04 Thread Timothy J Schumacher
See inline comments below. Thanks again for your time! Tim On 6/4/2012 2:35 PM, Konstantin Kolinko wrote: 2012/6/4 Timothy J Schumacher: On 5/31/2012 1:30 PM, Konstantin Kolinko wrote: 2012/5/31 Timothy J Schumacher: Hi, We are using Apache Tomcat 6.0.35 with # java -version java

Re: transport CONFIDENTIAL based on remote ip/host filter?

2012-06-04 Thread Timothy J Schumacher
On 5/31/2012 1:30 PM, Konstantin Kolinko wrote: 2012/5/31 Timothy J Schumacher: Hi, We are using Apache Tomcat 6.0.35 with # java -version java version "1.6.0_30" Java(TM) SE Runtime Environment (build 1.6.0_30-b12) Java HotSpot(TM) Client VM (build 20.5-b03, mixed mode, sharing)

transport CONFIDENTIAL based on remote ip/host filter?

2012-05-31 Thread Timothy J Schumacher
Hi, We are using Apache Tomcat 6.0.35 with # java -version java version "1.6.0_30" Java(TM) SE Runtime Environment (build 1.6.0_30-b12) Java HotSpot(TM) Client VM (build 20.5-b03, mixed mode, sharing) in redhat linux. I am wondering if there is a way to use transport CONFIDENTIAL for all hos

Re: tomcat administration

2010-05-07 Thread Timothy J Schumacher
/2010 18:20, Timothy J Schumacher wrote: I would like to give some test application users ability to start & restart the tomcat server but not the entire admin / manager interface. Actually this is possible in linux at least, though be very wary... No, it's clearly not.

Re: tomcat administration

2010-05-07 Thread Timothy J Schumacher
I would like to give some test application users ability to start & restart the tomcat server but not the entire admin / manager interface. Actually this is possible in linux at least, though be very wary... one can shell out of java and call things using nohup with run in the background (trai

question about single Executor for multiple Connectors

2010-03-11 Thread Timothy J Schumacher
Hi, I am using 6.0.24 with a java 1.6 on an old redhat linux system. I am using httpd in combination with tomcat. All is working as expected but I had a question about something I noticed in my logs. In my server.xml I have set up one Executor and two Connectors (one for port 8080 "http"an

Re: Tomcat 6.0.20 always works in GMT timezone even after forcing it to use Asia/Calcutta by multiple methods.

2009-10-15 Thread Timothy J Schumacher
. Hope this helps, Tim Timothy J Schumacher wrote: Then how come Tomcat alone can respect the UTC enablement in /etc/sysconfig/clock? That is a good question, and not the same as what I observed on my system. I guess maybe try removing the timezone line from that file and restart Tomcat to see

Re: Tomcat 6.0.20 always works in GMT timezone even after forcing it to use Asia/Calcutta by multiple methods.

2009-10-15 Thread Timothy J Schumacher
clock? Regards On Wed, Oct 14, 2009 at 9:37 PM, Timothy J Schumacher < tim.schumac...@colorado.edu> wrote: I'm not sure if it will help with your particular version of java/linux but I had a similar problem with my java/linux and found that in my case the file /etc/sysconfig/clock was o

Re: Tomcat 6.0.20 always works in GMT timezone even after forcing it to use Asia/Calcutta by multiple methods.

2009-10-14 Thread Timothy J Schumacher
I'm not sure if it will help with your particular version of java/linux but I had a similar problem with my java/linux and found that in my case the file /etc/sysconfig/clock was one of the places the JVM looked for a timezone. Setting environment variables and options had no effect, the thing

How do I modify a UserDatabase Resource from my webapp?

2009-08-18 Thread Timothy J Schumacher
Hi, I am using Tomcat 5.5.27 and java 1.5 on an old redhat Linux machine. I have a UserDatabase Resource and a UserDatabaseRealm set up in server.xml and logins are working as expected. I exposed my Resource under name="UserDatabase". In my webapp code I tried invoking an operation using an

migration to 5.5.27

2009-08-05 Thread Timothy J Schumacher
Hi, I am currently running tomcat 5.0.12 and want to upgrade to 5.5.27. I also have java 1.4 running on an old version of linux (redhat 7.3) and I have installed the compatibility package in my tomcat home directory. I can start and stop the server just fine. The trouble I am running into

Re: Newline doesn't work

2009-03-18 Thread Timothy J Schumacher
Try If this is going to be displayed by a browser then try: String newline = ""; -Tim Mighty Tornado wrote: Silly question. I wrote a servlet that gets init params from the web.xml and stuffs them into the request which is the displayed by JSP. But when I try to make it a string with newline

Re: access to all sessions

2008-12-10 Thread Timothy J Schumacher
entation, which supports such a mechanism or patch the existing StandartSession.java. I don't know whether you'd call it easy :-) Leon On Thu, Dec 4, 2008 at 8:09 PM, Timothy J Schumacher <[EMAIL PROTECTED]> wrote: Hi Leon, Thanks for the info. So, if I simply wanted to tell T

multiple copies of jar files

2008-12-09 Thread Timothy J Schumacher
Hi All, TC 5.0.12 java version "1.4.1_04" I have inherited a project that has multiple copies of some jar files under $CATALINA_HOME. In particular the one I noticed first was $CATALINA_HOME/server/lib/catalina.jar $CATALINA_HOME/shared/lib/catalina.jar I am under the impression that having

Re: access to all sessions

2008-12-04 Thread Timothy J Schumacher
accesses to your map and sessions without creating dead locks (since 1.4 doesn't have all the fancy concurrency stuff). regards Leon On Thu, Dec 4, 2008 at 7:32 PM, Timothy J Schumacher <[EMAIL PROTECTED]> wrote: Hi, I have TC 5.0.12 and java 1.4.1_04. Unfortunately, I am stuck

access to all sessions

2008-12-04 Thread Timothy J Schumacher
Hi, I have TC 5.0.12 and java 1.4.1_04. Unfortunately, I am stuck using these versions for now... I am trying to figure out how to access/manipulate all the sessions for my web app. I guess I want something similar to the manager application, but I don't want to have to run the manager app