0

jnlp로 내 RCP 프로젝트를 시작하려고합니다. 그래서 작은 e4-RCP 프로젝트를 구현했습니다. 제품으로 시작해도 아무런 문제가 발생하지 않습니다. 응용 프로그램은 잘 작동합니다. 나는 localhost : 8080에서 실행중인 Tomcat 서버를 설치했다. 이것은 또한 매우 잘 시작한다. 내가 애플 리케이션을위한 jnlp 파일을 썼다. 항아리를 수출하고 서명했다. 앱을 시작하려고 할 때. http://localhost:8080/webstart.jnlp 나는 예외 얻을 :java.lang.ClassNotFoundException : org.eclipse.equinox.launcher.WebStartMain

패키지 de.checkpoint.webstart;

java.lang.ClassNotFoundException: org.eclipse.equinox.launcher.WebStartMain 
at java.net.URLClassLoader.findClass(URLClassLoader.java:381) 
at com.sun.jnlp.JNLPClassLoader.findClass(Unknown Source) 
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) 
at com.sun.jnlp.JNLPClassLoader.loadClass(Unknown Source) 
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) 
at de.checkpoint.webstart.WebstartLauncher.main(WebstartLauncher.java:9) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:498) 
at com.sun.javaws.Launcher.executeApplication(Unknown Source) 
at com.sun.javaws.Launcher.executeMainClass(Unknown Source) 
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source) 
at com.sun.javaws.Launcher.run(Unknown Source) 
at java.lang.Thread.run(Thread.java:748) 

그 모든 모든 말했다 데를, 여기 내 주요이다 나는 무엇을 놓치고,

<?xml version="1.0" encoding="utf-8"?> 
<jnlp spec="1.0+" codebase="http://localhost:8080/" href="webstart.jnlp"> 
    <information> 
     <title>Jnlp Webstart Test</title> 
     <vendor>Boris Nguema B.</vendor> 
     <homepage href="http://localhost:8080/" /> 
     <description>Testing Webstart</description> 
    </information> 
    <security> 
     <all-permissions/> 
    </security> 

    <!-- <property name="eclipse.product" value="de.checkpoint.product"/> --> 
    <!-- <property name="osgi.frameworkParentClassloader" value="current"/> --> 
    <!-- <property name="jnlp.osgi.parentClassloader" value="current"/> --> 
    <resources> 
     <j2se version="1.8+" /> 
     <jar href="de.checkpoint.start_1.0.0.201711041646.jar" /> 
    </resources> 

    <application-desc main-class="de.checkpoint.webstart.WebstartLauncher" /> 
</jnlp> 

사람이 나를 알 수 있습니다 : 여기

import org.eclipse.equinox.launcher.WebStartMain; 

public class WebstartLauncher { 

    public static void main(String[] args) { 

     WebStartMain.main(args); 
    } 

} 

내 jnlp 파일입니까? 이미 문제를 발견하는 경우

답변

0

나는 잘 모르겠지만, 춘분 발사기는 매니페스트에서 그 라인이없는 :

권한 : 모든 권한

코드베이스 : *

Trusted- 만 : 사실

신뢰할 수있는-도서관 : 당신이 그들을 추가하고 로그인해야

사실.