R – Flex HTTPService Error

apache-flexhttpserviceweb services

I am creating a Flex application and am using an HTTPService to retrieve XML from an asmx web service. This web service needs one string parameter. This parameter contains multiple options separated by ~ and parsed apart. This web service works with a limited length of string, otherwise an error is retrieved if the string is long enough and no xml is retrieved. However if the web service call is plugged directly into IE, the proper xml is retrieved.

The error:

faultCode:Server.Error.Request faultString:'HTTP request error' faultDetail:'Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error.

I believe the problem is a timeout issue but am unsure how to resolve this. Any help?

Best Answer

It actually appears to only be an issue with IE. Everything works fine with Firefox and Chrome.

Related Topic