Invalid Bitmap Data error when Flex tries to play a Crossfade transition?

Hi All,
I've got a Grid like this in my Flex 4 app.  When the view that contains this Grid is visible, and the view is changed to another view, my application tries to play the Crossfade effect as the transition to the other view.  My transition is defined like this:
     <s:transitions>
          <s:Transition fromState="*" toState="*">
               <s:Parallel>
                    <s:CrossFade duration="150" target="{this}" />
               </s:Parallel>
          </s:Transition>
     </s:transitions>
This applies the transition to any view.  There's only one effect in there at the moment but it's in a Parallel block since I've experimented with multiple transitions.
Now, when I'm on a view where this Grid is visible, and I try to transition to another view, I get an "Invalid BitmapData" error.  HEre's the complete stack trace:
ArgumentError: Error #2015: Invalid BitmapData.
     at flash.display::BitmapData/ctor()
     at flash.display::BitmapData()
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:99]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
     at spark.utils::BitmapUtil$/getSnapshot()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:63]
     at spark.effects::AnimateTransitionShader/getValueFromTarget()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\effects\AnimateTransitionShader.as:283]
     at mx.effects::Effect/http://www.adobe.com/2006/flex/mx/internal::captureValues()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\effects\Effect.as:1462]
     at mx.effects::CompositeEffect/http://www.adobe.com/2006/flex/mx/internal::captureValues()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\effects\CompositeEffect.as:377]
     at mx.effects::CompositeEffect/captureStartValues()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\effects\CompositeEffect.as:358]
     at mx.core::UIComponent/commitCurrentState()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9778]
     at mx.core::UIComponent/setCurrentState()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9701]
     at mx.core::UIComponent/set currentState()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:6087]
     at main/previousButton_clickHandler()[C:\Data\dev\Flex\main\src\main.mxml:48]
     at main/__previousButton_click()[C:\Data\dev\Flex\main\src\main.mxml:241]
