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, ∼2111🔥, 0💬
Popular Posts:
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
Provides a simple high-level Http server API, which can be used to build embedded HTTP servers. Both...
maven-model-builder-3.5. 4.jaris the JAR file for Apache Maven 3.5.4 Model Builder module. Apache Ma...
JDK 11 jdk.internal.JVM Stat.jmod is the JMOD file for JDK 11 Internal Jvmstat module. JDK 11 Intern...