When you add an application through the DE PMC, you must use the Add Application wizard. This wizard defines a consumer location to associate with your application, deploys your service package, and registers your application. After completing the steps with the wizard, your application should be ready to use.
Symphony calls onInvoke() on the service container once per task. Once you inherit from the ServiceContainer class, implement handlers so that the service can function properly. This is where the calculation is performed.
To gain access to the data set for the client, you must present an instance of the message object to the populateTaskInput() method on the task context.
The task context contains all information and functionality that is available to the service during an onInvoke() call in relation to the task that is being processed.
You present to populateTaskInput() the message object that comes from the client application. During this call, the data sent from the client is used to populate the message object.
Catch exceptions in case the container fails to start running.