diff --git a/java/ModSecurityTestApp/web/help.html b/java/ModSecurityTestApp/web/help.html
index 6560f9e8..13ece9f8 100644
--- a/java/ModSecurityTestApp/web/help.html
+++ b/java/ModSecurityTestApp/web/help.html
@@ -77,7 +77,7 @@
- Install required packages for compilation. For example, on Debian/Ubuntu like systems (Windows users have a Visual Studio solution): + Install required packages for compilation. For example, on Debian/Ubuntu like systems:
sudo apt-get install g++ make automake autoconf libtool @@ -145,9 +145,9 @@ sudo cp ./java/.libs/libModSecurityJNI.so /usr/lib/
- Although this is the easier, this is not recommended because the JVM will raise + Although this is easier, it is not recommended because the JVM will raise UnsatisfiedLinkError if the ModSecurity Filter is used in - multiple applications within the same server. + multiple applications within the same server or the application is redeployed while the server is running. The libraries are loaded in the ModSecurity class using System.loadLibrary(). In this case the server has to be started with the following VM options: @@ -157,7 +157,8 @@ sudo cp ./java/.libs/libModSecurityJNI.so /usr/lib/
You can specify multiple folders for the java.library.path variable by using - : (colon) or ; (semi-colon), depending on your environment. + : (colon) or ; (semi-colon), depending on your environment. Also, the libraries can be loaded using + their absolute path using System.load().