• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Remove Java Loader in jsp page

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a jsp page like this. This file uses 3 jars and the output is viewed in a jsp page. Before the output is displayed I am getting the java loader (gif image). I want to remove that image. How can I add my own image to the below code?

<jsp:plugin type="applet" codebase="." code="ViewerApplet.class" align="center" width="100%" height="600" jreversion="1.6" archive="icepdf-core.jar, icepdf-viewer.jar, icepdf-applet.jar">
<jsp:params><br>
<jsp:param name="java_arguments" value="-Xmx128m" /><br/>
<jsp:param name="classloader_cache" value="true" /><br/>
<jsp:param name="url" value="<%=test%>" />

</jsp:params>

<jsp:fallback>
<p>Unable to load applet</p>
</jsp:fallback>
</jsp:plugin>

I want to remove the java loader that is displayed before my pdf is generated.
Thanks -
Haan
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's explained here: http://download.oracle.com/javase/6/docs/technotes/guides/plugin/developer_guide/special_attributes.html
reply
    Bookmark Topic Watch Topic
  • New Topic