[svn:osmf:] 14019: Restore manual switch mode default to false.

Revision: 14019
Revision: 14019
Author:   [email protected]
Date:     2010-02-05 16:39:41 -0800 (Fri, 05 Feb 2010)
Log Message:
Restore manual switch mode default to false.  But always set it to true at the NetLoader level, so that the switching manager can handle the transition logic.
Modified Paths:
    osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as
    osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingNetLoader.as

Revision: 14019
Revision: 14019
Author:   [email protected]
Date:     2010-02-05 16:39:41 -0800 (Fri, 05 Feb 2010)
Log Message:
Restore manual switch mode default to false.  But always set it to true at the NetLoader level, so that the switching manager can handle the transition logic.
Modified Paths:
    osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as
    osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingNetLoader.as

Similar Messages

  • [svn:osmf:] 17456: Restore unit test application to (manual) runnable state .

    Revision: 17456
    Revision: 17456
    Author:   [email protected]
    Date:     2010-08-23 16:51:56 -0700 (Mon, 23 Aug 2010)
    Log Message:
    Restore unit test application to (manual) runnable state.
    Modified Paths:
        osmf/trunk/framework/OSMFTest/OSMFTest.mxml

  • [svn:osmf:] 13942: 1. Set the default value of _manualSwitchMode back to false

    Revision: 13942
    Revision: 13942
    Author:   [email protected]
    Date:     2010-02-02 13:02:47 -0800 (Tue, 02 Feb 2010)
    Log Message:
    1. Set the default value of _manualSwitchMode back to false
    2. Remove the setter of client property and change relevant methods/properties.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as

    i have tried this but this is not working.
    follwing code working for Null case not for False
    vcr.setAttribute("Marked","is null"); this code display all rows who has null but when i checked any row and then unchecked so that row get value "false" also not display.

  • [svn:osmf:] 13754: Restore ability for HTTP streaming index handler to send /receive arbitrary context associated with an index, per Matthew's feedback .

    Revision: 13754
    Revision: 13754
    Author:   [email protected]
    Date:     2010-01-25 10:56:31 -0800 (Mon, 25 Jan 2010)
    Log Message:
    Restore ability for HTTP streaming index handler to send/receive arbitrary context associated with an index, per Matthew's feedback.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/events/HTTPStreamingIndexHandlerEvent.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingIndexHandlerBase.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FIndexHandler.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/URLLoaderWithContext.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:osmf:] 14433: Resetting the FLASH_10_1 configuration value to 'false'.

    Revision: 14433
    Revision: 14433
    Author:   [email protected]
    Date:     2010-02-25 13:17:42 -0800 (Thu, 25 Feb 2010)
    Log Message:
    Resetting the FLASH_10_1 configuration value to 'false'.
    Modified Paths:
        osmf/trunk/framework/OSMF/.actionScriptProperties
        osmf/trunk/framework/OSMF/.flexLibProperties

    Hello.
    If you want to search the bug database, check [https://bugzilla.mozilla.org bugzilla]. But this is probably a bug with Flash, not with Firefox. Unless, of course, all plugins are having problems, in which case, maybe I can help you?

  • Is it possible to config UCS STP priority in "Switch mode" ?

    I want to config STP Priority for UCS in Switch mode (Default is 32768 + VLANID).
    How can I do that ? please advice.
    Thank you

    Connectivity Solutions for the Cisco Unified Computing System
    http://www.cisco.com/en/US/prod/collateral/switches/ps9441/ps9402/white_paper_c11-623265.html
    • You cannot configure Spanning Tree Protocol parameters, such as bridge priority and hello timers.
    Ethernet Switching Mode
    The Ethernet switching mode determines the way that the fabric interconnect behaves as a switching device between the servers and the network. The fabric interconnect operates in either of the following Ethernet switching modes:
    • Switch mode
    • End-Host Mode
    Switch Mode
    Switch mode is the traditional Ethernet switching mode. Use switch mode when the fabric interconnect is directly connected to a router, or when Layer 3 aggregation or a VLAN in a box is used upstream (Figure 32). Switch mode has the following attributes:
    • The fabric interconnects run Spanning Tree Protocol with connected external switches to avoid forwarding loops; broadcast and multicast packets are handled in the traditional way.
    • The fabric interconnects run Per-VLAN Spanning Tree Plus (PVST+), which cannot be changed to another Spanning Tree Protocol such as Multiple Spanning Tree (MST).
    • You cannot configure Spanning Tree Protocol parameters, such as bridge priority and hello timers.
    • MAC address learning and aging are enabled on both the server links and the uplinks, so that the switch operates like a typical Layer 2 switch.
    • Some uplinks connected to external switches may be blocked by spanning-tree rules.
    Also remember that you are limited to the options presented to you via the CLI and GUI.  They should have the same capabilities.  If you do not see an option for configuring spantree priortiy, changing the value is not supported.
    HTH,
    Dan Laden

  • More executeUpdate in manual transaction mode...

    stmt=con.createConnection(......);
    ...A connection has been set in manual transaction mode.
    con.setAutoCommit(false);And I run someething for database update
    String err="";
    try
    stmt.executeUpdate(...); //1st
    stmt.executeUpdate(...); //2nd
    stmt.executeUpdate(...); //3rd
    catch(SQLException sqle)
    err+=e.toString();
    finally
    if(err.length()<=0)
      con.commit();
      else
      con.rollback();
    }In this code, if the 1st SQL script of executeUpdate was OK.
    When program stream run to 2nd executeUpdate,
    will 1st executeUpdate be automatic commit?
    And some syntax error ocurred in 2nd SQL script of executeUpdate,
    an SQLException will be thrown.
    I rolled back all transaction with the only one connection...
    Will all 3 transaction be rolled back?

    In this code, if the 1st SQL script of executeUpdate
    was OK.
    When program stream run to 2nd executeUpdate,
    will 1st executeUpdate be automatic commit?No. With autoCommit set to false, the updates will only be committed when you call commit().
    And some syntax error ocurred in 2nd SQL script of
    executeUpdate,
    an SQLException will be thrown.
    I rolled back all transaction with the only one
    connection...
    Will all 3 transaction be rolled back?Yes. All statements executed in the transaction will be rolled back.
    A neater way to implement this sort of code (avoiding the err variable) would be:
    try
      stmt.executeUpdate(...); //1st
      stmt.executeUpdate(...); //2nd
      stmt.executeUpdate(...); //3rd
      con.commit();
    catch (SQLException e)
      con.rollback();
      throw e;
    }

  • How to fast manual switching between streams in osmf plugin

    I just want to manual switching between streams using osmf plugin in custom player. For this I have use following code.
    mediaPlayer.autoDynamicStreamSwitch = false; mediaPlayer.switchDynamicStreamIndex(bitrateAdaptive.selectedIndex); mediaPlayer.addEventListener(DynamicStreamEvent.SWITCHING_CHANGE, onSwitchingChange);
    I am playing smil file streaming by wowza streaming server but code work but switch between streams very slow. It takes about 20 to seconds for switching which is not expected in this case.

    I just want to manual switching between streams using osmf plugin in custom player. For this I have use following code.
    mediaPlayer.autoDynamicStreamSwitch = false; mediaPlayer.switchDynamicStreamIndex(bitrateAdaptive.selectedIndex); mediaPlayer.addEventListener(DynamicStreamEvent.SWITCHING_CHANGE, onSwitchingChange);
    I am playing smil file streaming by wowza streaming server but code work but switch between streams very slow. It takes about 20 to seconds for switching which is not expected in this case.

  • Manual Switch over the operation modes

    Hi,
    What's is purpose of RZ03(Manual Switch Over the Operations Modes)? Where extactly useful?
    Regards
    Basis Admin

    Hi,
    Operation Modes are the best way to change the amount of processes in the system, Administrators usually prefer more dialog processes during the day to deal with the users requests and more batch processes during the night to deal with all the system jobs, reports, archiving, etc.. The manual switch is used to change the Operation mode instantly to deal with a special demand, like heavy reporting, special month end jobs, testing, etc...
    Hope this help!
    Juan
    Please reward with points if helpful

  • HT1339 My ipod does not appear in itunes.because only resrtartohet, can ndoenj so switch to restore in DFU mode.or something

    My ipod does not appear in itunes.because only resrtartohet, can ndoenj so switch to restore in DFU mode.or something

    I can't understand your question or problem...
    B-rock

  • MACSEC between 3850 and 4500-X (manual switch-switch mode)

    Hi all
    As per post title, a couple of questions:
    1) Will MACSec encryption work between the above switches (using 1Gig port on the 3850 and a 1Gig SFP on the 4500-X)?
    2) If so, what versions of software are required, and what is the minimum feature set (IP Base?)
    3) Any special modules required like 3750X?
    4) Will Etherchannel work with the above?
    5) Bonus question: will the above run over 2 EoMPLS carrier provided services?
    Thanks
    A

    Plug your speakers into the soundcard as usual.
    use the front mounted headphone socket on the fromt of the X-Fi I/O unit to connect your headset and set the control panel to automatically mute your speakers when the headset is connected. Your speakers will mute when the headset is plugged in and all you have to do is plug or unplug the headset at the front to switch modes!...Now please do not ask about doing the same with your mike connector!! see other thread by me!! p.s creative do ship a /4" to 3.5mmm adapter with the card.
    Hope I have understood your post
    AndyMessage Edited by slef2003 on 0-4-2006 03:54 AM

  • Data network errors when manually switching from 3g to 2g

    Hi everyone,
    Apologies if this has been posted before but im running out of ideas! - Got my iphone 4 a couple of weeks ago and have noticed a rather irritating problem with it. For some reason, if i manually switch from 3g to 2g the data connection drops.. I get 'cannot activate cellular data network' errors and i have to toggle airplane mode on/off to reset the connection. Is this a network issue? - I live in London and am with Vodafone... Their tech support are useless as all they suggest is resetting the phone or getting it replaced. Its my third handset in 2 weeks and im getting close to calling it a day and sending the phone back to Apple. Anyone out there in a similar situation? - Advice??

    Bump
    So no-one has suffered this issue? - Not even fellow vodafone uk users?

  • IPod touch 2G. Not syncing, not restoring, not switching on. iTunes 10.4.1. Help Please!

    iPod touch 2G. Not syncing, not restoring, not switching on. iTunes 10.4.1. Help Please!

    - What happens when you try to sync and restore?
    - If iTunes is not seing the iPod see if restting the iPod will either fix the problem or allow you to see it in iTunes so you can restore the iPod
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Next place the iPod in recovery mode and then try to restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • Can't get my 60gb video iPod out of "Restore with iTunes" mode

    I reinstalled Windows the other day and my iPod was still connected to my computer. By the time I noticed this, it said "Connect to computer - use iTunes to restore." I know using "restore" will erase the contents of my iPod, but I don't want to do that. While using my backup iTunes discs, I realized that certain cd's didn't get reloaded, and none of my playlists came back either. I want to recover these things using an upload from my iPod, but all my iPod does is show the "connect to computer and restore" screen. How can I get my iPod to work again without using restore? I've put it into disk mode, but the software I have still doesn't recognize that it's there, and resetting it doesn't do anything either. I also tried changing the letter drive, but that didn't do squat. Help! What can I do? Thanks. PLEASE I need help with this!

    Well here's what I've tried so far:
    1. Repair Disk Permissions
    2. Opened a new iTunes account
    3. Checked whether I had the updated tabs in itunes (photos, video, games etc) after syncing iPod with my wife's iBook. It did, and I was able to restore. Switched back to my G5 and still only 4 tabs as if it was the onld 2nd gen ipod I used to have.
    4. Tried installing iTunes 6 and still no go on being able to push that dang restore button
    5. Searched for and deleted everthing iTunes on my hard drives and still no go.
    6. Thinking of re-installing OS 10.4 and starting from scratch. (I'm that determined to fix this)
    I still ask the Apple community, of which I've been a part of for 19 years, if there's anyone out there who might have a fix for this.

  • Manual switch over for maintenance

    Hi experts:
    Following are the steps for Manual Switch over from primary to standby
    connect /@PRIM as sysdba
    ALTER DATABASE COMMIT TO SWITCHOVER TO PHYSICAL STANDBY WITH SESSION SHUTDOWN;
    connect /@STAN as sysdba
    ALTER DATABASE COMMIT TO SWITCHOVER TO PRIMARY;
    ON previous primary
    SHUTDOWN IMMEDIATE;
    SQL>STARTUP MOUNT;
    New Primary (previous stand by )
    ALTER DATABASE OPEN;
    I have primary & standby with protection mode maximize availability
    How can I vice versa the above process lets say my primary is down for maintenance & i want this as my primary again ?
    one more thing is that reports are generated from standby right now so it mean active dg is configured.
    Regards

    Hello;
    Try to remember if you databases are in sync its kind of like having one database in two different roles, Primary role and Standby role.
    Also if you want to do maintenance then don't issue this command after switchover, wait until the maintenance is complete and then issue it and Data Guard will catch up :
    alter system set log_archive_dest_state_2=enable;Once you have done a switchover its a good idea to do a log switch and make sure the new primary and standby are working correctly. Once you have done that the step to switch back are as follows : ( Do not use if you have Data Guard Broker setup )
    h3. Verify that it is possible to perform a switchover operation.
    SQL> select switchover_status from v$database;
    Note:All v$database switchover_status values are shown at the bottom of this page.
    If SWITCHOVER_STATUS returns SESSIONS ACTIVE then you should either
    disconnect all sessions manually or when performing step 2 you should append
    the with session shutdown clause. For example:
    SQL> alter database commit to switchover to standby with session shutdown;h3. Convert the primary database to the new standby
    SQL> alter database commit to switchover to standby with session shutdown;
    Note: This might take a few minutes.h3. Shutdown the former primary and mount as a standby database
    SQL> shutdown immediate
    Note: An ORA-01507: database not mounted is normal
    SQL> startup nomount
    SQL> alter database mount standby database;h3. Defer the remote archive destination on the old primary
    SQL> alter system set log_archive_dest_state_2=defer;h3. Verify that the physical standby can be converted to the new primary
    QL> select switchover_status from v$database;
    SWITCHOVER_STATUS
    TO PRIMARY
    Note that if the status returns SESSIONS ACTIVE then you should append the with session shutdown clause to the command in step 6.h3. Convert the physical standby to the new primary ( step 6 )
    SQL> alter database commit to switchover to primary;h3. Shutdown and startup the new primary
    SQL> shutdown immediate
    ORA-01109: database not open
    SQL> startuph3. Enable remote archiving on the new primary to the new standby
    SQL> alter system set log_archive_dest_state_2=enable;h3. Start managed recover on the new standby database
    SQL> recover managed standby database disconnect;
    Media recovery complete.
    SQL>
    Note: It’s a good idea to perform a log switch on the new primary.
    SQL>alter system switch logfile;Best Regards
    mseberg

Maybe you are looking for

  • Installation problem on XP EXCEPTION_ACCESS_VIOLATION

    Attempting to install on windows XP I get a "crash" incriminating ntdll.dll. The same installation file works OK on my professional laptop which is windows NT. Se logfile below An unexpected exception has been detected in native code outside the VM.

  • Creative cloud Indesign crash on startup

    Please see log below. Upgraded iMac from snow leopard to Mountain Lion, upgraded to creative cloud from CS5.5, however indesign will not start and crashes with the following below. Process:         Adobe InDesign CC [3046] Path:            /Applicati

  • User Cannot Click on Hyperlinks in Fill-able Form

    We use Acrobat Pro 10 / LiveCycle Desginer to create our fill-able forms to then publish on our website.  Our users can click the form on our webpage, the PDF opens in Chrome just fine and they can fill in the fields.  But when a user trys to click o

  • OfficeJet 4636 doesn't print the first page of a document

    a) I'm not english mother-tongue. Apologize my grammar mistakes. b) I have a printer HP officejet 4636 sine august 2014 c) Sometimes , randomly and without any apparent reason the first page of the documentwhich is usually the last one to be printed,

  • BO 4.0 production deployment recommendations

    Hi All, We would like to understand what would be the good approach to segregate the different services into different physical machine. When we do the sizing using quicksizer, the output is in SAPS and Memory size for four different tiers. a) Web Ap