Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Create JNLP File for Java Application
How to create a JNLP file for my Java application? I have my application packaged in an executable JAR file.
✍: FYIcenter
If you have your application packaged in an executable JAR file,
you can follow this tutorial to create a JNLP file to launch the application:
1. Create a JNLP file, HelloJavaWs.jnlp for the application:
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) FYIcenter.com --> <jnlp spec="1.0+"> <information> <title>Hello JavaWS</title> <vendor>FYIcenter.com</vendor> </information> <resources> <jar href="/HelloJavaWs.jar" main="true" /> </resources> <application-desc name="Hello JavaWS Application" main-class="HelloJavaWs"> </application-desc> </jnlp>
2. Try to run it with JavaWS:
>\fyicenter\jdk-1.8.0\bin\javaws HelloJavaWs.jnlp
You see a security message displayed:
Application Blocked by Java Security For security, applications must meet the requirements for the High or Very High security settings, or be part of the Exception Site list, to be allowed to run. Name: Hello JavaWS Location: file:// Reason: Your security settings have blocked a local application from running.
So JavaWS default security does not allow you to run applications from local machine.
See the next tutorial on publishing the application on a Web server.
The picture below shows you the "Application Blocked by Java Security" error window:
Â
2017-07-15, 1299👍, 0💬
Popular Posts:
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module. JDK 11 Management module ...
How to download and install javamail-1_2.zip? The JavaMail API is a set of abstract APIs that model ...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
How to download and install mysql-connector-java-5.1 .40.zip?Connector/J Java library is a JDBC Driv...