I just started getting the 2032 error when calling a web service and
for the life of me cannot determine what's causing it.
Code snippet looks like:
var ws:WebService = new WebService()
ws.addEventListener("fault", faultHandler); // alerts error
ws.loadWSDL("http://mylocalservers/test.asmx?WSDL");
ws.updateTest(__xml);
Sometimes i get it, and sometimes i don't. Not sure why though.
faultCode Server.Error.Request
faultDetail: Error: IOErrorEventtype: "ioError"
faultString: HTTP Request error
I getting in production when i'm in an SSL environement and I get it
in my development environment where i'm running the flex app and web
services all locally.
The url to my web service url is correct and the web services runs
properly when called and tested from other apps.
What's weird is that i haven't changes how my web service calls or
web service itself works...
Any help or pointers would be greatly appreciated.
--Scott