Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/11/2005, 12:04
*luna
 
Fecha de Ingreso: agosto-2005
Mensajes: 36
Antigüedad: 19 años, 4 meses
Puntos: 0
ayuda con una traducción

Hola:

Estoy leyendo algunos ejemplos de código comentado, y tengo algún problema con las traducciones

¿podeis decirme qué significa este If it is a get request forward to doPost()?

Código:
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;

public class login extends HttpServlet 
  {

                 private String target = "/welcome.jsp";

                 private String getUser(String username, String password) 
                             {

                                          // If this was reality, we would perform a SQL

                                            return "Sam";
                            }

             public void init(ServletConfig config)  throws ServletException 
                           {

                                 super.init(config);
                            }

            public void doGet(HttpServletRequest request,
            HttpServletResponse response)
            throws ServletException, IOException 
                           {

                                    // If it is a get request forward to doPost()  

                                         doPost(request, response);
                          }

............

Asiasss