com.bankframe.ei.channel.server
Class JspHttpServer

java.lang.Object
  extended bycom.bankframe.ei.channel.server.JspHttpServer

public class JspHttpServer
extends java.lang.Object

This class is the server that processes the incoming post requests from Jsps. It will take the post request and generate the request DataPackets. Once this is done it routes the the request to the request router and returns the response


Constructor Summary
JspHttpServer()
          JspHttpServer constructor
 
Method Summary
 java.util.Vector processRequest(javax.servlet.http.HttpServletRequest req)
          This method processes an incoming request from a HTML form via a jsp This allows requests to be composed of multiple data packets from a HTML form.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JspHttpServer

public JspHttpServer()
JspHttpServer constructor

Method Detail

processRequest

public java.util.Vector processRequest(javax.servlet.http.HttpServletRequest req)
This method processes an incoming request from a HTML form via a jsp This allows requests to be composed of multiple data packets from a HTML form. However the syntax of the request in the JSP must adhere to the channel management conventions. Should these conventions be broken then a ProcessingErrorException will be thrown, converted to a DataPacket and returned to the calling JSP to process

Parameters:
req - The servlet request object containing the request data
Returns:
A Vector of datapackets containing a response


Copyright © 2005, 2007, Oracle. All rights reserved.