Webapp obfuscation

2003-11-26 Thread Steve
Hi, Can anyone recommend a good product (preferably cheap, although all considered) to protect my JSP/Servlet/Bean application from being reverse engineered? It's an intranet application to be installed in many customer sites we would prefer to protect our IP as much as possible. Thanks, Steve

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.