Here's what the grid looks like.  I experimented with adding and removing controls from the grid, and eventually narrowed it down to a a VGroup I've got in the grid.  If I remove that VGroup (and all it's children), the transition plays fine.  Add it back in, and everything blows up again.  I tried using a VBox instead of a VGroup, but there was no change--same error.  I also tried getting rid of horizontalAlign="center", and again, no change.
<mx:Grid id='membershipGrid' >
     <mx:GridRow>
          <mx:GridItem>
          </mx:GridItem>
          <mx:GridItem>
               <s:Label text="One Year" fontWeight="bold"/>
          </mx:GridItem>
          <mx:GridItem>
               <s:Label text="Two Year" fontWeight="bold"/>
          </mx:GridItem>
          <mx:GridItem>
               <s:Label text="5 Year" fontWeight="bold"/>
          </mx:GridItem>
          <mx:GridItem>
               <!-- Comment out this VGroup, and everything works fine -->
               <s:VGroup horizontalAlign="center">
                    <s:Label text="Monthly Autorenew"  fontWeight="bold"/>
                    <s:Label text="Payment plan option is not available" fontStyle="italic" />
                    <s:Label text="for multiple year memberhips." fontStyle="italic" />
               </s:VGroup>
          </mx:GridItem>
     </mx:GridRow>
     <mx:GridRow>
          <mx:GridItem>
               <s:Label text="Standard Membership" />
          </mx:GridItem>
          <mx:GridItem>
               <s:RadioButton id="standardOneYear" group="{membershipTypeSelection}"
                                 label="{pricing.getMembership(MembershipName.STANDARD_ONE_YEAR).currencyPrice}" />
          </mx:GridItem>
          <mx:GridItem>
               <s:RadioButton id="standardTwoYear" group="{membershipTypeSelection}"
                                 label="{pricing.getMembership(MembershipName.STANDARD_TWO_YEAR).currencyPrice}" />
          </mx:GridItem>
          <mx:GridItem>
               <s:RadioButton id="standardFiveYear" group="{membershipTypeSelection}"
                                 label="{pricing.getMembership(MembershipName.STANDARD_FIVE_YEAR).currencyPrice}" />
          </mx:GridItem>
          <mx:GridItem horizontalAlign="center">
               <s:RadioButton id="monthlyAutorenew" group="{membershipTypeSelection}"
                                 label="{pricing.getMembership(MembershipName.MONTHLY_AUTORENEW).currencyPrice}" />
          </mx:GridItem>
     </mx:GridRow>
</mx:Grid>
So, what's going on?  How can I get this transition to work?  Thanks!

Flex harUI wrote:
Sometimes that can happen if something gets sized too small.
Thanks for suggesting that.  It got me thinking about some other things, and I then realized that the Grid itself was in a container with TileLayout, and a requestedColumnCount of 5.  That was a mistake--I had initially been playing with the TileLayout for my "grid" but then switched to using an actual mx:Grid control, and should have gotten rid of the TileLayout with the requestedColumnCount of 5.
I changed my layout object to an instance of VerticalLayout, and now the problem has gone away.
My theory, based on your suggestion that something might be sized "too small," is that when I added enough controls to my Grid (which all appeared in tile 1), tiles 2 through 5 got "too small" and thus Invalid BitmapData errors were thrown when the transition tried to figure out what bitmaps to fade in/out.
Sound reasonable?
Now I just have to re-enable all the other controls that I disabled while trying to hunt down this problem, and hopefully the Invalid BitmapData error won't recur.
  -Josh

Similar Messages

  • BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data

    When upload to the server the following error occurs: BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data or Muse freezes.

    Hello,
    On the weekend, I tried to upload my website again. I got an interesting error message.
    Error: Error #1000: The system is out of memory.
                at flash.data::SQLStatement/internalExecute()
                at flash.data::SQLStatement/execute()
                at Function/http://adobe.com/AS3/2006/builtin::apply()
                at com.adobe.muse.framework.database::RecordManager$/retryOnSQL3119Errors()
                at com.adobe.muse.framework.database::RecordManager$/getRecordFromTable()
                at com.adobe.muse.framework.database::RecordManager/getRecord()
                at com.adobe.muse.framework.objectModel::DataBase/getDBRecord()
                at com.adobe.muse.framework.objectModel::DataBase/instantiate()
                at com.adobe.muse.framework.objectModel::PersistContext/instantiate()
                at com.adobe.muse.framework.objectModel::PersistList/getItemAt()
                at mx.collections::ListCollectionView/getItemAt()
                at mx.collections::ListCollectionView/http://www.adobe.com/2006/actionscript/flash/proxy::nextValue()
                at com.adobe.muse.site.links::BaseLink/getProxy()
                at com.adobe.muse.site.links::BaseLink/hasLinkProxy()
                at com.adobe.muse.site.links::BaseLink/isMediaLink()
                at com.adobe.muse.site.links::BaseLink/needMoreImageData()
                at com.adobe.muse.site.links::LinkUtils$/getUnexpectedLinkStatuses()
                at com.adobe.muse.importExport::ExportUtil$/preflightLinksInActiveDoc()
                at com.adobe.muse.importExport.html.ui::MuseExportMenuRegion/onChildItemClick()
                at com.adobe.muse.framework.menus::MuseMenuRegionBase/onChildItemClickEvent()
                at flash.events::EventDispatcher/dispatchEventFunction()
                at flash.events::EventDispatcher/dispatchEvent()
                at com.adobe.muse.framework.menus::MuseMenuItemBase/onClick()
                at flash.events::EventDispatcher/dispatchEventFunction()
                at flash.events::EventDispatcher/dispatchEvent()
                at com.adobe.muse.framework.menus::MuseMenuManager/onMenuItemSelect()
                at flash.events::EventDispatcher/dispatchEventFunction()
                at flash.events::EventDispatcher/dispatchEvent()
                at com.adobe.pash.air::AIRMenuManager/onClickMenuItem()
    There is also the latest MuseLog.txt.
    Von: Zak Williamson (Adobe) [email protected]
    Gesendet: Freitag, 21. Juni 2013 19:58
    An: Mondputzer
    Betreff: BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data
    Re: BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data
    created by  <http://forums.adobe.com/people/ZakWilliamson%28Adobe%29> Zak Williamson (Adobe) in Help with using Adobe Muse CC -  <http://forums.adobe.com/message/5436292#5436292> View the full discussion

  • ISE 1.2 change account duration - invalid account date error

    When I tried to extend the duration of some accounts to july 2014 on my ISE 1.2 I got the invalid account date error. When I tried to extend the user to the 5th of february it worked. I  couldn't go further thant that date although I can select a date 365 days away from now.
    Is there a limitation when you want to change the account duration?
    Regards,
    Mathieu

    Hi Mathieu,
    Probably you are hitting this defect
    CSCum10047.
    This will be addressed in upcoming releases mostly in ISE 1.2.0. 899 Patch 7 which is tentatively scheduled to be released at the end of February .

  • [svn] 1774: Bug: BLZ-176 - Not getting an authentication error when Producer tries to send a message over streaming channel with insufficient credentials .

    Revision: 1774
    Author: [email protected]
    Date: 2008-05-16 13:29:10 -0700 (Fri, 16 May 2008)
    Log Message:
    Bug: BLZ-176 - Not getting an authentication error when Producer tries to send a message over streaming channel with insufficient credentials.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This was caused by the fact that streaming channels do not report connected until the initial ping completes and a URLStream is established with the server. Added some extra code in ChannelSet to make sure authentication errors are reported with correct faultCode even if the channel is not reporting connected.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-176
    Modified Paths:
    flex/sdk/branches/3.0.1.x/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

    Revision: 1774
    Author: [email protected]
    Date: 2008-05-16 13:29:10 -0700 (Fri, 16 May 2008)
    Log Message:
    Bug: BLZ-176 - Not getting an authentication error when Producer tries to send a message over streaming channel with insufficient credentials.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This was caused by the fact that streaming channels do not report connected until the initial ping completes and a URLStream is established with the server. Added some extra code in ChannelSet to make sure authentication errors are reported with correct faultCode even if the channel is not reporting connected.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-176
    Modified Paths:
    flex/sdk/branches/3.0.1.x/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

  • "Merging data" error when syncing iPhone 5s Calendar to MacBook Pro Calendar, using Mountain Lion

    Since a failed attempt to sync data via iCloud (resulting in duplicate entries in Calendar and Contacts, missing data, and other oddities), whenever I try to sync the Calendars via iTunes, I repeatedly get the error message, "iTunes could not sync calendars to the iPhone <name> because an error occurred while merging data." The Contacts sync fine, and the backup runs smoothly. The only discussions I can find in Apple Support are dated 2009 with older systems (I'm using Mountain Lion 10.8.5, iTunes 11.1.5, iOS 7.1.1, but the problem occurred with iOS 7.0 and possibly 6.0 as well). Repairing permissions had no effect. I can't use the option to copy the Mac Calendar to the iPhone because new data are entered into the iPhone. Would appreciate guidance. I'm trying to avoid iCloud but if I have to go there to fix this, guidance for that would also be welcome.

    I have iPhone 5 with iOS 6.1.4 and iMac with Mavericks 10.9.3 and iTunes 11.2.1.
    I also got this error when I tried to sync iPhone with iMac (after a year when Apple disabled local USB cabel sync in Mavericks - thanks Apple for re-enabling it!).
    I tried a number of things to no avail. Finally I tried three things - and hurraaa, can sync now! Unfortunatelly I didn't test sync among these three steps - so don't know which one fixed it - up to you to try. My guess is that it was the 3rd step, actually
    Step 1: On my iPhone I opened Calendar and tap "Calendars" (top left). I have 7 items on the list (2 email accounts, Calendar, Home, Work, Reminders, Birthdays). Most of the calendar entries were in my Home calendar, only a few were in Work or Birthdays. I moved all of them to Home. I also checked whether there aren't any items without content.
    Step 2: On the list of Calendars I had one custom item (Birthday in my local language). This item had only one entry in it. I deleted both the single entry and the custom item as a whole - so I left the default categories only.
    Step 3: At the top of the list of Calendars there is an item "All from My Mac". I tapped this and thus enabled all of my calendar categories. Now the sync worked like a charm!
    I actually noticed that when I synced, iTunes automatically checked all items under "Sync Calendars - Selected Calendars". Even if I manually deselected all except the "Home" calendar, as soon as I started to sync, iTunes checked all items automatically. This led me to thinking that if I check "All from My Mac" item in my iPhone it might work.
    Good luck with your sync issue, hope you'll solve it.

  • WORKLOAD ANALYSIS (INTROSCOPE DATA) - Error when opening an RFC connection

    Hi all SDNers,
    Help is needed on error "WORKLOAD ANALYSIS (INTROSCOPE DATA) - Error when opening an RFC connection".
    This error occured on RCA -> Extractor FWK administration and go to managed system (PI) and from the log, i can see some extraction failed due to error message " Error when opening an RFC connection"
    consequently, JAVA performance data is not appearing in RCA -> workload analysis but work fine for ABAP and adapter engine.
    I've followed below notes and perform the troubleshooting step by step by still to no avail:
    Note 1332428 - Missing data in service sessions from BI/CCDB
    Note 1257308 - FAQ: Using EarlyWatch Alert
    Note 1274287 - End-to-End Diagnostics 7.0 EHP1 SP18 to SP27
    Note 1265070 - Diagnostics - Setup of Managed Systems
    Note 1010428 - End-to-End Diagnostics
    http://wiki.sdn.sap.com/wiki/display/SMSETUP/WorkloadAnalysis-Noapplicabledatafound
    steps that have performed:
    restarted agent
    enlarge RFC resource cap for solmandiag and none
    delete entire SID in SMSY and pull again from SLD, re-setup managed system
    restart PI system
    i've spent 2 days on troubleshooting this issue but lack of information in SMP and SDN, even in google.
    in table E2E_EFWK_STATUS and extractor E2E_JAVA_EXTRACTOR_IF, i see all WLI_ID ended with RC 96, MESSAGE = Error when  opening an RFC connection and LASTRECORDS = 0
    I strongly believe this is the issue that causing no applicable data found for JAVA data.
    fyi, we are on SOLMAN EHP1 SPS27.
    Any kind advise is most welcome.
    Thanks,
    Nicholas Chang

    Gosh! at last i found the solution!!
    I appreciate those who tried to help and i''m sharing the solution as i believe this is the purpose of SDN Forum and help others Netweaver Chap who facing the same problem:
    Problem faced:
    Extractor failed intermittently for WORKLOAD ANALYSIS (Introscope Data) due to error message "Error when opening an RFC connection"
    Due to the above error, performance data is not available in RCA workload analysis for J2EE engine.
    Possible Solution:
    1) Ensure both webadmin & SOLMANDIAG RFC working fine -> SM59 -> TCP/IP
    2) go to SE16 -> E2E_RESOURCES and change the resourcecap to 10 for SOLMANDIAG
    3) go to /smd/services -> Diagnostic System -> Advanced Setup -> Abap connectivity -> Connection Configuration and change server count to 10
    4) Restart webadmin (step 3 & 4 can perform in VA too)
    5) set gw/keepalive &  gw/reg_keepalive to value 0 in RZ11 (without reboot of instance)
    5) again go to SM59 -> TCP/IP -> SOLMANDIAG and put in the gateway host and gateway service correctly, don't leave this empty!!!! -
    > This is the main solution to solve intermittent failed RFC for extractor.
    Now, go back and monitor the extractor log and you should see no RFC error anymore and wait for 1 hour for the data to populate.
    Thanks!
    Nicholas Chang,

  • There was as error when i tried to update my itunes. I am trying to reinstall but now i get an error message saying to verify if I am able to have apple mobile service. How do i do that?

    There was as error when i tried to update my itunes. I am trying to reinstall but now i get an error message saying to verify if I am able to have apple mobile service. How do i do that?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall press on)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Invalid File Name Errors when syncing to Ipod

    Ever since an update last fall I have been getting Invalid file name errors when I try to sync my ipod. A window would pop up saying "Windows could not copy 'SONGNAME' to the iPod 'IPODNAME' because an unkown error occurred (-37)." I would press OK and another window would immediately pop up that would say, "Attempting to copy to the disk 'IPODNAME' failed. the file name is invalid or too long."
    The windows would keep popping up countless times until the sync would just seem to time out and stop.
    The problem songs would have no problem playing in iTunes.
    Prior to the update this did not happen. No new songs were added around this time and nothing was changed to my file directory structure. I was too busy to troubleshoot this problem at the time and hoped that another update would fix it. Well, here I am many months and updates later and still no fix. After fiddling with iTunes and resetting my Ipod multiple times (goodbye saved angry bird games)I have found out that:
    1. By writing down the file name when the error windows pop up I can get a partial list of the problem file names. I could not get a complete list of the problem files because the sync would time out before a full list could be compiled (the list appears to be in the hundreds).
    2. If I changed the name of the file by adding OR deleting one character, remapping the song in itunes, the song would then sync properly.
    3. If I changed the name of the file, remapped the location of the file within iTunes, changed the name of the file BACK to the original name that iTunes supposedly had a problem with, and then remapped the location of the song within iTunes, the song would then sync properly
    4. If I moved the song to a different directory without changing the file name, remapped the song within iTunes, the song would sync properly.
    5. If I moved the song to a different directory without changing the file name, remapped the song within iTunes, moved the file BACK to the original directory, remapped the song again, the song would sync properly.
    6. If I renamed the file and then named it back to the original file name WITHOUT remapping the file location in iTunes, the song would still not sync properly
    7. If I moved the file into a different directory and then back again without remapping the file location, the song would still not sync properly.
    8. Changing or deleting the tags has no effect at all.
    9. File name lengths are already under 200 characters and there are no special characters used.
    So, to sum up, I have found out a way to fix the issue. The problem is, that there are hundreds of songs that appear to be affected and renaming or moving every single one individually and then remapping is extremely inefficient and ignores the cause of the problem. I also did not want to delete the itunes library and then add all of the songs back in because I have many custom playlists that I have spent hours creating and I do not want to delete them.
    Is there a better way to fix the problem? Especially if someone knows the root cause?

    I got a procmon log file and examined it. I have the file and I could also provide you with that or screenshots of it.
    There is nothing unusual about it. I can see entires in which CR has successfully opened the report and has cached in a c:\windows\temp.
    However there is one or two non-successful entries that may be related, especially that examining the stack trace brings us to a call to get_ProductLocaleID():
    - A call to read reg entry HKU\S-1-5-20\Software\Business Objects\Suite 12.0\Crystal Reports\Locale fails with NAME NOT FOUND.
    - immediately after that and from the same process (w3wp.ex) there is a call to open directory "c:\" which is logged as ACCESS DENIED.
    Any subsequent unsuccessful calls seem to be results of exception handling in the debug code.
    Does this point to any setup issues with CR? We always run the redistributable x86 runtime when installing it.

  • There was an error when I tried to install OS X Lion online. What can I do to fixed the problem?

    There was an error when I tried to install OS X Lion after I purchased the os online. How do I fixed it?

    Had the same problem.  All I did was click retry, (nothing happened at first so had a panic attack) so I checked my email and found I'd payed for Lion, also the Lion App in the app Store had gone back to the purchace price.  However after reaching for a brown paper bag to try and stop myself hyperventilating, Lion suddenly appeared and said it was installing.  33 minutes later it was up and running 'Job done'

  • I'am getting an update error when am trying to upgrade to newer version (4.3.2)..the error message content shows that i tunes could not back up the i pod,because the back up was corrupt or not compatible with ipod..can anyone help me out to fix this issue

    I'am getting an update error when am trying to upgrade to newer version (4.3.2)..the error message content shows that i tunes could not back up the i pod,because the back up was corrupt or not compatible with ipod..can anyone help me out to fix this issue

    Hi,
    Try here:  http://support.apple.com/kb/HT1808. 
    Hope this helps! 
    ---likeabird---

  • I have a .mov file that plays on my mac but when someone tries to play it on a pc, they get an error 128 message. Help!

    I have a .mov file that plays on my mac but when someone tries to play it on a pc, they get an error 128 message. Help! Please!

    This is not the problem. We are using quicktime on the pc's and the mac. I also tried to open the file on the pc with other programs and it doesn't recognize the file. The file opens fine on my mac but I cannot save it as a new file. It says that "the end of the file was reached." The recording was made in iShowU then edited in Quicktime Pro.

  • Getting Date error when I process

    Hi All,
    I have DEV & QA Analysis services on 2 different server. This is 2005 SSAS
    I am using same solution so DEV process OK but QA gives me date error
    when  I check with SSMS , date fields  look fine .
    But I am getting this error in QA
    Errors in the OLAP storage engine: The attribute key cannot be found: Table: dbo_view_ftblCharge, Column: SrvDateKey, Value: 12/13/2005. Errors in the OLAP storage engine: The record
    was skipped because the attribute key was not found. Attribute: Date of Dimension: Service Date from Database: Charges, Cube: Charges, Measure Group: Charges, Partition: Charges, Record: 1. Errors in the OLAP storage engine: The process operation ended because
    the number of errors encountered during processing reached the defined limit of allowable errors for the operation. Errors in the OLAP storage engine: An error occurred while processing the 'Charges' partition of the 'Charges' measure group for the 'Charges'
    cube from the Charges database
    Thanks,
    Gok

    12/13/2005 is an American date format (mm/dd/yyyy) whereas you need a british date format 13/12/2005 (dd/mm/yyyy).
    Have a look at this topic on how you can force the correct collation (date format)
    http://sqlmag.com/blog/forcing-collation-where-clause-22-jun-2011
    Please click "Mark As Answer" if my post helped. Tony C.

  • HT200109 I just got ATV3, rented a movie and when I tried to play it it said "an error has occurred. Try again later".  What does that mean?

    I just got ATV3, rented a movie and when I tried to play it I got the message "an error has occurred. Try again later".  What does that mean?

    What is your connection like (use speedtest.net)?
    Check for interference using istumbler or netstumbler
    Make sure your DNS is set correctly (settings - general - network - congifure DNS - automatic)

  • Getting error when I tried to give sysdba to user1 in oracle 10g on solaris

    Hi,
    I have created a password file orapw<sid>.ora under dbs directory and set the remote_login_passwordfile=exclusive. I am getting the below error when I tried to give sysdba to user1.
    ORA-01994 Grant Failed : Password file missing or disabled.
    Kindly share your knowledge in this regards.
    Thanks,
    KarthicK

    1. drop the current password file if exists
    2 Recreate the password file. The user that will create the password file must be in OS DBA group
    Be sure that the user has XWR privileges on that file.
    give an fully pathname for the password file, under dbs directory ( not mandatory, but i prefer )
    3. recreate the password file and grant privilege to user user1
    Let we know

  • I got errors when I tried to upgratde WLS from 10.3.0.0 to 10.3.3.0

    Hi there,
    In our system we use spring on WLS. Everything is well till I try to upgrade WLS from 10.0 to 10.3. I set listener in my web.xml file.
    <listener>
    <listener-class>weblogic.spring.monitoring.WeblogicContextLoaderListener</listener-class>
    </listener>
    I got below errors when I tried to start our system:
    Jul 26, 2010 9:54:14 AM org.springframework.web.context.ContextLoader initWebApplicationContext
    SEVERE: Context initialization failed
    java.lang.NoSuchMethodError: weblogic.spring.monitoring.SpringBeanDefinitionRuntimeMBeanImpl.<init>(Ljava/lang/String;Lweblogic/management/runtime/RuntimeMBean;Ljava/lang/String
    ng/String;Ljava/lang/String;)V
    at weblogic.spring.monitoring.SpringRuntimeMBeanCreator.createSpringRuntimeMBeans(SpringRuntimeMBeanCreator.java:77)
    at weblogic.spring.monitoring.SpringRuntimeMBeanCreator.createSpringRuntimeMBeans(SpringRuntimeMBeanCreator.java:47)
    at weblogic.spring.monitoring.WeblogicSpringApplicationListener.onApplicationEvent(WeblogicSpringApplicationListener.java:80)
    at org.springframework.context.event.SimpleApplicationEventMulticaster$1.run(SimpleApplicationEventMulticaster.java:78)
    at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)
    at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:76)
    at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:274)
    at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:736)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:383)
    at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
    at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
    at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1863)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(Dep
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Any thoughts are very welcome!
    Thanks,
    Bo
    Edited by: user5771153 on 10-Sep-2010 8:57 AM

    I had a problem upgrading from 10.3.0 to 10.3.3 as well.
    I used Smart Update on a Linux (X86) machine.
    - I had previously used Smart Update to apply Critical Patches to the WLS 10.3.0 environment, all using the default profile.
    - I upgraded the environment to Maintenance Pack 3 using Smart Update.
    After the upgrade Smart Update indicates that there are no patches applied. However, when I start a WLS server previously created in 10.3.0, it lists the patches previously applied and then fails with a message:
    <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application 'bea_wls_internal'.
    I opened a service request and received a 'workaround' which is to manually remove the patches applied for 10.3.0. After I did this things worked correctly, at least for the trivial testing that I've performed so far.
    Perhaps you should open an SR, report the problem and maybe get a better workaround?
    - Paul

Maybe you are looking for