Online documentation - WebsydianExpress v3.0 |
Abstract.FileServiceProcessor
ServiceProcessor functions are called when the runtime has identified that a request is a web service request and the ServiceProcessor function is specified for the URL of the request.
A FileServiceProcessor function performs three steps:
The FileServiceProcessor function can be used when the input and output data are saved as files. The function does not process the data before or after the call to the ServiceHandler.
Inherit from the abstract FileServiceProcessor function if you want to handle the received and returned data as files.
You should first investigate whether you can use the implemented FileServiceProcessor that is delivered with the standard WebsydianExpress installation. If your only reason for creating a special version is that you need to use a special selection criterion that is not handled by the implemented FileServiceProcessor, you should first look at the "Program" selection criterion. This special criterion makes it possible for you to specify a program that handles the selection of the ServiceHandler based on you own logic.
The most common reason for creating your own version of the abstract FileServiceProcessor is if you need to either pre-process the data in the file before sending it to the handler or perform a post-process on the output file before returning the data to the client.
Please note that all ServiceProcessor functions are called dynamically based on the entries specified in the service structure tree. This means that you may not change the interface of the implemented function.
Background: Understanding service structure
Background: Handling web service requests