DB adapter UI issue - occurs while reconfigure

Hi,
We are facing a weird issue when using Jdev 10.1.3.3 for configuring db adapter in BPEL/ESB projects.
We are able to create db adapter and test it successfully. However when we reconfigure, "NEXT"/"FINISH" buttons are getting disabled and we are not able to edit table schema/db query.
We tried opening jdev using command prompt, and it shows an error as below when trying to reconfigure the adapter service.
java.lang.NullPointerException
at oracle.tip.tools.ide.pm.wizard.adapter.db.DBAdapterSelectTablePage.populateUIForEdit(DBAdapterSelectTablePage.java:268)
at oracle.tip.tools.ide.pm.wizard.adapter.db.DBAdapterSelectTablePage.initialize(DBAdapterSelectTablePage.java:223)
at oracle.tip.tools.ide.pm.wizard.adapter.db.DBAdapterSelectTablePage.<init>(DBAdapterSelectTablePage.java:103)
at oracle.tip.tools.ide.pm.wizard.adapter.db.DBAdapterOperationPage.populateUIForEdit(DBAdapterOperationPage.java:500)
at oracle.tip.tools.ide.pm.wizard.adapter.db.DBAdapterOperationPage.initialize(DBAdapterOperationPage.java:343)
at oracle.tip.tools.ide.pm.wizard.adapter.db.DBAdapterOperationPage.<init>(DBAdapterOperationPage.java:88)
at oracle.tip.tools.ide.pm.wizard.adapter.ServiceTypePage.createPagesForType(ServiceTypePage.java:471)
at oracle.tip.tools.ide.pm.wizard.adapter.ServiceTypePage.valueChanged(ServiceTypePage.java:303)
at javax.swing.JList.fireSelectionValueChanged(JList.java:1317)
at javax.swing.JList$ListSelectionHandler.valueChanged(JList.java:1331)
at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:187)
at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:167)
at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:214)
at javax.swing.DefaultListSelectionModel.changeSelection(DefaultListSelectionModel.java:408)
at javax.swing.DefaultListSelectionModel.changeSelection(DefaultListSelectionModel.java:417)
at javax.swing.DefaultListSelectionModel.setSelectionInterval(DefaultListSelectionModel.java:441)
at javax.swing.JList.setSelectedIndex(JList.java:1732)
at javax.swing.JList.setSelectedValue(JList.java:1834)
at oracle.tip.tools.ide.pm.wizard.adapter.ServiceTypePage.jbInit(ServiceTypePage.java:278)
at oracle.tip.tools.ide.pm.wizard.adapter.ServiceTypePage.<init>(ServiceTypePage.java:136)
at oracle.tip.tools.ide.pm.wizard.adapter.techAdapterWizard._createWizard(techAdapterWizard.java:435)
at oracle.tip.tools.ide.pm.wizard.adapter.techAdapterWizard.init(techAdapterWizard.java:327)
at oracle.tip.tools.ide.pm.wizard.adapter.techAdapterWizard.<init>(techAdapterWizard.java:195)
at oracle.tip.tools.ide.esb.dialogs.service.ServiceDefinitionPanel.handleAdapterWizard(ServiceDefinitionPanel.java:1331)
at oracle.tip.tools.ide.esb.dialogs.service.ServiceDefinitionPanel.actionPerformed(ServiceDefinitionPanel.java:1209)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
at java.awt.Component.processMouseEvent(Component.java:5488)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
at java.awt.Component.processEvent(Component.java:5253)
at java.awt.Container.processEvent(Container.java:1966)
at java.awt.Component.dispatchEventImpl(Component.java:3955)
at java.awt.Container.dispatchEventImpl(Container.java:2024)
at java.awt.Component.dispatchEvent(Component.java:3803)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
at java.awt.Container.dispatchEventImpl(Container.java:2010)
at java.awt.Window.dispatchEventImpl(Window.java:1774)
at java.awt.Component.dispatchEvent(Component.java:3803)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
Please help..
Regards,
AP

