Re: .net web service client calling Tomcat 7

2013-06-05 Thread André Warnier
Bean William R wrote: Is there a RFC that describes best behaviour of server and client in this situation? My guess is that the disagreement comes somewhere in RFC 2616 section 8.2.3 - Use of the 100 (Continue) Status. http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html On my opinion

Re: SlowQueryReport

2013-06-05 Thread Lutischán Ferenc
Dear Daniel, Thanks for your reply. My Tomcat version is 7.0.35. It is under CentOS 5.8. My datasource config is: Resource name=jdbc/xxx auth=Container driverClassName=org.postgresql.Driver factory=org.apache.tomcat.jdbc.pool.DataSourceFactory initialSize=1 maxIdle=20 maxActive=20

Re: CORS on Tomcat?

2013-06-05 Thread Mark Thomas
On 21/05/2013 17:20, Leo Donahue - RDSA IT wrote: -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: CORS on Tomcat? -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Leo, On 5/21/13 11:34 AM, Leo Donahue - RDSA IT wrote: Does Tomcat

Re: Tomcat 6 and Windows Service

2013-06-05 Thread Walter . Heestermans
Hi, When I add the arguments to the startup arguments entry, and try to start the service start -Dcom.sun.management.jmxremote.port=10150 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false Then the following error is given WARNING: Bootstrap: command

Mapping security role outside of servlet specification

2013-06-05 Thread Ilya Kazakevich
Hello, I use probe app for several tomcats. It's security model is based on servlet API security: security roles and constraints are provided in web.xml and mapped for each servlet it has. I use JNDIRealm to authenticate users via LDAP (actually AD is used). I want to grant access to Probe on

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Urkens Jean-Pierre
Try creating a file $TOMCAT_HOME/bin/setenv.bat and include following line in it: set JAVA_OPTS=-Dcom.sun.management.jmxremote.port=10150 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Original Message- From:

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Walter . Heestermans
Not working neither, I think that Tomcat as a service is not using this Walter From: Urkens Jean-Pierre jean-pierre.urk...@devoteam.com To: Tomcat Users List users@tomcat.apache.org, Date: 05/06/2013 13:52 Subject:RE: Tomcat 6 and Windows Service Try creating a file

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Walter . Heestermans
Hi,, I can set the following Java options -Djava.util.logging.config.file=c:\Idiom\WorldServer\WorldServer-web\conf\logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -verbose:gc -Xloggc:\Idiom\WorldServer\WorldServer-web\logs\gc.log -XX:+PrintGCDateStamps

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Caldarale, Charles R
From: Urkens Jean-Pierre [mailto:jean-pierre.urk...@devoteam.com] Subject: RE: Tomcat 6 and Windows Service Try creating a file $TOMCAT_HOME/bin/setenv.bat and include following line in it: The .bat files are not used when running Tomcat as a service, so the above is pointless. - Chuck

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Caldarale, Charles R
From: walter.heesterm...@toyota-europe.com [mailto:walter.heesterm...@toyota-europe.com] Subject: RE: Tomcat 6 and Windows Service I can set the following Java options -Dcom.sun.management.jmxremote.port=10150 The stop using shudown class is org.apache.catalina.startup.Bootstrap

RE: Tomcat 6 and Windows Service

2013-06-05 Thread Walter . Heestermans
Ok, I will use the following: 1. Start using the normal Services dialog 2. Stop using shutdown script Regards Walter From: Caldarale, Charles R chuck.caldar...@unisys.com To: Tomcat Users List users@tomcat.apache.org, Date: 05/06/2013 15:05 Subject:RE: Tomcat 6 and Windows

Re: SlowQueryReport

2013-06-05 Thread Daniel Mikusa
On Jun 5, 2013, at 4:10 AM, Lutischán Ferenc lutisch...@gmail.com wrote: Dear Daniel, Thanks for your reply. My Tomcat version is 7.0.35. It is under CentOS 5.8. My datasource config is: Resource name=jdbc/xxx auth=Container driverClassName=org.postgresql.Driver

Re: Follow-up: Possible false-postive with JreMemoryLeakPreventionListener and Tomcat's JDBC Pool and OracleTimeoutPollingThread

2013-06-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mark, On 5/17/13 5:36 AM, Mark Thomas wrote: On 17/05/2013 09:28, Michael-O wrote: Hi folks, there's now a follow-up on the issue [1]. Recap: JreMemoryLeakPreventionListener reported that my webapp has spawned OracleTimeoutPollingThread

Re: Tomcat7 and SPNEGO configuration questions

2013-06-05 Thread Felix Schumacher
Am 03.06.2013 20:48, schrieb Edward Siewick: Felix Friends, I've made a fair amount of progress, though I'm still not able to log in with a domain credential. The domain account ID doesn't appear in the Tomcat7 logging at all, though it is in tomcat-users.xml. So I might now only be confused

How to get SSL connection information from Apache HTTPD over AJP?

2013-06-05 Thread Omari Stephens
Howdy, y'all I'm working on porting a pure java CGI to a servlet. I'm using Tomcat 6 behind Apache HTTPD 2.2. At this point, I have everything talking to each other fine. When I hit the right URL on httpd, my servlet gets run. yay. My question: incoming connections to httpd are over SSL.