<?xml version="1.0" encoding="utf-8"?> 
<!-- 
 A JNLP File for the Jazz (Jadeite-based) Data Visualization Application
--> 

<!-- The host on which the application will be fielded must be hard-coded as the "codebase" attribute
     so we can sign this file to satisfy Oracle's new security requirements. -->
<jnlp 
 spec="1.0+" 
 codebase="http://www.atmos.washington.edu/~brodzik/olympex/jazz"
 href="jazz.jnlp">

  <!-- General application information -->
  <information> 
    <title>Jazz Data Visualization Application</title> 
    <vendor>NCAR - RAL</vendor> 
    <homepage href="http://ral.ucar.edu/projects/pecan"/> 
    <description kind="tooltip">Jazz App</description> 
    <description kind="one-line">Jazz Application</description>
    <description kind="short">Scientific display, based on the JADE framework</description> 
    <icon href="http://rap.ucar.edu/projects/jazz/jadeButton.gif"/>
    <!-- Hint to the OS to install a shortcut for an online app and provide uninstall hooks in menus -->
    <shortcut online="true" install="true">
      <desktop/>
      <menu submenu="Desktop Apps"/>
    </shortcut> 
  </information>

  <!-- Request all permissions, since we need to initiate connections, read/write local prefs, send to printer, etc -->
  <security>
      <all-permissions/>
  </security>         

  <!-- Always check for an updated app and let the user exit -->
  <update check="always" policy="prompt-run"/>

  <!-- Designate the required resources -->
  <resources> 
    <j2se version="1.7+" initial-heap-size="64m" max-heap-size="1200m"/>
    <!-- These are for JVM optimization -->
    <property name="java.net.preferIPv4Stack" value="true"/>
    <property name="sun.java2d.d3d" value="false"/>
    <!-- These are the jars to load -->
    <jar href="jazz.jar" download="eager"/>
    <jar href="glf.jar" download="eager"/>
    <jar href="images.jar" download="eager"/>
    <jar href="jai_codec.jar" download="eager"/>
    <jar href="jaxen-full.jar" download="eager"/>
    <jar href="jdom.jar" download="eager"/>
    <jar href="JTS-1.3.jar" download="eager"/>
    <jar href="resources-2.0-B1.jar" download="eager"/>
    <jar href="resources.jar" download="eager"/>
    <jar href="saxpath.jar" download="eager"/>
    <jar href="shapefile-2.0-B1.jar" download="eager"/>
    <jar href="xmlConfig.jar" download="eager"/>
  </resources> 

  <!-- Designate the starting class -->
  <application-desc main-class="edu.ucar.rap.jazz.apps.jazz.Jazz">
    <!-- Optionally identify the location of the starting Jazz config file -->
    <argument>http://www.atmos.washington.edu/~brodzik/olympex/jazz/jazz.xml</argument>
  </application-desc>

</jnlp>





