SendResponse Method
In a server environment, responds to the requesting client.
Syntax
public void SendResponse();
Public Sub SendResponse()
Remarks
When called from within a server environment, SendResponse will respond to the requesting client with the Response. The Response may be a simple HTML block (this will always be the case in version 1.4) or a GISB-Acknowledgement-Receipt, if requested by the client.
The exact behavior of the method is specific to the environment. In ASP or ASP.NET, the receipt will be sent within the current HTTP context. In Java, the receipt will be sent within the provided HttpServletResponse. Otherwise, the receipt will be directed to stdout. If this is impossible an exception will be thrown.
This method should only be invoked after Response has been generated by CreateResponse or ProcessRequest.