Re: [flexcoders] Web Services and CF7

2005-05-19 Thread dave buhler
from: http://forta.com/blog/index.cfm?mode=ccatid=11 Using Flash Remoting With CFMX7? Watch Out For This One I mentioned this in a comment on a prior post , but it is important enough to warrant its own mention. If you are using Flash Remoting to access ColdFusion code, you may run

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Indy Nagpal
Hi Ted: I agree with Andrew totally. Using remoteobject to invoke the cfc on the server is a much more efficient. I've been using remoteobject to access cfc and it works beautifully. A question for you: Are you going to be running cf7 and flex on the same jrun instance? If you are, keep in mind

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Indy Nagpal
Ted, I just found another reason why I'd prefer remoteobject over webservices. If a cfc extends another component, you cannot access the inherited functions when using webservices. You will have specifically write functions in the cfc you are calling to expsore the inherited functions. However,

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
;) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Muller Sent: Thursday, May 19, 2005 1:05 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Web Services and CF7 So, silly question, how are you structuring/formatting the data

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Web Services and CF7 from: http://forta.com/blog/index.cfm?mode=ccatid=11 Using Flash Remoting With CFMX7? Watch Out For This One I mentioned this in a comment on a prior post , but it is important enough to warrant

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Peter Farland
this AppendToGatewayUrl response header in the NCD. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Theodore E PatrickSent: Thursday, May 19, 2005 7:58 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Web Services and CF7 Dave, Awesome, thanks for these! I completely

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Thijs Triemstra | Collab
thanks for that updater link, dave. That .jar updater in the cfmx admin is very nice but cannot be installed with firefox (osx 10.4.1), I can't select select the updater from the java filebrowser thing, safari works fine though :-/is there a way to get a notification when there is an macromedia

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Dave Carabetta
On 5/19/05, Thijs Triemstra | Collab [EMAIL PROTECTED] wrote: thanks for that updater link, dave. That .jar updater in the cfmx admin is very nice but cannot be installed with firefox (osx 10.4.1), I can't select select the updater from the java filebrowser thing, safari works fine though :-/

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Peter Farland
Remoting is great but it has a core limitation of one request at a time due the way AMF was implemented in the player. [Pete] You can simply create a new connection for each RemoteObject by either re-connecting by calling connect on the connection property of the RO or by using a distinct

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Andrew Muller
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Muller Sent: Thursday, May 19, 2005 1:05 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Web Services and CF7 So, silly question, how are you structuring/formatting the data that you're

Re: [flexcoders] Web Services and CF7

2005-05-18 Thread Tarik Ahmed
These may be of use: http://www.cflex.net/showfiledetails.cfm?ObjectID=177 http://www.cflex.net/showfiledetails.cfm?ObjectID=141 Theodore E Patrick wrote: I am looking at using CF7 and CFC web services with Flex 1.5. I understand that some have seen issues with using these two togther or was

Re: [flexcoders] Web Services and CF7

2005-05-18 Thread Andrew Muller
Ted Is there any reason, since you're using CF7, why you wouldn't connect from Flex via Flash Remoting instead of Web Services, you'd be consuming the same CFC presumably and the data should be much less verbose... Andrew Andrew Muller Partner, RocketBoots http://www.rocketboots.com.au On

RE: [flexcoders] Web Services and CF7

2005-05-18 Thread Theodore E Patrick
@yahoogroups.com Subject: Re: [flexcoders] Web Services and CF7 Ted Is there any reason, since you're using CF7, why you wouldn't connect from Flex via Flash Remoting instead of Web Services, you'd be consuming the same CFC presumably and the data should be much less verbose... Andrew

Re: [flexcoders] Web Services and CF7

2005-05-18 Thread Andrew Muller
@yahoogroups.com Subject: Re: [flexcoders] Web Services and CF7 Ted Is there any reason, since you're using CF7, why you wouldn't connect from Flex via Flash Remoting instead of Web Services, you'd be consuming the same CFC presumably and the data should be much less verbose