Hi,
please try the BPEL forum: BPEL
Frank

Similar Messages

  • Issues occurred while creating DataBase Queue for AQ adapter in SOA

    Hi All,
    I am new to AQ adapters,I am trying to create database queue with in the custom user but I got ora-01031 insufficient privileges,actually I follow the below two links
    http://askmesoa.blogspot.in/2012/09/working-with-aq-adapter-in-soa.html
    http://jamessmith73.wordpress.com/oracle-fusion-middleware/oracle-soa-bpm-11g-blogs/soa-10g/soa-hands-on-4/
    When I trying to execute the following code I got ora-01031 insufficient privileges.
    BEGIN
    DBMS_AQADM.CREATE_QUEUE_TABLE (
    queue_table => 'aq_user.msg_qt'
    , queue_payload_type => 'aq_user.message_type'
    DBMS_AQADM.CREATE_QUEUE (
    queue_name => 'msg_queue'
    , queue_table => 'aq_user.msg_qt'
    , queue_type => DBMS_AQADM.NORMAL_QUEUE
    , max_retries => 0
    , retry_delay => 0
    , retention_time => 1209600
    , dependency_tracking => FALSE
    , comment => 'Test Object Type Queue'
    , auto_commit => FALSE
    DBMS_AQADM.START_QUEUE ('msg_queue');
    END;
    Can anybody help me out how to solve the issue
    Regards
    Mani

    Hi Anuj,
    While I execute I had given aq_user1 only still I am geeting the same isssue.
    BEGIN
    DBMS_AQADM.CREATE_QUEUE_TABLE (
    queue_table => 'aq_user1.msg_qt'
    , queue_payload_type => 'aq_user1.message_type1'
    DBMS_AQADM.CREATE_QUEUE (
    queue_name => 'msg_queue'
    , queue_table => 'aq_user1.msg_qt'
    , queue_type => DBMS_AQADM.NORMAL_QUEUE
    , max_retries => 0
    , retry_delay => 0
    , retention_time => 1209600
    , dependency_tracking => FALSE
    , comment => 'Test Object Type Queue'
    , auto_commit => FALSE
    DBMS_AQADM.START_QUEUE('msg_queue');
    END;
    Regards
    Mani

  • Browser issues occurring while connected to wireless connection​.

    I have been having some issues using the browser on my curve over the past few days. Whenever I go to load up a page, I get an error stating that it was unable to connect to the server. I am also receiving an error regarding the play of Youtube videos. I receive an error stating that the address is not valid, and that I must verify it. These issues were not occurring two days ago and I do not understand why they have begun. Any help is much appreciated! Thanks, Ethan.

    Hi and Welcome to the Community!!
    I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive to your Messages app
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    Please wait for "Activation" Messages, one per already configured email account, to arrive in your Messages. If you have no already configured email accounts, please wait 1 hour.
    3) Batt Pull Reboot
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should contact your mobile service provider for formal support.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer w

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

  • Permissions issue: An error occurred while trying to save your photo librar

    I recently upgraded from a Mac mini running OS X 10.4.10 (iPhoto 08) to an iMac Core2Duo (2.4ghz) running Leopard (and also iPhoto 08).
    My iPhoto library resided on an external Firewire drive when running on the Mac mini, but now that the iMac has such a large hard disk (750gb), I wanted to move my library there. I copied the library over to the Pictures folder in my user folder on the iMac and started up iPhoto, and everything seemed fine.
    When iPhoto is running for any length of time, I get the following error:
    *An error occurred while trying to save your photo library.*
    *Some recent changes may be lost. Make sure your hard disk has enough space and that iPhoto is able to access the iPhoto Library.*
    (I have over 300gb available on the disk and my library folder is approximately 40gb.)
    I've repaired the permissions on the library using iPhoto's built-in mechanism (command-option while booting iPhoto) and Disk Utility. Additionally, I've used BatchMod to give my user and group full read/write/delete permissions (as posted elsewhere in the forums), but I still get the error.
    Searching the forums yields other users w/ the same issues. What's the scoop? TIA!

    Sean:
    I just had the very same problem when I was messing with permissions and reset my unknown group to staff. I lost all write permissions in my nome folder. Here's how you can reset it for your pictures folder:
    In the Terminal type in "sudo chmod -R -N " (there's a space after the N) and drag the Pictures folder into the Terminal window. Then hit the enter key. It should chug along for a couple of seconds and return a new prompt. Give iPhoto another try after that.
    I had to do that for my entire home folder and it fixed the problem.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • MDP to HDMI adapter causing issues while connecting Macbook air late 2013 edition to Projector. Projector shows grains on the display.

    MDP to HDMI adapter causing issues while connecting Macbook air late 2013 edition to Projector. Projector shows grains on the display.

    Sounds like you may have been in extended display mode. If so, all you had to do was drag a window to the projector display. Or, if you wanted mirrored mode, in display preferences select check mirror display.

  • The App Store will not update my apps. I keep getting An error occurred while downloading the updates.(102) What could resolve this issue?

    My App Store is no longer updating my apps or my OS. I keep getting this message: An error occurred while downloading the updates.(102) What could be the reason for this issue and what will resolve it?

    I believe its an auth error. If you tried signing in and out of the app store and downloading a free app (typical fixes) and it persists, try downloading the updates manually. If youre trying to get the Mountain Lion updates the link for 10.8.1 is here http://support.apple.com/kb/DL1571   and if you already have 10.8.1 and youre trying to update to 10.8.2 the link is here http://support.apple.com/kb/DL1580 a supplemental update came for the 10.8.2 which can be found here http://support.apple.com/kb/DL1600
    Like I said before, the error isnt that your software or hard drive is corrupt, it has to do with your AppleID authenticating the download, especially because OS updates are part of the Mac App Store. If you know your way around your system libraries or root libraries you can possibly fix it by deleting specific files that may be corrupted, otherwise you're going to want to back up your data and reinstall the OS.
    Good luck!

  • Keep getting an error message that reads, "LR An error has occurred while creating the book on Blurb" An error has occurred while trying to create texts and fonts.  Pleas advise as Blurb has said that it's a LR issue.

    Keep getting an error message that reads, "LR An error has occurred while creating the book on Blurb" An error has occurred while trying to create texts and fonts.  Pleas advise as Blurb has said that it's a LR issue.

    Are you behind a firewall or double NAT??
    What is the device that is immediately plugged into the main modem or router? Has that one been able to update?
    It is plugged in of course isn't it.. no nasty join wireless anywhere??
    The best way to work around these sort of problems is to simplify the network.. Plug each device directly into the main router.. by ethernet. You can trigger the firmware upgrade by wireless but use ipad or iphone version of airport utility and see what happens.

  • Airplay Connection issues - An error occurred while connecting to the AirPlay device "x". The network connection failed.

    I recently upgraded to a new MacBook Pro running Mountain Lion, and got my Airport Express (802.11g) out of the closet and set up an AirPlay network for my speakers. 
    All worked well for the first while, but recently I've been having an inconsistent problem with this: "An error occurred while connecting to the AirPlay device “my network name”. The network connection failed."
    Since it came up, more often than not, I can't connect. 
    I can play without issue from my iPhone, and from my iPad. 
    I looked around these forums, and found a couple threads dealing with this from 2011, with no clear resolution to them.  No one with Mountain Lion seems to complain about it, though a few people mused about whether Mountain Lion might fix the problem. 
    I'm running iTunes 10.7(21), and don't recall doing any upgrades to it that might have brought this about, though I can't say for sure. 
    My Airport Express is updated to firmware version 6.3, which I believe is the last one issued for the 'g' Airport Express.
    My wireless network runs off an Airport Extreme 802.11n (Second Generation) with verion 7.6.1 firmware. 
    My Mac has 10.8.2 on it right now. 
    Hopefully some of that info might help sort this out - any replies greatly appreciated!

    One quick update.  A workaround that was mentioned in one post did seem to work - if music is started via the Remote app it seems to connect fine. 
    And I'm not sure if I dare upgrade to iTunes 11 given the firestorm of bad impressions I see, including some that relate to Airplay functions...

  • I reset my airport express to factory settings, reconfigured it and then try to play it and this message popped up.  Where do I go from here? An unknown error (-15006) occurred while connecting to the AirPlay device "John Knox's AirPort Express".

    I reset my airport express to factory settings, reconfigured it and then try to play it and this message popped up.  Where do I go from here? "An unknown error (-15006) occurred while connecting to the AirPlay device “John Knox's AirPort Express”.

    No more need for an answer... the problem has been solved!

  • Trying to update to iTunes 10.4.1 and I get a message "A network error occured while attempting to read from the file C:|Windows|Installer|iTunes.msi"  Running WIndows 7 with all updates done.  I  have never had an issue with iTunes updating before.  Anyo

    iTunes has tried to update itself and runs into an error and tells me to manually install.  When I d/l and run the iTunesSetup.exe file I always encounter the following error message...
    "A network error occured while attempting to read from the file C;|Windows|Installer|iTunes.msi" and iTunes does not update to iTunes 10.4.1.
    Anyone know what is creating this error message?  Thanks for the help...

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page): 
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Time Machine Issue-Unable to complete backup. An error occurred while creating the backup folder.

    Unable to complete backup. An error occurred while creating the backup folder.

    As usual, backups worked for a few days.  Failed again on wakeup this morning...
    Starting standard backup
    Backing up to: /Volumes/TM Backup/Backups.backupdb
    Error: (22) setxattr for key:com.apple.backupd.ModelID path:/Volumes/TM Backup/Backups.backupdb/David’s Mac Mini size:10
    Error: (-50) Creating directory 2012-02-25-074454.inProgress
    Failed to make snapshot container.
    Error: (22) setxattr for key:com.apple.backupd.ModelID path:/Volumes/TM Backup/Backups.backupdb/David's Mac Mini size:10
    Backup failed with error: 2
    I've searched Discussions and have seen the exact same error messages with all kinds of Macs and ext HDs, both USB and FW.  I can't believe it's a 'failing HD' since it works for a few days; and that it's been going on for months now.  Seems like the ext HD would have actually failed by now if that was the case.
    I wish I could figure out why three different errors are reported: (-50), (22), and :2

  • An error occurred while trying to connect to a Web service, when InfoPath web enabled form loads.

    Hi Everyone,
    I am getting an error message: An error occurred while trying to connect to a web service, when my InfoPath form tries to load.  The last few days, it only spits this error message in the morning and around 12pm-1pm it resolves itself and the form loads
    fine the rest of the day, oddly enough. 
    A few things about my form:
    1). It is web enabled
    2). The form submits to a form library on the SP server
    3). I use the UserProfileService data connection in the form to auto-populate a few fields
    4). I use a udcx file with correct language stored in the root of the site collection in the data connection library
    5). The form has been working fine until a few days ago
    I noticed while in Central Administration, that the User Profile Service Synchronization is Stopped.  Not sure if this is causing some or all of the problem. If I need to start it I will need to contact my farm administrator to do this, since I do not
    have the service account information.
    Also, I looked thru the log files on the SharePoint server and found the following by searching for the Correlation ID shown when the error comes up, I won't put in everything just the important messages.
    Schema file was already loaded: BuiltInActiveXControls.xsd
    FormServer Partial Trust - Proxy operation invoked in the SHIM process.
    FormServer Partial Trust - Invoking proxy operation for Web service adapter failed with exception Operation is not valid due to the current state of the object. for Url=https://<SP URL>/_vti_bin/UserProfileService.asmx
    Data adapter failed during OnLoad: The custom code in the form cannot be run. This functionality may be deactivated on the server. For more information, contact the server farm administrator.
    The following query failed: GetUserProfileByName (User: , Form Name: Expense Report, IP: , Connection Target: <SP URL>/Data Connections/GetUserProfileByName.udcx, Request: , Form ID: urn:schemas-microsoft-com:office:infopath:Expense-Report:-myXSD-2014-04-11T21-06-32
    Type: DataAdapterException, Exception Message: The custom code in the form cannot be run. This functionality may be deactivated on the server.

    Hi B.,
    You are on the right track. I recommend that you first get the User Profile Synchronization Service started because that itself could be the root cause of the issue.
    If that doesn't fix it then focus your attention on the GetUserprofileByName data connection. I always use my secure store ID for this connection. I add the ID by editing the udcx file and then publishing it again.
    Hope this helps.
    Daniel Christian (MCTS)

  • An error occurred while preparing the installation. Try running the application again

    I Have erased the hard drive of my MBP in order to perform a clean reinstall of OS X Mavericks, according to these instructions.
    When I tried to reinstall, my internet connection stopped (was broadcasting via another MBP and the cable from that one got disconnected), so I restarted the erased MBP to try again. Holding command+R, it booted in internet recovery (as the recovery partition was erased along with the rest of the hard drive), but could not connect over the broadcasted WiFi, so I created a bootable USB flash drive according to these instructions on the other MBP.
    This installation went smooth without any hiccups, but due to an oversight I had to do it again the next day.
    I took the same steps, with the same bootable drive (I did not create a new one the first time) but this time I couldn’t get through the prepare to install phase. At the end, where the “about a second remaining” message stays for about 20 minutes, I get the “An error occurred while preparing the installation. Try running the application again” message. When I quit the installer (only option at that stage) and return to Disk Utility, the internal drive on which I tried to do the installation is not visible anymore.
    I tried this (after a reboot every time) with a new bootable usb drive with the same download of the OS X Mavericks installer and with a new one, each ending with the same error. The installer was downloaded on an MBP on which Mavericks is also installed, with the same Apple ID. The App Store did not allow me to change Apple ID for the Mavericks download. Can this pose a problem? It did work the first time, though.
    Note that this error occurs at a different stage than the one with the same message due to the wrong date (this discussion amongst others). I also checked the date in terminal and this appears to be correct, when I consider the timezone.
    Here are a few lines from the installer log (omitted similar lines and lines that could contain personal information). The most important line is the last one, indicating the error.
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: @(#)PROGRAM:Install  PROJECT:Install-846
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: @(#)PROGRAM:IA  PROJECT:InstallAssistant-476.8
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Hardware: MacBookPro9,2 @ 2.50 GHz (x 4), 4096 MB RAM
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Running OS Build: Mac OS X 10.9.3 (13D65)
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: DYLD_NO_FIX_PREBINDING=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: __CF_USER_TEXT_ENCODING=0x0:0:0
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: PWD=/
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: SHLVL=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: __OSINSTALL_ENVIRONMENT=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: OS_INSTALL=1
    Jun 22 02:14:01 localhost Install OS X Mavericks[423]: Env: _=/System/Library/CoreServices/Language Chooser.app/Contents/MacOS/Language Chooser
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Using distribution archive from /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport/OSInstall.mpkg
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Configuring products from SharedSupport folder
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Install is double-dmg. Not adding chunklist to download list.
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Using product <OSInstallDVDProduct> based on media at /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport at distance 5
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Using product <OSInstallESDProduct> based on distribution at /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport/OSInstall.mpkg at distance 5
    Jun 22 02:14:38 localhost Install OS X Mavericks[423]: Checking Software Update catalog URL https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: JS: installCheckScript threw exception TypeError: 'null' is not an object (evaluating 'my.target.systemVersion')
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: Could not load Software Update catalog: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fedd960ccc0 {NSUnderlyingError=0x7feddc866ef0 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog, NSErrorFailingURLKey=https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog, NSLocalizedDescription=The Internet connection appears to be offline.}
    Jun 22 02:14:39 localhost Install OS X Mavericks[423]: Could not fetch SWU catalog to create SWU product
    Jun 22 02:14:49 localhost Install OS X Mavericks[423]: LSExceptions [0x7fedd9446e50] unloaded
    Jun 22 02:15:12 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:15:12 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:15:12 localhost Install OS X Mavericks[423]: *** IFDCustomizationController_10_6 does not know the size of distant package at (null)
    Jun 22 02:20:55 localhost Install OS X Mavericks[423]: Created IATool object:dbe23a50
    Jun 22 02:20:56 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.BaseSystemBinaries
    —a lot of similar messages, but for other packages —
    Jun 22 02:20:56 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:21:09 localhost Install OS X Mavericks[423]: Preventing machine sleep.
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using product IA_PKSecureNetEnabledProduct <file:///Volumes/schijf/OS%20X%20Install%20Data/> at distance 5
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using existing boot files dir at /Volumes/Install OS X Mavericks/.IABootFiles
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using mutable product path: /Volumes/schijf/OS X Install Data
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Using boot files path: /Volumes/Install OS X Mavericks/.IABootFiles
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.BaseSystemBinaries
    —a lot of similar messages, but for other packages —
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.OSInstall
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.BaseSystemBinaries
    —a lot of similar messages, but for other packages —
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Could not find package ref in any source for: com.apple.pkg.OSInstall
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: No available package ref for compatibility update. Ignoring.
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Retrieving 0 packages (0.000 GB)
    *****This is where the timer starts saying “”About a minute remaining”*****
    Jun 22 02:21:42 localhost Install OS X Mavericks[423]: Verifying InstallMacOSX.pkg/InstallESD.dmg
    Jun 22 02:42:36 localhost Install OS X Mavericks[423]: Finished operation queue
    Jun 22 02:42:36 localhost Install OS X Mavericks[423]: Opening /Volumes/Install OS X Mavericks/Install OS X Mavericks.app/Contents/SharedSupport/InstallESD.dmg
    Jun 22 02:42:38 localhost Install OS X Mavericks[423]: Extracting boot files from /Volumes/OS X Install ESD/BaseSystem.dmg
    Jun 22 02:42:39 localhost Install OS X Mavericks[423]: Extracting Boot Bits from Inner DMG:
    Jun 22 02:42:41 localhost Install OS X Mavericks[423]: Copied kernelcache
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Copied Boot.efi
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Copied PlatformSupport.plist
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Ejecting disk images
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: Generating the com.apple.Boot.plist file
    Jun 22 02:42:42 localhost Install OS X Mavericks[423]: com.apple.Boot.plist: {
          "Kernel Cache" = "/.IABootFiles/kernelcache";
          "Kernel Flags" = "container-dmg=file:///Install%20OS%20X%20Mavericks.app/Contents/SharedSupport/ InstallESD.dmg root-dmg=file:///BaseSystem.dmg";
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Done generating the com.apple.Boot.plist file
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Blessing /Volumes/Install OS X Mavericks -- /Volumes/Install OS X Mavericks/.IABootFiles
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Blessing Mount Point:/Volumes/Install OS X Mavericks Folder:/Volumes/Install OS X Mavericks/.IABootFiles plist:com.apple.Boot.plist
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: ***************************** Setting Startup Disk *****************************
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: ******           Path: /Volumes/Install OS X Mavericks
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: ******     Boot Plist: /Volumes/Install OS X Mavericks/.IABootFiles/com.apple.Boot.plist
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: /usr/sbin/bless -setBoot -folder /Volumes/Install OS X Mavericks/.IABootFiles -bootefi /Volumes/Install OS X Mavericks/.IABootFiles/boot.efi -options config="\.IABootFiles\com.apple.Boot" -label OS X Installer
    Jun 22 02:42:43 localhost Install OS X Mavericks[423]: Bless on /Volumes/Install OS X Mavericks succeeded
    Jun 22 02:45:55 localhost Install OS X Mavericks[423]: Got error in writing to /Volumes/schijf/OS X Install Data/minstallconfig.xml
    That last line indicates the error that occurred. (The internal drive on which I try to install Mavericks is called “schijf”, it also already has been called Macintosh HD, with no effect. This time I tried another name during the reformat to see if and when the installer renames the disk. Does it do this, or should I call the disk “Macintosh HD” myself?)
    By now I also got past the internet recovery issues, being able to get the progress bar under the spinning globe and the option to install Lion (not Mavericks, but I suppose that’s because the MBP shipped with Lion). When I choose this option, the installer first spends a few hours downloading additional components. This eventually took less time than first indicated, but still about 4-5 hours. After this, the installation of about 24 minutes starts, but this takes much longer than the indicated 24 minutes, each minute taking about 15 minutes. When it was less than a minute, the internet connection got disconnected (but I don’t suppose it still needed an internet connection at this stage, having downloaded all additional components) and now the “Less than a minute” message has been there the whole night (about 9,5 hours), the last 9 hours with a spinning beachball on the screen after I accidentally clicked somewhere on the screen (nowhere in particular, he shouldn’t do something because of the click. After unplugging the power adapter, the battery icon on the screen wasn’t updated, and the WiFi icon simply disappeared, instead of showing no bars like it should when there’s no connection).
    Does Anyone know how I can fix the error, because I would prefer installing with a bootable drive. Is it worth it to continue waiting on the current, apparently stuck Lion installer to finish or should I force a reboot?
    Can I try using the Recovery Disk assistant (OS X Recovery Disk Assistant v1.0) to create a recovery disk with the other MBP? I think not, as this might cause trouble with 2 different MBP's using the same license.
    Thanks in advance!

    Since this thread seems to be gaining more speed than the other one i'm working on, i figured i'd add these images to help you all out detailing the exact problem.
    I'm having the same issue and I wanted to provide some info specific to my mac, and some info in general to help with diganosis.
    First, my specs
    Secondly, I am running an aftermarket 500 GB drive.
    Third, not sure if this is realated, but this screen suggests the proress will take 3 minutes, then it abruptly umps to the restart phase after about 1.5 - 2.5 minutes.
    And finally, here is the seeminly unavoidable error message.
    Also, other things I've tried now are
    installing it from the "show package contents area",
    mounting said DMG and trying to install from there.
    installing a package file called "upgradeos.pkg"
    no luck.

  • 10.3 OS Upgrade error. An error has occurred while downloading software for your device. Please verify your internet connection or try again later

    HELP ! HELP ! HELP ! "An error has occurred while downloading software for your device. Please verify your internet connection or try again later, if the problem persists." appears while attempting to upgrade or install BlackBerry Device Software. upgrading my Z10 OS to 10.3 on both (link & web). but facing same problem again and again. plz help. internet speed is 1mbps and working fine.

    I suggest you try the very clean and very forceful AutoLoader method:
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...
    Beware that it is completely destructive...the device will be "like new"...no data, no apps, no accounts, etc. Be sure you take a full backup first, as well as make full manual documentation of all apps, accounts, configurations, etc. Sometimes a restore reintroduces the very corruption one is trying to eliminate, and manual reconfiguration is necessary.
    You can also use this to fall back to a prior OS if you desire...you can install any OS level for which you can find an AutoLoader. (Hint...search over on the CB site!)
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for