diff options
Diffstat (limited to 'BKUWebStart/src/main/webapp/launch.html')
-rw-r--r-- | BKUWebStart/src/main/webapp/launch.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/BKUWebStart/src/main/webapp/launch.html b/BKUWebStart/src/main/webapp/launch.html new file mode 100644 index 00000000..6ed6feb5 --- /dev/null +++ b/BKUWebStart/src/main/webapp/launch.html @@ -0,0 +1,17 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <title>Test page for launching the application via JNLP</title> + </head> + <body> + <h3>Test page for launching the application via JNLP</h3> + <a href="launch.jnlp">Launch the application</a> + <!-- Or use the following script element to launch with the Deployment Toolkit --> + <!-- Open the deployJava.js script to view its documentation --> + <script src="http://java.com/js/deployJava.js"></script> + <script> + var url="http://localhost:8080/BKUWebStart/launch.jnlp" + deployJava.createWebStartLaunchButton(url, "1.6") + </script> + </body> +</html> |