Java EE 애플리케이션 클라이언트 애플리케이션의 JNLP 디스크립터 파일
배치 디스크립터 파일은 클라이언트 애플리케이션의 기본 JNLP(Java™ Network Launcher Protocol) 배치스크립터 파일입니다.
다음은 Java EE 애플리케이션 클라이언트 애플리케이션에 대한 클라이언트 애플리케이션 JNLP 디스크립터 파일 예제입니다.
<?xml version="1.0" encoding="utf-8"?>
<!--
This sample program is provided AS IS and may be used, executed, copied and modified
without royalty payment by customer (a) for its own instruction and study, (b) in order
to develop applications designed to run with an IBM WebSphere product, either for customer's
own internal use or for redistribution by customer, as part of such an application, in
customer's own products.
Licensed Materials - Property of IBM
5724-I63, 5724-H88, 5724-H89, 5655-N02, 5724-J08
Copyright IBM Corp. 2008 All Rights Reserved.
US Government Users Restricted Rights - Use, duplication or
disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
-->
<jnlp spec="1.0+" codebase="http://your_server:port_number/jws/wasappclient/apps/">
<information>
<title>Java EE Client Example</title>
<vendor>IBM</vendor>
<homepage href="null"/>
<description>Java WebStart example: Launching Java EE Application Client</description>
<description kind="short">Java EE Applicaiton Client</description>
<description kind="tooltip">Java EE Application Client</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se href="http://your_server:port_number/jws/wasappclient/JREDownload.xjnlp" version="1.6"/>
<jar href="../lib/WebSphereClientLauncher.jar" download="eager" main="false"/>
<jar href="../lib/properties.jar" download="eager" main="false"/>
<jar href="SwingCalculator.ear" download="eager" main="false"/>
<property name="com.ibm.websphere.client.launcher.ear" value="SwingCalculator.ear"/>
</resources>
<application-desc main-class="com.ibm.websphere.client.launcher.ClientLauncher">
<argument>-CCproviderURL=corbaloc:iiop:tiu03.torolab.ibm.com:2809</argument>
</application-desc>
</jnlp>