Código PHP:
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class PruebaServlet extends HttpServlet
{
//PROCESAR LAS PETICIONES
protected void doGet( HttpServletRequest peticion, HttpServletResponse respuesta) throws ServletException, IOException
{
respuesta.setContentType( "text/html" );
PrintWriter salida = respuesta.getWriter();
//ENVIAR PAGINA XML AL CLIENTE
//EMPEZAR DOCUMENTO XML
salida.println( "<?xml version = "1.0\" ?>");
salida.println("<!DOCTYPE html PUBLIC \"-//W3C//DTD " + "XHTML 1.0 Strict//EN\" \"http:www.w3.org" + "/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
salida.println("<html xmlns = \"http://www.w3.org/1999/xhtml\">");
salida.println("<head><title>Ejemplo de Servlet Simple</title></head>");
salida.println("<body>");
salida.println("<h1>¡Bienvenido a los servlets!</h1>");
salida.println("</body>");
salida.println("</html>");
salida.close();
}
}
Código PHP:
mport javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class PruebaServlet extends HttpServlet
{
//PROCESAR LAS PETICIONES
protected void doGet( HttpServletRequest peticion, HttpServletResponse respuesta) throws ServletException, IOException
import javax.servlet.*;
^
C:\Tomcat 4.1\webapps\ROOT\servlet\PruebaServlet.java:2: package javax.servlet.http does not exist
import javax.servlet.http.*;
^
C:\Tomcat 4.1\webapps\ROOT\servlet\PruebaServlet.java:5: cannot resolve symbol
symbol : class HttpServlet
location: class PruebaServlet
public class PruebaServlet extends HttpServlet
^
C:\Tomcat 4.1\webapps\ROOT\servlet\PruebaServlet.java:8: cannot resolve symbol
symbol : class HttpServletRequest
location: class PruebaServlet
protected void doGet( HttpServletRequest peticion, HttpServletResponse respuesta) throws ServletException, IOException
^
C:\Tomcat 4.1\webapps\ROOT\servlet\PruebaServlet.java:8: cannot resolve symbol
symbol : class HttpServletResponse
location: class PruebaServlet
protected void doGet( HttpServletRequest peticion, HttpServletResponse respuesta) throws ServletException, IOException
^
C:\Tomcat 4.1\webapps\ROOT\servlet\PruebaServlet.java:8: cannot resolve symbol
symbol : class ServletException
location: class PruebaServlet
protected void doGet( HttpServletRequest peticion, HttpServletResponse respuesta) throws ServletException, IOException
gracias por la ayuda