CRRUI1070E An exception_name exception occurred while processing the call back function.

Explanation

An unhandled exception occurred in the callback function.

User Response

Modify the callback function code adding a try/onException block. In the onException, add this code to handle the exception:
        try
            //code to handle the data returned from the service
        onException(exception AnyException)
            //code to handle an exception that occurs while processing the 
					//data returned from the service
        end

Feedback