[svn:bz-trunk] 22381: Add some unit tests for the flex.messaging.client. FlexClientManager, including one for the new getFlexClient(String id, boolean createNewIfNotExist) method signature.

Revision: 22381
Revision: 22381
Author:   [email protected]
Date:     2011-09-02 05:10:41 -0700 (Fri, 02 Sep 2011)
Log Message:
Add some unit tests for the flex.messaging.client.FlexClientManager, including one for the new getFlexClient(String id, boolean createNewIfNotExist) method signature.
Added Paths:
    blazeds/trunk/modules/core/test/src/flex/messaging/client/
    blazeds/trunk/modules/core/test/src/flex/messaging/client/FlexClientManagerTest.java

Similar Messages

  • [svn:bz-trunk] 17931: Add config suite test for BLZ-540.

    Revision: 17931
    Revision: 17931
    Author:   [email protected]
    Date:     2010-09-29 11:28:46 -0700 (Wed, 29 Sep 2010)
    Log Message:
    Add config suite test for BLZ-540. BlazeDS configuration files should not allow external entities.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-540
    Added Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/services/ExternalEntityInConfigT est/
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/services/ExternalEntityInConfigT est/error.txt
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/services/ExternalEntityInConfigT est/services-config.xml

    If you include the xalan.jar library to the build.xml execution classpath everything works!!!!!!.
    I hope it will be userfull.

  • [svn:bz-trunk] 9570: Add config suite test for BLZ-361.

    Revision: 9570
    Author:   [email protected]
    Date:     2009-08-25 07:29:50 -0700 (Tue, 25 Aug 2009)
    Log Message:
    Add config suite test for BLZ-361.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-361
    Added Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/channels/clientLoadBalancing/
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/channels/clientLoadBalancing/NoU RLsTest/
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/channels/clientLoadBalancing/NoU RLsTest/error.txt
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/channels/clientLoadBalancing/NoU RLsTest/services-config.xml

    If you include the xalan.jar library to the build.xml execution classpath everything works!!!!!!.
    I hope it will be userfull.

  • [svn:bz-4.0.0_fixes] 22382: Merge flex.messaging.client. FlexClientManager unit tests from trunk to 4.0.0_fixes.

    Revision: 22382
    Revision: 22382
    Author:   [email protected]
    Date:     2011-09-02 06:15:42 -0700 (Fri, 02 Sep 2011)
    Log Message:
    Merge flex.messaging.client.FlexClientManager unit tests from trunk to 4.0.0_fixes.
    Added Paths:
        blazeds/branches/4.0.0_fixes/modules/core/test/src/flex/messaging/client/
        blazeds/branches/4.0.0_fixes/modules/core/test/src/flex/messaging/client/FlexClientManage rTest.java

    Hi,
    Its good that u pasted the complete log file. In your environment you have to run this upgrade tool only once from any of the middle tier.
    And with respect to your error that u got in precheck is quite simple. All u have to do is just run this script from by connecting to portal schema using sqlplus.
    Run dropupg.sql
    Location-------- /raid/product/OraHome_1/upgrade/temp/portal/prechktmp/dropupg.sql
    Later you re-run the upgrade tool and let me know the status.
    Good luck
    Tanmai

  • [svn:osmf:] 13003: Update some unit tests to reflect that LayoutContextSprite now returns 0 ( not NaN) for uninitialized values to be consistent with ViewTrait.

    Revision: 13003
    Revision: 13003
    Author:   [email protected]
    Date:     2009-12-16 13:12:08 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Update some unit tests to reflect that LayoutContextSprite now returns 0 (not NaN) for uninitialized values to be consistent with ViewTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as

    Revision: 13003
    Revision: 13003
    Author:   [email protected]
    Date:     2009-12-16 13:12:08 -0800 (Wed, 16 Dec 2009)
    Log Message:
    Update some unit tests to reflect that LayoutContextSprite now returns 0 (not NaN) for uninitialized values to be consistent with ViewTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as

  • [svn:osmf:] 11341: Added some unit tests to get the metadata package above 80%

    Revision: 11341
    Author:   [email protected]
    Date:     2009-10-30 16:24:35 -0700 (Fri, 30 Oct 2009)
    Log Message:
    Added some unit tests to get the metadata package above 80%
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestTemporalFacet.as

    The nature of the Media class is that it accesses it asynchronously. This means that when you create an instance of it, and then immediately query it, the data you want may not be available yet. This is all in the Javadoc, see the doc for Media:
    The media information is obtained asynchronously and so not necessarily available immediately after instantiation of the class. All information should however be available if the instance has been associated with a MediaPlayer and that player has transitioned to MediaPlayer.Status.READY statusSo you could associate the Media with a MediaPlayer, and then wait until it goes to the Status READY, and then read the length of the Media.
    As for your 2nd question, getMetadata() returns a Map. You can just loop through it:
      for(Map.Entry<String, Object> entry : media.getMetadata()) {
        // etc
      }However, the same restrictions apply as with Media -- you will probably need to wait before the information is available -- that's why the Listener approach works, because it will notify you as soon as the information is added to the map.

  • [svn:osmf:] 15010: Add f4f unit tests, more to come.

    Revision: 15010
    Revision: 15010
    Author:   [email protected]
    Date:     2010-03-24 17:05:36 -0700 (Wed, 24 Mar 2010)
    Log Message:
    Add f4f unit tests, more to come.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeSegmentRunTable.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/HTTPStreamingTestsHelper.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/f4f/TestAdobeBootstrapBox.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/f4f/TestAdobeSegmentRunTable.as
    Added Paths:
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/f4f/TestAdobeSegmentRunTableInte gration.as

    Abuse reported.

  • [svn:osmf:] 17080: Add basic unit tests for MulticastNetLoader

    Revision: 17080
    Revision: 17080
    Author:   [email protected]
    Date:     2010-07-27 16:03:01 -0700 (Tue, 27 Jul 2010)
    Log Message:
    Add basic unit tests for MulticastNetLoader
    Modified Paths:
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
    Added Paths:
        osmf/trunk/framework/OSMFTest/org/osmf/net/multicast/
        osmf/trunk/framework/OSMFTest/org/osmf/net/multicast/TestMulticastNetLoader.as

  • [svn:osmf:] 10425: Add initial unit tests for VASTParser.

    Revision: 10425
    Author:   [email protected]
    Date:     2009-09-18 17:35:58 -0700 (Fri, 18 Sep 2009)
    Log Message:
    Add initial unit tests for VASTParser.  Minor changes to parsing code.
    Modified Paths:
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTAd.as
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTAdPackageBase.as
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/VASTTests.as
    Added Paths:
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/parser/
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/parser/TestVASTParser.as

  • [svn:osmf:] 10447: Add more unit tests for VAST validation.

    Revision: 10447
    Author:   [email protected]
    Date:     2009-09-20 19:59:57 -0700 (Sun, 20 Sep 2009)
    Log Message:
    Add more unit tests for VAST validation.
    Modified Paths:
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/parser/TestVASTParser.as

    Abuse reported.

  • [svn:bz-trunk] 20970: Add or enhance include functionality for the following configuration elements :

    Revision: 20970
    Revision: 20970
    Author:   [email protected]
    Date:     2011-03-25 14:26:37 -0700 (Fri, 25 Mar 2011)
    Log Message:
    Add or enhance include functionality for the following configuration elements:
    - Adapters
    - Channel definitions
    - Security Constraints
    - Destinations
    - Services
    The following elements are now allowed and can specify either the "file-path" attribute or the "directory-path" attribute.
    The "directory-path" attribute references a directory of XML files (names ending in .xml) that will be treated as a sequence of include files.
    Added unit tests for all the above.
    Fixed a bug in the unit test code that was terminating the verification early.
    Add the confirmation of the security constraints at the top level.
    Updated the example config file with usage examples.
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/config/ClientConfigurationParser.java
        blazeds/trunk/modules/common/src/flex/messaging/config/ConfigurationConstants.java
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/modules/core/src/flex/messaging/config/SecuritySettings.java
        blazeds/trunk/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
        blazeds/trunk/modules/core/test/src/flex/messaging/config/ConfigurationConfirmation.java
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1c.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_destination_include .xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1f_service_include.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/Confirm1c.java
    Added Paths:
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_adapter_include.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_channel_include.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_constraint_include. xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1i.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1j.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/Confirm1i.java
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/Confirm1j.java

    SDN is the place to discuss technical problems..
    Please avoid such weird post.
    G@urav.

  • [svn:bz-trunk] 17133: this time finally (and hopefully) adding all the flex-messaging-opt tomcat/jrun/oracle/weblogic/ websphere servers maven pom files in the right svn folder.

    Revision: 17133
    Revision: 17133
    Author:   [email protected]
    Date:     2010-07-30 02:01:44 -0700 (Fri, 30 Jul 2010)
    Log Message:
    this time finally (and hopefully) adding all the flex-messaging-opt tomcat/jrun/oracle/weblogic/websphere servers maven pom files in the right svn folder.
    Added Paths:
        blazeds/trunk/modules/opt/poms/oracle/
        blazeds/trunk/modules/opt/poms/oracle/pom.xml
        blazeds/trunk/modules/opt/poms/tomcat4/
        blazeds/trunk/modules/opt/poms/tomcat4/pom.xml
        blazeds/trunk/modules/opt/poms/tomcat6/
        blazeds/trunk/modules/opt/poms/tomcat6/pom.xml
        blazeds/trunk/modules/opt/poms/weblogic/
        blazeds/trunk/modules/opt/poms/weblogic/pom.xml
        blazeds/trunk/modules/opt/poms/websphere/
        blazeds/trunk/modules/opt/poms/websphere/pom.xml

  • [svn] 2756: -make the flex-sdk-description.xml process work like the trunk.

    Revision: 2756
    Author: [email protected]
    Date: 2008-08-06 08:53:11 -0700 (Wed, 06 Aug 2008)
    Log Message:
    -make the flex-sdk-description.xml process work like the trunk. don't copy the file, create one by echoing the values needed to it.
    -update build.properties, make the release value equal the actual release as in this case 3.1
    bug:https://bugs.adobe.com/jira/browse/SDK-16367
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16367
    Modified Paths:
    flex/sdk/branches/3.1.0/build.properties
    flex/sdk/branches/3.1.0/build.xml
    Removed Paths:
    flex/sdk/branches/3.1.0/collateral/en_US/flex-sdk-description.xml

    Revision: 2756
    Author: [email protected]
    Date: 2008-08-06 08:53:11 -0700 (Wed, 06 Aug 2008)
    Log Message:
    -make the flex-sdk-description.xml process work like the trunk. don't copy the file, create one by echoing the values needed to it.
    -update build.properties, make the release value equal the actual release as in this case 3.1
    bug:https://bugs.adobe.com/jira/browse/SDK-16367
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16367
    Modified Paths:
    flex/sdk/branches/3.1.0/build.properties
    flex/sdk/branches/3.1.0/build.xml
    Removed Paths:
    flex/sdk/branches/3.1.0/collateral/en_US/flex-sdk-description.xml

  • [svn:bz-trunk] 21111: Bug: BLZ-578 - [Coverity] potential race condition for class flex.messaging.MessageBroker

    Revision: 21111
    Revision: 21111
    Author:   [email protected]
    Date:     2011-04-21 06:12:37 -0700 (Thu, 21 Apr 2011)
    Log Message:
    Bug: BLZ-578 - potential race condition for class flex.messaging.MessageBroker
    QA: Yes
    Doc: No
    Details: The bug was fixed by change 19598 already, but also adding a minor fix to not call setSystemSettings in initThreadLocal method becuase there are no thread local variables in MessageBroker anymore.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-578
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/MessageBroker.java

  • [svn:bz-trunk] 19214: BLZ-578 - [Coverity] potential race condition for class flex.messaging.MessageBroker

    Revision: 19214
    Revision: 19214
    Author:   [email protected]
    Date:     2010-12-09 07:31:35 -0800 (Thu, 09 Dec 2010)
    Log Message:
    BLZ-578 - potential race condition for class flex.messaging.MessageBroker
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: MessageBroker had a thread-local SystemSettings property in addition to regular SystemSettings property. This was due to MessageBroker#getSystemSettings static method that was called only once in the whole code tree. Once I removed the need for this static method, I could get rid of the thread-local SystemSettings property.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-578
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/FlexContext.java
        blazeds/trunk/modules/core/src/flex/messaging/MessageBroker.java
        blazeds/trunk/modules/core/src/flex/messaging/MessageBrokerServlet.java
        blazeds/trunk/modules/core/src/flex/messaging/MessageException.java

