Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Flash Communication Server Problem



Does anyone have any idea on how to authenticate a user so that they must enter their user name and password to logon to the system. Im developing a chatroom,video-conference and whiteboard facility using flash components and I need to authenticate the user so that they can log-on successfully. Any ideas?



FlashKit > Flash Help > Flash ActionScript
Posted on: 02-03-2004, 09:56 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

New Flash MX Communication Server Bug
Hi anyone tried the new Flash MX communication server trial , cause when I installed it the suggested components that must show up in the Flash authoring tool were not there ...I tried it on a several computers with the same result.

Flash Communication Server
What the hell is this. Another version of flash. I spent over 500 dollars when MX first came out, excited about the possibility of video conferencing development, and it turns out you need this new version to do this. Please tell me I am mistaken. If I am not, to hell with Macromedia. This is the kind of crap that makes people down load software illegally.

Is there a way I can create video conferencing with the current MX and use another type of server software to connect applications together?


Concerned, broke, and pissed,
troy

Flash Communication Server
Is there anybody out there who is or has developed anything in flash communication server, I am interested in what people are doing with it, and would love to see some URL's.

cheers

lee

About Flash Communication Server
When Flash Communication Server was released? The first version I mean.

I couldn't find it on Macromedia site

Thanks in advance

Flash Communication Server
Does anyone have the code to create a username and password for an online collaboration environment. I am developing a chatroom,whiteboard and video-conference facilities and require code for teachers and students to log-in. I'm quite new to flash and would be grateful for any help on this.

FLV For Flash Communication Server
Hi:
I have a book by Kevin Towes (Macromedia Flash Comm Server MX)
where he explains about using Flash MX to export FLV to be used for
Flash Communication server. I tried exporting my FLV using both
Flash MX and Flash MX 2004. I still cannot get it streamed thru the
FCS. I am sure the problem is not with my codings but with the flv,
most probably.
Any suggestion would be appreciated.

Thanks
H

Flash Communication Server
Hey guys, I was wondering if you guys have played around with FlashComm at all? I am currently taking a class, and trying to get the hang of it. The class is pretty comprehensive and I'm not doing having too much trouble. But I definately have some question reguarding some techniques that my professor hasn't touched upon and I was wondering if any of you guys had any knowledge about.

My question is about how the client-side AS relates to the server side AS. I'm sitting here looking at both files, and I can't figure it out. It's not really a technical question pursay. I'm just looking at this sample file for an Mp3 player and the client side script doesn't call upon the server side script at all. Does it just know to do it? or is this sample file just wrong? Here is th code I'm looking at:


Quote:




CLIENT SIDE

//Connection
var hookup_nc:NetConnection = new NetConnection();
hookup_nc.connect("rtmp:/zmp3select/spin");
var musicStream_ns:NetStream = new NetStream(hookup_nc);
//Classics
start_btn.onPress = function() {
hookup_nc.call("streamClassics");
musicStream_ns.play("myMusic");
};
//Blues
blues_btn.onPress = function() {
hookup_nc.call("streamBlues");
musicStream_ns.play("myMusic");
};
//Music Off
stop_btn.onPress = function() {
hookup_nc.call("streamsOff");
musicStream_ns.close();
};





Quote:




SERVER SIDE

application.onConnect = function(player) {
application.acceptConnection(player);
player.streamClassics = function() {
player.mySounds = Stream.get("myMusic");
if (player.mySounds) {
player.mySounds.play("mp3:Mozart1", 0);
player.mySounds.play("mp3:Regal", 0, -1, false);
player.mySounds.play("mp3:Bolero", 0, -1, false);
}
};
player.streamBlues = function() {
player.mySounds = Stream.get("myMusic");
if (player.mySounds) {
player.mySounds.play("mp3:IndianBlues", 0);
player.mySounds.play("mp3:ye", 0, -1, false);
player.mySounds.play("mp3:palmsway", 0, -1, false);
}
};
player.streamsOff = function() {
player.mySounds.play(false);
};
};

Flash Communication Server
Hi

I am currently working on a live project using FCS; it’s a mp3 audio streaming application. Where the

mp3 files has a relevant lyrics files as an .swf format.

I am getting problem when I try to sync the lyrics.swf and the mp3: files (streaming) and whenever I

pause the mp3 audio it’s working fine but while playing again the audio jump little bit back and start

playing and also some time it’s jump forward and plays, there is no consistency, is there any

suggestion or any tech help.

Thank you

Flash Communication Server Help
Hi,
What is Flash Communication Server exactly?

How can i use it?

Please give details where can i find tutorial to learn & use it.

