Jnlp popup screen not working

I am trying to get the splash screen to work when I call .jar via JWS The following is information about the jnlp file. Other features work as expected. I placed the pic.gif file in the ROOT Apache tomact folder

JaNeLA Report - Version 11.05.17

Report for http: // localhost: 8080 / WithoutManifest.jnlp

1.XML encoding is unknown, but declared as UTF-8

  1. Optimize this app for offline use by adding a flag.

  2. Downloads can be optimized by specifying the size of the resource for "Without the .jar manifest."

  3. Resource loading on the WithoutManifest.jar page can be optimized by removing the default download = 'eager'.

5. Download the resource without reference to UnManifest.jar, removing the default value main = 'false'.

  1. It may be possible to optimize the launch of the application. specifying download = 'lazy' for the WithoutManifest.jar resource.

  2. Lazy downloads may not work as expected for WithoutManifest.jar if the "part" of the download is not specified.

  3. Downloads can be optimized by specifying the size of the resource for "pic.gif". Loading and using icons can be optimized by specifying the width and height for pic.gif

  4. HREF from http: // localhost: 8080 / 'can be optimized for'.

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://localhost:8080/" href="WithoutManifest.jnlp">

     <information>
          <title>TITLE</title>
          <vendor>Pallab</vendor>
          <homepage href="http://localhost:8080/" />
         <icon kind="splash" href="pic.gif"/>
     </information>

     <security>
          <all-permissions/>
     </security>

     <resources>
          <j2se version="1.6+" />
          <jar href="WithoutManifest.jar" />
     </resources>

     <application-desc main-class="WithoutManifest" />
</jnlp>

I see only two pop-ups in front of my actual application.

Image 1

Also, how can I change the following values ​​selected in RED, I do not provide them anywhere in the .jnlp file

Image 2

Apache version -8.0.23 Java version - 1.8.0_40-b26

+4
1

. . .

+2

All Articles