I've used code obfuscation in a real-life project. I have developed enterprise software (Java servlets). With servlets, the compiled classes MUST reside on the server in order to function (WAR / JAR files). In most cases, they reside on servers that I can either a) control, or b) trust the operators.
However, one client insisted the application reside on THEIR server for "intranet" use. Since the client had a history of "less than stellar" ethics, I took the precaution of running the compiled Java through an obfuscator first. I also tested the result fairly well to ensure the decompiled code was pretty much unusable.
You might ask "why deal with such a client?", but the overall marketing of this particular application was outside my control, though any security concerns were not. This was a best compromise solution for the particular case
Cheers,
-R