RE: [flexcoders] WebService call with more than one argument in call

2008-06-30 Thread Tracy Spratt
onald Sent: Monday, June 30, 2008 6:56 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] WebService call with more than one argument in call You want: myService.myOperation.arguments = { parm1: value1, parm2: value2 }; myService.myOperation.send(); -Josh On Mon, Jun 30, 2008 at 5:39 P

Re: [flexcoders] WebService call with more than one argument in call

2008-06-30 Thread Josh McDonald
You want: myService.myOperation.arguments = { parm1: value1, parm2: value2 }; myService.myOperation.send(); -Josh On Mon, Jun 30, 2008 at 5:39 PM, dsb1971 <[EMAIL PROTECTED]> wrote: > Hello group, > > I am new to Flex and try to play around with WebServcies. Everything > is ok when I only have

[flexcoders] WebService call with more than one argument in call

2008-06-30 Thread dsb1971
Hello group, I am new to Flex and try to play around with WebServcies. Everything is ok when I only have one paramter as an argument for the service. But when I try to use more than one parameter to hand over to the service-operation, the value of the first argument overwrites the second argum

[flexcoders] WebService call

2008-01-06 Thread j301c
I have a webservice running on a local glassfish server. I can access the url from the browser and retreive the wsdl xml manually. When I run the swf from the webpage nothing happens (no responce or error), when I run swf on my local system it gives me this error [RPC Fault faultString="Secu

Re: [flexcoders] WebService Call

2006-07-27 Thread slangeberg
Yeah,   Try something more like (I'm not sure what your 'FlexData' object was supposed to refer to... ):          id="wsTest"   wsdl="http://localhost:9126/SOAP "  fault="{trace(-1);}"   result="{trace(1);}"/>     On 7/26/06, richmcgillicuddy <[EMAIL PROTECTED]> wrote: I

RE: [flexcoders] WebService Call

2006-07-26 Thread Tracy Spratt
Don’t Webservices require an operation? Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of richmcgillicuddy Sent: Wednesday, July 26, 2006 7:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] WebService Call   I have a

[flexcoders] WebService Call

2006-07-26 Thread richmcgillicuddy
I have a simple web service calling a SOAP web service on my local machine. The call looks like: http://localhost:9126/SOAP"; load="wsTest.FlexData.getData()" fault="trace(-1);" /> It seems to hang waiting for localhost and if I let it wait long enough, it will give me the fo