Re: 20 Tips for Using Tomcat in Production

2007-08-22 Thread Karel V Sedlacek
re) > > leon > > maybe wrong though > > On 8/22/07, Ben Souther <[EMAIL PROTECTED]> wrote: >> It depends on which operating system you're using and how you've >> installed Tomcat. >> Can you tell us which it is? >> >> >>

Re: 20 Tips for Using Tomcat in Production

2007-08-22 Thread Karel V Sedlacek
Thanks for this info,... How do I implement this tip? #18. Use the -server JVM option. This enables the server JVM, which JIT compiles bytecode much earlier, and with stronger optimizations. Startup and first calls will be slower due to JIT compilation taking more time, but subsequent ones will b

Re: Tomcat with 8 GB memory

2007-07-30 Thread Karel V Sedlacek
Point taken,... thanks Hassan > On 7/30/07, ben short <[EMAIL PROTECTED]> wrote: > >> If they are uploading files, i >> would imagine that you will need to have enough ram to hold the >> uploaded file before you stream it to disk or database. Although >> Tomcat might be smart? and store the uploa

Re: Tomcat with 8 GB memory

2007-07-30 Thread Karel V Sedlacek
rdware your going to need. > > [1] http://java.sun.com/javase/technologies/hotspot/index.jsp > > On 7/30/07, Karel V Sedlacek <[EMAIL PROTECTED]> wrote: >> So,... if I have 100s of users planned to hit the same Essbase >> application >> via Tomcat (5.0.28), do I ne

Re: Tomcat with 8 GB memory

2007-07-30 Thread Karel V Sedlacek
So,... if I have 100s of users planned to hit the same Essbase application via Tomcat (5.0.28), do I need a 64 bit machine? And for us dummies, how do we set the heap and/or other performance-oriented settings? Karel > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > David, > > David kerber w

Re: Logging all data sent to client

2007-07-25 Thread Karel V Sedlacek
} > > @Override > public void write(byte b[], int off, int len) throws IOException > { > mByteArrayOutputStream.write(b, off, len); > mOutputStream.write(b, off, len); > } > > @Override > public void close() throws IOException > { > if ( mLog

Re: Logging all data sent to client

2007-07-24 Thread Karel V Sedlacek
Ben, When you succeed at this would you pass along your code? We have issues with timeouts and it would be great to see what's being passed along to the client. Karel Cornell University > Yes from the CompressionServletResponseWrapper example I can see the > methods I need to override as you ha