the html files in demo/ just can't possibly work, unless i'm missing something.

for example, demo/memoryquery.html has:
<applet code="org.hsqldb.util.QueryTool" archive="hsqldb.jar" width="460" height="400" 
codebase="../lib/">
<PARAM NAME="database" VALUE=".">
</APPLET

meanwhile WebServerConnection.java has:
      if (name.indexOf("..") != -1) {
                processError(FORBIDDEN);
              return;
            }

the documentation should make clearer whether to start with -root to be the install
dir, or the demo subdirectory.
assuming the install dir is the docroot, and not demo, then one way to fix 
memoryquery.html
is:
<applet code="org.hsqldb.util.QueryTool" archive="/lib/hsqldb.jar" width="460" 
height="400" codebase="/classes/">
<PARAM NAME="database" VALUE=".">
</APPLET>

-mda



_______________________________________________
hsqldb-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hsqldb-developers

Reply via email to