BUG -Flash Media Interactive Server 3

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default BUG -Flash Media Interactive Server 3

    Often when a client connected with fms3 loses his internet connection (
    because internet shutdown ) , the client remains connected with fms3.
    This happens because the status of the client is in playng or in publishing.
    Also if I use application.disconnect(client)" , the client won't be
    disconnected and it returns to me as a true value.(And that's strange because
    the value should be false)
    How can I do to solve this problem?




    PIPPO1973 Guest

  2. Similar Questions and Discussions

    1. Server Sizing for Flash Interactive Media 3
      Hello, I can't get anyone in sales to answer this question. Specs say any Windows 2003 32bit OS and recommends 4MB RAM. But I would like to put...
    2. Flash Media Interactive Server 3
      Perhaps pricing doesn't prohibit large media companies, but it sure prohibits most developers and small businesses. I'm not interested in trying to...
    3. Adobe Flash Media Interactive Server 3 download
      http://www.adobe.com/products/flashmediainteractive/ Contains a link on the right side titled "download free developer edition." However, the...
    4. flash media server only works local on server
      i just installed a developers version of the flash media server on a windows server. i don't have any problems while starting my applications on...
    5. Can you detail How create an application use StreamingMedia Server (Flash Media Server) for me?
      Can you detail the way to create an application use Streaming Media Server (Flash Media Server) for me? I installed Flash Media Server 2,...
  3. #2

    Default Re: BUG -Flash Media Interactive Server 3

    Hello,

    i have exactly the same problem , is there any turnaround util the issue is fixed ?

    thanks

    klochto Guest

  4. #3

    Default Re: BUG -Flash Media Interactive Server 3

    Do you never get a application.disconnect(client) even after say 3-5 minutes ?

    On my end, In case a client has lost connection then
    application.disconnect(client) is called in around 5 minutes and also depends
    upon idleClient clean up settings.

    fmslove Guest

  5. #4

    Default Re: BUG -Flash Media Interactive Server 3

    Hi ,

    i dont understand ,

    after i call application.disconnect(client)
    the ondisconnect is not called , but the client still in application.clients.

    the best thing is that the number of clients still accumulating
    and even if i call application.disconnect(client) again on the same client
    this does not work .


    This is VERY bad bug as alot of internal application logic is based on the
    fact that application.disconnect work .

    I would like to know is there a way to subit a bug to adobe , or we have to
    wait them to read the forum.


    c

    klochto Guest

  6. #5

    Default Re: BUG -Flash Media Interactive Server 3

    Firstly, this doesnt seem to be a bug. A client application object is tied
    to a remote client. Given a network link that is sub-optimal (or poor in your
    case), there is a notion of 'keeping a link alive" and a retry of sending
    messages to the client; some of this error handling is tcp based (ie socket
    timeout ) and also some of this may reside in how the server handles the
    application logic.

    That said, the use of application.disconnect(client) seems to work for me.

    here is the SSAS:
    application.onAppStart = function(){
    trace("onAppStart: application started");
    };

    application.onConnect = function(client, name, isGuest)
    {
    client.name=name;
    trace("onConnect: accepting client "+client.name);
    application.acceptConnection(client);

    var msg = "Hello! You are connected as: " + client.name;
    trace("onConnect: Sending this message: " + msg);
    client.call("msgFromSrvr", false, msg);

    for (i=0; i < application.clients.length; i++)
    {
    trace("onConnect: [Alive clientlist] ["+i+"]
    "+application.clients[i].name);
    }

    if (application.clients.length > 1){
    // disconnect the first
    application.disconnect(application.clients[0]);
    }

    };

    application.onDisconnect = function(client)
    {
    trace("onDisconnect: client " + client.name + " left");

    for (i=0; i < application.clients.length; i++)
    {
    trace("onDisconnect: [Alive client list] ["+i+"]
    "+application.clients[i].name);
    }
    };


    and here is the log that was generated:

    2008-02-21 17:08:58 5908 (s)2641173 onAppStart: application started -

    2008-02-21 17:08:58 5908 (s)2641173 onConnect: accepting client one -

    2008-02-21 17:08:58 5908 (s)2641173 onConnect: Sending this message: Hello!
    You are connected as: one -

    2008-02-21 17:08:58 5908 (s)2641173 onConnect: [Alive clientlist] [0] one -

    2008-02-21 17:09:03 5908 (s)2641173 onConnect: accepting client two -

    2008-02-21 17:09:03 5908 (s)2641173 onConnect: Sending this message: Hello!
    You are connected as: two -

    2008-02-21 17:09:03 5908 (s)2641173 onConnect: [Alive clientlist] [0] one -

    2008-02-21 17:09:03 5908 (s)2641173 onConnect: [Alive clientlist] [1] two -

    2008-02-21 17:09:03 5908 (s)2641173 onDisconnect: client one left -

    2008-02-21 17:09:03 5908 (s)2641173 onDisconnect: [Alive client list] [0] two -


    techeye Guest

  7. #6

    Default Re: BUG -Flash Media Interactive Server 3

    Yes, i can confirm, even on the adobe live application that comes with the
    server, the clients remain connected(!) even if they are not watching anymore
    the live stream.
    We have the full blown interactive server 3 from adobe for live streaming, so
    this is a serious problem.
    This is a bug, cause the server is fresh set up and is only for live streaming.
    When you log into the admin console you see connected users after DAYS that
    dont get any data packets anymore and have disconnected.
    This happens with the onboard live application too.

    The single thing i can do is to restart the app instance:shocked;, but this is
    not a solution.

    enilnacs Guest

  8. #7

    Default Re: BUG -Flash Media Interactive Server 3

    You can submit a bug here:
    [url]http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform[/url]

    However, I believe its is reasonable to raise problem in the forum as it can
    help if somebody has a workaround.



    fmslove Guest

  9. #8

    Default Re: BUG -Flash Media Interactive Server 3

    On 22 fév, 07:01, "fmslove" <webforumsu...@macromedia.com> wrote:
    > You can submit a bug here:
    > [url]http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform[/url]
    >
    > However, I believe its is reasonable to raise problem in the forum as it can
    > help if somebody has a workaround.
    it was done
    still waiting for a response from adobe ...
    klochto@gmail.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139