Thanks in advance.
- Smita.

Flash Communication Server
Hey guys, I was wondering if you guys have played around with FlashComm at all? I am currently taking a class, and trying to get the hang of it. The class is pretty comprehensive and I'm not doing having too much trouble. But I definately have some question reguarding some techniques that my professor hasn't touched upon and I was wondering if any of you guys had any knowledge about.

My question is about how the client-side AS relates to the server side AS. I'm sitting here looking at both files, and I can't figure it out. It's not really a technical question pursay. I'm just looking at this sample file for an Mp3 player and the client side script doesn't call upon the server side script at all. Does it just know to do it? or is this sample file just wrong? Here is th code I'm looking at:


Quote:




CLIENT SIDE

//Connection
var hookup_nc:NetConnection = new NetConnection();
hookup_nc.connect("rtmp:/zmp3select/spin");
var musicStream_ns:NetStream = new NetStream(hookup_nc);
//Classics
start_btn.onPress = function() {
hookup_nc.call("streamClassics");
musicStream_ns.play("myMusic");
};
//Blues
blues_btn.onPress = function() {
hookup_nc.call("streamBlues");
musicStream_ns.play("myMusic");
};
//Music Off
stop_btn.onPress = function() {
hookup_nc.call("streamsOff");
musicStream_ns.close();
};





Quote:




SERVER SIDE

application.onConnect = function(player) {
application.acceptConnection(player);
player.streamClassics = function() {
player.mySounds = Stream.get("myMusic");
if (player.mySounds) {
player.mySounds.play("mp3:Mozart1", 0);
player.mySounds.play("mp3:Regal", 0, -1, false);
player.mySounds.play("mp3:Bolero", 0, -1, false);
}
};
player.streamBlues = function() {
player.mySounds = Stream.get("myMusic");
if (player.mySounds) {
player.mySounds.play("mp3:IndianBlues", 0);
player.mySounds.play("mp3:ye", 0, -1, false);
player.mySounds.play("mp3:palmsway", 0, -1, false);
}
};
player.streamsOff = function() {
player.mySounds.play(false);
};
};

Flash Communication Server......
I have a free trial of the Flash Communication server. I just wondered if its the same as the Multiuser server which comes with Macromedia Director MX, If it is, is it possible to make chat rooms?

If you can any tutorials?

Flash <-> Server Communication
I don't know much about Flash but I need to judge its appropriatness for a future project. In particular, I am interested in its app <-> server communcation abilities.

There are two cases that I can think of:

1) Can a Flash app running in a browser periodically retrieve updated data from a Web server?

2) Can a Web server periodically send updated data to a Flash app running in a browser? For that matter, can the server even keep track of which users still have the Flash app running in their browsers (assuming the app was downloaded from the same server)?

I found Macromedia Flash Remoting MX. Is that what I need? It looks promissing but it's very expensive (1000 USD) and only runs on a Windows box. Are there any alternatives?

Thank you very much for your help!

Flash Communication Server
hi..
i am new to the flash mx communication server, can any body help me in finding the good resourses for the reference???
thanks

Flash Communication Server
i've just come across this on the macromedia website, and I was wondering if anyone could tell me if it's any good? Also, say you I was using it for online multiplayer games - would my computer have to be powered on and connected to the internet all the time for it to work?

Flash MX Communication Server PET CAM?
Hiya, anyone know of a good place to get started learning Com SErver 1.5?

I wanna turn my Sony handycam and ehternet connection into a "pet cam" sort of set up if at all possible?!?!?

Thanks in advance!

Flash Communication Server
hi every one,

can any one suggest me basic tutorials for Server side actionscripting,configring the server and xml socket programming.



Thanks in advance


deepbinary

Flash Communication Server Community
FlashCommunity Portal Site now open!

We are proud to announce that the early bird notification registration for our new community web site focussing on Macromedia's upcomming and amazing Flash Communication Server technology is now open!

Register today, stay tuned tomorrow:

http://www.flashcom.info .

In addition to our early bird registration you can subscribe to the FlashCommunity Mailing list by sending an empty email to list@flashcom.info with nothing but the word SUBSCRIBE in the subject line.

================================================== =========
.FLASH COMMUNICATION SERVER WILL CHANGE THE FACE OF THE WEB
================================================== =========
WEB: http://www.flashcom.info
================================================== =========

Macromedia Flash Communication Server MX
what actually is Communication Server and What sorts of complex applications are possible using ColdFusion, Flash and Communication Server?

