Advertisement
gaitapi

ExportImageOrElevations.jnlp

Nov 22nd, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ~ Copyright (C) 2012 United States Government as represented by the Administrator of the
  4. ~ National Aeronautics and Space Administration.
  5. ~ All Rights Reserved.
  6. -->
  7.  
  8. <!-- $Id: ExportImageOrElevations.jnlp 1291 2013-04-23 16:16:30Z dcollins $ -->
  9. <jnlp codebase="http://worldwindserver.net/java/2.0.0/demos/"
  10. href="ExportImageOrElevations.jnlp">
  11.  
  12. <!--
  13. Provides a description of this World Wind demo application.
  14. -->
  15. <information>
  16. <title>World Wind Exporting Surface Imagery and Elevations</title>
  17. <vendor>NASA</vendor>
  18. <homepage href="http://goworldwind.org/demos/"/>
  19. <offline-allowed/>
  20. </information>
  21.  
  22. <!--
  23. Requests a trusted application environment. The World Wind SDK core library requires access to the network and
  24. the local filesystem. All World Wind JAR files are signed with a digital signature associated with NASA.
  25. -->
  26. <security>
  27. <all-permissions/>
  28. </security>
  29.  
  30. <!--
  31. Specifies the resources required by the this World Wind demo application:
  32. * Java Runtime Environment version 1.6 or newer, with a maximum heap size of at least 512 MB. The World Wind SDK
  33. requires at least 512 MB of heap space. This heap size must be specified in the application's Web Start file.
  34. * World Wind extensions Java Web Start component. This downloads and adds the World Wind SDK extensions JAR file
  35. and its dependencies ot the class path at runtime.
  36. -->
  37. <resources>
  38. <java version="1.6+" max-heap-size="512m"/>
  39. <extension name="worldwindx" href="http://worldwind.arc.nasa.gov/java/2.0.0/webstart/worldwindx.jnlp"/>
  40. </resources>
  41.  
  42. <!--
  43. Indicates that this Java Web Start file describes an application. The main-class element indicates the class
  44. who's main method is executed when this Web Start file launches.
  45. -->
  46. <application-desc main-class="gov.nasa.worldwindx.examples.ExportImageOrElevations"/>
  47.  
  48. </jnlp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement