I had this issue for a long time.
I'm hoping this is a webservice call you're trying to make, and that it has arguments that are needed.  Say the arguments are arg1 and arg2 and they both take string values.  Also assume the function is called func1.  Here's what I would suggest...
 
var func1:Operation = webserviceObject.func1;
func1.arguments = {arg1:"value1", arg2:"value2"};
func1.send();
 
The issue is that the argument list for webservices (and possibly http requests) are hash tables.  Hash tables don't guarantee order, so you need to create an object and specifically assign a value to a property.
 
After I implemented this, I pretty much got rid of all of my stream errors.
 
Mark

 
On 8/10/06, ben.clinkinbeard <[EMAIL PROTECTED]> wrote:

I am getting these errors every now and then and I've not been able to
even begin to understand why. I saw in another thread that someone had
traced a similar issue to HTTP cache control header issues, but that
was only happening in IE. Mine happen in Firefox as well. It usually
fixes it to close the session and republish, but not always. Is this
basically saying it can't find the URL? Has anyone else experienced,
or better yet, solved this? Below is a sample fault message.

[FaultEvent fault=[RPC Fault faultString="HTTP request error"
faultCode="Server.Error.Request"
faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false
cancelable=false eventPhase=2
text="Error #2032: Stream Error. URL:
http://fescov151win/Webservices/ClientMeasures.asmx "]. URL:
http://fescov151win/Webservices/ClientMeasures.asmx"]
messageId="A1575198-9334-D65B-AB26-F9C801601784" type="fault"
bubbles=false cancelable=true eventPhase=2]


__._,_.___

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





YAHOO! GROUPS LINKS




__,_._,___

Reply via email to