|
Home > Archive > Macromedia Flash Server > July 2006 > Flash Communication Server MX 1.5
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Flash Communication Server MX 1.5
|
|
| Ted Coffman 2006-06-23, 7:11 pm |
|
Hello everyone,
Is there anyone out there who can tell me what might be causing this?:
I've set up the directory structure, as required to do, but I don't
have direct access to the Flash Communication Server Admin panel. In the
authoring environment, I've followed all the steps as outlined by
tutorials on Lynda.com and a couple other places, but keep getting this
error message:
"The Internet site you are about to view uses a certificate that has
expired or is not yet valid. Do you wish to proceed?"
I then select yes...
Here's the actionscript I've put on frame one:
nc = new NetConnection();
nc.connect("rtmp:/video_tutorial/video");
nc.onStatus = function(info)
{
trace(info.code);
if (info.code == "NetConnection.Connect.Success") {
out_txt.text = "Connecting to server...Done!"
gotoAndStop("choose");
} else {
out_txt.text = "Connection problem: "+info.code;
}
}
stop();
In the output window I'm getting the following message:
"Connection problem: NetConnection.Connect.Closed"
I'm not experienced enough with FCS to know for sure what the problem
is.
Can anyone give me any ideas as to how I might get to the bottom of
what the problem is?
Thank you,
Ted
________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
| |
| Vinícius Hacebe 2006-07-04, 1:11 am |
| I think that your "video" is the name of your stream, and "video_tutorial"
is the name of the application
so...
try adding this line:
*ns.play("video");*
after this:
*out_txt.text = "Connecting to server...Done!"*
**
*bye!!!*
2006/6/23, Ted Coffman <CoffmanT-gSowAs/UEyr2fBVCVOL8/A@public.gmane.org>:
>
>
> Hello everyone,
>
> Is there anyone out there who can tell me what might be causing this?:
>
> I've set up the directory structure, as required to do, but I don't
> have direct access to the Flash Communication Server Admin panel. In the
> authoring environment, I've followed all the steps as outlined by
> tutorials on Lynda.com and a couple other places, but keep getting this
> error message:
>
> "The Internet site you are about to view uses a certificate that has
> expired or is not yet valid. Do you wish to proceed?"
>
> I then select yes...
>
> Here's the actionscript I've put on frame one:
>
> nc = new NetConnection();
> nc.connect("rtmp:/video_tutorial/video");
>
> nc.onStatus = function(info)
> {
> trace(info.code);
> if (info.code == "NetConnection.Connect.Success") {
> out_txt.text = "Connecting to server...Done!"
> gotoAndStop("choose");
> } else {
> out_txt.text = "Connection problem: "+info.code;
> }
> }
>
> stop();
>
>
>
> In the output window I'm getting the following message:
>
> "Connection problem: NetConnection.Connect.Closed"
>
>
> I'm not experienced enough with FCS to know for sure what the problem
> is.
>
> Can anyone give me any ideas as to how I might get to the bottom of
> what the problem is?
>
> Thank you,
> Ted
> ________________________________________
_______
> FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
|
|
|
|
|