New Forum?: Flash Communication Server
I was just wondering (especially to any moderators out there), if there was a chance of setting up a Flash Communication Server MX forum. Is there anyone out there using it? I've been looking at it pretty closely and wouldn't mind sharing a few things (and of course, asking questions of others.) It's a great program, and I was kind of curious what others were doing with it. (Yeah, I could just post in the MX forum, but there's a lot of messages to sift through in here.) Thanks.

-logrey

Macromedia Flash Communication Server MX
so what's the beef? what does it offer us? anybody have any more info?

oh yeah here's the address: http://www.macromedia.com/go/home_news_0709_flcom

who can tell me what this is all about in plain english? is flashcom just an easier way of implementing chat,live video, etc.? what's the beef here?
[Edited by flashyPandaMan on 07-16-2002 at 04:08 PM]

FLASH MX And APPLICATION And COMMUNICATION SERVER MX
Ok...Questions about FLASH MX. So its said that FLASH is sort of an internet application development program. Is this like for INTRANETS and EXTRANETS? Also what roll does or can COMMUNICATION SERVER MX play in that?

Flash Communication Server(FCS) Application
I'm working on a Flash Communication Server(FCS) Application :

The application's objective is mainly aimed at conferencing along with features like (normal text chat + video display + whiteboard + image slides + text slides + file uploads etc.)

The application uses Flash MX + FCS + Flash remoting + CF + MS SQL



Now what i intend to achieve is :

1) currently there's a 'powerpoint' tool in the application just converts the powerpoint slides into jpg files and displays these in the application's session - we would like to see about the possibility of being able to import a full powerpoint file into the shared session so that it maintains all powerpoint features (i.e. animation, page transitions, etc.)

2) the ability to have a 'shared' web browser in the application's session so that a user could control a browser and the other participants could view the same.



QUESTION : ARE THE ABOVE MENTIONED POINTS POSSIBLE? (using the above mentioned technologies, or by integrating some other technology which could further communicate to the afore mentioned technologies. )

Confused About Flash Communication Server
I have be playing with this and electro server

It seems to me they both have the same ability to create semi real time games.. But why do I not read anything about writing games with flash communication server?

As far as the difference between that and electro server... it which situation is one better than the other?

FCS seems heavily into chatting and sending audio and video back and forth yes?

Flash Communication Server Alternatives
Hi, i am fairly new to flash. Is any way to create a chatroom application without using flash communication server? I have been brainstorming interesting interactions between flash, javascript, and php, but so far i have been unable to find a reliable approach that doesn't waste large amounts of resources.

What Ever Happened To Flash Communication Server?
I know it wasn't very popular, has it been discontinued?

Communication Server Tools In Flash 8
Does anybody know how i can install the Communication server tools - Flash admin / Communication app inspector etc into my Flash 8 professional authoring environement.

Any Idea were I can get the latest tools - the only download I can find only works for MX 2004 and won't install in Flash 8?

cheers

Configuration Of Flash Communication Server
any one plzzzz ..helpme in configuration of flash media server(new name of flash communication serrver)

and plzz any one tell me ..that how i creat a simple application that is

video conferencing between two pc's(of same domain) on local LAN ..just two pc'ssssss

Run Mp3 Songs From Flash Communication Server
Hi guys,

i have some problems, i am using fash communication server for running mp3 file from fcs. My all mp3 files is on flash communication server. i want to run these files as

code:

nc =new NetConnection();
nc.connect("rtmp://localhost/Radio/video");
s=new NetStream(nc);
s.play("bird.mp3");


but its not running properly.
Please give me some way that i can play mp3 files from FCS

regards

Flash Communication Server MX And SSAS
MK, i just got a mediatemple site, and ultimetly i want to learn server-side action script to talk to a mySQL data base,

after looking for info online the line is still blurry and i would like to know if Flash Communication Server MX and server-side action script can work togthere so i can learn to connect to a mySQl data base...

so i guess what i am asking technically is, "does Flash Communication Server MX allow me to create a flash remoting gateway so i can use SSAS to talk to a database?"

anyone?

How To Stream .avi To Flash Communication Server
hello, guys,

i have a following problem: i want to make a screen capture and then embed it in flash swf movie so i can stream it up to flash communication server.

the idea is this: i made a windows application that captures the bitmaps at some interval. those bitmaps are than saved to file system in the .avi format.

the problem is: how to include my bitmaps or my avi to swf file at runtime? i want to produce the same effect as with "camtasia recorder" live output.

any help on this subject?
thnx

Flash Media/Communication Server
Hi all,
I'm just pondering...
So what in the heck is Flash Media or Communication Server and what makes it worth 15 grand? I know that it's possible with it to stream live video and even host maybe a conference chat via video feeds and whatnot, but beyond that, what is the purpose or point?
Is it possible to create an instant messenger inside of flash WITHOUT FMS? Why 15 THOUSAND dollars?

