Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-07 Thread Johannes Nel
:* Re: [flexcoders] Moving flex app (coldfusion) to a production server if you setup your services config to point to a specific server like this: endpoint url=rtmp://www.servername.com:2038 class=flex.messaging.endpoints.RTMPEndpoint/ then change it to endpoint url=rtmp://{server.name

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-07 Thread Tom Chiverton
On Thursday 06 Aug 2009, Daniel Nelson wrote: I would suggest that you don't compile against the services-config.xml file in your flex project. Instead you should be dynamically setting up your remote calls. Makes moving from development to production a lot easier Well, yeah, one or the

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-06 Thread Tom Chiverton
On Wednesday 05 Aug 2009, Johannes Nel wrote: I have noticed a lot of developers tend to put hardcoded paths in there to be able to debug since they use flex projects and not server projects. You mean their developing a web based Flex application, but are not developing it useing a local web

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-06 Thread Daniel Nelson
I would suggest that you don't compile against the services-config.xml file in your flex project. Instead you should be dynamically setting up your remote calls. Makes moving from development to production a lot easier On Thu, Aug 6, 2009 at 5:28 AM, Tom Chiverton

[flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Scott
I've been working on my development environment on my notebook for a while now. I've got Flex and CF loaded locally along with CF's built in web server. I discovered that it seems the services-config.xml may be what tells the flex app to connect to a specific server. How do I move a development

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Tom Chiverton
On Wednesday 05 Aug 2009, Scott wrote: I've been working on my development environment on my notebook for a while now. I've got Flex and CF loaded locally along with CF's built in web server. I discovered that it seems the services-config.xml may be what tells the flex app to connect to a

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Johannes Nel
if you setup your services config to point to a specific server like this: endpoint url=rtmp://www.servername.com:2038 class=flex.messaging.endpoints.RTMPEndpoint/ then change it to endpoint url=rtmp://{server.name}:2038 class=flex.messaging.endpoints.RTMPEndpoint/ so for example my amf channel

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Tom Chiverton
On Wednesday 05 Aug 2009, Johannes Nel wrote: then change it to endpoint url=rtmp://{server.name}:2038 class=flex.messaging.endpoints.RTMPEndpoint/ Curly braces are the default, and are filled in at run time by the client, for the record. -- Helping to evangelistically seize

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Johannes Nel
I have noticed a lot of developers tend to put hardcoded paths in there to be able to debug since they use flex projects and not server projects. On Wed, Aug 5, 2009 at 5:03 PM, Tom Chiverton tom.chiver...@halliwells.comwrote: On Wednesday 05 Aug 2009, Johannes Nel wrote: then change it to

RE: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Scott
Of Johannes Nel Sent: Wednesday, August 05, 2009 9:46 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Moving flex app (coldfusion) to a production server if you setup your services config to point to a specific server like this: endpoint url=rtmp://www.servername.com:2038 http

RE: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Scott
] On Behalf Of Johannes Nel Sent: Wednesday, August 05, 2009 9:46 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Moving flex app (coldfusion) to a production server if you setup your services config to point to a specific server like this: endpoint url=rtmp://www.servername.com:2038