Problème lors de l'appel d'une applet
Salut
Voila j'essaye d'appeller une applet sur ma page jsp mais sans succée en utilisant ce lien :
http://127.0.0.1:8080/Chat/chatlive
mais en utilisant celui la : http://127.0.0.1:8080/chat/chat.jsp et bien ça marche trés bien
moi ce que je veux c'est mon applet s'affiche avec ce lien : http://127.0.0.1:8080/Chat/chatlive
bien sur ce lien est construit via le fichier web.xml de mon application web
Voici les fichiers de mon application :
web.xml
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<servlet>
<servlet-name>chat</servlet-name>
<servlet-class>com.chat.servlets.chat</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>chat</servlet-name>
<url-pattern>/chatlive</url-pattern>
</servlet-mapping>
</web-app> |
chat.java
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| package com.chat.servlets;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class chat extends HttpServlet {
public void doGet( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException {
this.getServletContext().getRequestDispatcher( "/WEB-INF/chat.jsp" ).forward( request, response );
}
} |
chat.jsp
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <html>
<head>
<title>Nouvelles Java</title>
</head>
<body>
Les dernières nouvelles :
<br>
<applet code="com.chat.applet.AppletNouvelles" width="400" height="100"
codebase="classes">
<param name="texte"
value="<html><h2>Swing encore plus facile !</h2>
Saviez-vous que le composant <code>javax.swing.JLabel</code><br>
permet d'afficher des textes au format HTML ?<br>
<h2>Le programmeur masqué a encore sévi</h2>
Dans la nuit de mercredi à jeudi, le programmeur masqué<br>
a envoyé un spam contenant le texte <i>Vive Java !</i>...</html>">
<p>
Sans <a href="http://java.sun.com/getjava/">Java</a>, les nouvelles
sont tellement plus tristes...
</p>
</applet>
</body>
</html> |
Pouvez vous m'aider a la faire afficher en utilisant ce lien : http://127.0.0.1:8080/Chat/chatlive ?
Cordialement