Tomcat 7 Maven Plugin - set MaxPermSize

2012-12-11 Thread David Miller
I'm using the tomcat-maven plugin to set a value for MaxPermSize but it's not working. You can see in the below plugin my setting for JAVA_OPTS - I've also tried MAVEN_OPTS and CATALINA_OPTS. I can see that it's not working using jvisualvm (can also tell because my app eventually craps out). The

Tomcat 7 Maven Plugin - embedded reload

2012-02-23 Thread David Miller
I'm using the below Tomcat 7 Maven plugin and am not having any luck reloading changed classes. Changes made to a jsp are reflected right away but class file changes are not. I have my IDE (Netbeans 7) set to compile on save, I'm using Maven 2.2.1 and I have reloadable='true' in my context.xml file

Re: Tomcat SSL question

2006-08-04 Thread David Miller
redirectPort" on your AJP(port 8009) connector to 443 http://tomcat.apache.org/tomcat-5.5-doc/config/ajp.html using mod_jk, you will not use port 8080 and 8443, only 8009. Filip David Miller wrote: > I can't do that because the web server uses those ports. > > Perhaps someone

Re: Tomcat SSL question

2006-08-03 Thread David Miller
lhost:8443/my-secured-webapp David On 8/3/06, Mark Thomas <[EMAIL PROTECTED]> wrote: David Miller wrote: > When I run my app using Tomcat only (without apache httpd) I specify the > ports for secure and non-secure pages; http://localhost:8080/my-app or > https://localhost:844

Tomcat SSL question

2006-08-03 Thread David Miller
When I run my app using Tomcat only (without apache httpd) I specify the ports for secure and non-secure pages; http://localhost:8080/my-app or https://localhost:8443/my-app for example. I've installed mod_jk hoping that Apache httpd would handle the connection allowing me to omit the port number