OnDisconnect Event in FMS 2.0

I am using application.onDisconnect Event for updating some
entries in Database side through php. Its works fine. But in some
case it doesnot call onDisconnect event and hence not updating db
entries??Is it problem of concirrent access of onDisconnect event
or what?????
please help me

Hi,
what experienced in all my applications is, that the
onDisconnect event will not be triggered, if you're connected to
the application with more than one client application at the same
time (on the same machine of course, but it's even occuring if the
client apps run in different browsers).
I didn't had this problem with just one client app connected.
Would be interesting if this might be your problem too.
Hope this helps..
Peter

Similar Messages

  • How to Fire ondisconnect event when network disconnect suddenly

    Hello Friends
                          can any body tell me how to clear the client entry from Adobe flash Media server 3.5. when net disconnect.
    i was expecting that on netdisconnect from the client side end(which is connected to FMS) its onDisconnect event fire similarly as it fire for browser close.But when internet disconnect  ondisconnect event not fires at FMS side is there any way to overcome this or any other event  fire at that stage?
    if it is possible to get any event on network disconnection at client sidetahn i can solve the issue.
    Thanks and Regards
       Vineet osho

    You  must be getting the "NetConnection.Connect.Closed" as info.code in the onStatus for the NetConnection.
    See http://livedocs.adobe.com/fms/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDoc s_Parts&file=00000742.html
    nc = new NetConnection();
    nc.onStatus = function(info){
        if (info.code == "NetConnection.Connect.Closed")
            // Netconnection has closed.

  • Record Live event on FMS

    I have same issue by FMS and F4V format.
    I want to archive live event at same time and to do that I record live stream in F4V format on the onPublish event.
    This is main.asc codes:
    [code]
    //live stream fragments
    var liveStream = Stream.get("f4f:" + streamName.name);
    liveStream.record();
    liveStream.play(streamName,-1,-1);
    //Create Archive (f4v) for on-demand
    var vodFile = Stream.get("mp4:" + StreamName.name + ".f4v");
    vodFile.record();
    vodFile.play(streamName,-1,-1);
    [code]
    So when I use h264 in my source event when FMS create f4v, F4V file is 320kb (f4v isn't growing) and just record 5 second of my event whoever my live event is more than 1 hour.
    But when I don't use h264 in source event my F4V file is correct and record all 1 hour video from live event.
    I don't know what's a problem
    I use FMS 5 extended edition and FFMPEG for stream webcam on to the FMS
    This is my FFMPEG code:
    [code]
    ffmpeg -f dshow -i video="A4TECH USB2.0 PC Camera" -vcodec libx264 -b:v 32k -acodec libmp3lame -b:a 64k -ar 44100  -f flv rtmp://12.11.1.3/livepkgr/liveevent?adbe-live-event=liveevent
    [code]
    Please advise me to solve this problem.
    Many Thanks.

    Solve above problem with edit FFMPEG syntax.
    [code]
    ffmpeg -y -f dshow -s 640*480 -i video="A4TECH USB2.0 PC Camera":audio="Microphone (Creative SB Audigy 2 ZS (WDM))"  -c:v libx264 -b:v 120k -pix_fmt yuv420p -vb 450 -an -map 0:0 -acodec libmp3lame -b:a 64k -ar 44100 -f flv rtmp://12.11.1.3/livepkgr/Liveevent?adbe-live-event=Liveevent
    [code]

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

  • Many threads on application.onDisconnect not firing but seemingly no solution

    I've dug some threads up and included links at the end of this post. Have some more work to do researching it but figured I'd get the ball rolling.
    Essentially one can't depend on application.onDisconnect() firing at the close of a client's browser.  It happens sometimes.  But with some apps, it just doesn't happen at all.  I've watched the FMS management console as I've repeatedly opened and closed a particular app I'm developing.  Connections don't die with each browser close.  The net result is a piling up of connections.  My app has a "connected users" list in it.  It gets packed with multiple connections from the same client.
    Eventually, after 5-10 mins, the connections disappear on their own.  Not good though.  One of the functions in my app lets someone select a user in the list and send a direct chat.  This feature isn't working because disconnections are not registering real time.  Some of the people in the user list are not really there anymore.
    I get the problem in both IE8 and FireFox 3.5.3 on FMS 3.52.  Others have reported the problem in various browsers and FMS versions going way back. Problem's been around for some time.
    This guy has the same problem and a nice description, although he experienced only in IE:
    onDisconnect Errors in Internet Explorer: (http://www.flashnewz.com/ondisconnect-errors-in-internet-explorer/)
    After reading the accounts at the links gathered below, I get the feeling it might not necessarily be an FMS problem alone, but rather some combo of browser, SWFObject implementation, and perhaps particular features used (or not used) in the client ActionScript.  Nobody's seemed to nail down the precise combination though.
    Pretty much a show stopper.  Has anyone developed viable work arounds?
    Thread: onDisconnect() IE7 problem: (http://fmsguru.com/forum/messages.cfm?threadid=EEC6D52A-BAB2-526D-5CD9FF490332B8D8)
    onDisconnect Not Firing in IE6/7 With SWFObject 2: (http://www.flashcomguru.com/index.cfm/2008/8/7/swfobject-problem-ie-fms)
    Do not call onDisconnect when closing browser: (http://www.wowzamedia.com/forums/showthread.php?t=5521)
    BUG -Flash Media Interactive Server 3: (http://www.justskins.com/forums/bug-flash-media-interactive-server-3-a-141282.html)
    onDisconnect Event in FMS 2.0: (http://forums.adobe.com/thread/98366)
    Topic: Detecting ungraceful disconnects? (http://www.flashcomguru.com/forum/forum_posts.asp?TID=2848&PN=0&TPN=2)
    Why Flash Media Server does not call application.onDisconnect handler: (http://stackoverflow.com/questions/359727/why-flash-media-server-does-not-call-application -ondisconnect-handler)

    ////////////////////////////////////////////////////////////////////////////////////client side///////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////
    var nc = new NetConnection()
    nc.onStatus = function (o)
    trace(o.code);
    nc.connect("rtmp://YourAccount.rtmphost.com/AppDirectory");
    nc.imHere = function(p_b)
    trace("imHere");
    return (true)
    ////////////////////////////////////////////////////////////////server side///////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////
    load("Delegate.asc");
    application.onConnect = function(p_o)
    this.acceptConnection(p_o);
    p_o.clientIsBad= function()
      trace ("is bad")
      clearInterval(this.resultInt);
      clearInterval(this.checkInt);
      application.disconnect(this);
    p_o.clientIsGood = function()
      trace ("is good")
      clearInterval(this.resultInt);
    p_o.checkValid = function()
      trace("watcha!");
      clearInterval(this.resultInt)
      this.resultInt = setInterval( p_o, "clientIsBad", 2000 );
      this.call("imHere",{onResult:Delegate.create(p_o, this.clientIsGood),onStatus:Delegate.create()} );;
    p_o.checkInt = setInterval( p_o, "checkValid", 120000 );

  • OnDisconnect and client parameter

    Hello,
    I am wondering about the OnDisconnect event handler's
    internal. From that handler, I access the client parameter, which
    is a pointer to the actual client connection. The problem is that
    recently I am fetching some data from an external webpage using
    LoadVars first, and then accessing the client variable. Sometimes,
    randomly, some of the client's properties are undefined, as if
    maybe the client object was being deleted from memory before I
    could access it.
    Will the client object usually be deleted AFTER the
    OnDisconnect event handler has been fully executed, or is it done
    simultenously, thus imposing a limit in the period of time we can
    access the object before it gets deleted?

    See this links for more clarification.
    http://sap.ittoolbox.com/documents/popular-q-and-a/differentiating-between-dependent-and-independent-data-1957
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a9/bb963a570b4b5de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/8a9a3aaf894871e10000000a114084/frameset.htm
    Re: What is the concept of Client
    Message control records (NAST records) must exist for the trading contracts for which you want to print out messages. Print output is selected as the transmission medium and Send with application own transaction is selected as the time.
    The NAST records for trading contracts are created automatically. For this, the necessary settings must be maintained in Customizing, and condition records must be created

  • Recording in f4v format at FMS and then republishing to another server?

    My data path looks like this:
    Live Stream Encoder====>My FMS (my own server) republish to======>CDN======>Viewing Client
    I want to archive the live stream at the first stop, my FMS.  Adobe live docs say if I want the recorded file to be of format F4V (H.264), the stream name with which I publish must be of the format mp4:streamname.f4v.  My CDN, unfortunately, requires the stream name it receives to be of the format "streamname".
    How do I satisfy both?
    In my onPublish() function I do two things:
    1.  Record the live stream to a file
    2.  Republish the stream to the CDN
    Here is that method as it's currently constructed:
    application.onPublish = function(client, stream) {
        trace("onPublish");
        //First record the stream here at this server 
        s = Stream.get("mp4:streamname.f4v");
        if(s){
            s.record();
            s.play(stream);
        //Then pass the stream on to the CDN
        this.doRepublish(this.nc, stream);
    Is there anyway to satisfy both requirements?

    Hello ASA,
    I have same issue by FMS and F4V format.
    I want to archive live event at same time and to do that I record live stream in F4V format on the onPublish event.
    This is main.asc codes:
    [code]
    //live stream fragments
    var liveStream = Stream.get("f4f:" + streamName.name);
    liveStream.record();
    liveStream.play(streamName,-1,-1);
    //Create Archive (f4v) for on-demand
    var vodFile = Stream.get("mp4:" + StreamName.name + ".f4v");
    vodFile.record();
    vodFile.play(streamName,-1,-1);
    [code]
    So when I use h264 in my source event when FMS create f4v, F4V file is 320kb and just record 5 second of my event whoever my live event is more than 1 hour.
    But when I don't use h264 in source event my F4V file is correct and record all 1 hour video from live event.
    I don't know what's a problem
    I use FMS 5 extended edition and FFMPEG for stream webcam on to the FMS
    This is my FFMPEG code:
    [code]
    ffmpeg -f dshow -i video="A4TECH USB2.0 PC Camera" -vcodec libx264 -b:v 32k -acodec libmp3lame -b:a 64k -ar 44100  -f flv rtmp://12.11.1.3/livepkgr/liveevent?adbe-live-event=liveevent
    [code]
    Please advise me to solve this problem.
    Many Thanks.

  • Execute External Script onDisconnect  (main.asc)

    Hello,
    Does anyone know if it's possible to execute an external script with the onDisconnect function on FMS?
    I'm trying find a better way to log when a user disconnects from a chat application.
    Thanks!

    Hi,
    Can you be a little more specific as to what kind of external script you want to run, when application.onDisconnect is triggered? How exactly do you want to log disconnect activity?
    Thanks,
    Abhishek

  • Apache Service stop automatically

    I have Flash media server 3.5 and  it is working fine but now a days Apache service is automatically stoped  so all streaming services is stopd then i restart the Flash Media  Server after restart FMS goes smothly and all streaming services goes  smothly.
    Please help about this issue, below are the event viewer detail wehere the appache service stop  detail is mentioned.
    here is the event viewer details for FMS
    Event Type:    Information
    Event Source:    FMS (Master)
    Event Category:    (258)
    Event ID:    1413
    Description:
    C:\Program   Files\Adobe\Flash Media Server 3.5\Apache2.2\bin\httpd -f   ./conf/httpd.conf -d "C:\Program Files\Adobe\Flash Media Server   3.5\Apache2.2" -n FMSHttpd -k start returned 0:

    Hi,
    the event description for FMS that you gave mention about the Apache working as expected. A returned value of 0 shows the correct working of the apache httpd service.
    When the apache is stopped, as you are observing, how are the streaming services stopped? They will not be stopped as they are not on http. Anyways, one quick workaround (while we investigate why the apache is stopping intermittantly) is to have an external / separate installation of apache away from FMS and use that for all your web service purposes.
    How did you confirm about the stoppage ? The task manager or other process explorer shows it coming down ? Can you please check the fms logs if there is anything that is related to apache coming down, being logged?
    Thank you !

  • Recording H.264 Live Stream on the Server

    I have seen several questions which were close to what I am looking for, but haven't found an answer that worked. I work at a school, and we use a NewTek TriCaster to stream live events through FMS 3.5, which I am hoping to upgrade to AMS 5 to allow HLS. We have been streaming a single H.264 encoded feed through the server as a live stream which works well. They have recently asked if it is possible to archive that recording on the server. I was able to get everything to work correctly when I switched to using the VP6 codec, but as long as we were streaming with H.264, I could not get the server to record it correctly. Here's what I have tried:
    This code works for the VP6, but the H.264 doesn't record the video:
    application.onPublish = function (clientObj, streamObj)
         var s = new Stream("archive");
         s.record();
         s.play(streamObj.name);
    This worked and created an flv file, but caused a few other issues due to the encoding of the VP6 and having to re-encode the video to H.264 before putting the file online.
    Based on suggestions I was reading, I tried this with the H.264 stream:
    application.onPublish = function (clientObj, streamObj)
         var s = new Stream("mp4:archive.f4v");
         s.record();
         s.play(streamObj.name);
    This created an f4v file, but I could not play it. When I tried to open it in Adobe Media Encoder, it gave an error that it did not support the compression type.
    Thanks.

    You should use a H.264 compitable encoder..
    FMS only delivery content, player only player the stream..
    Flix Engine, from On2, have the H.264 encoder..

  • CS Long Text Copy into Sales Order Long Text

    Hello ,
    In Depot Repair scenario , I am entering few details in Service Order long text . I want this text to be copied into Sales/Repair Order long text . Do anyone know how to do this.
    Regards.

    Hi,
        I am not sure but check in user exit IWO10009 PM Order: Customer Check for 'Save' Event
    with FMs READ_TEXT & SAVE_TEXT, WRITE_TEXT ..
    or in some sutiable user exit at the time of saving sales order , the above FMs will be helpful for ur case
    regards
    pushpa

  • Live stream reconnect/disconnect best practice

    Hi,
    When streaming a live event through FMS 3.5, is there a list of guidelines or best practices to handle the situation when the stream disconnects and should reconnect.  Basically, what I do now is wait 20 seconds after the initial disconnect, then close the stream and ask the user to ty to reconnect to the stream again.  I am not sure if this is the industry standard for this situation.  Thanks.
    Rashaan Griffith
    Software Developer
    Endavo Media and Communications Inc.
    [email protected]

    Thanks for the response Janaki.  I wanted to have a message displayed to the user when the stream dropped, but I didn't want it to happen every time the stream dropped in case it was a bad connection.  So I added a delay of 20 seconds to make sure the stream is really gone.  After that, I close the stream and ask the user to click play again to start the connection process again.  We are probably going to change this process, and in doing so, my superiors thought there may be some type of standard to go by regarding reconnecting to a dropped stream.  Thanks for your help.
    Rashaan Griffith
    Software Developer
    Endavo Media and Communications, Inc.
    [email protected]

  • Error when i try and send email

    ok, i promise this will be the last time for awhile i turn to you guys for help.
    I'm trying to connect to a external smtp server using the bytearray classes:
              var myMailer:SMTPMailer = new SMTPMailer ("outbound.mailhop.org", 2525);
                                  myMailer.authenticate("password", "login")
                                  myMailer.addEventListener(SMTPEvent.MAIL_SENT, onMailSent);
      // event dispatched when mail could not be sent
                                  myMailer.addEventListener(SMTPEvent.MAIL_ERROR, onMailError);
      // event dispatched when SMTPMailer successfully connected to the SMTP server
                                  myMailer.addEventListener(SMTPEvent.CONNECTED, onConnected);
      // event dispatched when SMTP server disconnected the client for different reasons
                                  myMailer.addEventListener(SMTPEvent.DISCONNECTED, onDisconnected);
      // event dispatched when the client has authenticated successfully
                                  myMailer.addEventListener(SMTPEvent.AUTHENTICATED, onAuthSuccess);
      // event dispatched when the client could not authenticate
                                  myMailer.addEventListener(SMTPEvent.BAD_SEQUENCE, onAuthFailed);
                                  myMailer.sendHTMLMail ( "[email protected]", "[email protected]", "test smtp", "<br><b>Picture from HTML :)</b>");
    It seems to connect just fine but when I try and sent the email this is the error i get:
    554 SMTP synchronization error
    I have never seen this error before and when i try and google it there really isnt much info on what causes the issue or how to fix it.
    I've stumped you guys before but I'm hoping this one isnt one of those questions!!
    Thanks
    Jorge

    I don't think AIR support SMTP protocol, refer: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/URLRequest.ht ml
    For content running in Adobe AIR, files in the application security sandbox can access URLs using any of the following URL schemes:
    http and https
    file
    app-storage
    app
    However, I suggest you to open a new bug report on this over at bugbase.adobe.com. Please include sample media, code, project or app to help us reproduce the problem.
    Thanks a lot.

  • Streaming stored content with FMS2... Please help.

    Hello,
    I am running the free FMS2 server for development purposes,
    hoping
    that it proves well enough to buy a licensed product before
    we launch
    our product to assist in streaming videos and mp3s (we might
    even
    implement some other applications in Flash 8 Pro given that
    we already
    bought a copy of Flash 8 Pro for this task alone).
    Current, I am only able to stream live events with FMS 2.0.4
    r79. The
    next part of my project adds the availabilty of stored
    content (aka
    on-demand; from what I understand). However, all of my
    attempts at
    streaming .flv files from FMS2 by using either FLVPlayback
    component
    with a contentPath set to
    rmtp://x.x.x.x/test/streams/cafe_townsend_chef
    I have omitted my server's public IP address.
    In another test, I tried adding the .flv file extension to
    contentPath. My clients fail to connect with either format.
    I have also used the stage and actionscript to test the
    stream with,
    it still fails, but here is a sample of my code with tracing:
    connection_nc = new NetConnectio();
    connect_nc.onStatus = function(info){
    trace("level is: " + info.level + "\n" + "code is: " +
    info.code";)
    connection_nc.connect"(rtmp:/x.x.x.x/test/streams");
    var play_ns:NetStream = new NetStream(connection_nc);
    theVideo.attachVideo(play_ns);
    play_ns.play("cafe_townsend_chef.flv");
    play_ns.onStatus = function(info) {
    trace("level is: " + info.code);
    trace("description is: " + info.description);
    trace("details are: " + info.details);
    In this .fla, I have "Video 1" on the stage with the name
    property set
    to theVideo.
    When I "Control->Test Movie" in Flash Pro 8, that produces
    these
    results (no videos or audio plays):
    level is: status
    code is: NetConnection.Connect.Success
    level is: NetStream.Play.Reset
    description is: Playing and resetting cafe_townsend_chef.flv.
    details are: cafe_townsend_chef.flv
    level is: NetStream.Play.Start
    description is: Started playing cafe_townsend_chef.flv.
    details are: cafe_townsend_chef.flv
    At this point, fms2_console.swf "View Applications" is
    showing a
    connection to "test" app, with "stream" as an instance. I
    show one
    client using rtmp with 6213/6813 bytes in/out, a recent
    Connection
    Time, and 2/4 messages in/out.
    I am using port 1935 by default and ability to be resource
    efficient
    with applications, which has been opened on the firewalls
    protecting
    our server which can be seen by the
    NetConnection.Connect.Success
    statement from what I have read. I am able to stream live
    events from
    this server during development and they work.
    During testing for stored content (what I am trying to
    accomplish
    now), I have also turned off apache, which normally binds to
    port 80
    and added the following lines to my
    conf/_defaultRoot_/Adaptor.xml
    defined inside <HostPortList></HostPortList>
    directives:
    <!-- <HostPort name="edge1"
    ctl_channel=":19350">${ADAPTOR.HOSTPORT}</HostPort> -->
    <HostPort name="edge1"
    ctl_channel=":19350">:1935</HostPort>
    <!-- Ready for testing when Apache is turned off -->
    <HostPort name="edge2"
    ctl_channel=":19351">:80</HostPort>
    After restarting FMS2, this only produces a slightly
    different result
    when using http instead of rmtp in any/all of the code above.
    In
    firefox, the status bar just keeps a "Waiting for
    x.x.x.x...", but
    never loads content in the player and doesn't show. In IE, I
    get a box
    to click on to play content, after clicking, it just reports
    "Done" on
    the status bar.
    I thought this was a Flash Pro 8 issue regarding my code
    (since this
    is my first project using Adobe's products), but I have tried
    several
    examples around Adobe's site (tutorials, live docs, FMS2
    development
    pdf provided with the server package), plus some off-site
    ones found
    by googling. I opened a case with Adobe's Flash Pro 8
    Customer Service
    team and they say it's an FMS2 problem after running some
    tests
    against my server.
    I have also traded out the .flv used for testing to verify it
    is not
    the source of my problems.
    Does anyone know my problem and have a fix or just have some
    advice on
    where to go from here?
    Hopefully Adobe staff can shed some light on this.
    Let me know if there are blanks I still need to fill in.
    Thanks.

    I tested with the Flash 8 Pro provided main.asc in
    fms2_install_dir/applications/test/ and see the same behaviour as
    majority of the other tests.
    In the process of searching for "FLVPlayback and main.asc" on
    Adobe's main site, I found an article that provides a thoroughly
    setup media player using FLVPlayback. The .fla leaves the
    contentPath blank on the component and sets a server variable in
    actionscript (default is localhost, I updated it with my server).
    When I publish preview the SWF, I get this error:
    Error : dir NetConnection.Call.Failed
    What could be causing this on either client or server side?
    When I publish HTML, the page never loads content.
    Some settings and where I have put them in certain files:
    <VirtualDirectory> settings contained within
    fms2_install_dir/conf/_defaultRoot_/_defaultVhost/Vhost.xml:
    <Streams>
    /approot;
    /opt/macromedia/fms/applications/MyCollection/streams/_definst_/
    </Streams>
    These are <FileObj> settings inside
    fms2_install_dir/applications/FileObj/Application.xml
    <VirtualDirectory>
    /approot;
    /opt/macromedia/fms/applications/MyCollection/streams/_definst_/
    </VirtualDirectory>
    fms2_install_dir = /opt/macromedia/fms
    Article:
    http://www.adobe.com/devnet/flashmediaserver/articles/on_demand_player.html
    Source:
    http://download.macromedia.com/pub/developer/on_demand_player.zip
    Example of this player live:
    http://robertsandie.com/demo/OnDemandPlayer.html

  • Streaming notification connection reopen error: You must add at least one subscription to this connection before it can be opened.

    We are developing a long time running windows service which is monitoring an email account with EWS API 2.2. The connection interval is the maximum allowed value 30 minutes, and thus the connection is reopened inside the OnDisconnect event handler every
    30 minutes. After the service keeps on running for couple of days (1 day or 2 or more), the error happens:
    You must add at least one subscription to this connection before it can be opened.:You must add at least one subscription to this connection before it can be opened.
    StackTrace: ' at the method of Void OnDisconnect(System.Object, Microsoft.Exchange.WebServices.Data.SubscriptionErrorEventArgs).
    Any idea?

    Never mind, fixed it. -43 views and no help?! Seriously?

Maybe you are looking for

  • Query for formatted search

    Hi All, I have a line UDF called U_PO in the sales order documents that denotes our purchase order number that particular item is ordered on. I have another line UDF called U_XMill which I want to populate with the corresponding PO document due date.

  • MacBook won't go to sleep when connected to external monitor

    Dear all, I have a MacBook connected to an external monitor via DVI to HDMI adapter. The MacBook is also connected to the power adapter and to an external aluminium Apple keyboard and a wired Mighty Mouse via USB. I use the computer with the lid clos

  • Delay in loading of webdynpro iView

    Hi all, I have integrated a webdynpro view with portal (webdynpro iView). In webdynpro, the code fetches data from multiple backend systems and hence there is a slight delay in the loading of the iView (during which it seems as if the page is blank).

  • Library file corrupts almost every time Itunes restarts

    I have three issues which started around the time I upgraded to the latest new version: 1) Almost every time I shut itunes down and go back into it, it claims that the library file is corrupt, and starts re-importing it from the xml. If I restore the

  • Content switch 11500 and IDS

    The public interface of my content switch is mapped to a vlan with public addresses. My servers are on a diffent VLAN --> private address schema. On the VLAN where i define my VIP addresses i also have an intrusion detection system installed. We ofte