Re: [flexcoders] Re: RTMP port 2038

2008-05-16 Thread EECOLOR
ServerConfig.getChannel(channel-idf).url =your url; Greetz Erik On 5/16/08, meteatamel [EMAIL PROTECTED] wrote: It is possible. In your Flex app, you can create a ChannelSet and add an RTMPChannel to it with the url that has the port, and then assign that ChannelSet to your Flex component

[flexcoders] Re: RTMP port 2038

2008-05-16 Thread Robert Csiki
Thank you all. The use case is we noticed we can't depoy the same webapp twice on the same server host (the second one won't work right, because port 2048 is already taken). We tried changing the port but it did not work as the initial port value is burnt into the SWF. BTW, I can't find the

RE: [flexcoders] Re: RTMP port 2038

2008-05-16 Thread Seth Hodgson
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Friday, May 16, 2008 8:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RTMP port 2038 Thank you all. The use case is we noticed we can't depoy the same webapp twice on the same server host

[flexcoders] Re: RTMP port 2038

2008-05-16 Thread Robert Csiki
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RTMP port 2038 Thank you all. The use case is we noticed we can't depoy the same webapp twice on the same server host (the second one won't work right, because port 2048 is already taken). We tried changing the port but it did not work

[flexcoders] Re: RTMP port 2038

2008-05-15 Thread meteatamel
It is possible. In your Flex app, you can create a ChannelSet and add an RTMPChannel to it with the url that has the port, and then assign that ChannelSet to your Flex component (RemoteObject, Producer/Consumer, HTTPService/WebService, DataServcice). Check out the Actionscript API for these