Hi. I was trying to get deobfuscation to work, sadly with no success.
What I get is this message and obfuscated exception
WARNING: Failed to deobfuscate stack trace for permutation 6F87FD49BB72FC34AE8718358E2A2792. Verify that the corresponding symbolMap is available.
sty 30, 2015 2:58:51 PM com.allen_sauer.gwt.log.server.ServerLogImplJDK14 log
SEVERE: Uncaught Exception:
com.google.gwt.core.client.JavaScriptException: (TypeError) : Cannot read property '$f' of null
<init-param>
<param-name>symbolMapsFileSystem</param-name>
<param-value>/WEB-INF/deploy/test/symbolMaps</param-value>
</init-param>
I checked - symbolMaps directory is generated and the path is correct.
Also, to be 100% sure
PrintWriter out = resp.getWriter();
File f = new File(req.getSession().getServletContext().getRealPath("/WEB-INF/deploy/test/symbolMaps"));
for (File file : f.listFiles()) {
out.println(file.getName());
}
which outputs:
6F87FD49BB72FC34AE8718358E2A2792.symbolMap
Am I missing something?