class EnsLib.XSLT.TransformedService
extends Ens.BusinessService, EnsLib.XSLT.Common
A generic business service that applies an XSLT transform to the incoming request
and to the outbound response.
This is a Business Service class.
parameter SETTINGS = "InboundStylesheet,OutboundStylesheet";
List of properties can be set as settings in the configuration file
format is a comma separated list of property names
property InboundStylesheet
as %String(MAXLEN=512);
property OutboundStylesheet
as %String(MAXLEN=512);
method OnInit()
as %Status
This user callback method is called just after %OnNew()
method OnProcessInput(pInput As %RegisteredObject, pOutput As %RegisteredObject)
as %Status
Override this method to process incoming data. Do not call SendRequestSync/Async() from outside this method (e.g. in a SOAP Service or a CSP page).
method OnTearDown()
as %Status
This user callback method is called just before %OnClose()