Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Publish Application JAR File on Web Server
How to publish application JAR file on my Website?
✍: FYIcenter
If you have your application packaged in an executable JAR file, you can follow this tutorial to publish it to your Website:
1. Upload HelloJavaWs.jar to your Website at a URL like: http://jar.fyicenter.com/JavaWS/HelloJavaWs.jar.
2. Update the JNLP file, HelloJavaWs.jnlp, with this URL:
<?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="http://jar.fyicenter.com/JavaWS/HelloJavaWs.jar" main="true" /> </resources> <application-desc name="Hello JavaWS Application" main-class="HelloJavaWs"> </application-desc> </jnlp>
3. Upload HelloJavaWs.jnlp to your Website at a URL like: http://jar.fyicenter.com/JavaWS/HelloJavaWs.jnlp.
4. Create a Web page and upload load it to http://jar.fyicenter.com/JavaWS/HelloJavaWs.html.
<html> <body> <h3>HelloJavaWS Test Page</h3> <a href="http://jar.fyicenter.com/JavaWS/HelloJavaWs.jnlp"/>Launch HelloJavaWS</a> </body> </html>
5. Run a Firefox and open http://jar.fyicenter.com/JavaWS/HelloJavaWs.html. Then click "Launch HelloJavaWS". You will get the "Application Blocked by Java Security" error again, because http://jar.fyicenter.com does not have a server certificate.
See the next tutorial on modifying security settings to run the application on a Web server.
⇒ Add Security Exception for JavaWS to Run Application
⇐ Create JNLP File for Java Application
2017-07-15, 1640🔥, 0💬
Popular Posts:
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
JRE 5 sunjce_provider.jar is the JAR file for JRE 5 Sun JCE Provider, which provides implementations...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...