[svn:bz-trunk] 18053: BLZ-571: Use of wrong operator in string comparison in flex.messaging.VersionInfo. java

Revision: 18053
Revision: 18053
Author:   [email protected]
Date:     2010-10-07 03:27:37 -0700 (Thu, 07 Oct 2010)
Log Message:
BLZ-571: Use of wrong operator in string comparison in flex.messaging.VersionInfo.java
Updated the code to use the right operator.
Check-in Tests: PASS
QA: Yes
Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-571
Modified Paths:
    blazeds/trunk/modules/core/src/flex/messaging/VersionInfo.java

Similar Messages

  • [svn:bz-trunk] 14341: BLZ-476 : Getting different error message in server' s servlet log and console log when class is not of expected type.

    Revision: 14341
    Revision: 14341
    Author:   [email protected]
    Date:     2010-02-22 13:19:46 -0800 (Mon, 22 Feb 2010)
    Log Message:
    BLZ-476 : Getting different error message in server's servlet log and console log when class is not of expected type.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-476
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/MessageBrokerServlet.java
        blazeds/trunk/modules/core/src/flex/messaging/util/ClassUtil.java

    Hi, wbracken ,
    As known, there are 2 different questions I raised.
    Regarding the reply for the second one (Nothing to do with Chinese), I noticed there are several similar issues found in this forum, and it seems no response could solve my that problem. The related methods and classes were also well check, as well as the parameters put.
    Any way, your reponse was appreciated.
    Thank you for the help.

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

  • Use Operator == for String Comparison

    Hi,
    I would like to know more about the impact of using operator == in String Comparison.
    From the reference I get, it state this :
    "Operator (==) compares two object addresses to see whether it refers to the same object."
    I've tested it with 2 codes as below :
    Code 1:
              String Pass1 = "cosmo";
              String Pass2 = "cosmo";          
    if (Pass1==Pass2)
                   System.out.println("1&2:same");
              else
                   System.out.println("1&2:not same");
    Output : 1&2:same
    Code 2:
              String Pass3 = new String("cosmo");
              String Pass4 = new String("cosmo");
              if (Pass3==Pass4)
                   System.out.println("3&4:same");
              else
                   System.out.println("3&4:not same");
    Output : 3&4:not same
    Can anyone kindly explain why is the result so? If operator == compares the addresses, isn't it that the 1st code should also have the output :"1&2:not same".

    Can anyone kindly explain why is the result so?It's an implementation artifact. Strings are pooled internally and because of that any String literal will be represented by exactly one object reference.
    Knowledge of this shouldn't be utilized though. It's safer to follow the basic rule: Use == to compare object references and equals to compare object values, such as String literals.

  • [svn:bz-trunk] 14330: BLZ-476 : Getting different error message in server' s servlet log and console log when class is not of expected type.

    Revision: 14330
    Revision: 14330
    Author:   [email protected]
    Date:     2010-02-22 10:03:03 -0800 (Mon, 22 Feb 2010)
    Log Message:
    BLZ-476 : Getting different error message in server's servlet log and console log when class is not of expected type.
    QA: no
    Doc: no
    checkin test : pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-476
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/MessageBrokerServlet.java

    Hi, wbracken ,
    As known, there are 2 different questions I raised.
    Regarding the reply for the second one (Nothing to do with Chinese), I noticed there are several similar issues found in this forum, and it seems no response could solve my that problem. The related methods and classes were also well check, as well as the parameters put.
    Any way, your reponse was appreciated.
    Thank you for the help.

  • [svn:bz-trunk] 7497: BLZ-233 - Add a heartbeatInterval property to channelset

    Revision: 7497
    Author:   [email protected]
    Date:     2009-06-02 13:25:23 -0700 (Tue, 02 Jun 2009)
    Log Message:
    BLZ-233 - Add a heartbeatInterval property to channelset
    QA: Yes
    Doc: Yes (review documentation for <heartbeat-interval-millis> in /resources/services-config.xml)
    Checkintests Pass: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-233
    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/config/FlexClientSettings.java
        blazeds/trunk/modules/common/src/flex/messaging/config/ServicesDependencies.java
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/modules/core/src/flex/messaging/messages/CommandMessage.java
        blazeds/trunk/resources/config/services-config.xml

  • [svn:bz-trunk] 18945: BLZ-228  - Add support for FlashPlayer 10 extensions to AMF 3

    Revision: 18945
    Revision: 18945
    Author:   [email protected]
    Date:     2010-12-02 05:12:21 -0800 (Thu, 02 Dec 2010)
    Log Message:
    BLZ-228  - Add support for FlashPlayer 10 extensions to AMF 3
    QA: Yes
    Doc: Yes
    Checkintests: Pass
    Details: Tweaked the client-to-server Vector deserialization to deserialize uint Vectors into Long (instead of Integer) Arrays/List after realizing that uint Actionscript can hold values that Java Integer cannot hold.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-228
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf3Input.java

    son of a gun.  i googled around a bit more after i posted my question here.  i have reset the smc, so let's see what happens.  i'll get back to you after a time to see whether it starts misbehaving again.
    what causes the need for an smc reset?  what actually went wrong?
    thanks again, linc davis.

  • [svn:bz-trunk] 17299: BLZ-555: Bad version number in . class when starting JBoss 5.x with latest BlazeDS app

    Revision: 17299
    Revision: 17299
    Author:   [email protected]
    Date:     2010-08-12 05:36:37 -0700 (Thu, 12 Aug 2010)
    Log Message:
    BLZ-555: Bad version number in .class when starting JBoss 5.x with latest BlazeDS app
    The "testdata" package has been compiled using JDK 1.6. When you try to run on application server that uses JDK 1.5, it will give the above error. Removed this test related package from the aspectjweaver-1.6.5.jar.
    Checkintests: PASS
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-555
        http://bugs.adobe.com/jira/browse/aspectjweaver-1
    Modified Paths:
        blazeds/trunk/lib/spring/aspectjweaver-1.6.5.jar

    andre.ramaciotti wrote:And I'm not sure if you should put that & after exec awesome. It works fine here without it.
    No & after entries in .xinitrc . You've commented out the awesome entry.

  • [svn:fx-trunk] 10211: Fix measurement using TLFTextField in RSLs

    Revision: 10211
    Author:   [email protected]
    Date:     2009-09-12 17:56:04 -0700 (Sat, 12 Sep 2009)
    Log Message:
    Fix measurement using TLFTextField in RSLs
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-22653
    Reviewer: Gordon
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/modules/fonts was run, but all tests seem to be excluded
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22653
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/TextFieldFactory.as

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • [svn:fx-trunk] 7120: Switched to using "use namespace mx_internal" rather than using explicit namespace scoping (e.g.,  mx_internal::foo) in RichEditableText and its related classes.

    Revision: 7120
    Author:   [email protected]
    Date:     2009-05-19 23:46:06 -0700 (Tue, 19 May 2009)
    Log Message:
    Switched to using "use namespace mx_internal" rather than using explicit namespace scoping (e.g.,  mx_internal::foo) in RichEditableText and its related classes.
    Removed stale import statements.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Carol
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/TextArea.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/RichEditable TextContainerManager.as

    I'm more of a 1.3 chick myself, but the words are the same just in a different language.
    1. Is Tomcat running?
    2. Have you configured the ajp13 connector on 8009 in Tomcat? (Should it be ajp13 for Apache 2.0? - I really must upgrade)

  • [svn:bz-trunk] 18087: Update to use player 10.2

    Revision: 18087
    Revision: 18087
    Author:   [email protected]
    Date:     2010-10-08 08:52:13 -0700 (Fri, 08 Oct 2010)
    Log Message:
    Update to use player 10.2
    Modified Paths:
        blazeds/trunk/build.properties

    For those running into problems with Internet Explorer 9 and Flash Player 10.3, we have just released a test version that we're hoping resolves the problems you're encountering.
    "A pre-release Flash Player to address this issue is now available for testing. We are very interested in hearing you feedback concerning this possible fix. If you should encounter any new issues please report these through our Adobe Flash Player Bug Management System. Please review the instructions on this page for details on generating the information we’ll need for further investigation.
    Download Flash Player 10.3.181.15 Update
    Important: Please note that this build is for testing and feedback purposes only and is not a full Flash Player release. By installing this binary you accept the terms of the Adobe Software License Agreement."
    After installing the new version, please re-enable your hardware acceleration in IE9 if you had previously disabled it.  We'd like to know if this solves the problem for you, after trying it out please let us know.
    Thanks,
    Chris

  • [svn:fx-trunk] 11851: Halo label using FTETextField was incorrectly truncating because the textWidth incorrectly included the 2 pixels of PADDING_LEFT .

    Revision: 11851
    Revision: 11851
    Author:   [email protected]
    Date:     2009-11-16 10:19:38 -0800 (Mon, 16 Nov 2009)
    Log Message:
    Halo label using FTETextField was incorrectly truncating because the textWidth incorrectly included the 2 pixels of PADDING_LEFT.  Correct textWidth which should be the max textLine.textWidth.  Also need to maintain the width to use to clip the text which is max x + textWidth since the text could be indented and/or aligned and all has left padding of 2 pixels.
    QE notes: 80 FTETextField failures.  bitmaps need updating.  Peter knows this is coming
    Doc notes:
    Bugs: SDK-24176
    Reviewer: Gordon
    Tests run: checkintests, FTETextField
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24176
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/FTETextField.as

    You have used elements like header, footer, footer1 and nav without using the correct DOCTYPE declaration. Replace the first line of your code with
    <!doctype html>
    Also have a look here for other problems http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.surewest.net%2Fstorytales%2F test%2Fforposting.html
    After the above has been fixed, please come back here to fix the remaining problem(s)
    Gramps

  • [svn:fx-trunk] 13501: Bug: BLZ447 - AMF3 Deserialization: Wrongly counted reference ID of duplicated String when in the same message there are Strings with only wildcards

    Revision: 13501
    Revision: 13501
    Author:   [email protected]
    Date:     2010-01-14 06:01:23 -0800 (Thu, 14 Jan 2010)
    Log Message:
    Bug: BLZ447 - AMF3 Deserialization: Wrongly counted reference ID of duplicated String when in the same message there are Strings with only wildcards
    QA: Yes - please keep an eye on AMFX (HTTPChannel) tests.
    Doc: No
    Checkintests: Pass - except the usual 4-5 tests that time out on my machine.
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXDecoder.as

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • [svn:bz-trunk] 9838: Bug: BLZ-416  - Can bypass checks for which channel and protocol a destination can be called over by using NetConnection instead of BlazeDS messaging .

    Revision: 9838
    Author:   [email protected]
    Date:     2009-08-31 11:27:50 -0700 (Mon, 31 Aug 2009)
    Log Message:
    Bug: BLZ-416  - Can bypass checks for which channel and protocol a destination can be called over by using NetConnection instead of BlazeDS messaging.
    QA: Yes
    Doc: Yes - note the new enforce-endpoint-validation setting.
    Details: Added the following config setting:
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-416
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/config/ConfigurationConstants.java
        blazeds/trunk/modules/core/src/flex/messaging/MessageBroker.java
        blazeds/trunk/modules/core/src/flex/messaging/config/MessagingConfiguration.java
        blazeds/trunk/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
        blazeds/trunk/modules/core/src/flex/messaging/config/SystemSettings.java

  • [svn:bz-trunk] 15217: Bug: BLZ-508 - If server receives message for an unknown destination it shouldn ' t include the destination name in the error message sent back to the client .

    Revision: 15217
    Revision: 15217
    Author:   [email protected]
    Date:     2010-04-05 03:43:36 -0700 (Mon, 05 Apr 2010)
    Log Message:
    Bug: BLZ-508 - If server receives message for an unknown destination it shouldn't include the destination name in the error message sent back to the client.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: Changed the error message to not include destination id. I'm also checking in a few minor fixes I had locally.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-508
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/modules/core/src/flex/messaging/MessageBroker.java
        blazeds/trunk/modules/core/src/flex/messaging/cluster/JGroupsCluster.java

    Thanx Mete, yeah i did...
    but i solved it some other way... not entirely sure this was
    it though as i was doing a lot of things at once...
    it was fds.swc... possibly it was out of date or missing.

Maybe you are looking for

  • Purchase order  and supplier details?

    tables to included for listing purchase order details and the secondary list of information about supplier

  • Transferring an iMovie project from one computer to another

    I have an iMac with some iMovie projects that I want to work on through my MBP. What is the best way of doing this? Drop Box doesn't seem to be the way. Migration Assistant is an option I suppose but all I want to do is to be able to work on a projec

  • New Action features

    There are some very nice additions to the functionality of Actions in Keynote '09. One extremely useful improvement that I have yet to see mentioned here is the ability to leave a ghosted image of the final position of an Action on the slide while on

  • Getting hold of an item's expiry date

    WWSBR_ALL_ITEMS contains a column called EXPIREDATE. This only seems to get populated with a date if: 1. An explicit expiry date is provided 2. You click on the expire item link For items that are set to 'Expire in x days' nothing is stamped here whe

  • HT204053 One iCloud account, two different ID's & Phones

    Here's my situation... both my wife and I have different iTunes accounts, is it possible for us to share 1 big iCloud account? Both of our phones have surpassed their 5gb of free iCloud and I want to purchase the 50gb/year so that we can share it --