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.

Similar Messages

  • 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

  • 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]

  • Cannot add a delivery note with an item with serialnumbers via DI Server

    I'm using a web service to add delivery notes via DI Server. my code works for items that do not need serialnumbers or batchnumbers and even for those that need batchnumbers.
    but if I try to add an item with serialnumbers, I'm getting the following error:
    [DLN1.WhsCode][line: 0] , 'Item 'A00004' with system serial 0 is not in stock.'
    in the soap request I put the InternalSerialNumber, Location and BaseLineNumber. Because the error message tells me something about system serial, I've also added the SystemSerialNumber to the soap request. But then I'm getting another error:
    Failed to execute command.
    does someone know, what I'm doing wrong?

    Hi,
    i'm getting the same error when trying to add a delivery/invoice.
    "[INV1.WhsCode][line: 0] , 'Item 'xxxx' with system serial 2 is not in stock"
    its started just after upgrade to 2005 SP1 PL4 and i tried to upgrade to PL7 with no success. do someone else have the same issues?
    thanks
    Moty

  • Adding Purchase Delivery Note with SerialNumbers via DI Server

    I try to add Purchase Delivery Notes via DI Server. It already works for items that do not need serial or batch numbers. But if I try to add a PDN with an item that needs such numbers, I'm getting an error that the line of the item cannot be added without these numbers.
    Then I tried to add SerialNumbers to my request, but I am still getting the same error.
    The xml template for the SerialNumbers part looks like this:
    <SerialNumbers>
    <row>
      <SystemSerialNumber />
      <ManufacturerSerialNumber />
      <InternalSerialNumber />
      <BatchID />
      <ExpiryDate />
      <ManufactureDate />
      <ReceptionDate />
      <WarrantyStart />
      <WarrantyEnd />
      <Location />
      <Notes />
      <BaseLineNumber />
    </row>
    </SerialNumbers>
    Can someone explain me, how to use it?
    What are the mandatory fields?
    What is <BaseLineNumber>? Is it the line number of the item in the purchase delivery note?
    Do I have to include <SystemSerialNumber> or will this number be generated automatically by SBO?

    Hi Nico,
    you should use the SDK Help Center to determine the mandatory fields...
    When creating an incoming document (Purchase Delivery Note) with serial numbers using the DI API I assign the InternalSerialNumber property only and this works.
    The only Mandatory field when creating an outgoing document is SystemSerialNumber which is the unique key for a serial number...
    As a side note, I am still experiencing some strange behaviour trying to use the DI API to create documents using serial numbers.  I am in contact with SAP regarding this but am getting very slow responses...
    Daniel

  • Error trying to run SSIS Package via SQL Server Agent: DTExec: Could not set \Package.Variables[User::VarObjectDataSet].Properties[Value] value to System.Object

    Situation:
    SSIS Package designed in SQL Server 2012 - SQL Server Data Tools
    Windows 7 - 64 bit.
    The package (32 bit) extracts data from a SQL Server db to an Excel Output file, via an OLE DB connection.
    It uses 3 package variables:
    *) SQLCommand (String) to specify the SQL Statement to be executed by the package
    Property path: \Package.Variables[User::ExcelOutputFile].Properties[Value]
    Value: f:\Output Data.xls
    *) EXCELOutputFIle (String) to specify path and filename of the Excel output file
    Property path: \Package.Variables[User::SQLCommand].Properties[Value]
    Value: select * from CartOrder
    *) VarObjectDataSet (Object) to hold the data returned by SQL Server)
    Property path: \Package.Variables[User::VarObjectDataSet].Properties[Value]
    Value: System.Object
    It consists out of 2 components:
    *) Execute SQL Task: executes the SQL Statement passed on via a package variable. The resultng rows are stored in the package variable VarObjectDataSet
    *) Script Task: creates the physical output file and iterates VarObjectDataSet to populate the Excel file.
    Outcome and issue:The package runs perfectly fine both in SQL Server Data Tools itself and in DTEXECUI.
    However, whenever I run it via SQL Server Agent (with 32 bit runtime option set), it returns the errror message below.
    This package contains 3 package variables but the error stating that a package variable can not be set, pops up for the VarObjectDataSet only.  This makes me wonder if it is uberhaupt possible to set the value of a package variable
    of type Object.
    Can anybody help me on this please ?
    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 32-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  6:40:20 PM  DTExec: Could
    not set \Package.Variables[User::VarObjectDataSet].Properties[Value] value to System.Object.  Started:  6:40:20 PM  Finished: 6:40:21 PM  Elapsed:  0.281 seconds.  The package execution failed.  The step failed.
    Thank you very much in advance
    Jurgen

    Hi Visakh,
    thank you for your reply.
    So, judging by your reply, not all package variables used inside a package need to be set a value for when run in DTEXEC ?
    I already tried that but my package ended up in error (something to do with "... invocation ...." and that error is anything but clearly documented. Judging by the error message itself, it looks like it could be just about anything. that is why I asked my
    first question about the object type package variable.
    Now, I will remove it from the 'set values' list and try another go cracking the unclear error-message " ... invocation ...". Does an error message about " ... invocation ..." ring any bells, now that we are talking about it here ?
    Thx in advance
    Jurgen
    Yes exactly
    You need to set values only forthem which needs to be controlled from outside the package
    Any variable which gets its value through expression set inside package or through a query inside execute sql task/script task can be ignored from DTExec
    Ok I've seen the invocation error mostly inside script task. This may be because some error inside script written in script task. If it appeared after you removed the variable then it may because some reference of variable existing within script task.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • [Forum FAQ] Cannot perform a backup schedule via Windows Server Backup and receive "The system cannot find the path specified." Error

    Symptom One
    You attempt to
    schedule a backup every day via Windows Server Backup on Windows Server 2008 R2. At the beginning, the backup works without issue. But after a few days it failed and you receive the error “Windows Server Backup:
    The system cannot find the path specified.”
    Cause
    The issue may occur if there is
    no shadow copy storage space available on the backup volume.
    Verify
    You can use the List ShadowStorage command to check if you have enough storage space to store the newly created shadow copy. If you've reviewed the size of the backup snapshot and discovered
    that there is no allocated space for the storage association, you need to resize shadowstorage.
    Solution
    You could run the command below to create shadow copy storage space on the backup volume:
    vssadmin resize
    shadowstorage /for=<ForVolumeSpec> /on=<OnVolumeSpec> [/maxsize=<MaxSizeSpec>]
    More Information
    Vssadmin resize shadowstorage
    http://technet.microsoft.com/en-us/library/cc788050.aspx
    Symptom Two
    When you add
    another external hard drive to backup schedule via Windows Server Backup on Windows Server 2012, it fails and you receive the error “The System cannot find the path specified.”
    Cause
    The issue is due to the
    Original Destination Disk was not attached to the server.
    Verify
    You could check the disk status in Disk Management to see if the Original Destination Disk is offline or removed.
    Solution
    You need to attach
    Original Destination Disk to the Server then choose another external hard drive as backup target. After that, you could remove the Original Destination Disk.
    Workaround
    To work around this issue, please use the WBADMIN command line tool to add disk.
    WBADMIN ENABLE BACKUP -addtarget :{ DiskID}
    The AddTarget parameter takes disk ID as parameter. It can be retrieved by running "WBADMIN GET DISKS" command.
    Example:
    WBADMIN ENABLE BACKUP
    -addtarget :{ aa123d14-bba0-1dd9-0d93-80aaaa6bbb63}
    More Information
    Wbadmin enable backup
    http://technet.microsoft.com/en-us/library/cc742130.aspx
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    good

  • How to email reports via SMTP server FORMS AND REPORTS 6i and databse 8i

    Dear All,
    through reports builder reports are build but i need to email reports via SMTP server is it possible in 6i are not?if yes the how please rep asap

    If it will be a scheduled report, you can create a batch file to run report with reqd parameters and generate it's pdf in a oracle directory.
    Then schedule the batch file on oracle database pc, (thru task scheduler if OS is windows),
    Then a email procedure will be required which will pick up the pdf from oracle directory, attach it and send mail.
    Even the email procedure can be scheduled thru oracle job, but the OS batch schedule time and Oracle Job time should be handled as some gap will be needed between the two.
    As for the email smtp procedure with attachments, you can find one in this forum or try googling it.
    Regards,
    Amol

  • 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

  • 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.

  • What is an "active connection" to the FMS server?

    Hi,
    I am wondering exactly what are considered "active connections" to an FMS server?
    Is it only the RTMP/RTMFP NetConnections, or do NetStreams also count?
    Thanks

    Only netConnections. You can't connect a netstream without a netconnection so they don't count on the connection count number.

  • Link invoice to existing payment via DI Server?

    Hi all,
    I can not link invoice to existing payment via DI Server, please see following code:
            sCmd = "<?xml version=""1.0"" encoding=""UTF-16""?>"
            sCmd += "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">"
            sCmd += "<env:Header>"
            sCmd += "<SessionID>" & msSessionID & "</SessionID>"
            sCmd += "</env:Header>"
            sCmd += "<env:Body><dis:UpdateObject xmlns:dis=""http://www.sap.com/SBO/DIS"">"
            sCmd += "<BOM>"
            sCmd += "<BO>"
            sCmd += "<AdmInfo>"
            sCmd += "<Object>oIncomingPayments</Object>"
            sCmd += "</AdmInfo>"
            sCmd += "<QueryParams>"
            sCmd += "<DocEntry>468</DocEntry>"
            sCmd += "</QueryParams>"
            sCmd += "<Payments_Invoices>"
            sCmd += "<row>"
            sCmd += "<DocEntry>2558</DocEntry>"
            sCmd += "<InvoiceType>it_Invoice</InvoiceType>"
            sCmd += "<SumApplied>12.19</SumApplied>"
            sCmd += "</row>"
            sCmd += "<row>"
            sCmd += "<DocEntry>2556</DocEntry>"
            sCmd += "<InvoiceType>it_Invoice</InvoiceType>"
            sCmd += "<SumApplied>14.69</SumApplied>"
            sCmd += "</row>"
            sCmd += "</Payments_Invoices>"
            sCmd += "</BO></BOM></dis:UpdateObject></env:Body></env:Envelope>"
    It does not work, return error "Cannot link invoice to existing payment via DI".
    Please help!
    Thanks.
    John

    Hi John!
    You cannot update an existing payment and link it to invoices.
    You can only do the link during the Add operation.
    This is true for DI server, DI and to B1 Application.
    Once a payment is created it cannot be changed.

  • Can't connect to MSSQL-server via SQL Server Management Studio. Noone else can utilize the server either

    Suddenly the mSSQL-server has stopped working, and the application doesn't have any connection to it.
    Also, I cant connect locally via SQL Server Management Studio.
    Any ideas on where to start?
    Have SQL Server 2008 R2

    Try DAC first:
    http://technet.microsoft.com/en-us/library/ms178068(v=sql.105).aspx
    If that fails, go to Configuration Manager and restart the server.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • Is there a plain English guide to sharing iCal Calendars via OSX Server Mountain Lion?

    Is there a plain English guide to sharing iCal Calendars via OSX Server Mountain Lion? The present documentation is very limited and of no assistance to a beginner like me.

    I don't have a domain set up on OSXServer  I just have server.myserver.private. I have no mail services at server.myserver.private. I uses [email protected] (a different server)  as the email address in the setup process.
    When I go to share the calendar it requires a valid email address, rather than [email protected], so I enter my email address as a test, I try many other email addresses too but the server responds with an error stating " (email adress) was not recognized by the server.  A new invitation has not been sent.

Maybe you are looking for

  • How to stop a process that i have started in my prog to stop

    public class stopproc {      public static void main(String args[]){ Runtime rt = Runtime.getRuntime(); try{ Process process = rt.exec("start notepad"); //Thread.sleep(1000); //process.destroy(); }catch(Exception ex){} The above is the code where i a

  • Thoughts on new Clarity Adjustment

    Hi, Firstly great to see the new beta, and am in general liking the change in the develop module, particularly when processing high dynamic ranage images. However, just some of my thoughts on the new Clarity slider. Interested to hear what others vie

  • IWork 09 not installing on MacBook but installed on MacBook Pro

    I recently purchased a copy of iWork 09 (family pack) from the Apple store. It installed fine on my MacBook Pro and I can see a new folder called iWork 09 in Applications. But when I try and install iWork 09 on any of my 3 MacBooks, the installer com

  • Integration of ECC 6.0 with SRM 5.0 SR2

    Hi Guys,       Can any one please provide me with the steps for integrating ECC 6.0 with SRM 5.0 SR2. Regards, Max

  • Loading Array?

    I have found a script that allows me to create a scrolling photo gallery for my site. The actionscript code that you modify yourself has an array and you can just change the names of the pictures to match your own to pull pictures into the movie. The