Bonjour,

pour écrire mes fichiers .jnlp et html, j'ai suivi cette faq :
http://jsorel.developpez.com/tutoriels/java/jws1/

Je mets les différents fichiers que j'ai
test.jnlp :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://localhost/Local-Site-A/" href="test.jnlp">
 
	<information>
		<title>Mon Logiciel par JNLP</title>
		<vendor>Johann Sorel</vendor>
 
	</information>
 
	<resources>
		<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
		<jar href="http://localhost/Local-Site-A/test.jar"/>
		<jar href="http://localhost/Local-Site-A/lib/jfreechart-1.0.5.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/junit.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/itext-2.0.1.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/jfreechart-1.0.5-experimental.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/servlet.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/jcommon-1.0.9.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/jfreechart-1.0.5-swt.jar"/>
                <jar href="http://localhost/Local-Site-A/lib/swtgraphics2d.jar"/>
	</resources>
 
	<application-desc main-class="MonMenu" />
 
</jnlp>
J'indique les différents jar que j'utilise. Dans mon programme j'utilise JFreeChart.

test.html :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
<html>
	<head>
		<title>Mon Logiciel</title>
	</head>
 
	<body>
		Mon Programme a déployer :
		<br>
		<a href="test.jnlp">PROG</a>
	</body>
 
</html>
Lorsque je lance mon programme, une fenetre s'affiche mais ne fait rien.
Avant d'utiliser java web start, j'ai tester mon prgramme avec le test.jar généré et ça fonctionnait normalement mais avec java web start le programme ne fait rien.
En principe, mon programme, affiche une fenetre dans laquelle se trouve une JTable qui se recharge toutes les 2 secondes et il y a aussi un menu qui permet de choisir les graphes à afficher.
Donc il n'y a pas la JTable et lorsque je clique dans mon menu, il ne se passe rien.

Quelqu'un aurait-il une idée du soucis que j'ai ?

Merci