Re: Getting an error after selecting the install directory while installing odi 12c

Hi,
After I select the directory for installing ODI and click next,it gives me error saying :-
INST-07545: Unexpected Error. sealing violation: can't seal package javax.xml.bind.annotation: already loaded
I did some research and all I got is its an unexpected error from the below link.
http://docs.oracle.com/middleware/1212/core/FMERR/chapter_inst_messages.htm
Any help is much appreciated.
Edit :
I am using Windows 7 Professional (Service Pack 1 ) 64 bit operating system and am executing the following jar file odi_121200.jar.
Thanks and Regards
Sunil

Please check level for JAVA:
Java 2 Standard Edition 1.4.2 (J2SE) -- included with the Mozilla 1.4 Browser
Using previous versions of the J2SE may result in some compatibility issues using the Mozilla 1.4 Browser. For more information on the Java platform compatibility with previous releases please visit: http://java.sun.com/j2se/1.4.2/compatibility.html

Similar Messages

  • HT4993 i am trying to install msnbc app from the app store and keep getting an error message.  The app will not install.  What can i do?

    i am trying to install msnbc app from the app store and keep getting an error message.  The app will not install.  What can i do?

    This is asked and answered many times each day.  The forum search bar is on the right side of this page.
    Disable your firewall/security software and try again.

  • Trying to reingtall win7 on pavillion dv7 cant get past a dialog select the driver to be installed

    Hi I have a HP Pavillion DV7-4065dx Refurbished Notebook PC with the following specs:
    AMD Phenom II Triple-Core N830 2.1GHz
    4 DDR3
    500 HDD
    Blu-ray
    17.3" Display
    Windows 7 Home Premium 64-Bit
    MPN:  RB-WQ861UA
    Serial Number: [Personal Information Removed]
    I recently tried to reinstall my windows and made the mistake of loading windows 7 Home Premium x86 (32 bit) when it should have been Windows 7 Home Premium 64 bit and my fingerprint reader wouldn't install. I tried upgrading to the 64 bit which failed with a message about incompatible hardware. I tried doing a HP System restore from both the restore drive and from backup disks I didn't have any luck with either. The restore using the 5 cds I created made it to the 5th cd and then failed without any reason other than error code "HP Recovery Manager error Code 0xe0ef000e" and told me to contact HP Support.
    I have deleted my partitions and created just one partition at this point and tried to install windows 7 Home Premium 64 bit and it starts off ok but gets to a dialog that says install windows => select the driver to be installed => and I can't get beyond this point. It doesn't tell me what driver it is looking for and my only options are browse and rescan because next is grayed out.

    Hi:
    Your PC should not require any special drivers for W7 to install.
    Try downloading the W7 Home Premium SP1 64 bit iso file from the link below and follow the instructions to use the Microsoft ISO to USB tool.
    Make sure you get the whole file to download. Make a note of the advertised size and compare that with the actual file that downloaded. Sometimes it states the download was complete but the whole file isn't there.
    Use the Windows 7 USB/DVD installation tool to compile the ISO file you download from Digital River. Link  below. You need a 4 GB flash drive to use the USB method of compilation.
    http://download.cnet.com/Windows-7-USB-DVD-Download-Tool/3000-18513_4-10972600.html
    Use the 25 character product key on the PC to activate the installation.
    The key will activate either a 32 or 64 bit installation.
    Then go to the PC's support and driver page to install the drivers you need.
    Link to the W7 ISO file downloads is below.
    http://forums.mydigitallife.info/threads/14709-Windows-7-Digital-River-direct-links-Multiple-Languag...

  • I keep getting an error after downloading the Mavericks upgrade

    I have a 2011 mac mini running Lion 10.7.5  that I want to upgrade to mavericks. I have not had it very long so I hardly have anything on it. I have downloaded and installed all of the updates and verified that the hdd is ok and downloaded the free Mavericks upgrade then when it finishes the  5.30 gb file download I get an error and a cancel or retry option. Did this 3 times. I would appreciate any help or ideas that anyone can suggest. Thanks

    HI, Thanks for asking but although i can use wifi, I made sure that I am using the wired ethernet for the upgrade. It will complete the download but just as soon as it completes the 5.30 gb file that is when I get the error. I think that I have everything covered on the check list as far as preparing it for Mavericks. I have no hardware hooked up to it only usb keyboard and bluetooth mouse. I even unhooked the super drive. After doing some checking I'm not so sure that the upgrade is worth it. I have a program I want to install that says requrements are Mac OSX 10.8 or higher that is why I wanted to do it but the majority or people seem to be having serious issues with Mavericks. I'm starting to think it may not be worth the trouble. Thanks for your reply

  • Get an error after updating the core properties

    Hello,
    I have just started using Open XML and I am trying to do something really simple to get and set the core properties of a document. I am using the following code
    public static void getProps(String fileName)
    WordprocessingDocument document = null;
    try
    document = WordprocessingDocument.Open(fileName, false);
    var docProps = document.PackageProperties;
    Console.WriteLine("Category " + docProps.Category);
    Console.WriteLine("ContentStatus " + docProps.ContentStatus);
    Console.WriteLine("ContentType " + docProps.ContentType);
    Console.WriteLine("Created " + docProps.Created);
    Console.WriteLine("Creator " + docProps.Creator);
    Console.WriteLine("Description " + docProps.Description);
    Console.WriteLine("Identifier " + docProps.Identifier);
    Console.WriteLine("Keywords " + docProps.Keywords);
    Console.WriteLine("Language " + docProps.Language);
    Console.WriteLine("LastModifiedBy " + docProps.LastModifiedBy);
    Console.WriteLine("LastPrinted " + docProps.LastPrinted);
    Console.WriteLine("Modified " + docProps.Modified);
    Console.WriteLine("Revision " + docProps.Revision);
    Console.WriteLine("Subject " + docProps.Subject);
    Console.WriteLine("Title " + docProps.Title);
    Console.WriteLine("Version " + docProps.Version);
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    finally
    document.Close();
    and
    public static void setProps(String fileName)
    WordprocessingDocument document = null;
    try
    document = WordprocessingDocument.Open(fileName, true);
    var docProps = document.PackageProperties;
    docProps.Category = "test21";
    docProps.ContentStatus = "test21";
    docProps.ContentType = "test21";
    docProps.Created = DateTime.Now;
    docProps.Creator = "test21";
    docProps.Description = "test21";
    docProps.Identifier = "test21";
    docProps.Keywords = "test21";
    docProps.Language = "test21";
    docProps.LastModifiedBy = "test21";
    docProps.LastPrinted = DateTime.Now;
    docProps.Modified = DateTime.Now;
    docProps.Revision = "test21";
    docProps.Subject = "test21";
    docProps.Title = "test21";
    docProps.Version = "test21";
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    finally
    document.Close();
    after I call the setProps if I try to open the word document with word I will get an error that says
    file xxx.docx cannot be opened because there is a problem with the contents
    and then tells me that it has found some unreadable context and if I would like restore the document.
    could someone tell me what I am doing wrong? and why this is happening.
    cheers,
    Ehsan 

    Hi Ehsan,
    Thanks for posting in MSDN forum.
    According to your description, the document couldn't be open after set the package properties for it.
    After the investigation, I found that we couldn't set a string value for the
    Revision package property. Here is the statement:
    The Revision property indicates the number of changed saves or revisions.
    The application is responsible for updating the Revision property value after each revision
    After I change it to a number the code works well for me. For example:
    docProps.Revision = "2";
    Also here is the link for this property for your reference:
    PackageProperties.Revision
    Property
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have a laptop PC and am trying to install my product.  After the download is complete I get an error that says "the file archive part of Adobe Photoshop Elements 13 is missing. You need all parts.

    I have a laptop PC and am trying to install my product.  After the download is complete I get an error that says "the file archive part of Adobe Photoshop Elements 13 is missing. You need all parts.
    Please help, I don't know how to do this
    Thanks

    you need both the exe (which you have) and the matching 7z (that you don't have, yet).  dl it:
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • HT6030 I have 2011 iMac it came with os x 10.6.6 i just upgraded the hard drive and now i cannot install OS X 10.6.6 every time i start installing after selecting the language it come up with error " OS X can't be installed on this mac " please help

    I have 2011 iMac it came with os x 10.6.6 i just upgraded the hard drive and now i cannot install OS X 10.6.6 every time i start installing after selecting the language it come up with error " OS X can't be installed on this mac " please help

    Be sure to start your iMac using its original grey System Install DVD: Insert that disc and start your Mac while holding the d key. At the Mac OS X Utilities screen select Disk Utility and format the hard disk. Select "Mac OS X Extended (Journaled)".
    Then, install OS X.

  • HT1923 I can´t reinstall itunes. I updated and after downloading the latest version and installing it the error message: "apple aplication support was not found. it is required to run itunes. uninstall and install again. Error 2

    I bought an iphone 4s. After plugging it via usb to my computer itunes demanded to update version to 10.3 or higher. I uninstalled itunes, downloaded latest version (11.0.2) and during installation process on "activating services" it shows error message: "installation failed, verify administrator priviliges" which i have because i sign in as my pc administrator. I click on ignore and it tells me itunes has been succesfully instaled but when i try to run it it shows the error message: "apple application support was not found. It is required to run itunes. Uninstall and install itunes again. (which i have done several times) error 2 (windows error 2)." Someone please help me with this problem. Thanks.

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • I have LR 5.  When I'm in the book module and select the option to "Send Book to Blurb" i get an error message saying "The file does not have a program associated with it...."  How do I fix this?

    I have LR 5.  When I'm in the book module and select the option to "Send Book to Blurb" i get an error message saying "The file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel."
    How do I fix this?

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • When selecting a song to play in iTunes, I get an error message indicating the song could not be used because the original file could not be found.  Would you like to locate it.  I have no idea where to look since the library hold all my files.

    When selecting a song to play from iTunes library, I continually get an error message indicating the original file could not be found.  Then asks, would you like to locate it?  Does anyone know how to fix this?   I'm not even able to play the songs I purchased due to this error message.  Any ideas how to remedy this problem? 
    Thanks

    It would help to have more background about your iTunes collection such as if you keep it on an external drive, or if you have moved or renamed anything recently.  iTunes is very sensitive to you renaming or moving files or folders involved with your media.  iTunes only keeps a reference to where a media file is located  and then goes to look for it when you try to play it. If you have changed things since it was added to itunes then it's like me sending you to look for a friend in my addressbook but that friend has moved.
    The other possibility is your computer is starting to lose files.  Again, the computer uses a reference database to tell it where on the drive to look for a file. If that database gets corrupt then it starts losing files.  Use Dsk Utility's first aid to verify your hard drive.

  • Bootcamp - I'm trying to install windows 8 on my MBPr but getting an error when partitioning the disk. 'An error occurred while partitioning the disk'

    I'm trying to install windows 8 on my MBPr but getting an error when partitioning the disk. 'An error occurred while partitioning the disk'

    You posted your Bootcamp question in the Macbook Pro forum. Your question has been asked and answered many times in the Bootcamp forum. https://discussions.apple.com/community/windows_software/boot_camp
    When you post in the Bootcamp forum include the complete and exact error message.

  • I am trying to re-install Photoshop CS6. The files have downloaded but I get and error message that the Adobe Support Advisor is required to determine what the installation probIem is. I click on the link that says "get the Support Advisor here only to be

    I am trying to re-install Photoshop CS6. The files have downloaded but I get and error message that the Adobe Support Advisor is required to determine what the installation probIem is. I click on the link that says "get the Support Advisor here only to be told the Support Advisor no longer exists!! A blind loop. I need to have Photoshop CS6 installed...what do I do from here??

    The CC Cleaner Tool assumes the Akamai Download Manager is activated and it has not. It seems to be the missing file that triggers the error message. \in a previous re-install I was prompted to download & install the Akamai Download Manger, but not this time. Is there somewhere on the Adobe website that I can download it??

  • HT5052 I have been trying to upate my ipod to 5.0.1, but every time i get an error message of the server timed out after downloading for over an hour. My broadband speed here is is 1.5mbs, not good any help?

    I have been trying to update my ipod to the 5.0.1 but after waiting for a hour for the download i get an error message that the server has timed out as my broadband speed is not good, could this be the problem and if so how can i get the update?

    I have the same problem I disable msconfig mode all the programs escept windows and apple products but the same error appears at the last second of downloading the update

  • TS4009 How do you downgrade to the free option or get refund? After selecting free the done button can not be pressed.

    How do you downgrade to the free option or get refund? After selecting free the done button can not be pressed.

    Refund:
    If in the US, follow the link below (you must request a refund within 15 days) -
    https://discussions.apple.com/message/16968425#16968425
    it gives the USA phone number - if you don't live there you will have to find an equivalent number from the 'Contact Us' link at bottom right of this page.
    Keeping current plan, but downgrading when it ends:
    Settings>icloud>Storage & Backup>Change Storage Plan.  Look at downgrade options.  There you can choose the plan you want when the current one ends.

  • I get an error message in the middle of installing Photoshop Elements 13

    I get an error message in the middle of installing Photoshop Elements 13

    Hi Michellec,
    Try the suggestions mentioned here and check. Troubleshoot installation | Photoshop Elements, Premiere Elements | Windows
    Regards
    ~ Arpit

Maybe you are looking for