Hi Guys, I have a long running Geoprocessor task based on Python code on the server. I am starting the service with : var gp = new esri.tasks.Geoprocessor(url);
gp.submitJob(inParams, function(completeStatus){...}, function(updateStatus){...}, function(failedStatus){...})
I was hoping to receive intermediate messages from the server in the updateStatus argument of the 2nd callback function passed in the submitJob(). That callback does get called many times while the job is executing but the status.messages.description only contain a generic "Executing". Not the custom messages I intended to be sending by adding arcpy.AddMessage("....")
within my Python code.What is the correct way to receive intermediate messages from a Python base Geoprocessing service?Thanks,Lew.