Can't run a JOGL applet over Internet

Hello,
I am developping a 3D application (java applet) with JOGL to visualize 3D buildings. When i run the applet on a local html code, it runs perfectly. However when i run it on a distant server, it does not work.
The html code ued to insert the applet in a Web page is the following:


<applet 
               code="org.jdesktop.applet.util.JNLPAppletLauncher"
               width=1000
               height=600
               
               archive="
	         http://download.java.net/media/applet-launcher/applet-launcher.jar,
               http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
               http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
               http://myIPAdresse/ApplicationFolder/myProject.jar
               
               ">
   <param name="codebase_lookup" value="false">
   <param name="subapplet.classname" value="editor.Applet">
   <param name="subapplet.displayname" value="Mon applet">
   <param name="noddraw.check" value="true">
   <param name="progressbar" value="true">
   <param name="jnlpNumExtensions" value="1">
   <param name="jnlpExtension1" value="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp">
 </applet>

Could you please help me to resolve this problem?
Thanks.