// check whether the operation has been mapped in configuration
if (serviceData.getOperations().containsKey(operationName))
{
// get operation data from configuration mapping
OperationData operationData = serviceData.getOperations().get(operationName);
try
{
// create an instance of the operation handler setup in configuration
operationHandler = (OperationHandler)operationData.getClassType().newInstance();
}
catch (Exception ex)
{
SimpleLogger.Write("Reflection error!");
SimpleLogger.Write(ex);