Maybe you are looking for

  • Weblogic 5.1 installation problem on winNT server4.0

    while running weblogic executable file on CD to install weblogic on NT Server4.0, following message is appearing- "the decompression of %s failed.There may not be enough space in the temp directory." I tried putting the temp system variable in my own

  • How to I get iMovie to recognize a moved iPhoto library?

    I am very close to running out of space on my comupter - and my iPhoto library was taking up a huge chunk of space. So, I moved my iPhoto library to an external harddrive that I keep plugged into my computer. Unfortunately, I have many video projects

  • Something's wrong with my Email setup

    i follow some demo video i've watch about the Email setup it helped but the problem is in the email setup it doesn't say ''i want to create or add an email adress'' but it only says ''i want to use a work email account with a blackberry enterprise se

  • Nodes not allowed

    Dear Experts, I have created a GL in BCS Devlopement system and is appearing properly in items hierarchy. but when it was moved to Quality and Production server it appeared in "Nodes not allowed" cloumn inplace of item hierarchy. Please guide the cor

  • Trouble downloading apps to my iTunes and new iPad -

    Hi I just got my iPad, (yayay!) but... for some of the apps I keep getting this message "iTunes couldn't download your purchase - you don't have write access to your iTunes media folder or a folder within it. Change permissions (in the Finder) and th