有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

maven Java Security正在阻止应用程序启动

我们正在使用JNLP创建JavaWebStart应用程序,当我们尝试启动该应用程序时,我们遇到了这个问题

We are creating Java Web start Application with JNLP and when we try to launch the application we are getting this issue

这是我的JNLP文件

<jnlp spec="1.0+" codebase="http://localhost:8080/" href="EDoc.jsp?url=<%=request.getParameter("url")%>&file=<%=request.getParameter("file")%>">
    <information>
        <title>Jnlp Testing</title>
        <vendor>YONG MOOK KIM</vendor>
        <homepage href="http://localhost:8080/">
            <description>Testing Testing</description>
        </homepage>
    </information>
    <security>
        <all-permissions/>
    </security>
    <resources>
        <j2se version="1.6+"/>
        <jar href="SignatureApplet-1.0.jar"/>
        <extension name="Java Help" href="help.jnlp"/>
    </resources>
    <application-desc main-class=" com.narola.digitalsignature.EDoc2Jnlp">
        <argument><%=request.getParameter("url")%></argument>
        <argument><%=request.getParameter("file")%></argument>
    </application-desc>
</jnlp>

共 (0) 个答案