Re: [flexcoders] Re: Flex code generator for webservice

2007-09-30 Thread Daniel Freiman
http://nondocs.blogspot.com/2007/05/mxrpcsoapwebserviceactionscriptexample.html On 9/29/07, muratt_cim <[EMAIL PROTECTED]> wrote: > > thank you for your answer we will take into consideration your > suggestions > > --- In flexcoders@yahoogroups.com , " > ben.clinkinbeard" > > <[EMAIL PROTECTED]

[flexcoders] Re: Flex code generator for webservice

2007-09-29 Thread muratt_cim
thank you for your answer we will take into consideration your suggestions --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" <[EMAIL PROTECTED]> wrote: > > Should be something like this: > > var service:WebService = new WebService(); > service.loadWSDL("http://some.wsdl.url";); > service.add

[flexcoders] Re: Flex code generator for webservice

2007-09-28 Thread muratt_cim
Hi Jason We will add the examples section to our web site and you can reach all examples from that section. when we are start to publish examples section we are going to send you e-mail to inform you --- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > I'm going to

[flexcoders] Re: Flex code generator for webservice

2007-09-28 Thread ben.clinkinbeard
Should be something like this: var service:WebService = new WebService(); service.loadWSDL("http://some.wsdl.url";); service.addEventListener(LoadEvent.LOAD, onWsdlLoad); and then onWsdlLoad could look something like this: var op:Operation = service.getOperation("GetDocument") as Operation; op.r