[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Can't export rcp for web start

GoodMorning,
i've many problems since 1 week with a creation of web start application from an rcp application.
I've created a simle rcp-hello application on v.m 1.6 and 1.4 with eclipse europa and after with eclipse rcp on mac-os leopard and on windows xp home edition.


this is my sample jnlp
1 <?xml version="1.0" encoding="UTF-8"?>
2 <jnlp
3 spec="1.0+"
4 codebase="http://10.37.129.2/marco";
5 href="test.jnlp"> <!-- URL to the site containing the jnlp application. It should match the value used on export. Href, the name of this file -->
6 <information>
7 <!-- user readable name of the application -->
8 <title>Webstart Test</title>
9 <!-- vendor name -->
10 <vendor>EDIT</vendor>
11 <!-- vendor homepage -->
12 <homepage href="http://mypage"; />
13 <!-- product description -->
14 <description>Test web start</description>
15 17 <offline-allowed />
18 <shortcut online="false">
19 <desktop />
20 <menu />
21 </shortcut> 22 </information>
23 24 <!--request all permissions from the application. This does not change-->
25 <security>
26 <all-permissions/>
27 </security>
28 29 <!-- The name of the main class to execute. This does not change-->
30 <application-desc main-class="org.eclipse.equinox.launcher.WebStartMain"> 31 <argument>-nosplash</argument>
32 </application-desc>
33 34 <resources>
35 <!-- Reference to the launcher jar. The version segment must be updated to the version being used-->
36 <jar href="plugins/org.eclipse.equinox.launcher_1.0.0.v20070606.jar"/>
37 38 <!-- Reference to all the plugins and features constituting the application -->
39 <!-- Here we are referring to the wrapper feature since it transitively refers to all the other plug-ins necessary -->
40 <extension
41 name="Wrapper feature"
42 href="features/myeditorfeature_1.0.0.jnlp"/>
43 44 <!-- Information usually specified in the config.ini -->
45 <property
46 name="osgi.instance.area"
47 value="@user.home/Application Data/myeditor"/>
48 <property
49 name="osgi.configuration.area"
50 value="@user.home/Application Data/myeditor"/>
51 52 <!-- The id of the product to run, like found in the overview page of the product editor -->
53 <property
54 name="eclipse.product"
55 value="myeditor.product"/>
56 </resources>
57
58 <!-- Indicate on a platform basis which JRE to use -->
59 <resources os="Mac">
60 <j2se version="1.5" java-vm-args="-XstartOnFirstThread"/>
61 </resources>
62 <resources os="Windows">
63 <j2se version="1.5"/>
64 </resources>
65 <resources os="Linux">
66 <j2se version="1.5"/>
67 </resources>
68 </jnlp>


Problem:
I've created the main rcp project and the wrapper feature.
I can't export org.eclipse.rcp with eclipse europa on mac and on windows if i sign the rcp application with my .keystore file ther's an error like this: "Jar signer could not be found.make sure to run with the build with a JDK"
If i export with my sign under windows with eclipse rcp/europa say me that can't export for an error on org.eclipse.equinox.launcher.win32.win32.x86_1.0.2.R331_v20071019.jar.


My i've a tutorial thath run??????
Please help me.
Thanks