Launch JNLP file which required full-qualified domain name
843802Aug 20 2009 — edited Aug 20 2009Hi all,
My suitation is like this:
I need to launch an JNLP file which I need a domain name in order to access it: (using JDK 1.5.0_11)
e.g. http://hostname.domain.domain/xxx/yyy/zzz.jnlp
But when it try to access one of the jar file, it will refer to http://hostname/aaa.jar that lead to UnknownHostException.
Note: (I already use the full domain name to launch the JNLP file..)
Any one have idea on what to do? And I have no option to change the network setting to support solely "hostname" without domain.
Here's the "little modified" Launch file in the error dialog (as some details can't be disclosed)
[Launch path]:
http://hostname.domain.com:12718/CMTE-3rdParty/tibco/7.5.2/tibco.jnlp
[Error message]:
Unable to load resource: http://hostname:12718/CMTE-3rdParty/tibco/7.1.2/tibco.jnlp
[Launch File shown in error dialog]:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="http://hostname:12718/CMTE-3rdParty" href="tibco/7.1.2/tibco.jnlp">
<information>
<title>Tibco</title>
<vendor>Multicast messaging library</vendor>
</information>
<security>
<all-permissions/>
</security>
<resources>
<jar href="tibco.jar" version="7.5.2"/>
</resources>
<resources os="Windows" arch="x86">
<nativelib href="tibco-libs.jar" version="7.5.2"/>
</resources>
<component-desc/>
</jnlp>
Thank you very much.