Hi Mark, Thanks for your reply. I actually thought maybe you were on the right track but taking a similar approach didn't solve my issue. Rather than being in the wrong order, my parameters are all showing as null when in ServiceCapture. I have set breakpoints to confirm that the request is correctly populated and formatted when I call send(), but something is messing it up. The weird thing is that calling the exact same service in a different environment (different url, stored procs and db) seems to work flawlessly.
I think I may start a new thread for this as the 2032 errors seem to be caused by my requests being fubar. Thanks, Ben --- In [email protected], "Mark Doberenz" <[EMAIL PROTECTED]> wrote: > > 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

