Here is the servlet code... pretty straight forward.

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;

public class TestingServlet extends HttpServlet {

  public void doGet(HttpServletRequest request, 
    HttpServletResponse response) 
    throws ServletException, IOException {
    
    PrintWriter out = response.getWriter();
    out.println("");
    out.println("");
    out.println("Servlet Testing");
    out.println("");
    out.println("");
    out.println("Welcome to the Servlet Testing Center");
    out.println("");
    out.println("");
  }
}


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3843896#3843896

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3843896


-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to