Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-25 Thread Muzak
t; <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, November 24, 2006 4:04 PM Subject: Re: [Flashcoders] AS2 Flash Remoting Troubles > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Here is my entire code which I am having issues with: > > import mx

RE: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Alain Rousseau
Graham Pearson Sent: 24 novembre 2006 10:05 To: Flashcoders mailing list Subject: Re: [Flashcoders] AS2 Flash Remoting Troubles -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Here is my entire code which I am having issues with: import mx.remoting.Service; import mx.remoting.PendingCall; import mx.rpc.Re

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Odie Bracy
Is there a typo in this line --- "onEchoResul" needs the t Odie pc.responder = new RelayResponder(this, "onEchoResul", "onEchoFault"); ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://ch

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Count Schemula
Q: How do you know something is obsolete? A: It works. On 11/24/06, Graham Pearson <[EMAIL PROTECTED]> wrote: I really do not want to go back to AS1 if I can help it, but I just might have to. -- count_schemula ___ Flashcoders@chattyfig.figleaf.co

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 That is because the URL is only accessible on my LAN. If I change the gateway url to www which is the public address I get the same result so I know it has to be something with my setup but I can not figure it out. I really do not want to go back to A

RE: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Adams, Matt
At first glance, your pc.responder's result function isn't spelled correctly: "onEchoResul". Shouldn't a 't' be at the end? - Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Graham Pearson Sent: Friday, November 24, 2006 7:28 AM To: Flashcoders ma

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Ray Chuan
Your gateway url is down. On 11/24/06, Graham Pearson <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Here is my entire code which I am having issues with: import mx.remoting.Service; import mx.remoting.PendingCall; import mx.rpc.RelayResponder; import mx.rpc.FaultEven

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Here is my entire code which I am having issues with: import mx.remoting.Service; import mx.remoting.PendingCall; import mx.rpc.RelayResponder; import mx.rpc.FaultEvent; import mx.rpc.ResultEvent; import mx.services.Log; var gatewayServer:String = "d

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Muzak
Sent: Friday, November 24, 2006 2:03 PM Subject: Re: [Flashcoders] AS2 Flash Remoting Troubles > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > In the actual fla file it is correct, I develop on one machine and Send > email on another computer. I have even downloaded AS2 Remoting E

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In the actual fla file it is correct, I develop on one machine and Send email on another computer. I have even downloaded AS2 Remoting Examples that others have made available which give me the same result. I am currently using Flash Pro 8. Alain Rou

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Alain Rousseau
Hi Graham, Did you check your typos ? we forget sometimes but, this is often the first place to look ! pc.responder = new RelayResponder(this, "onEchoResul", "onEchoFault"); you forgot the "t" in "onEchoResult" :) A. Graham Pearson wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I