Class Hierarchy    Previous  Next  Index

Class COM.cloudscape.core.ServletHandler

java.lang.Object
    |
    +----javax.servlet.GenericServlet
            |
            +----javax.servlet.http.HttpServlet
                    |
                    +----COM.cloudscape.core.ServletHandler

public class ServletHandler
extends javax.servlet.http.HttpServlet
Copyright © 1998-2000, Informix Software, Inc. All rights reserved.

This servlet handles the connection between a cloudsync hub and target. This is a propriatery data transfer machanism used by cloudscape.


Constructor Index

 o ServletHandler()
 

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Handles get requests to aid setup.
 o doPost(HttpServletRequest, HttpServletResponse)
 
 o init(ServletConfig)
 

Constructor Detail

 o ServletHandler
public ServletHandler()

Method Detail

 o init
public void init(javax.servlet.ServletConfig config) throws javax.servlet.ServletException
Throws:
javax.servlet.ServletException - if a servlet exception has occurred
Overrides:
init in class javax.servlet.GenericServlet
See Also:
init
 o doGet
public void doGet(javax.servlet.http.HttpServletRequest req,
                  javax.servlet.http.HttpServletResponse res) throws javax.servlet.ServletException, java.io.IOException
          Handles get requests to aid setup. A browser can be pointed at this servlet to ensure it has been registered with the server framework.
Overrides:
doGet in class javax.servlet.http.HttpServlet
 o doPost
public void doPost(javax.servlet.http.HttpServletRequest req,
                   javax.servlet.http.HttpServletResponse resp) throws java.io.IOException
Throws:
java.io.IOException - if detected when handling the request
Overrides:
doPost in class javax.servlet.http.HttpServlet
See Also:
javax.servlet.http.HttpServlet

  Class Hierarchy    Previous  Next  Index