[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-12 Thread valdhor
I would recommend looking through the tutorials at http://flexcf.com/ especially the one Simple RemoteObject Tutorial. --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi I am doing an AIR application and the coldfusion server in a network pc(192.168.0.181).the

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-12 Thread jer_ela
That's the default. I'm not sure how or even if you can change it. It's worked for every CF server I've worked with. It looked like you were going against a specific server, in which case see if it works and if so don't worry about cases where it won't. If you need to be able to talk to

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-12 Thread Michael VanDaniker
The flex2gateway is defined in the services-config.xml file found in your_cf_install_path/wwwroot/WEB_INF/flex/ Depending on how you set up your flex project, this file will be used during compilation so your remote objects will know what 'destination=ColdFusion' actually means. After you edit

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-11 Thread jer_ela
just set the endpoint in your air code myRemoteObject.endpoint = http://192.168.0.181/flex2gateway;; --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi I am doing an AIR application and the coldfusion server in a network pc(192.168.0.181).the application need use

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-11 Thread markflex2007
How do you know flex2gateway here.do I set it in somewhere? Thanks Mark

[flexcoders] Re: How to set the endpoint address in Coldfusion side?

2009-02-10 Thread markflex2007
How to set up the endpoint in the server if I like the endpoint format look like following: http://192.168.0.181/myTestApp/messagebroker/amf Thanks Mark