Re: How to access a CFC both locally and remotely?

2005-08-16 Thread Rick Root
wolf2k5 wrote: I am planning to add an AJAX interface to one on my applications, the application uses CFCs. Can I have a CFC's method with both local and remote access? How? Yes. I do this all the time. I have some CFCs that power both flash and standard web apps, and so the methods

Re: How to access a CFC both locally and remotely?

2005-08-16 Thread Paul Hastings
Rick Root wrote: Yes. I do this all the time. I have some CFCs that power both flash and standard web apps, and so the methods used by the flash apps get remote while the others get public or private. well since you admitted this ;-) do your CFCs extend anything? i seem not to be able

RE: How to access a CFC both locally and remotely?

2005-08-16 Thread Calvin Ward
I've been able to do this... -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 8:17 AM To: CF-Talk Subject: Re: How to access a CFC both locally and remotely? Rick Root wrote: Yes. I do this all the time. I have some CFCs that power

Re: How to access a CFC both locally and remotely?

2005-08-16 Thread Rick Root
Paul Hastings wrote: well since you admitted this ;-) do your CFCs extend anything? i seem not to be able to access a CFC that's extended from a base CFC via flash remoting (CFC b extends CFC a, flash remoting to CFC b). i had to use another CFC to talk to CFC b. is that normal or just

RE: How to access a CFC both locally and remotely?

2005-08-16 Thread Jim Davis
-Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 8:17 AM To: CF-Talk Subject: Re: How to access a CFC both locally and remotely? Rick Root wrote: Yes. I do this all the time. I have some CFCs that power both flash and standard

Re: How to access a CFC both locally and remotely?

2005-08-16 Thread Paul Hastings
Jim Davis wrote: Are ALL the CFC's in the extension chain in a web accessible directory? If not then the remote access type bombs. yes, i tested that, no go. only thing i can guess at is that the base CFC has no remote methods. its not that i mind using a facade CFC (is that the right