Re: jvmRoute with multiple AJP Connectors for one Engine

2012-12-18 Thread Bob Myers
On Dec 18, 2012, at 6:40 PM, Caldarale, Charles R wrote: >> From: Bob Myers >> Re: jvmRoute with multiple AJP Connectors for one Engine > >>> protocol="AJP/1.3" redirectPort="443" /> >>> executor="tomcatThreadPool" port="8019" protocol="AJP/1.3" scheme="https" secure="true" /> > >>>

Re: jvmRoute with multiple AJP Connectors for one Engine

2012-12-18 Thread Caldarale, Charles R
> From: Bob Myers > Re: jvmRoute with multiple AJP Connectors for one Engine Don't top post - it's really annoying, and makes it extremely difficult to follow the points of a conversation. > > > > > protocol="AJP/1.3" redirectPort="443" /> > > executor="tomcatThreadPool" port="8019" protocol=

Re: jvmRoute with multiple AJP Connectors for one Engine

2012-12-18 Thread Bob Myers
Some particular apps require HTTPS, so we use (in the web.xml for that webapp) confidential Then if the app is accessed by HTTP (Apache port 80), and is routed (AJP) to the insecure Tomcat app on 8009, it is redirected to port 443 (redirectPort=443) for HTTPS instead, and Apache passes 443/HT

Re: jvmRoute with multiple AJP Connectors for one Engine

2012-12-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Bob, On 12/18/12 7:08 PM, Bob Myers wrote: > I have more than one AJP connector for my Engine - one for HTTP, > and one for HTTPS: > > protocol="AJP/1.3" redirectPort="443" /> executor="tomcatThreadPool" port="8019" protocol="AJP/1.3" > scheme=

jvmRoute with multiple AJP Connectors for one Engine

2012-12-18 Thread Bob Myers
I have more than one AJP connector for my Engine - one for HTTP, and one for HTTPS: I had two workers, tomcat and tomcatssl, using the two different port numbers, one for Apache HTTP and one for HTTPS connections. They use a common Engine and Executor thread pool. So far, so good -

Re: How to Enable SSL on Tomcat 7 on Linux & Test using curl?

2012-12-18 Thread Ognjen Blagojevic
Chris, On 18.12.2012 20:44, Christopher Schultz wrote: If you are using curl just to check the certificate or test HTTPS, it is easier and faster to do that with your favorite web browser. Better yet, use sslscan. Nice tool, thank you for the tip. You seem to be confused by the fact that

Re: How to Enable SSL on Tomcat 7 on Linux & Test using curl?

2012-12-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ognjen, On 12/18/12 5:05 AM, Ognjen Blagojevic wrote: > James, > > On 18.12.2012 3:03, James Dekker wrote: >> Dec 17, 2012 5:43:08 PM org.apache.coyote.AbstractProtocol start >> INFO: Starting ProtocolHandler ["http-bio-8443"] Dec 17, 2012 >> 5:43

Re: How to Enable SSL on Tomcat 7 on Linux & Test using curl?

2012-12-18 Thread Josh Gooding
I just did this. I have the tomcat manager application running across SSL. Here's what I did On Mon, Dec 17, 2012 at 9:03 PM, James Dekker wrote: > James said... "STUFF": > > (1) cd $CATALINA_HOME/conf > > (2) Create a certificate and store it in a new key store. > > keytool -genkey -alias

Re: tomcat7-maven-plugin

2012-12-18 Thread Josh Gooding
On Mon, Dec 17, 2012 at 8:13 AM, Josh Gooding wrote: > As far as this goes, there is definitely something strange going on, and I > think it points to the SSL self signed cert. Can someone verify that the > tomcat7 maven plugin works with self signed SSL? > > I have setup another TC7 server on a

Re: Error Message on Apache

2012-12-18 Thread Angel Java Lopez
Ummm... your code fail on connecting to the database. First things to check: - your connection string is the right one? (Hibernate? Spring? other configuration?) - write a simple console program that connects using that connection string, to discard security, network, database server problems On

Fwd: Error Message on Apache

2012-12-18 Thread Vincent Ogundu
Hi Good evening, My Application does not load from browser. I got the attached Apache error. Please kindly help with possible solutions. Thanks. -- Vincent Ogundu for:Easiglobe Messaging Ltd 85a Owukori Crescent, Alaka Estate, Surulere Lagos. Tel:234-1-7388983 /4. E-mail:vincentogu...@gmail.co

Re: Does maxPostSize has an effect on file upload?

2012-12-18 Thread Mark Thomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 17/12/2012 19:11, Christopher Schultz wrote: > Nick, > > On 12/14/12 4:28 PM, Williams, Nick wrote: >>> If it was using the global Content-length header, it would >>> count not only the encoded data bytes, but also the parts >>> separators, headers

Re: How to Enable SSL on Tomcat 7 on Linux & Test using curl?

2012-12-18 Thread Ognjen Blagojevic
James, On 18.12.2012 3:03, James Dekker wrote: Dec 17, 2012 5:43:08 PM org.apache.coyote.AbstractProtocol start INFO: Starting ProtocolHandler ["http-bio-8443"] Dec 17, 2012 5:43:08 PM org.apache.coyote.AbstractP INFO: Server startup in 9611 ms You successfully configured a