我有一个使用 webstart 的 EJB 3.0 项目,我试图将其作为 WAR 部署到 JBoss AS 7.1.1。我可以很好地访问 html 页面,但是当我单击 webstart 链接时,它会尝试从http://java.sun.com下载 JRE 1.7并弹出以下错误:
"AutoDL?BundleId=68742" on java.sun.com is not a Java installer.
这是我的战争的目录结构:
root of war(dir)
-->GrahamsProjClient-webstart.jnlp
-->GrahamsProjStartAppPage.html
-->app(dir)
-->GrahamsProjClient.jar(The actual client project)
-->META-INF(dir)
-->context.xml(blank file)
-->MANIFEST.MF
-->WEB-INF(dir)
-->web.xml
-->classes(dir) contains my compiled servlet
-->lib(dir)
-->jboss-servlet-api_3.0_spec-1.0.0.Final.jar
-->jnlp-servlet.jar
以下是战争中重要文件的链接:
GrahamsProjClient-webstart.jnlp --> http://pastebin.com/zwkm1zz3
<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="$$codebase">
<information>
<title>Grahams Project</title>
<vendor>Graham</vendor>
<description>desc</description>
</information>
<resources>
<j2se version="1.6"/>
<jar href="GrahamsProjClient.jar"/>
</resources>
<application-desc/>
</jnlp>
GrahamsProjStartAppPage.html --> http://pastebin.com/EXu8Z5dZ
web.xml --> http://pastebin.com/KK3fPPY9
GrahamsProjServlet.java --> http://pastebin.com/iC9JDiTL
这可能是什么原因造成的?