Issues exist in release build that don't exist in debug build

I've been working on a Flex 4.1 project and have recently noticed an issue that does not exist in the debug build.  Then when you export a release build and run it the issue appears.  This is the only change that's made that breaks it.  To me this seems to be a bug in the player, SDK, or compiler that I might need to post, but I figured I'd submit it here in case I'm missing something.
Basically it seems to be an issue with objects in an ArrayCollection being instantiated as the correct class type before being added.
When in debug mode, if you set a breakpoint to view the objects in the ArrayCollection you will see them appropriately as their Strongly Typed class.  However, when the release mode build is run it will throw an RTE on that same line indicating that the ArrayCollection members are ObjectProxy and they can't be cast into their Strongly Typed class.
Here's the RTE that happens and right now I just need to know if I'm missing something, or if this looks like a bug, and to which bugbase it should be posted (Flash Player, Flex SDK, Flex Compiler, etc.)
TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::ObjectProxy@28250141 to
<confidential package path>.PlayerPageSummary.
    at <confidential package path>.service::InitializeStorefrontServiceResponseCommand/execute()
    at org.robotlegs.base::CommandMap/execute()
    at org.robotlegs.base::CommandMap/routeEventToCommand()
    at MethodInfo-1674()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at <confidential package path>::<confidential acronym>ModuleActor/dispatchLocal()
    at <confidential package path>.live::InitializeStorefrontService/result()
    at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()
    at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()
    at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at DirectHTTPMessageResponder/completeHandler()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

Alex,
Thanks for your help and here's an update on this from me.  We did try out your suggestion to see if "PlayerPageSummary can be retrieved via getClassAlias".  I'm not the one that did the testing, but my teammate who did, said that the class being registered was not the issue.
While he was working on that I further investigated our ANT builder and configuration to see what might have been different between ANT building non-debug SWF and Flash Builder building non-debug SWF.  Turns out that my teammate had added some [ArrayElementType] metadata that I was not aware of.  Once I realized that, I added it as metadata to be kept in my flex-config.xml which ended up solving the debug vs. release mode issues.
Afterwards, I double-checked the livedocs and also did some Googling.  From the above it appears that debug SWF keep all metadata without you needing to explicitly tell it to. On the other hand, outside of a handful of metadata tag such as [Bindable] release builds neeed to be told what to keep.
Does this sound right?
Also, do you know off the top of your head if this is documented by Adobe anywhere and what the link is?  I had a real tough time finding anything mentioning how debug SWF retain all metadata.
Thanks again for your help!

