Hi, I have AJAX v 1.0.61025.0 token 31bf3856ad364e35, XP, VS 2005 Team Systems:
I have this AJAX call:
requestComplexService = MyWebServiceManager.MyMethodCall (params[], myMethod_OnComplete, myMethod_OnTimeout);
That AJAX call returns a collection of custom objects, and runs fine most of the time - but when "params[]" contain certain values, the call fails, which executes the "myMethod_OnTimeout(errObj)" function.
I have stepped through my C# web service code using VS2005 and there is no error in the web service itself (the collection of custom objects is successfully built and should return to the "myMethod_OnComplete" function).
In the "method_OnTimeout" function, I know typeof(errObj) = "object" but I have no idea what the API is for "errObj" object.
Can someone tell me where I can find the object model for that response object ("errObj")? (hoping this object contains useful info).
Also while on the subject, does anyone have best practice suggestions for debugging this type of AJAX call (best way to figure out why I'm hitting OnTimeout instead of OnComplete)?
Thanks,
Ray