Re: URGENT: Tomcat 7 Aliases

2016-12-09 Thread Victor Rodriguez
Being able to have xyz as an alias for abc would be great, but everything I've tried with aliases hasn't worked either. On Fri, Dec 9, 2016 at 8:28 AM, Victor Rodriguez wrote: > Chris, I really don't want double deployment. I'm trying to have a single > abc.war a

Re: URGENT: Tomcat 7 Aliases

2016-12-09 Thread Victor Rodriguez
abc.war to xyz.war and have both in the webapps directory, but I'm trying to avoid that. On Fri, Dec 9, 2016 at 8:23 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Victor, > > On 12/9/16 11:17 A

Re: URGENT: Tomcat 7 Aliases

2016-12-09 Thread Victor Rodriguez
looks like it's looking for an exploded xyz directory. On Fri, Dec 9, 2016 at 8:07 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Victor, > > On 12/8/16 7:57 PM, Victor Rodriguez wrote: >

Re: URGENT: Tomcat 7 Aliases

2016-12-08 Thread Victor Rodriguez
256 > > Victor, > > On 12/8/16 4:59 PM, Victor Rodriguez wrote: > > THANKS IN ADVANCE FOR YOUR HELP! (not yelling, just emphasizing!) > > > > I have abc.war and I want both /abc and /xyz to work for it. I've > > tried adding aliases="/abc=abc.war,/x

URGENT: Tomcat 7 Aliases

2016-12-08 Thread Victor Rodriguez
THANKS IN ADVANCE FOR YOUR HELP! (not yelling, just emphasizing!) I have abc.war and I want both /abc and /xyz to work for it. I've tried adding aliases="/abc=abc.war,/xyz=abc.war" and aliases="/abc=abc,/xyz=abc" but neither of those worked. This is how my original context.xml looked like.

Re: [URGENT] Content-Encoding: gzip not set

2015-03-11 Thread Victor Rodriguez
Unfortunately, we're not ready to upgrade to 8.0.x yet, but I can see if I can get our F5 load balancer to add the "Content-encoding: gzip" response header. Thanks guys!

Re: [URGENT] Content-Encoding: gzip not set

2015-03-11 Thread Victor Rodriguez
Thanks Geoff! The thing is that I'd rather not have to add a servlet filter. Chris, I'm on Tomcat 7.0.53. The files don't have .gz extensions; they end in .json and .terrain. If I have gzip="true" will tomcat add "Content-encoding: gzip" to all requests or only for files that end in .gz? Havin

Re: [URGENT] Content-Encoding: gzip not set

2015-03-10 Thread Victor Rodriguez
ntation without even so much as a hint as to where to look is analogous to telling someone to read the JDBC spec in response to a JDBC question (which by the way has also happened to me!) hehehe... On Tue, Mar 10, 2015 at 4:09 PM, André Warnier wrote: > Victor Rodriguez wrote: > >>

Re: [URGENT] Content-Encoding: gzip not set

2015-03-10 Thread Victor Rodriguez
p .gz .tgz .json .terrain On Tue, Mar 10, 2015 at 11:26 AM, Victor Rodriguez wrote: > AddType application/json .json > AddType application/vnd.quantized-mesh .terrain > -- Sent from neither my iPhone nor my iPad.

Re: [URGENT] Content-Encoding: gzip not set

2015-03-10 Thread Victor Rodriguez
AddType application/json .json AddType application/vnd.quantized-mesh .terrain

Re: [URGENT] Content-Encoding: gzip not set

2015-03-10 Thread Victor Rodriguez
015 at 4:01 PM, Igor Cicimov wrote: > On 10/03/2015 6:14 AM, "Victor Rodriguez" wrote: > > > > Greetings, > > > > I have some ALREADY gzipped files that I'm trying to serve up. > > > > I have the following in my web.xml. > > > >

Re: [URGENT] Content-Encoding: gzip not set

2015-03-09 Thread Victor Rodriguez
And so far, the documentation hasn't given me the solution for either case. Can you possibly point me to the right place in the documentation? Thanks! On Mon, Mar 9, 2015 at 3:33 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Has

Re: [URGENT] Content-Encoding: gzip not set

2015-03-09 Thread Victor Rodriguez
Thanks Mark! Unfortunately, that is not an option. The client will be requesting the files without the .gz extension. On Mon, Mar 9, 2015 at 2:01 PM, Mark Thomas wrote: > On 09/03/2015 19:12, Victor Rodriguez wrote: > > > How do I tell Tomcat to include the Content-Encoding: g

[URGENT] Content-Encoding: gzip not set

2015-03-09 Thread Victor Rodriguez
Greetings, I have some ALREADY gzipped files that I'm trying to serve up. I have the following in my web.xml. json application/gzip And, I have the following in my server.xml: >From the command line, I can curl the files and gunzip them just fine, so they are coming across gzippe