Ask a Question related to Macromedia Flash Flashcom, Design and Development.
-
spaoind #1
Multipoint Publishing with FME and 2 FMS servers
Hello,
I am trying to setup Multipoint Publishing using FME and a couple of FMS
servers. Can you take a look at the below code and let me know if I should be
doing something different.
- FME streams to FMS 1 (on SERVER_1)
- FMS1 publishes to FMS2 (on SERVER_2) using the below actionscript in
main.asc file on FMS1
I have put the code under FCPublish because the comments in main.asc state
that FME calls FCPublish when it publishes a new stream.
Client.prototype.FCPublish = function( streamname )
{
if ( true) // do some validation here
{
this.call("onFCPublish", null, {code:"NetStream.Publish.Start",
description:streamname});
nc = new NetConnection();
nc.connect("rtmp://SERVER_2/test_HighBW/");
ns = new NetStream(nc);
ns.publish(streamname);
}
else
{
this.call("onFCPublish", null, {code:"NetStream.Publish.BadName",
description:streamname});
}
}
Thanks in advance,
Sai
spaoind Guest
-
web publishing wizard...how to REMOVE web servers?
I've created a number of web server choices in the wizard that I no longer need and would like to remove, yet the program provides no obvious... -
Is Contribute Publishing Server REQUIRED for draftreview & publishingContribute Publishing Server
I want to set up a very basic workflow with one or more writers and a publisher who does final review and then publishes the pages. Is Contribute... -
Is Contribute Publishing Server REQUIRED for draftreview & publishing
Please have look on the below mentioned link to have an idea of CPS and few advantages of it... -
Frontend Web Servers connect to Coldfusion Servers
I need some help getting a front end web server cluster (iis) talking with the backend colfusion app cluster (j2ee install). Do I have to install... -
Different web servers
We have two web servers, Netscape (Perl) and IIS5 (ASP.Net), users must login thru Netscape server first, and then they have the option to go to... -
dmazan #2
Re: Multipoint Publishing with FME and 2 FMS servers
Need to add:
ns.attach(streamname);
That sends the incoming stream out the new NetStream. The name passed in the
ns.publish method is the stream name on the OTHER server. It can be the same,
if you want. But it has nothing to do with the streamname parameter of the
FCPublish function.
dmazan Guest



Reply With Quote

