Visual Tagging Tool

vtt.jnlp

vtt.jnlp is the vtt Java Network Launching Protocol file that used in JWS (Java Web Start).


<?xml version="1.0" encoding="UTF-8"?>

<jnlp spec="1.0+"
      codebase="http://lexlx1.nlm.nih.gov/LexSysGroup/Projects/vtt/current/web/vtt"
      href="vtt.jnlp"
	  version="vtt.2010"
	  >

   <!-- Server-side information -->
   <information>
      <title>VTT Demo (Powered By JWS)</title>
      <vendor>Lexical Systems Group.NLM.NIH</vendor>
      <homepage href="http://umlslex.nlm.nih.gov/vtt"/>
      <description>VTT</description>
      <description kind="short">Visual Tagging Tools</description>
	  <icon href="./vttLogo.jpg"/>
	  <icon href="./vttLogo.jpg" kind="splash"/>

	  <shortcut>
		  <!-- add a menu on start menu -->
	      <menu/>
		  <!-- add a shortcut on the desktop -->
		  <desktop/>
	  </shortcut>

	  <!-- add user docs to menu -->
	  <related-content href="../../docs/userDoc/tutorial/index.html">
	  	<title>User Documents</title>
	  </related-content>

      <offline-allowed/>
   </information>

   <!-- to request full access on client-side local files -->
   <security>
     <all-permissions/>
   </security>
   
   <!-- resource: jar files -->
   <resources>     
   	 <jar href="./vtt2010.jar"/>
   	 <jar href="./data.jar"/>
	 <j2se version="1.6+"
	       href="http://java.sun.com/products/autodl/j2se"/>
   </resources>

   <!-- main program and arguments  -->
   <application-desc main-class="gov.nih.nlm.nls.vtt.Tools.vtt">
	   <argument>./vttDemoData/data/vtt/test.vtt</argument>
   </application-desc>
</jnlp>