Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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, ∼2108🔥, 0💬
Popular Posts:
commons-net-1.4.1.jar is the JAR file for Apache Commons Net 1.4.1, which implements the client side...
JDK 17 java.compiler.jmod is the JMOD file for JDK 17 Compiler module. JDK 17 Compiler module compil...
How to show the XML parsing flow with sax\DocumentTracer.java provided in the Apache Xerces package?...
JDK 11 jdk.jlink.jmod is the JMOD file for JDK 11 JLink tool, which can be invoked by the "jlink" co...
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...