Retrive FMS server date to AS3

hi,
i m working on a customer support chat application. There is
neccssary for me to get the FMS server time and date, bcoz
depending on the server time and date the client instances recive
different messages.
i looked at date() function on FMS server, but it returns
user PC time ( not FMS server time).......
so i there any way to get FMS server date and time??
thanks in advance
shrikant

what is FMS server? Can you talk to it using HttpService?
Otherwise how do you connect to to using Flex?
ATTA

Similar Messages

  • How to get FMS server time and date

    hi,
    i m working on a customer support chat application. There is
    neccssary for me to get the FMS server time and date, bcoz
    depending on the server time and date the client instances recive
    different messages.
    i looked at date() function on FMS server, but it returns
    user PC time ( not FMS server time).......
    so i there any way to get FMS server date and time??
    thanks in advance
    shrikant

    See this post.
    How To Display Time Information in Report/Results?
    http://forums.ni.com/t5/NI-TestStand/During-a-test-how-can-I-find-the-start-time-and-date-of-that/td...
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • AS3 via Fms Server

    This question is a mutual question of as3 and fms, I am not sure - a proficient can help in this forum but _____
    In my flv file, I have 500 hundred small size (20 seconds timewise - 0.80 mb byte wise) videos in the library. In a test , randomly 6 of tese viedos come to the screen and since it is a test if you choose the correct video, the next question comes (another 6 videos randomly come and so on....)
    I have 2 questions here
    1. My swf is working fine with 20 videos (flv playback ) in the library, but when I fill the library with 500 of them, is there a possible size problem because of libraray capacity ( I think the stage is not a problme because only 6 videos are available on the stage each time)
    2.If I publish this swf in the net and use an fms server to make possible anybody can use the swf and videos at the same time,
    what capacity shall I choose as - ??? how many people at the same time. There are options like 100 people -300- 500 people at the same time. But in brief in my library I have500 videos and randomly 6 on the stage.
    Thnx..

    "1. My swf is working fine with 20 videos (flv playback ) in the library, but when I fill the library with 500 of them, is there a possible size problem because of libraray capacity ( I think the stage is not a problme because only 6 videos are available on the stage each time)"
    You don't have to do that. You can instantiate a single symbol from the library as many time as you want and just supply appropriate video asset url.
    "2.If I publish this swf in the net and use an fms server to make possible anybody can use the swf and videos at the same time,
    what  capacity shall I choose as - ??? how many people at the same time.  There are options like 100 people -300- 500 people at the same time. But  in brief in my library I have500 videos and randomly 6 on the stage."
    If you are talking about server config options:
    a. It doesn't matter how many simbols there are in the library. What matters is how many simultaneous streams a single user will establish. So, if you play back 6 videos at a time for a single client - with 300 limit only 50 people will be able to watch them.
    b. You are better off posting load balancing and configuration question on FMS forum.

  • Listing files on FMS server @ client

    Hi Everybody!
    I want to show list of FLV files placed on FMS server. do u
    guys have any sample code for that. Looking forward for reply!
    thanks.

    Amitpal,
    Here is a server side class that list files in 3 ways.
    getFiles just returns the content of the folder specifiec.
    showFileList returns the content of a folder listing it's
    sub-folders and content as an object.
    listFiles just returns the recursive sort of the folder.
    function FileManager()
    trace("#FileManager# constructor");
    FileManager.prototype.getFiles = function(p_client, p_path)
    trace("getFiles Called");
    trace(p_path)
    var fileList = new File(p_path);
    var temp = fileList.list();
    return temp;
    FileManager.prototype.showFileList = function(p_client,
    p_path)
    this.fileList = {folders:"", files:""};
    this.folders = new Array();
    this.files = new Array();
    this.listFiles(p_path, true);
    //for(j=0; j<this.fileList.length; j++){
    // trace(this.fileList[j]);
    this.fileList.folders = this.folders;
    this.fileList.files = this.files;
    return this.fileList;
    FileManager.prototype.listFiles = function(path, listsub)
    var curFolder = new File(path);
    var files = curFolder.list();
    for (var f=0; f < files.length; f++) {
    if (files[f].isDirectory && listsub == true) {
    this.folders.push(files[f].name)
    //this.listFiles(files[f].name, true);
    } else {
    this.files.push(files[f].name);
    // main.asc file
    load("FileManager.asc");
    application.onAppStart = function()
    this.fileManager = new FileManager();
    // FileManager Call *from Peldi
    Client.prototype.fileManagerCall = function(p_method)
    var fileMgr = application.fileManager;
    if (fileMgr[p_method] == undefined) {
    trace("ERROR: this.fileManager." + p_method + " method not
    found");
    return false;
    } else {
    var params = new Array();
    params.push(this);
    for (var i=1; i<arguments.length; i++)
    params
    =arguments;
    var res = fileMgr[p_method].apply(fileMgr, params);
    return res;
    //client side
    // onConnect event handler for NetConneciton
    public function onConnect(evt:Object)
    __nc["Application"] = this;
    var resultObject = new Object();
    resultObject["owner"] = this;
    resultObject.onResult = function(returnValue){
    //set client side object
    this.owner.__fileList:Object = {};
    this.owner.__fileList = returnValue;
    this.owner.dispatchEvent({type:"connectSuccess",
    nc:this.owner.__nc});
    // Call fms passing the video folder as a path
    __nc.call("fileManagerCall", resultObject, "showFileList",
    "folderOfVideos");
    // a setter method to store the fileList
    public function set fileList(p_list):Void
    __fileList = p_list;
    var foldArr = [];
    for (var i = 0; i<__fileList["folders"].length; i++) {
    foldArr.push(getFolder(__fileList["folders"]
    this.lessonArray = foldArr;
    var vidArr = [];
    for (var j = 0; j<__fileList["files"].length; j++) {
    vidArr.push(getFile(__fileList["files"][j]));
    this.videoArray = vidArr;
    // helper methods
    private function getFolder(p_folder):Object
    trace(p_folder)
    var foldObj = {label:"", data:""};
    var filePath =
    p_folder.substr((p_folder).lastIndexOf("/")+1);
    foldObj.label = filePath;
    foldObj.data = p_folder;
    return foldObj;
    private function getFile(p_file):Object
    var vidObj = {label:"", data:""};
    var vidFilePath = p_file.substr((p_file).lastIndexOf("/")+1);
    var vidFile = vidFilePath.substr(0,
    vidFilePath.indexOf("."));
    vidObj.label = vidFile;
    vidObj.data = vidFile;
    return vidObj;
    Hope this helps...
    Shack

  • What event does FMS server fire when a clients starts/stops streaming

    I want to log activities on my stream (both live and recorded) using a web service I've made. In the FMS server side AS3 documentation I can find events for onconnect/ondisconnect, but that is not quite what I want. What I want is and event that fires when a user start viewing a stream, or stops viewing.  Today I'm using the following code:
    application.onConnect = function(client)
              client.getStreamLength = function( streamName ) {
                        LogStart('', this.id, this.ip, streamName);
                        return Stream.length( streamName );
       this.acceptConnection(client);
    However not all clients uses the getStreamLength, so this does not realy work. The problem is that in the "onConnect" even I do not have access to the streamname, else I think I could have used this event.
    Thanks in advance

    Hi Wujemurray,
    If you'd be so kind as to email me offlist we'll get a support incident opened for this and can get to the bottom of the issue you're facing.
    Asa
    [email protected]

  • [svn:osmf:] 14635: Adding a sample on how to connect to a DVRCast equiped FMS server.

    Revision: 14635
    Revision: 14635
    Author:   [email protected]
    Date:     2010-03-09 02:27:41 -0800 (Tue, 09 Mar 2010)
    Log Message:
    Adding a sample on how to connect to a DVRCast equiped FMS server.
    Added Paths:
        osmf/trunk/apps/samples/framework/DVRSample/
        osmf/trunk/apps/samples/framework/DVRSample/.actionScriptProperties
        osmf/trunk/apps/samples/framework/DVRSample/.project
        osmf/trunk/apps/samples/framework/DVRSample/DVRSample.as
        osmf/trunk/apps/samples/framework/DVRSample/html-template/
        osmf/trunk/apps/samples/framework/DVRSample/html-template/AC_OETags.js
        osmf/trunk/apps/samples/framework/DVRSample/html-template/history/
        osmf/trunk/apps/samples/framework/DVRSample/html-template/history/history.css
        osmf/trunk/apps/samples/framework/DVRSample/html-template/history/history.js
        osmf/trunk/apps/samples/framework/DVRSample/html-template/history/historyFrame.html
        osmf/trunk/apps/samples/framework/DVRSample/html-template/index.template.html
        osmf/trunk/apps/samples/framework/DVRSample/html-template/playerProductInstall.swf
        osmf/trunk/apps/samples/framework/DVRSample/readme.txt

    try this:
    Start FMS
    put the FLV into the "applications\test\streams\_definst_"
    folder
    Create a SWF that will stream the FLV
    The easiest way to create this SWF is to use the FLV Playback
    Component in Flash 8.
    Or, Sample Code:
    http://www.adobe.com/devnet/flash/articles/flv_download_04.html
    and some templates:
    http://www.adobe.com/devnet/flash/video_templates.html
    the SWF should connect to rtmp://localhost/test/ and stream
    your FLV, just like with Progressive Download FLV
    the SWF can run from your desktop or on a local web server
    such as Apache - it should NOT be in the FMS application folder.
    Open the SWF, and your video should stream.
    hope this helps.
    -steve.

  • "Exception Processing Message" error when clicking the Accessing Server Data link on the start page

    When I first started the application, I click the Accessing Server Data link on the start page.  I immediately got the error "Exception Processing Message c0000013 Parameters 75b6bf7c 4 75b6bf7c 75b6bf7c in a dialog box titled "Windows - No Disk".  I had to used Task Manager to remove the box after closing Flash Builder 4.  I then tried the video tutorial on "PHP Services in Flash Builder 4".  I keep receiving an error during service introspection trying to connect to the PHP class.  It was the same error as the other individual "Cannot Connect to PHP Service".  So I tried another tutorial and generated a sample PHP class.  I moved a datagrid on to the stage, droped in the getAllItems function, and configured the return type.  However, when I ran the app, I received the same error "Exception Processing Message" again.  I have attached the screenshot of the error in addition to my phpinfo and log files.

    "The exception process message" is definitely a issue. Is it happening consistently, if so can you file a bug at bugs.adobe.com/flex and give out your machine config details, and the error log.
    With regards to generating a new php file and the introspection error that you are getting, looking at the logs it probably is two fold.
    First off the name of the file and the class name should be the same, are you having employeeServices as the name of the class in employeeServices.php file.
    Second, It seems prior to generating this new file, you had a syntax error at line 5.
    It would be easier to figure out what the error is, if you can also attach the php file, by removing any sensitive information in that.
    Hope this helps.
    Thanks
    -Sunil

  • Please help with this issue "To Run a SSIS Package outside of Server Data Tools You must install Drived Column of Integration sercvies of higher" From C# app

     i have searched all over the google and here on MSDN(I have read all the threads related to my problem ) , i am new to SISS and doing my clg project ,
    I have this package which loads data from  dim tables to a fact table , my Package runs without any problem in BIDS (2012)
    I have installed SQl Server integration services on SQL and service is also running in services.msc,
    the problem comes when i execute my package using my C# application i am using MSDN Method to execute a SSIS package programmatically given here.
    "http://msdn.microsoft.com/en-us/library/ms136090.aspx"
    For loading my FactTable i have used a Derived columns  and some lookups , 
    Now if i don't use derived columns and looks ups and just use source and destination component then my package runs fine from my C# application but if i use derived columns or looks ups etc it gives the following error
    "Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/SSIS.Pipeline: To Run a SSIS package outside of SQL Server Data Tools you must Install Derived Column of Integration services of higher"
    I am searching and trying to resolve this issue from previous 2 days but without any luck please help or guide me what is solution to this problem ,,i will be very thankful
    I have also found that integration services that are running on my system have version  10.0
    but the BIDS have version Version 11.0.3402.0
    IS this causing problem ?  if yes then what i have to do  ?

    Hi BlaxButt,
    The package is developed in SSDT installed by SQL Server 2012, so it is a SSIS 2012 package. However, the Integration Services you have installed is SQL Server 2008 R2 version. To run the package outside SSDT, you need SSIS 2012 installed. The reason why
    the package runs fine with only Source and Destination components is that such a simple package can be executed by the DTExec utility installed by SQL Server 2012 Data base Engine or Client Tools (SQL Server Import and Export Wizard). To run a package that
    uses other tasks/components outside SSDT/BIDS, the SSIS runtime is also required except the DTExec utility. To obtain the SSIS 2012 runtime, we have to install SSIS 2012 on the server where the package runs.
    Reference:
    http://stackoverflow.com/questions/19989099/getting-error-running-ssis-package-on-non-ssis-server
    Regards,
    Mike Yin
    TechNet Community Support

  • Failure Installing SQL Server Data Tools 2012 on Windows 8.1

    I am trying to install SQL Server 2012 with SQL Server Data Tools on my laptop with Windows 8.1 standard edition.  It fails each time when it gets to the SSDT installation with the same 1935 error, other features still install.  The error
    text is as follows:
    The following error has occurred:
    SQL Server Setup has encountered an error when running a Windows Installer file.
    Windows Installer error message: An error occurred during the installation of assembly 'Microsoft.VC80.CRT,version="8.0.50727.4053",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32"'. Please
    refer to Help and Support for more information. HRESULT: 0x80073715.
    Windows Installer file: F:\1033_ENU_LP\x64\setup\x64\SharedManagementObjects.msi
    Windows Installer log file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140220_201634\SharedManagementObjects_Cpu64_1.log
    Click 'Retry' to retry the failed action, or click 'Cancel' to cancel this action and continue setup.
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xDC80C325
    I have disabled any antivirus software that may have been interfering and am not sure what else to try.  Any assistance on how to resolve this error would be greatly appreciated.

    Hello,
    Please read the following article about the cause of that error:
    http://support.microsoft.com/kb/2688946/en-us
    I would like to recommend you the following procedure:
    http://www.sqlcoffee.com/SQLServer2012_0008.htm
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Insert data into oracle based on sql server data(here sql server acting as source to oracle and destination to oracle)

    Source is Oralce. Destination is SQL Server.
    Requirement - I have to fetch sql server server data (empid's) based emp table  and send this as input data to oracle to fetch and empid's are common.
    I cannot use merge or loopkup or for each as oracle have too many records.
    For example - In MS SQL - i have empid=1,2..Only these records, I have to fetch from oracle source into sql server destination. For this, I have adopted the below approaches...The major problem I face, when i build a empid's as a string, it is taking only
    4000 chars. My string lenght is 10000. How do I breakup this string lengh and send to data flow task till all broken strings length passed to DFT.
    Approach-1
    created two variables - oraquery string, empid string
    step1 - ms sql database - created sql task - declare @empid varchar(max)
    SELECT @empid=
    Stuff((SELECT ',' + empid
            FROM  
            (SELECT  DISTINCT  convert(varchar(10),empid ) empid FROM emp
             ) x
            For XML PATH ('')),1,1,'')
    select @empid =    '(' +  @empid + ')'
    select @empid
    resultset=singlerow
    resultset=resultname=0; variablename=User::empid (empid is declared as string)
    step2 - oracle database - created data flow task
    created oledb source
    I put  this statemnt in oraquery expression - "select * from dept where dept in  "
    +  @[User::empid] + "
    expression=true
    [OLE DB Source [1]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E14.
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for Oracle"  Hresult: 0x80040E14  Description: "ORA-00936: missing expression".
    Approach-2
    created three variables - oraquery string, empid  int, loop object--when I put int then it is automatically setting to 0
    step1 - ms sql database - created sql task - SELECT  DISTINCT  convert(varchar(10),empid ) empid FROM emp
    resultset=fullresult
    resultset=resultname=0; variablename=User::loop
    step2 - created a for each loop container
    for loop editor - for each ado ennumerator
    enumerator configuration - loop
    variablemapping - variable=empid;index=0
    step3 - oracle database - created data flow task (outside for each loop. If I put inside it is taking long time)
    created oledb source
    I put  this statemnt in oraquery expression - "select * from dept where dept in  "
    +  @[User::empid] + "
    expression=true
    Data inserting in a destination table but  empid=0.

    Sorry didnt understand if your step3 is outside loop how
    @[User::empid] will get values for the empids from User::loop. The iteration happens inside loop so you
    need to have a logic to form the delimited list inside using a script task or something and concatenating everything and storing to variable @[User::empid]
    . Then only it will have full value used to be used in step3 query
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Purchase Order Creation with System Date but not Server Date???

    Dear Experts,
    We have server Located in USA and User is working from India when user is Recording the PO system is taking Server Date but as per requirement it has to take system date (i.e User system date - India time).
    How to achieve this please let me know
    is there any profile option or setup need to done??
    Thanks in Advance!!
    Regards
    Bharath

    Hi,
    Please check the release strategy. Check if your Purchase requisiton is released at all the levels.
    Thanks,
    Chinmay

  • Unable to stream SMIL files unless the html page, swf file and the smil ffile are on the FMS server.

    When I place the .swf, smil and http files on the FMS server the SMIL stream test sample works fine
    But When I move the files to my web server I get Connection error.
    This is the same issue discussed in http://forums.adobe.com/thread/554107
    I added a ‘base’ variable but it did not work for me.
    The SMIL file has the correct path to the sample files and FMS server
         <meta base="rtmp://200.200.200.23/vod/" />
    I am able to stream files from my html file on my webserver not the FMS server by pointing to the FMS server at rtmp://200.200.200.23/vod/mp4:sample1_1500kbps.f4v
    Is this a domain security setting? If so, where do I change it?
    If not How do I get FMS to stream SMIL files without installing a webserver with FMS?
    Thanks,

    Hi,
    I think there is bug with that videoPlayer.swf which is used by index.html of webroot folder of FMS to play media files, its not able to parse smil file correctly. I used some other player and used the smil file and kept it on http server other than fms server so it was able to dynamically stream videos. So I would suggest you to create your own player which uses smil file. You can take help from the below link to create player:
    http://www.adobe.com/devnet/flashmediaserver/articles/dynstream_advanced_pt1_05.html
    Regards,
    Amit

  • Application Server Data Source settings help needed (10.1.2.0.2)

    Hi,
    Can someone tell me what maximum values can I set in the following properties under Connection Attributes when I define a DataSource on
    Application Server. I have almost 25+ web application deployed on my 10.1.2.0.2 server that all uses one data source I have defined. Now the issue is the number of requests
    are very high and every now and then I get timeout error when trying to get the database connection. At one particular instance at peak time I may get over 200+ requests that
    do some databse connections etc. Following are my current settings. But need to increase some more but wondering what are the maximum values I can have. I have only one server 10.1.2.0.2
    Connection Retry Interval (seconds) = 5
    Max Connection Attempts = 3
    Cached Connection Inactivity Timeout (seconds) = 30
    Maximum Open Connections = 60
    Minimum Open Connections = 10
    Wait For Free Connection Timeout (seconds) = 15
    What other properties can I have to make use of datasource effectively.
    Thanks

    Here is the copy of my datasources.xml.
    <?xml version = '1.0' standalone = 'yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources-9_04.dtd">
    <data-sources>
      <!--
                An example/default DataSource that uses
                Oracle JDBC-driver to create the connections.
                This tag creates all the needed kinds
                of data-sources, transactional, pooled and EJB-aware sources.
                The source generally used in application code is the "EJB"
                one - it provides transactional safety and connection
                pooling. Oracle thin driver could be used as well,
                like below.
                url="jdbc:oracle:thin:@host:port:sid"
           -->
      <data-source class="com.evermind.sql.DriverManagerDataSource" name="OracleDS"
                   location="jdbc/OracleCoreDS" xa-location="jdbc/xa/OracleXADS"
                   ejb-location="jdbc/OracleDS"
                   connection-driver="oracle.jdbc.driver.OracleDriver"
                   username="scott" password="tiger"
                   url="jdbc:oracle:thin:@//localhost:1521/oracle.regress.rdbms.dev.us.oracle.com"
                   inactivity-timeout="30"/>
      <!-- For SQL Server -->
      <data-source location="jdbc/TestDS"
                   class="com.microsoft.jdbcx.sqlserver.SQLServerDataSource"
                   password="pwd" xa-location="jdbc/TestDS"
                   ejb-location="jdbc/TestDS"
                   connection-driver="com.microsoft.jdbc.sqlserver.SQLServerDriver"
                   username="usr"
                   url="jdbc:microsoft:sqlserver://someloc99:1433/DevelopmentAp"
                   inactivity-timeout="30" name="jdbc/TestDS"
                   connection-retry-interval="5" max-connections="50"
                   max-connect-attempts="3">
        <description>jdbc/TestDS</description>
        <property name="DatabaseName" value="DevelopmentAp"/>
        <property name="serverName" value="someloc99"/>
      </data-source>
    </data-sources>I also tried changing max-connections="0" it did helped but still after sometime I get timeout while connecting to the database. Don't know if it's with SQL Server that is not letting that many concurrent connections/sessions or something on the Application Server side.
    Thanks
    Message was edited by:
    WhiteSox
    Message was edited by:
    WhiteSox

  • Video Freezes when overriding flv files on FMS server

    I have an flash application that captures a web cam video stream and stores it on the FMS server.
    I notice when I create a brand new video, and store it on my FMS server, it works fine.
    When I make another video and my application overrides the file with the new video, this is where I get problems.
    When I download the flv file from the FMS server, and I play it locally it plays fine, but the timeline is weird.
    The web player freezes the video during that first 15 seconds.
    A 30 second video, will have a time line of like 45 seconds, the local flv player is smart enough to skip over the paused part of the video.
    You will see it skip over the timeline to the good video (from 0sec to 15 secs).  The web player freezes the video during that first 15 seconds.
    Any clues that I described that makes you know what is going on?

    Great that gives me a big clue, which asc file do you think I need to look in?
    /mnt/applications/livepkgr/main.asc
    /mnt/applications/multicast/main.asc
    /mnt/applications/live/MemberClips/MemberClips.asc
    /opt/adobe/fms/samples/applications/vod/main.asc
    /opt/adobe/fms/samples/applications/livepkgr/main.asc
    /opt/adobe/fms/samples/applications/multicast/main.asc
    /opt/adobe/fms/samples/applications/live/main.asc
    /opt/adobe/fms/scriptlib/framework.asc
    /opt/adobe/fms/scriptlib/webservices/XMLSchema.asc
    /opt/adobe/fms/scriptlib/webservices/SOAP.asc
    /opt/adobe/fms/scriptlib/webservices/Namespace.asc
    /opt/adobe/fms/scriptlib/webservices/ServiceManager.asc
    /opt/adobe/fms/scriptlib/webservices/XMLSchemaDataTypes.asc
    /opt/adobe/fms/scriptlib/webservices/Log.asc
    /opt/adobe/fms/scriptlib/webservices/XMLUtil.asc
    /opt/adobe/fms/scriptlib/webservices/SOAPConstants.asc
    /opt/adobe/fms/scriptlib/webservices/WSDL.asc
    /opt/adobe/fms/scriptlib/webservices/WebServicesClass.asc
    /opt/adobe/fms/scriptlib/webservices/WSDLConstants.asc
    /opt/adobe/fms/scriptlib/webservices/WebServices.asc
    /opt/adobe/fms/scriptlib/webservices/XMLSchemaConstants.asc
    /opt/adobe/fms/scriptlib/netservices.asc
    /opt/adobe/fms/scriptlib/application.asc
    /opt/adobe/fms/scriptlib/facade.asc
    /opt/adobe/fms/applications/MemberClips/MemberClips.asc
    /opt/adobe/fms/documentation/samples/livestreams/main.asc
    /opt/adobe/fms/documentation/samples/StreamLength/main.asc
    /opt/adobe/fms/documentation/samples/HelloWorld/HelloWorld.asc

  • How to connect directly to FMS server

    Hi,
    Is it possible to connect directly to FMS server with NetConnection
    and connect to video with NetStream ?
    I see that in debug mode can see the RTMPS connection of FMS server,
    So I try successfully connect to this RTMPS connection,
    But I don't know what is the STREAM NAME of the video (WebcamPublisher).
    Thanks,
    Eyal.

    Hi Nigel,
    I developed the ChatVideo (http://www.chatvideo.co.il) that use the Adobe LiveCycle Collaboration Service.
    Now I want to develop a version to iPhone.
    To do this I used WOWZA servers - I set up the WOWZA server to edge and he take the stream from the Adobe FMS origin server,
    And on the fly the WOWZA server produce M3U8 link that can view in the iPhone.
    Are you know a other way to do this?
    Thanks,
    Eyal.

Maybe you are looking for

  • Somebody knows how to change the Iphone 3gs to 4s without missing my data?

    I need to change my Iphone 3gs to 4s without missing my data,....Please I need help!!!

  • Syncing problems from transfer of old library to new...

    I would like itunes music from my old laptop to play on my new laptop. They seem to be showing fine in my library but are not syncing onto my ipod Nano because 'they could not be found' (100+) and 'the audio format is not supported.' (17+) Any advice

  • How do I get a downloading file to stop

    I wanted to the Photoshop CS5.1 for Mac and downloaded the try version. Half way through my computer closed down and so I retry downloaded it again.  It has been stuck on extracting for the last 5 days and I don't have the option to stop it. How do I

  • Problem with numerous forms

    We had to change the url of our forms last week and something, somewhere has gone horribly wrong and we're now experiencing various issues with multiple forms. This form is perhaps the most complex of the lot and hopefully resolving this should allow

  • ITunes 12.1.2.27 no option for application to sync photos from

    I am having a problem with iTunes 12.1.2.27 not providing an option to select an application to sync photos from for my iPhone 6.  Is anyone having similar issues? Before everyone starts, yes, I have the latest version of iTunes, yes I have the lates