Re: Webapp obfuscation

2003-11-26 Thread Tim Funk
1) Precompile all jsps 2) Don't provide the jsps since they are precompiled (see 1) 3) Compile all code with debugging off so line numbers don't appear in compiled objects 4) Compile with optimizations (from javac: Optimize; may hinder debugging or enlarge class file) Other than that - any

RE: Webapp obfuscation

2003-11-26 Thread Shapira, Yoav
Howdy, 1) Precompile all jsps 2) Don't provide the jsps since they are precompiled (see 1) 3) Compile all code with debugging off so line numbers don't appear in compiled objects 4) Compile with optimizations (from javac: Optimize; may hinder debugging or enlarge class file) All good advice.