[flexcoders] Re: HTTPService receiving an array as parameter

2008-07-17 Thread pbrendanc
Guilherme, I'm also testing this and have passed a parameter object as part of my HTTP request as follows: httpSvc.send(testVO); However I'm not seeing the parameter values in the HTTP request when I debug on the server side. However they do show up when I look at the request using the Web

Re: [flexcoders] Re: HTTPService receiving an array as parameter

2008-07-17 Thread Guilherme Blanco
There's one thing you missed here I have this: var params:Object = new Object(); params.viewId = _viewId; itemService.send(params); And it works ok... But If I try this: var params:Object = new Object(); params.viewId = _viewId; params.foo = new

[flexcoders] Re: HTTPService receiving an array as parameter

2008-07-17 Thread pbrendanc
FYI - I'm seeing the same thing as you with my tests - it looks like only the first array element is available on the server side (There may be a Flex/HTTP limitation here - not sure ). var ipArray:Array = []; var rowdata:String = ''; rowdata ='1234';