Similar Messages

  • How do I show a count for rows that don't exist?

    Hi, I'm trying to count the number of records grouped by rank(B,C,R),month,and year. Basically, anytime a part fails testing a record is entered which records the failure Rank and occurrence date. A record is only inserted if a part failed for specific rank. So not all 3 ranks will have entries. I'm able to count all ranks by month,year that do exist. But how do I get values of 0 for the ranks that don't exist? I just created a table qa_rank that has just one column rank with 3 records(b,c,r). but its not being used as of now. rank is just a column in qa_occ record.Here is my query.
    select to_char(occdate,'YY') as yr, to_char(occdate,'MM') as mn,
    rank, count(occdate)
    from qa_occ
    where q.occdate between '1-Apr-2005'and '31-Mar-2006'
    and q.supplier = '11107'
    group by to_char(q.occdate,'YY'),to_char(q.occdate,'MM'),q.rank
    order by to_char(q.occdate,'YY'),to_char(q.occdate,'MM')
    which returns this
    YY MM RANK COUNT(OCCDATE)
    05 09 C 2
    05 10 C 2
    05 11 C 1
    05 11 R 1
    06 01 C 3
    06 02 C 1
    06 03 B 1
    06 03 C 2
    I need it to return C,B,R for everymonth. If no records exist then the count for the month,rank should be 0. Any ideas? Thanks.

    something like:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select * from qa_occ;
    OCCDATE   PART            R INDEXPOINTS
    15-SEP-05 B3661-RYPX-A000 C           4
    25-SEP-05 B3661-RYP-A000  C           4
    11-OCT-05                 C           7
    20-OCT-05 B3661-RYP-A000  C           4
    11-NOV-05                 C           4
    18-NOV-05 B3661-RYPX-A000 R           0
    11-JAN-06 B3661-RYP-A000  C           4
    25-JAN-06 3511-RNA0-0111  C           4
    27-JAN-06 3511-RNA0-0111  C           4
    15-FEB-06 3511-RNA0-0111  C           4
    07-MAR-06 B3661-RYP-A000  C           4
    14-MAR-06 B3661-RYP-A000  C           4
    15-MAR-06 3511-RNA0-0111  B          13
    13 rows selected.
    assuming that there are only three ranks available B, C,and R we considered this as a lookup values. now in the query below we incorporate an inline view for the lookup values:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select qa.yr, qa.mn,
    28         decode(qa.rank,lk.rank,qa.rank,lk.rank) rank,
    29         sum(decode(qa.rank,lk.rank,qa.cnt,0)) cnt
    30    from (select to_char(qo.occdate,'YY') as yr,
    31                 to_char(qo.occdate,'MM') as mn,
    32                 qo.rank,
    33                 count(qo.occdate) cnt
    34            from qa_occ qo
    35          group by to_char(qo.occdate,'YY'),
    36                   to_char(qo.occdate,'MM'),
    37                   qo.rank) qa,
    38         (select 'B' rank from dual
    39          union all
    40          select 'C' rank from dual
    41          union all
    42          select 'R' rank from dual) lk
    43  group by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank)
    44  order by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank);
    YR MN R        CNT
    05 09 B          0
    05 09 C          2
    05 09 R          0
    05 10 B          0
    05 10 C          2
    05 10 R          0
    05 11 B          0
    05 11 C          1
    05 11 R          1
    06 01 B          0
    06 01 C          3
    06 01 R          0
    06 02 B          0
    06 02 C          1
    06 02 R          0
    06 03 B          1
    06 03 C          2
    06 03 R          0
    18 rows selected.
    SQL>

  • Movies that don't exist

    front row looks in the movies folder and lists the contents, right?
    well it's showing titles in that are not in and have never been
    in my movies folder.
    nothing happens when selecting these (probably because they don't exist).
    of course i can't delete since they do not appear in the finder or
    spotlight search.
    i tried deleting everything in the movies folder, of course all
    that's left in front row are the movies that don't exist.
    any suggestions?
    Message was edited by: avinbc

    Are your movies, even though they're gone from the hard drive, listed in iTunes somewhere? That would make them appear in Front Row even under the Videos section.
    The Front Row preference file does not remember anything except which module was the last one you used.
    -Doug

  • Get rowns that don't exist in any of the tables.

    Hi,
    I need to implement some views to compare systems.
    This views will compare tables with the same structure and I want to extract the rows that don’t exist in any of the sides.
    I need to implement some views to compare only two tables, others to compare 3 tables and one to compare 5 tables and another to compare 10 tables!
    Each table can contains from a few rows up to 10 million rows (that was the biggest count I found for this tables).
    My test scenario:
    CREATE TABLE TEST_TABLE
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE2
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE3
    (COL1 NUMBER ,
    COL2 CHAR(25));
    insert into TEST_TABLE (COL1,COL2) values (1,'2');
    insert into TEST_TABLE (COL1,COL2) values (11,'t1');
    insert into TEST_TABLE2 (COL1,COL2)  values (1,'2');
    insert into TEST_TABLE2 (COL1,COL2) values (22,'t2');
    insert into TEST_TABLE3 (COL1,COL2) values (1,'2');
    insert into TEST_TABLE3 (COL1,COL2) values (33,'t3');To find the differences between two tables I implemented the following:
    select * from
    (select * from TEST_TABLE
    minus
    select * from TEST_TABLE2
    union all
    (select * from TEST_TABLE2
    minus
    select * from TEST_TABLE
    Result:
    COL1 COL2
    11     t1                      
    22     t2                       For the 3 tables comparison The result should be:
    Result:
    COL1 COL2
    11     t1                      
    22     t2                      
    33     t3                       For the other ones I can implement the same way, but for sure this is not the prettiest and most performing solution!
    How can I achieve the result I intent with the most performance?
    Thanks,
    Ricardo Tomás

    You didn't say if you allow duplicates in your tables, so i assumed you didn't.
    If a single table could have multiple occurrences of a given col1, col2 combination you would need to distinct the col1,col2 list from each table before doing the union all.
    ME_XE?  select
      2     col1, col2
      3  from
      4  (
      5     select col1, col2       from test_table
      6             union all
      7     select col1, col2       from test_table2
      8             union all
      9     select col1, col2       from test_table3
    10  )
    11  group by
    12     col1, col2
    13  having count(*) = 1;
                  COL1 COL2
                    33 t3
                    22 t2
                    11 t1
    3 rows selected.
    Elapsed: 00:00:00.01
    ME_XE?

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • Deauthorizing computers that don't exist

    How am I supposed to deauthorize computers that don't exist? Every time I've had to reinstall Windows, iTunes eats up another "authorization". Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?

    Every time I've had to reinstall Windows, iTunes eats up another "authorization".
    Your supposed to deathorize BEFORE a re-install. Not after. iTunes makes it very easy to do that.
    Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?
    Apple makes it easy enough to de-authorize your computer. You can even do a de-authorize all once a year. Log on your account and you should be able to not only view your authorizations, but have an option to de-authorize all of them.

  • 'Raw' Data XMP view shows internal properties that don't exist in the data

    In FileInfo view for an image, if I switch to the 'Raw Data' tab, it shows photoshop:ColorMode and photoshop:ICCProfile. However, when I check the actual XMP data of the image e.g. using exiftool or a text editor, these properties do not exist in the XMP data.
    According to this thread: http://forums.adobe.com/message/5057589 these are both internal properties to PS / Bridge, which explains why they don't exist in the XMP. But why are they shown in the 'Raw' data view for the XMP then? Showing them here is just confusing as it makes it seem like they should exist in the XMP data.
    I can't really see any point in including nonexistent tags in the Raw Data view. But if it is deemed necessary, how about highlighting them a different color, such as using a grey font instead of black? At least it would indicate that they were different to the real data.
    P.S. This is with Bridge CS5, possibly the issue has been fixed in CS6?

    Hi Paul
    The issue is that the Bridge File Info panel is showing these tags in the XMP for the image, but if you check the XMP of the file, those tags aren't there.
    As a side issue, Bridge File Info panel is also showing the XMP in a different structure to that which exists in the actual file. There are two issues here really
    ACR is not writing the photoshop:ColorMode tag (or the photoshop:ICCProfile tag) to the JPEG (I checked the .xmp sidecar file for the RAW file and the photoshop:ColorMode tag does exist in there, but does not exist in the JPEG file converted through ACR).
    Bridge's File Info panel is showing data in the XMP that is not actually there.
    Although I would like the ColorMode tag added to the image, I don't think point 1 is a real issue, since the ICC profile is embedded okay. Point 2 does appear to be a bug (or at least it is confusing if it is intended behaviour).

  • Import photos that don't exist...

    When I import pictures into iPhoto from an external hard drive, there are mystery pictures that are showing up. These are pictures that used to exist on the HD but that I deleted from there.
    I deleted my entire iPhoto library and emptied the trash within iPhoto. I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    I tried to re-import the pictures from the external HD to iPhoto, but AGAIN, the mystery pictures are there. I've checked the folder in the HD that they are showing up in. But, they are not there. I've even done a search on my computer, and the files don't exist.
    Please help me figure out why this is happening. I just don't know how to get rid of these pictures. I want them gone...completely!!!
    Thank you!!!

    I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    Never make changes to the structure or content of the iPhoto library using the finder
    make sure you have the photos you want safe and drag the baad iPhoto library to the trash and empty it and then depress the option key and launch iPhoto and create anew library - now start using this correctly set up library
    LN

  • Old Reminders in Notification Centre That Don't Exist in Reminders

    In the Notification Centre on my Mac I have 2 Reminders from 61 days ago listed, but I don't think they actually exist - if I click on them in the Notification Centre the Reminder application opens but on today, it doesn't go the the reminder I clicked on, and if I search in Reminders I can't find the entries either, neither can I if I go back 61 days in the application, they just don't exist.
    I've turned notifications for Reminder off and on, it doesn't make a difference; obviously this is a corruption in a cache or file somewhere, does anyone know where the Notification information is held and how I can get rid of these two incorrent entries?
         David
    Mac OS X 10.8.4

    I found it....
    Kill the /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/Notification Center process and deleted the .db file in ~/Library/Application Support/NotificationCenter - the NotificationCenter process automatically restarts (so be quick on the delete of the .db file!), rebuild the database and it's clean now, the two old Reminder entries have gone.

  • Time Machine only keeps two days backup, displays old backups that don't exist. Occurs on two separate HDD's

    I have a 15" 2010 MBP C2D-2.53 in completely original form except it is running OSX 10.8. Applecare just ran out so that's not an option, FYI. Lately I went to fetch an old file from TM because the current file was corrupt and I noticed that TM was only backing up for the past couple of recent days. Oddly enough, it also displayed a couple of backups dated from 2010, even though the external HDD I'm using was purchased 2 months ago and the files displayed in the "2010" backup did not exist at that time so it's an impossibility. The backup disc is a toshiba canvio external 320gb USB.
    I thought that was odd so I zeroed and reformatted that disc using disc utility. I made it the TM disc again, did the usual backup without error and waited a couple of days. Sure enough, when I checked it had continued the trend of displaying the impossible 2010-dated backup and was still only backing up the past couple of days' material correctly. I decided that this was all getting a bit silly, so I plugged an old external WD USB hard drive, formatted it and made it my second time machine backup disc. Waited a couple of days, accessed it, saw the same exact thing as with the other external drive.
    I'm perplexed, however based on these rudimentary tests I'm guessing the culprit lies with the machine rather than the external hard drives. These facts may be unrelated, but I also notice that when I go to eject the toshiba external drive, it says something like "there is more than one partition, would you like to eject one or all" and the machine also had some work done on it by Apple recently. Specifically, a new logic board, airport card and complete erase/install where I reinstalled data successfully through migration assistant. The work was done due to kernel panics at boot. Thankfully for now I've also got CCC cloning the drive, but I do require the long-term snapshots that TM takes.
    Any help would be greatly appreciated, and I'm willing to do some digging to fix this issue.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Is there a method for suggesting apps that don't exist yet?

    As a frequent user of call forwarding, it would be great if when I input a phone number it displays as one of my Contacts. This would help avoid mistakes, such as mistyping my home phone number; I might miss that I inputted one wrong digit, but if Home didn't come up I'd see that immediately.
    Is there anywhere ideas like this can be posted?
    thanks.

    Smart album with face is none (I believe - check the available options)
    Unfortunately since iPhoto does not know that faces exist exist in photos that it has not found a face you will only get faces that you have not named - to see all photos with potential faces that iPhoto has not found you need to go through all photos and look - I used to add a keyword "face checked" after I went through a photo but fell behind and haven't gotten back to it - with that you can use keyword is not face checked to clean out ones you have done
    LN

  • WCS showing APs that don't exist

    Hi,
    I'm doing a demo for a customer and I have a small "bug" on my WCS. The WCS is showing fault information on the home page. It says: "Total APs not yet assigned to Maps : 2". When I open the link, it says "None detected". There are also two unknown MACs on the client tab of the home page.
    I have one controller and five access points at the moment. All the APs have been placed on a map. I've done an audit for the controller and refreshed the config to WCS. Is there any way I could erase the old database and get rid off these "ghost APs"?
    I'm running WCS v. 6.0.132.0 and WLC v. 6.0.188.0.
    Thank you,
    Petri

    This is a cosmetic issue that can be corrected by editing the database of WCS.
    Before doing so, stop wcs service, run on the cli dbadmin.bat checkschema (from the wcs bin folder) and then restart wcs to see if this fixed the db.
    If not please open a TAC case as we manually need to edit your database to remove the 2 aps from the list.

  • Removing UM role servers that don't exist anymore?

    Have come into a situation where I have a Exchange 2010 SP3 install with 2 node DAG and the management console references two UM role installed servers that technically no longer exists. I am planning on doing a migration to 2013 and just know I will run
    into some issue with these lagging references to these machines. Can someone direct me on how to remove these roles from my Exchange 2010 organization? Again, the servers that the roles were installed on are gone and of course, UM is not being used at all,
    so no worries there.
    Thanks.

    Do the servers still exist in AD and part of the configuration container under the Exchange org?
    If so, the supported way to do this is to run setup with the recoverserver option and install Exchange again on a server. It could be any crummy server or virtual guest.
    Once installed, run setup and gracefully remove the server with Add/Remove Programs.
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Link checker finding files that don't exist

    So basically my "orphaned files" report keeps showing files
    I've deleted. They are no longer on my local site OR my remote
    site, I have clicked "refresh" about ten times and rescanned even
    more. I double click on the file in my list that should be gone and
    guess what? It can't open it! Imagine that! Perhaps it's because
    it's.... I don't know... DELETED? So basically I'm really
    frustrated, is there any way to tell/show dreamweaver that these
    "orphaned files" are now deleted and should no longer appear in my
    test results?
    Thanks

    > Nevermind, I just had to restart the program.
    >
    > Still I have to admit it seems kind of odd I need to do
    this just to make my
    > site report results accurate...
    To speed up site management operations, dw uses a "snapshot"
    of the site it
    stores a site cache file.
    If you delete or move files during an editing session, dw
    doesn't normally
    refresh the site cache file unless a manual refresh forces
    it.
    a restart of dw does force a refresh of that file before dw
    finishes
    opening.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Iphoto 8.1.2 start with a wrong request to import some pictures that don't exist

    Hello
    I've got a problem when start iphoto 8.1.2: the monitor displays a request about import but don't finds the pictures

    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Import' or 'Importing'.
    Drag it to the Desktop. *Make no other changes*.
    Start iPhoto. Does that help?
    If it does then look inside that folder on your desktop. Does it contain anything you want? If not you can trash the folder.
    Regards
    TD

Maybe you are looking for

  • Help me to make this workaround for dbms_output buffer(6502) problem click.

    Hi, what i am trying is to store multiline records into single variable. Say ename||'---'||empno||chr(10) ( chr(10) fro newline) from table emp into variable x. On outputting x o/p should be dbms_output.put_line(x) o/p to be :- scott---7306 smith---7

  • Oracle Reports In Oracle Forms 11g Parameter problem.

    Hello techies,               I am using Weblogic server 10.3.5 with oracle forms 11g at windows 7.I have a report that is Bar_code.rdf.It has two parameters as: P_1---->character type---->accepts the options(barcode generated or barcode not generated

  • Call Save Dialog [Save As] is not allowing me to Bookmark in Portal

    Hi All, I am facing some problems trying to implement BEx bookmarking into my Portal. To explain a little further about our setup, we have a master web template which is connected to approximately 80+ queries. Within that web template, we have a butt

  • I cant view my photos aperture 2

    Please help Im in a pickle, Because of various problems with Kernal Panic which Apple are dealing with currently. I deleated my Aperture 2 vault by mistake. I had backed up the files to a seperate Hard drive but when i open Aperture 2 it shows me the

  • Failed Call Centre Support

    Last month, I contacted BT asking if my exchange is getting an upgrade or not, and one of the guys at call centre said that my exchange will get fibre optic today (2nd February). Today, I've been checking the BT Infinity availability and it says I on