Re: Migrating from GlassFish to Tomcat 7

2013-08-26 Thread Daniel Mikusa
On Aug 26, 2013, at 7:52 AM, B W wrote: > Looks like catalina.properties it is ! +1 catalina.properties is great for simple things, and it's more portable. One, not so common reason you might want to use setenv.sh is if you want to do something dynamic. Since setenv.sh is a shell script, you

Re: Migrating from GlassFish to Tomcat 7

2013-08-26 Thread B W
Looks like catalina.properties it is ! On Thu, Aug 22, 2013 at 6:30 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > B W, > > On 8/22/13 4:30 PM, B W wrote: > > What is the advantage to using catalina.properties vs setenv.sh?

Re: Migrating from GlassFish to Tomcat 7

2013-08-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 B W, On 8/22/13 4:30 PM, B W wrote: > What is the advantage to using catalina.properties vs setenv.sh? If you use setenv.sh, then those system properties will only be available if you use the Tomcat scripts to launch. If you use jsvc or the Microso

Re: Migrating from GlassFish to Tomcat 7

2013-08-22 Thread B W
What is the advantage to using catalina.properties vs setenv.sh? On Thu, Aug 22, 2013 at 11:37 AM, Konstantin Kolinko wrote: > 2013/8/22 Daniel Mikusa : > > On Aug 22, 2013, at 8:48 AM, B W wrote: > > > >> I have a GWT application which currently is running on GlassFish 3.x. I > >> want to mig

Re: Migrating from GlassFish to Tomcat 7

2013-08-22 Thread Konstantin Kolinko
2013/8/22 Daniel Mikusa : > On Aug 22, 2013, at 8:48 AM, B W wrote: > >> I have a GWT application which currently is running on GlassFish 3.x. I >> want to migrate to Tomcat 7. Previously, I would store properties that the >> GWT application could retrieve by >> org.apache.commons.configuration.Sy

Re: Migrating from GlassFish to Tomcat 7

2013-08-22 Thread B W
Thank you - it's working! On Thu, Aug 22, 2013 at 9:04 AM, Daniel Mikusa wrote: > On Aug 22, 2013, at 8:48 AM, B W wrote: > > > I have a GWT application which currently is running on GlassFish 3.x. I > > want to migrate to Tomcat 7. Previously, I would store properties that > the > > GWT appl

Re: Migrating from GlassFish to Tomcat 7

2013-08-22 Thread Daniel Mikusa
On Aug 22, 2013, at 8:48 AM, B W wrote: > I have a GWT application which currently is running on GlassFish 3.x. I > want to migrate to Tomcat 7. Previously, I would store properties that the > GWT application could retrieve by > org.apache.commons.configuration.SystemConfiguration. Looks like th

Migrating from GlassFish to Tomcat 7

2013-08-22 Thread B W
I have a GWT application which currently is running on GlassFish 3.x. I want to migrate to Tomcat 7. Previously, I would store properties that the GWT application could retrieve by org.apache.commons.configuration.SystemConfiguration. I would put these settings in my domain.xml for GlassFish. What