Flash Communication Server Hosting
Hi folks,
Wondering if you can throw me any suggestions for Flash Communication Server hosting?

Just starting out so nothing too pricey...any ideas?

Flash Communication Server Portal Now Open
FlashCommunity Portal Site now open!

We are proud to announce that the early bird notification registration for
our new
community web site focussing on Macromedia's upcomming and amazing Flash
Communication Server
technology is now open!

Register today, stay tuned tomorrow: http://www.flashcom.info .

In addition to our early bird registration you can subscribe to the
FlashCommunity Mailing list by sending an empty
email to list@flashcom.info with nothing but the word SUBSCRIBE in the
subject line.

--
================================================== ===========
.FLASH COMMUNICATION SERVER WILL CHANGE THE FACE OF THE WEB
================================================== ===========
WEB: http://www.flashcom.info
================================================== ===========

Is It Possible To Record Sound Without The Flash Communication Server?
Is it possible to record sound without the help of Flash Communication Server? I know there is an Microphone Object in Flash MX, and know how to play the sound inputted from the microphone immediately...but can I record the sound inputted in a file locally?

Thanks for help.

Video Chat W/o Flash Communication Server
Is it possible to develop a video chat application without Flash Com server?

TCP Communication From Flash To Java Application Server
I got a problem,I want to communicate over TCP Sockets with an APP. server.I am actually a primer with flash.
Please help me

Thanks in Advance

MohanKrishna

Using FLVPlayback Component W/ Flash Communication Server
Hello,
I have connected to Flash Communication Server and I am able to load the flv files. However when I try to use the FLVPlaybackComponet, nothing happens it just stays on the preloader. I am using "rtmp://webaddress/moviefolder" in the Content Path field of the Component Inspector. I am interested in using the controls for video playback that are included in the FLVPlaybackComponet.

Can anyone point me in the right direction?

Flash Communication Server On AMD 64 Bits With SuSE EL
We are planning to change the hardware and Operative System of our Flash Communication Server.

Someone knows if it is possible to install FCS on a 2xDual Core AMD Opteron (64 bits) processor server with SuSE Linux Enterprise Server 10 OS?

Thank you very much for your support.

Flash Communication Server On AMD 64 Bits With SuSE EL
We are planning to change the hardware and Operative System of our Flash Communication Server.

Someone knows if it is possible to install FCS on a 2xDual Core AMD Opteron (64 bits) processor server with SuSE Linux Enterprise Server 10 OS?

Thank you very much for your support.

Flash Communication Server MX Tutorials, Links
hi do any body know links, sites, tutorials. for Flash Communication Server for newbies pleaaaze
i have done a lot of searches but did't find any thing


thank you very much

Chat Room? Flash Communication Server?
Hello guys, i have seen people make chat rooms in Flash and they look quite sweet. But i went on sitepoint forum and asked them and they started blagging my head with XML plugins and stuff i am not familiar with.

But i found i have the flash communication server, so is it possible just to create one and make the users connect to that?

If so is there any online tutorials for that? if there isnt i reckon that should be the next big kirupa tutorial , hint , hint

Reply back

Jason

Flash Communication Server MX Tutorials, Links
hi do any body know links, sites, tutorials. for Flash Communication Server for newbies pleaaaze
i have done a lot of searches but did't find any thing


thank you very much

Upgrade Flash Player In Communication Server Application
hi hi

I build a flash communication server application and it works fine, but I need to upgrade my flash player from 6 to 8.
when I change my flash player to 8 in my .fla it doesn't work well any more.

can any one tell me how I can fix it, please?

Audio Video Streaming Using Flash Communication Server
I am currently working on a modeling web site and I want to offer a online portfolio where models

can post their photos, audio and video files, thus making it a multimedia based portfolio.

Here is the list of the files I plan to allow the models to upload in their portfolio
Photos - .gif, .jpg, .bmp
Audio - .mpeg, wma, mp3 and wav
Video - .avi, .mpeg, .mpg, .mov

I am trying to find a way for users of this site to view the audio/video files without having any

file format specific plug-in or player installed on their desktops. So far I have concluded that it

would be best if somehow I can manage to stream down the audio and video files on the client’s

browser in Flash format then this would require the clients to have only a Flash browser plug-in

which is a very common plug-in now a days.

I think all this could be done using Flash Communication Server and I am working on that. However I

am sure that we do not some 3rd party applications like Flix Engine http://flix.on2.com/ and similar

tools.

