RE: [Flashcoders] > Webservices best practices

2005-12-20 Thread Jared Freeze
borys/JSON/JSON.as And more: http://ajaxian.com/archives/2005/12/yahoo_json_api.html Jared -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Tuesday, December 20, 2005 8:14 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] >

Re: [Flashcoders] > Webservices best practices

2005-12-20 Thread Weyert de Boer
> Really? I'm working on a project where most of my data is to be > supplied via webservices and it will most certainly be more than 2-3 > methods. I have got it fixed, i think it was a timing issue when I added a setInterval( this, "flightRequest", 1000 ); it works to trigger the 3-4 methods in

Re: [Flashcoders] > Webservices best practices

2005-12-20 Thread Johan Lopes
Really? I'm working on a project where most of my data is to be supplied via webservices and it will most certainly be more than 2-3 methods. I'm putting together a serviceLocator class (singleton) that takes care of all my webservice calls. You're not using the MX 04 web service connector are you

Re: [Flashcoders] > Webservices best practices

2005-12-19 Thread Weyert de Boer
Are their any rules about how much webservices calls you can do in a flash movie? It always stops after 2-3 methods. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] > Webservices best practices

2005-12-19 Thread Weyert de Boer
Hello! I have beeen working on the webservices stuff, somehow it only works the first time i.e. if I trigger the method which should consume a webservice. It works. Only when I try to trigger a new method in the onResult-event of the first one. Nothing happens only my trace of the onLoad-even

Re: [Flashcoders] > Webservices best practices

2005-12-19 Thread campbell
Hey Weyert, Its only some complex datasets that flash doesnt translate to well. there are always ways around it. But if your working with a webservice deisgned to be read with .net and contains complex dataset information you may have some parsing work ahead of you. Depends if you have access t

[Flashcoders] > Webservices best practices

2005-12-19 Thread Weyert de Boer
Hi I am working on a data consuming flash applucation which should consume his data from a web service (SOAP) only I was curious if their are any best practices on this kind of work. Mainly because I am not able to use Flash Remoting or similar products, I read that Flash doesn't support .NE