com.esri.adf.web.util
Class ADFMimeDataServlet

java.lang.Object
  extended byjavax.servlet.GenericServlet
      extended byjavax.servlet.http.HttpServlet
          extended bycom.esri.adf.web.util.ADFMimeDataServlet
All Implemented Interfaces:
java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public class ADFMimeDataServlet
extends javax.servlet.http.HttpServlet

A servlet which provides the ability to display MIME data in your browser. MIME data is used to safely transfer binary data into text strings and transport over HTTP.

See Also:
Serialized Form

Field Summary
static java.lang.String ID
          The unique id to get the MIME data for a specific control.
static java.lang.String WEB_SESSION_NAME
          The name of the WebSession object.
 
Constructor Summary
ADFMimeDataServlet()
           
 
Method Summary
 void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Retrieves the MIME data from the session and writes out the MIME data in the response.
 
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service, service
 
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
 

Field Detail

ID

public static final java.lang.String ID
The unique id to get the MIME data for a specific control.

See Also:
Constant Field Values

WEB_SESSION_NAME

public static final java.lang.String WEB_SESSION_NAME
The name of the WebSession object.

See Also:
Constant Field Values
Constructor Detail

ADFMimeDataServlet

public ADFMimeDataServlet()
Method Detail

doGet

public void doGet(javax.servlet.http.HttpServletRequest request,
                  javax.servlet.http.HttpServletResponse response)
           throws java.io.IOException
Retrieves the MIME data from the session and writes out the MIME data in the response.

Parameters:
request - the HttpServletRequest object
response - the HttpServletResponse object
Throws:
java.io.IOException