examples.servlets
Class SnoopServlet

java.lang.Object
  |
  +--javax.servlet.GenericServlet
        |
        +--javax.servlet.http.HttpServlet
              |
              +--examples.servlets.SnoopServlet

All Implemented Interfaces:

java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

 

public class SnoopServlet

extends javax.servlet.http.HttpServlet

Demonstrates getting and using the request information, headers, and parameters sent by the browser.

 

Build the Example

  1. Open a new command shell.

  2. Set up the development shell.

  3. Move to the sample directory:
      cd $WL_HOME/samples/server/examples/src/examples/servlets

  4. Build the servlet:
      ant SnoopServlet

  5. Start WebLogic Server with the examples configuration.

  6. Make sure that the examplesWebApp is deployed on your server.

  7. To run, go to:

    www.setgetweb.com:7001/examplesWebApp/SnoopServlet

  8. If you add some request parameters to the URL the servlet will read those parameters form the request and display them in the output. For example:

    www.setgetweb.com:7001/examplesWebApp/SnoopServlet?testParam=referer

  For more information on servlets, see Programming WebLogic HTTP Servlets.

See Also:

SnoopServlet.java
build.xml
Serialized Form

 

Constructor Summary

SnoopServlet()  

 

Method Summary

 void service(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
 HttpServlet

Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service
 GenericServlet

Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SnoopServlet

public SnoopServlet()

Method Detail

javax.servlet.http.HttpServletResponse)">

service

public void service(javax.servlet.http.HttpServletRequest req,
                    javax.servlet.http.HttpServletResponse res)
             throws javax.servlet.ServletException,
                    java.io.IOException

Overrides:

service in class javax.servlet.http.HttpServlet

javax.servlet.ServletException

java.io.IOException