Hi all,


I'm not sure if this has already been fixed. In 1.4.3 release I've seen 
the comments about the workaround in Resin's jar paths. However the code
 if (path.endsWith("!/")) {
      path = path.substring(0, path.length() - 2);
  }
 does not solve the problem because it leaves "!" at the end of the path.

   path = path.substring(0, path.length() - 3)
solves the issue.


-Mike.










-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to