[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread kaleb_pederson
Thanks for the suggestion. I tried: // variation five ws.sendStrings(One,Two,Three); // variation six ws.sendStrings(new Array(One,Two,Three)); Both of the above result in the exact same empty SOAP message being generated. Any other ideas? Given the number of variations that I have tried,

[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread Renaun Erickson
Get a HTTP traffic sniffer like ServiceCapture and see how the request is going out. It looks to be an issue on the WebService side or you are making a call to an invalid WSDL or WebService file. You need to look into the WebService side of things. Renaun --- In flexcoders@yahoogroups.com,

RE: [flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread Darren Houle
Did you try creating and sending that XML I suggested? Darren From: kaleb_pederson [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Array parameters fail with Webservices Date: Thu, 03 Aug 2006 15:36:07 - Thanks

[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread kaleb_pederson
I have been using tcpdump to grab the packets. I can tell that the SOAP Envelope being generated contains an empty parameter list. Per my first post, the SOAP envelope being generated looks like the following (less formatting): ?xml version=1.0 encoding=utf-8? SOAP-ENV:Envelope

[flexcoders] Re: Array parameters fail with Webservices

2006-08-03 Thread kaleb_pederson
@yahoogroups.com, Darren Houle [EMAIL PROTECTED] wrote: Did you try creating and sending that XML I suggested? Darren From: kaleb_pederson [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Array parameters fail with Webservices Date

[flexcoders] Re: Array parameters fail with Webservices

2006-08-02 Thread Renaun Erickson
Try: ws.sendStrings(One,Two,Three); Which should make the call with 3 distinct parameters. Renaun --- In flexcoders@yahoogroups.com, kaleb_pederson [EMAIL PROTECTED] wrote: I'm using a webservice that requires that an array of strings be passed to one function. Each method that I have

RE: [flexcoders] Re: Array parameters fail with Webservices

2006-08-02 Thread Darren Houle
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Array parameters fail with Webservices Date: Wed, 02 Aug 2006 18:21:06 - Try: ws.sendStrings(One,Two,Three); Which should make the call with 3 distinct parameters. Renaun --- In flexcoders@yahoogroups.com, kaleb_pederson [EMAIL