Any help, advice or pointers on this matter would be highly appreciated. If anyone has developed

such a feature in the past then I am also open to buying that from him (of course I can’t pay a lot

of money).

Let me know.

Thanks
Paresh

Use Flash Communication Server To Protect Actionscript From Decompilers?
I've been trolling the web almost non-stop for the past week trying to figure out if there is some way to protect ActionScript code from SWF decompilers. (Obviously the answer I came up with is a resounding no.) Some forums that I visited seemed to imply that by using .ASC files on a Flash Communication Server and using Flash Remoting, that you can have Flash movies run ActionScript code server-side, thus preventing any web browser clients from accessing the ActionScript source code. Is this really true, or am I just starting to hallucinate? Basically, I am wondering if there is some way to place all of the classes that I have created for a Flash project in server-side ActionScript, so that anyone who visits and manages to decompile the SWF cannot see the actual ActionScript code? Since this project is for a corporate business, I guess you can assume that I have "infinite" bandwidth at my disposal.

Audio Video Streaming Using Flash Communication Server
I am currently working on a modeling web site and I want to offer a online portfolio where models

can post their photos, audio and video files, thus making it a multimedia based portfolio.

Here is the list of the files I plan to allow the models to upload in their portfolio
Photos - .gif, .jpg, .bmp
Audio - .mpeg, wma, mp3 and wav
Video - .avi, .mpeg, .mpg, .mov

I am trying to find a way for users of this site to view the audio/video files without having any

file format specific plug-in or player installed on their desktops. So far I have concluded that it

would be best if somehow I can manage to stream down the audio and video files on the client’s

browser in Flash format then this would require the clients to have only a Flash browser plug-in

which is a very common plug-in now a days.

I think all this could be done using Flash Communication Server and I am working on that. However I

am sure that we do not some 3rd party applications like Flix Engine http://flix.on2.com/ and similar

tools.

Any help, advice or pointers on this matter would be highly appreciated. If anyone has developed

such a feature in the past then I am also open to buying that from him (of course I can’t pay a lot

of money).

Let me know.

Thanks
Paresh

Audio Video Streaming Using Flash Communication Server
I am currently working on a modeling web site and I want to offer a online portfolio where models can post their photos, audio and video files, thus making it a multimedia based portfolio.

Here is the list of the files I plan to allow the models to upload in their portfolio
Photos - .gif, .jpg, .bmp
Audio - .mpeg, wma, mp3 and wav
Video - .avi, .mpeg, .mpg, .mov

I am trying to find a way for users of this site to view the audio/video files without having any file format specific plug-in or player installed on their desktops. So far I have concluded that it would be best if somehow I can manage to stream down the audio and video files on the client’s browser in Flash format then this would require the clients to have only a Flash browser plug-in which is a very common plug-in now a days.

I think all this could be done using Flash Communication Server and I am working on that. However I am sure that we do not some 3rd party applications like Flix Engine http://flix.on2.com/ and similar tools.

Any help, advice or pointers on this matter would be highly appreciated. If anyone has developed such a feature in the past then I am also open to buying that from him (of course I can’t pay a lot of money).

Let me know.

Thanks
Paresh

Audio Video Streaming Using Flash Communication Server
I am currently working on a modeling web site and I want to offer a online portfolio where models

can post their photos, audio and video files, thus making it a multimedia based portfolio.

Here is the list of the files I plan to allow the models to upload in their portfolio
Photos - .gif, .jpg, .bmp
Audio - .mpeg, wma, mp3 and wav
Video - .avi, .mpeg, .mpg, .mov

I am trying to find a way for users of this site to view the audio/video files without having any

file format specific plug-in or player installed on their desktops. So far I have concluded that it

would be best if somehow I can manage to stream down the audio and video files on the client’s

browser in Flash format then this would require the clients to have only a Flash browser plug-in

which is a very common plug-in now a days.

I think all this could be done using Flash Communication Server and I am working on that. However I

am sure that we do not some 3rd party applications like Flix Engine http://flix.on2.com/ and similar

tools.

Any help, advice or pointers on this matter would be highly appreciated. If anyone has developed

such a feature in the past then I am also open to buying that from him (of course I can’t pay a lot

of money).

Let me know.

Thanks
Paresh

Flash Communication Server Streaming Video Problem
Hi,

I am trying out flash communication on linux to make a prototype for a streaming video service.

I have no problem with streaming video on my local lan but when i try to stream it for server in datacenter the video hang and there is a error message

Failed to seek (stream ID: 1).

is this a problem with the firewall or the applications?

Copyright © 2005-08 www.BigResource.com, All rights reserved