Unable to open Integration directory

Hi,
I am trying to open Integration directory but getting an error. Its saying
"Unable to launch Integration Directory".
Can someone help?

Hi,
I am including a list of possible solutions. There could be many reasons to this problem so i am giving you all possible solutions.
I think you need to clera your JWS cache. to do this, just open your Java Web Start, go to FILE-->PREFERENCES >Advanced> and select the option CLEAR APPLICATION FOLDER.
or
I tried sldcheck transaction and found out that sld is not working .
When I go through system log user was locked which is used for sldaccess maintained in sldapicust transaction.
After unlocking same user , problem was resolved.
or
suggest you try installing j2sdk-1_4_2_09.
or
Go thru this blog Unable to open Integration Builder…checklist
https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/pub/wlg/1688 [original link is broken] [original link is broken] [original link is broken]
or
Java Web Start
/people/sameer.shadab/blog/2005/11/27/java-web-start
Regards
joel

Similar Messages

  • Unable to open Integration Directory or Repository for XI 3.0

    Hi Experts,
    We have done the installation and post installation of XI 3.0 and i have installed Java Web Start (JRE 1.4.2) but still unable to open the IR or ID from Browser. It is giving error "Unable to launch the application" and in detail it shows "Unexpected Exception: java.lang.NullPointerException".
    Is particular jre version is required for the same like JRE 1.4.2.02/03/18 etc....
    Please Help.
    Regards,
    Nitin Patil

    Hi,
    Goto Inetrnet Explorer menu
    Tools->Inetrnet OPtions->Connections and uncheck everything.
    Try clicking on the IR and ID link.
    Regards,.
    Divya

  • Problem when open Integration Directory

    Hi :
        when I want to open Integration Directory, there is a message saying " You need to install   Javau2122 WebStart 1.4.2.   ", however I have installed j2sdk-1_4_2_12-windows-i586-p.exe which is the edition of j2sdk 1.4.2 . I am really confused.
        Could you please tell me how to solve it ?

    Hi,
    Could you please tell me which Version of SAP XI/PI you are using.
    if your are using PI 7.0 then the JDK version which you installed is correct.
    Regards,
    Ashok.

  • "Unable to open driver directory"

    I have an HP OfficeJet G85xi AIO. I have been using the HP G731IN.dmg driver package, but found that if I had not used the printer for a while (using a laser for day-to-day cost control) that the printer would not function. I had to do a full re-install of the HP driver and its attendant load of undesirable ancillary software. I wanted to drop the HP driver and restore full functionality (scan to and through the computer, fax, print) and understood that the hpijs driver would accomplish this. I installed the 3.9.2 package, along with GPL Ghostscript, Foomatic-RIP, and, for good measure, the Gutenprint 5.2.4 package. I can choose the exact driver for my machine, but when I attempt to print, I get this message in the CUPS error log:[cups-driverd] Unable to open driver directory "/usr/libexec/cups/driver": No such file or directory. I have attempted numerous uninstall-re-installs, resetting the print system, installing from a test account, all to no avail. Any suggestion will be appreciated.

    Very strange. That is the first time I have seen that message. Even if the 'driver' directory was missing, the installation of the Gutenprint driver should have created it as Gutenprint installs a driver there. You must have used the hpijs driver when setting up your printer. The Gutenprint driver for your G85 would not be available as the Gutenprint driver file in the /usr/libexec/cups/driver directory would be needed to create that printer.
    I suppose the first thing to try is to manually create the directory that cups-driverd wants. Open the Terminal (/Applications/Utilities) and copy and paste the following command into the window:
    <pre style="overflow: auto;font-size:small; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #ddd; padding: .3em .8em .3em .8em; font-size: 9px;">sudo mkdir /usr/libexec/cups/driver</pre>
    Hit the Return or Enter key. You will be prompted to enter your password. You will notice that nothing appears on the screen as you type in your password. This is normal. After you enter your password, hit Return or Enter again. That should create the directory. If you do not get any error messages, then copy and paste the next command into the Terminal window:
    <pre style="overflow: auto;font-size:small; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #ddd; padding: .3em .8em .3em .8em; font-size: 9px;">sudo chown root:wheel /usr/libexec/cups/driver
    sudo chmod 755 /usr/libexec/cups/driver</pre>
    Hit the Return or Enter key after each command.
    Does that get rid of the error message?
    Despite what you were told, neither the hpijs or the Gutenprint drivers support scanners. They are printer drivers only. If you want software other than that provided by HP for your scanner, you may want to try VueScan shareware at http://www.hamrick.com/.
    Matt

  • Unable to open integration repository , integration directory is opening .

    hi We are having a problem when we try to open integration repository. the error that we are getting isgive below. But we are able to opent integration directory , can any body help in resolving this. \
    An error occurred while launching/running the application.
    Title: Integration Builder
    Vendor: SAP AG
    Category: Launch File Error
    JAR resources in JNLP file are not signed by same certificate
    thanks and regards
    pendyala

    Hi,
    When you will run the above JNLP, you will get the following Web Start exception:
    JAR resources in JNLP file are not signed by same certificate
    The reason for this is simple - one of the jar files that you are using was already signed by another party. Here is the way to find it:
    jarsigner -certs -verbose -verify activation.jar
    You will see a long list of certificates (one for each file). This means that this specific jar was signed by another party (Sun in our case). The solution for the problem is simple - put this jar in a separate JNLP and reference it in your main JNLP:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="https://jaxb-workshop.dev.java.net/webstart/" href="activation.jnlp">
    <information>
    <title>Activation</title>
    <vendor>Sun Microsystems, Inc.</vendor>
    <offline-allowed/>
    </information>
    <offline-allowed/>
    <resources>
    <jar href="activation.jar"/>
    </resources>
    <component-desc/>
    </jnlp>
    As you can see, we don't ask for permissions, as this specific jar doesn't need them. Then, you reference this activation.jnlp in your main JNLP:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="https://jaxb-workshop.dev.java.net/webstart/" href="wizard.jnlp">
    <information>
    <title>XJC Wizard</title>
    <vendor>https://jaxb-workshop.dev.java.net/</vendor>
    <description>Wizard frontend for XJC generator</description>
    <description kind="short">Wizard frontend for XJC generator</description>
    <offline-allowed/>
    </information>
    <offline-allowed/>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.5+"/>
    <jar href="jaxbw.jar"/>
    <jar href="substance.jar"/>
    <jar href="jaxb-api.jar"/>
    <jar href="jaxb-impl.jar"/>
    <jar href="jaxb-xjc.jar"/>
    <jar href="jsr173_api.jar"/>
    <extension name="activation" href="activation.jnlp"/>
    </resources>
    <application-desc main-class="org.jvnet.jaxbw.xjcfe.wizard.WizardMainFrame"/>
    </jnlp>
    regards
    joel

  • After rebooting ML server, unable to open active directory.  Error msg is Unable to open requested node error -14006.

    This active directory is a replica of master on 2nd Mac Mini server which still thinks replica is there (perhaps it is) and will not let us delete in order to recreate.  Both servers are running 10.8.4.  Nothing changed on either server, simply did a reboot.  When we logged in, Active Directory was turned off and when trying to turn on or access received message "Unable to open the requested node.  The node LDAPV3/127.0.0.1 could not be opened because of an unexpected error -14006".
    Does any one have experience with this and how can we recover?  Thanks in advance for your help.

    Hi again,
    I've been able to run Reports by changing the "Reports_Tmp" key in the Registry under:
    Hkey_local_machine\software\oracle\home0\
    to the D:\ drive

  • Can not open Integration Directory nor Integration Repository help please!

    Hi,
    I am not able to load the integration directory and repository java parts.
    The funny thing is that it worked yesterday for me, but I re-installed a newer version of Java and it crashed. I have tried to delete all the Java versions and install the version 1.6.0_03_b21 (this version works for my team mates), but I have only found version 1.6.0_03_b07, and it does not work.
    I am able to acces to the SAP PI 7.1 portal (http://proxy:port/dir/start/index.jsp), but when I enter here and try to access to the integration directory/repository, I get an error.
    Your help is much apreciated. Greetings from Spain!
    Edited by: Silvia Garcia Rua on Jul 7, 2011 6:09 PM

    Hi all,
    Thank you so much for the answers, but I am still not able to open them.
    Hope this error message helps:
    java.io.IOException: Server returned HTTP response code: 504 for URL: http://<<host>>:<<port>>/rep/repository/com.sap.xpi.ib.client.jar
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getJarFileWithoutCache(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCachedJarFile(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCachedJarFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

  • Unable to open/launch Integration Builder.

    Hi,
    I am unable to open Integration Builder.
    Once I click on the link "integration directory", User Id and Password screen appears and when I enter the correct user ID and Password, Nothing happens, only the" Wait" icon appears for ever.
    I understand that itu2019s something to do with our access in my machine. We have stiff security policies.
    In  internet explorer setting --> I have "Accept all Cookies" and also Pop-ups are not  blocked (as Privacy setting)
    Please help me to resolve this issue.
    Regards,
    Rehan

    Nothing happens, only the" Wait" icon appears for ever.
    Please check with your basis if there in any space issue in the server.Also check if your other mates can open the Builder or not.
    Go to control panel->java->general->delete temp internet files and try lauching.
    If there is any issue with java webstart the
    Check  /people/shabarish.vijayakumar/blog/2006/02/13/unable-to-open-iresrid-xipipi-71-updated-for-pi-71-support .
    Go to integration Builder ->Administration tab ->Java webstart administration.>Reinitialize
    Regards,
    Srinivas
    Edited by: Srinivas on May 5, 2010 11:58 AM

  • Integration Directory not getting opened

    hi All,
    We are not able to open Integration Directory in XI 7.0 but IR (repository) works fine. While i was browsing through the Forum found (Forum ID# 135222) that we can just re-start the sap.com/com.sap.xi.directory in Visual Administrator but not sure where it's located in VA. Please help to resolve thi problem.
    Thanks
    Sekhar

    Hi,
    try re-initialization
    from this blog:
    Java Web Start
    then is should start working
    Regards,
    Michal Krawczyk

  • Integration Directory(Configuration) Problem

    Hi All,
    I am facing one Probelm. I am working one the client through Citrix. I am not able to open Integration Directory(Configuration Problem) . In onsite it's working fine. Reming all other applications(Integartion Repository and SLD and Runtime work bench) are working fine.
    if I open Integration Directory i am getting this messge.
    <jnlp spec="1.0+" codebase="http://filp55.group.upm-kymmene.com:50100/dir">
        <information>
            <title>Integration Builder</title>
            <vendor>SAP AG</vendor>
            <homepage href="http://www.sap.com" />
            <description type="one-line">Directory</description>
            <description type="short">Directory</description>
            <description type="tooltip">Directory</description>
            <icon hight="64" href="start/graphics/sap6464.gif" type="splash" width="64" />
            <icon hight="32" href="start/graphics/SAP3232.gif" width="32" />
        </information>
        <security>
            <all-permissions />
        </security>
        <resources>
            <j2se version="1.4+" initial-heap-size="32m" max-heap-size="1024m" />
            <jar href="directory/aii_ibdir_client.jar" />
            <jar href="directory/aii_ibdir_core.jar" />
            <jar href="directory/aii_ibdir_sbeans.jar" />
            <jar href="directory/aii_ibdir_rb.jar" />
            <jar href="directory/aii_ib_client.jar" />
            <jar href="directory/aii_ib_core.jar" />
            <jar href="directory/aii_ib_sbeans.jar" />
            <jar href="directory/aii_ib_rb.jar" />
            <jar href="directory/aii_util_icons.jar" />
            <jar href="directory/aii_util_swing.jar" />
            <jar href="directory/aii_util_xml.jar" />
            <jar href="directory/aii_util_xsd.jar" />
            <jar href="directory/aii_utilxi_misc.jar" />
            <jar href="directory/aii_util_rb.jar" />
            <jar href="directory/clientaii_ib_sbeans.jar" />
            <jar href="directory/clientaii_ibdir_sbeans.jar" />
            <jar href="directory/frog.jar" />
            <jar href="directory/focus14.jar" />
            <jar href="directory/sapxmltoolkit.jar" />
            <jar href="directory/jta.jar" />
            <jar href="directory/ejb20.jar" />
            <jar href="directory/exception.jar" />
            <jar href="directory/logging.jar" />
            <jar href="directory/guidgenerator.jar" />
            <jar href="directory/jperflib.jar" />
            <jar href="directory/sapni.jar" />
            <jar href="directory/sapj2eeclient.jar" />
            <property name="sap.theme" value="Streamline" />
            <property name="jnlp.log.initialConfiguration" value="FILE, SIMPLE" />
        <property name="jnlp.com.sap.aii.ib.client.properties" value="com.sap.aii.ib.client., com.sap.aii.ib.core., com.sap.aii.util.xml., com.sap.aii.connect., com.sap.aii.repository.mapping.additionaltypes, com.sap.aii.docu., com.sap.aii.ibrep.core., com.sap.aii.ibdir.core.*" /><property name="jnlp.com.sap.aii.connect.integrationserver.r3.sysnr" value="01" /><property name="jnlp.com.sap.aii.connect.landscape.contextroot" value="sld" /><property name="jnlp.com.sap.aii.connect.cr.name" value="filp40.group.upm-kymmene.com" /><property name="jnlp.com.sap.aii.ib.client.content.languages" value="EN,DE" /><property name="jnlp.com.sap.aii.connect.repository.contextroot" value="rep" /><property name="jnlp.com.sap.aii.ib.client.login.languages" value="EN,DE" /><property name="jnlp.com.sap.aii.connect.directory.rmiport" value="50104" /><property name="jnlp.com.sap.aii.connect.cr.contextroot" value="sld" /><property name="jnlp.com.sap.aii.connect.rwb.r3.client" value="790" /><property name="jnlp.com.sap.aii.connect.directory.contextroot" value="dir" /><property name="jnlp.com.sap.aii.connect.rwb.contextroot" value="rwb" /><property name="jnlp.com.sap.aii.connect.landscape.httpsport" value="@com.sap.aii.server.httpsport.lcr@" /><property name="jnlp.com.sap.aii.connect.repository.rmiport" value="50104" /><property name="jnlp.com.sap.aii.connect.repository.httpport" value="50100" /><property name="jnlp.com.sap.aii.connect.directory.name" value="filp55.group.upm-kymmene.com" /><property name="jnlp.com.sap.aii.connect.cr.httpsport" value="@com.sap.aii.server.httpsport.cr@" /><property name="jnlp.com.sap.aii.connect.repository.name" value="filp55.group.upm-kymmene.com" /><property name="jnlp.com.sap.aii.connect.integrationserver.contextroot" value="run" /><property name="jnlp.com.sap.aii.connect.integrationserver.name" value="filp55.group.upm-kymmene.com" /><property name="jnlp.com.sap.aii.connect.rwb.httpsport" value="@com.sap.aii.connect.rwb.httpsport@" /><property name="jnlp.com.sap.aii.connect.landscape.httpport" value="50000" /><property name="jnlp.com.sap.aii.docu.languages" value="null" /><property name="jnlp.com.sap.aii.ib.client.jnlp.j2se.initialheapsize" value="32m" /><property name="jnlp.com.sap.aii.util.xml.parserFactory" value="com.sap.engine.lib.jaxp.SAXParserFactoryImpl" /><property name="jnlp.com.sap.aii.connect.directory.httpport" value="50100" /><property name="jnlp.com.sap.aii.connect.directory.httpsport" value="@com.sap.aii.server.httpsport.directory@" /><property name="jnlp.com.sap.aii.connect.integrationserver.r3.httpport" value="8001" /><property name="jnlp.com.sap.aii.connect.rwb.name" value="filp55.group.upm-kymmene.com" /><property name="jnlp.com.sap.aii.connect.integrationserver.r3.client" value="790" /><property name="jnlp.com.sap.aii.connect.cr.httpport" value="50000" /><property name="jnlp.com.sap.aii.connect.landscape.name" value="filp40.group.upm-kymmene.com" /><property name="jnlp.SAPMYNAME" value="filp55_GTX_01" /><property name="jnlp.com.sap.aii.connect.rwb.httpport" value="50100" /><property name="jnlp.com.sap.aii.docu.url" value="null" /><property name="jnlp.com.sap.aii.ib.client.applicationname.directory" value="sap.com/com.sap.xi.directory/" /><property name="jnlp.com.sap.aii.util.xml.transformerFactory" value="com.sap.engine.lib.jaxp.TransformerFactoryImpl" /><property name="jnlp.com.sap.aii.ib.client.applicationname.repository" value="sap.com/com.sap.xi.repository/" /><property name="jnlp.com.sap.aii.ib.client.login.InitialContextFactory" value="com.sap.engine.services.jndi.InitialContextFactoryImpl" /><property name="jnlp.com.sap.aii.connect.integrationserver.httpport" value="50100" /><property name="jnlp.client" value="true" /><property name="jnlp.com.sap.aii.connect.repository.httpsport" value="@com.sap.aii.server.httpsport.repository@" /><property name="jnlp.com.sap.aii.ib.client.jnlp.j2se.maxheapsize" value="1024m" /><property name="jnlp.com.sap.aii.connect.integrationserver.httpsport" value="@com.sap.aii.connect.integrationserver.httpsport@" /><property name="jnlp.com.sap.aii.connect.integrationbuilder.startpage.url" value="rep/start/index.jsp" /><property name="jnlp.com.sap.aii.connect.integrationserver.r3.httpsport" value="@com.sap.aii.connect.integrationserver.r3.httpsport@" /><property name="jnlp.com.sap.aii.connect.rwb.r3.sysnr" value="01" /><property name="jnlp.com.sap.aii.util.xml.schemaValidator" value="com.sap.engine.lib.schema.validator.SchemaValidator" /><property name="jnlp.rc.release" value="7_00" /><property name="jnlp.rc.applname" value="DIRECTORY" /><property name="jnlp.rc.supportpackage" value="09" /><property name="jnlp.rc.synctime" value="${sync.time}" /></resources>
        <application-desc main-class="com.sap.aii.ibdir.gui.appl.ApplicationImpl">
            <argument>webstart</argument>
        </application-desc>
    </jnlp>
    Please help me on this..........
    Thanks in Advacne.
    Regards,
    Chandra

    Hello,
    1)
    May be the problem is a network connectivity issue. Do one thing copy the "cahce" folder from some other client PC(which has successfully opened IR and ID) to your client PC. The folder resides in "C:Documents and Settings<yourUserProfile>Application DataSunJavaDeploymentjavaws".
    Copy "cache" folder to your client PC under the above path.
    /people/shabarish.vijayakumar/blog/2006/02/13/unable-to-open-iresrid-xipipi-71-updated-for-pi-71-support
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1688 [original link is broken] [original link is broken] [original link is broken]
    2) Go to http://filp55.group.upm-kymmene.com:50100/rep/
    Click on Administration -> Java™ Web Start -> Java™ Web Start Administration ->
    Try
    1. Re-initialization (then try logging)
    2. Re-initialization and force-signing (then try logging)
    3. Delete lock (then try logging)
    Do this for IR and ID tabs.
    3) Check can be a firewall issue.
    4) Check wether sufficient roles have been assigned -> Tcode -> SU01 -> roles tab. These roles need to be assigned to your username
    SAP_BC_AI_LANDSCAPE_DB_RFC
    SAP_SLD_CONFIGURATOR
    SAP_SLD_DEVELOPER
    SAP_XI_BPE_CONFIGURATOR_ABAP
    SAP_XI_BPE_MONITOR_ABAP
    SAP_XI_DEVELOPER
    SAP_XI_DEVELOPER_ABAP
    SAP_XI_DEVELOPER_J2EE
    SAP_XI_MONITOR
    SAP_XI_MONITOR_ABAP
    SAP_XI_MONITOR_J2EE
    <b>*******************Reward,if found useful</b>
    Edited by: BVS on May 7, 2008 3:01 PM

  • Unable to open folders through cairo-dock

    The quick browser icon in my Cairo dock is pointing to my home directory and when I click on it, it shows all the folders inside that directory. But I am neither unable to open the directory nor any of the folders inside.
    I don't know if this is related, but I get these huge warnings when I open Cairo through the terminal:
    $ cairo-dock &
    [1] 3867
    ============================================================================
    Cairo-Dock version : 3.3.2
    Compiled date : Dec 27 2013 16:14:05
    Built with GTK : 3.10
    Running with OpenGL: 1
    ============================================================================
    warning : (/build/cairo-dock-plugins/src/cairo-dock-plugins-3.3.2/gvfs-integration/cairo-dock-gio-vfs.c:cairo_dock_gio_vfs_init:55)
    VFS Deamon NOT found on DBus !
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-mail.so' : (libetpan.so.17: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Recent-Events.so' : (libzeitgeist-1.0.so.1: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock-plugins/src/cairo-dock-plugins-3.3.2/gvfs-integration/cairo-dock-gio-vfs.c:cairo_dock_gio_vfs_init:55)
    VFS Deamon NOT found on DBus !
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-clock.so' : (libical.so.1: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-weblets.so' : (libwebkitgtk-3.0.so.0: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-terminal.so' : (libvte2_90.so.9: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-Impulse.so' : (libfftw3.so.3: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-GMenu.so' : (libgnome-menu-3.so.0: cannot open shared object file: No such file or directory)
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-module-manager.c:gldi_module_new_from_so_file:160)
    while opening module '/usr/lib/cairo-dock/libcd-system-monitor.so' : (libsensors.so.4: cannot open shared object file: No such file or directory)
    GldiShortkey '<Control>F12' failed!
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-keybinder.c:init_object:455)
    Couldn't bind '<Control>F12' (Log out: Show the logout menu)
    This shortkey is probably already used by another applet or another application
    GldiShortkey '<Control>F6' failed!
    warning : (/build/cairo-dock/src/cairo-dock-3.3.2/src/gldit/cairo-dock-keybinder.c:init_object:455)
    Couldn't bind '<Control>F6' (Quick Browser: Show/hide the folder menu)
    This shortkey is probably already used by another applet or another application
    warning : (/build/cairo-dock-plugins/src/cairo-dock-plugins-3.3.2/shortcuts/src/applet-drives.c:cd_shortcuts_list_drives:311)
    couldn't detect any drives
    warning : (/build/cairo-dock-plugins/src/cairo-dock-plugins-3.3.2/shortcuts/src/applet-load-icons.c:cd_shortcuts_build_shortcuts_from_data:310)
    Shortcuts : can't monitor bookmarks
    If it helps, my DE is xfce.

    Hi whiteninja, and a warm welcome to the forums!
    When I double-click on them, they won't open and a question mark appears over them.
    Oh oh, that means they've been moved or removed/trashed since moving there.
    Spotlight won't be reliable, I'd get EasyFind...
    http://www.macupdate.com/info.php/id/11076
    http://www.versiontracker.com/dyn/moreinfo/macosx/8707
    Use it to search your whole drive for case insensitive & show invisibles...
    for Folders Only with part of the name at least.

  • Server 2008 R2 DNS Server can not open active directory erro 4000

    The DNS server was unable to open Active Directory.  This DNS server is configured to obtain and use information from the directory for this zone and is unable to load the zone without it.  Check that the Active Directory is functioning properly
    and reload the zone. The event data is the error code. Error 4000
    This just started happening yesterday. Also File service and print server is unable to contact because of this error. I have no lookup zones. When I try and go to the DNS server I get a message The server VETSALDC could be contacted The error was Access
    Denied. Would you like to add it anyway?
    PLEASE HELP

    Hi,
    According to your description, my understanding is that DNS unable to open Active Directory with error 4000.
    This happens when that particular DC/DNS server has lost its Secure channel with itself or PDC. This can also happen in a single DC environment where that DC/DNS server holds all the FSMO roles and is pointing to itself as Primary DNS server.
    You may check AD DS using command line “DCdiag” (run as administrator). besides, you may try to stop and restart AD DS service(detailed steps reference the link:
    http://technet.microsoft.com/en-us/library/cc732714(WS.10).aspx ), make sure that the AD DS is running correctly.
    Then restart the DNS service, detailed steps reference the link:
    http://technet.microsoft.com/en-us/library/cc735673(v=ws.10).aspx .
    If the problem still exits, is there any other DC or DNS on your network? Post the TCP/IP parameters (ipconfig /all) of DC and DNS here.
    Best Regards,           
    Eve Wang     
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Can't open  Integration Repository and Integration Directory

    Hi all:
        I have some difficulties with the problem of openning Integration Repository and Integration Directory?
    cann't load resources :http://cnbjw3500:50100/rep/repository/aii_ibrep_client.jar
    http://cnbjw3500:50100/dir/directory/aii_ibdir_client.jar
       and type the link in web brower , I can download these two jars ,
       Do you have any idea about the possible reason? 
      Thanks in advance.

    HI
    Go throght the following links.
    Unable to start Integration Repository and Directory
    Re: Integration Repository launch error
    Regards
    Sridhar Goli

  • BootCacheControl: Unable to open /Var/db/BootCache.playlist:2 No such file or directory

    Hi,
    we are unable to boot our mac mini running the latest version of Mountain Lion (10.8.2); to try to fix we performed severals permision disk check using the recovery system (Restart your Mac and hold down the Command key and the R key [Command-R], and keep holding them until the Apple icon appears) as noted on http://support.apple.com/kb/HT4718.
    The boot sequence starts then stops and nothing happens. these are the last lines of the boot sequence.
    (... omissis ...)
    Kernel is LP64
    com.apple.launchd     1     com.apple.launchd     1     *** launchd[1] has started up. ***
    com.apple.launchd     1     com.apple.launchd     1     *** Verbose boot, will log to /dev/console. ***
    com.apple.launchd     1     com.apple.launchd     1     *** Shutdown loggin is enabled. ***
    Running fsck on the boot volume...
    ** /dev/rdisk0s2 (NO WRITE)
    ** Root file system
       Executing FSCK_HFS (version diskdev_cmds-557-393).
    FIPS USER Space POST: Integrity test success!
    (... omissis ...)
    FIPS USER Space POST Success!
    BootCacheControl: Unable to open /Var/db/BootCache.playlist:2 No such file or directory
    As usual, any ideas, solutions, suggestions are welcomed.
    Thank you in advance for your help and support
    -- federico

    Boot into Recovery by holding down the key combination command-R at the startup chime. Release the keys when you see a gray screen with a spinning dial.
    Note: You need an always-on Ethernet or Wi-Fi connection to the Internet to use Recovery. It won’t work with USB or PPPoE modems, or with proxy servers, or with networks that require a certificate for authentication.
    When the OS X Utilities screen appears, follow the prompts to reinstall the OS. You don't need to erase the boot volume, and you won't need your backup unless something goes wrong. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.

  • TS2570 Still cant access my computer, followed instructions to perform a safe boot and last line of script it shows: BootCacheControl: Unable to open /Var/db/BootCache.playlist:2 No such file or directory. Any idea?

    Brand new Mac Book Pro
    Purchased in Mexico's Department store Liverpool on June 20th 2012
    Purchased Memory upgade to 8Gb, on june 27th, at Apple Store Memorial City, Houston
    Upgraded memory from 4Gb to 8Gb on June 28th.
    Tried to write on my external HD (previously written on a windows based PC) with no success.
    Upon reccomendation from a Mac assistant, copied all my external HD contents into my Mac Hard drive.
    Then formatted my external HD and copied back all my information to it.
    deleted all the  information from my MacBook Pro HD.
    Attempted to repeat the same operation with another external HD, but got a message saying there was not enough epace on the computer HD (even though I have a 750Gb Hard Drive.
    Looked in the trash bin and there it was, all the information previously deleted..
    Could not empty the trash bin, although I got a message asking me to safely delete all the information from the trash bin,
    Could not get enough space released, after several attpempts the trash bin was finally emptied.
    All happy getting acquainted with my new MacBook Pro. Two days later, got a gray screen and not able to start the computer.
    Looking in to Mac support I found article http://support.apple.com/kb/TS2570 and followed instructions to perform a safe boot:
    "Perform a Safe Boot
    Simply performing the Safe Boot may resolve this issue.
    Shut down your Mac. If necessary, hold your Mac's power button for several seconds to force it to power down.
    Start your Mac, then immediately hold the Shift key. This performs a Safe Boot. Advanced tip: If you want to
    see the status of a Safe Boot as it progresses, you can hold Shift-Command-V during start up (instead of just Shift).
    Note: A Safe Boot takes longer than a typical start up because it includes a disk check and other operations.
    The following is the script that appears on the screen upon safe boot. and halt after the last line.
    AppleACPICPU:Processor Id=6 LocalAplicId=255 Disabled
    AppleACPICPU:Processor Id=7 LocalAplicId=255 Disabled
    AppleACPICPU:Processor Id=8 LocalAplicId=255 Disabled
    calling mpo_policy_init for TMSafetyNet
    Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    calling mpo_policy_init for Sandbox
    Security policy loaded: Seatbelt sandbox policy (Sandbox)
    calling mpo_policy_init for Quarantine
    Security policy loaded: Quarantine Policy (Quarantine)
    Copyright (c) 1982, 1986, 1989, 1991, 1993
            The Regents of the University of California. All Rights Reserved.
    MAC Framework Succesfully initializad
    using 16384 buffer headers and 10240 cluster IO buffer headers
    IOAPIC: Version 0x20 Vextors 64:87
    ACPI: System State [SO S3 S4 S5] (S3)
    PFM64 (36cpu) 0xf10000000, 0xf0000000
    Aplconsole relocated to 0xf1000000
    PCI configuration changed (bridge=16 device=4 cardbus=0)
    [ PCI configuration end, bridges 12 devices 16 ]
    Firewire (OHCI) Lucent ID 5901 built-in now active, GUID 3c0754fffe9b2aa2; max speed s800.
    Pthread support ABORTS when sync kernel primitives misused
    com.apple.AppleFSCompressionTypeZlib kmod start
    com.apple.AppleFSCompressionTypeDataless kmod start
    com.apple.AppleFSCompressionTypeZlib load succeeded
    com.apple.AppleFSCompressionTypeDateless load succeeded
    AppleIntelCPUPowerManagementClient: ready
    BTCOEXIST off
    wl0: Broadcom BCM4331 802.11 Wireless controller
    5.100.98.75
    AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitializad
    rooting via boot-uuid from /chosen: 6E918706-FC0D-37460-A3A0-6268A51DF93B
    Waiting on <dict ID="0"><key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleAPIPCI/SATA@1F,2/AppleIntelPchSe riesAHCI/PRT0@0/AOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlock
    storageevice /IoBlockStorageDriver/TOSHIBA MK7559GSXF Media/IOGUIDPartit
    BSD root: disk0s2, major 14, minor 2
    Kernel is LP64
    com.apple.launchd 1   com.apple.launchd 1   *** launchd[1] has started up. ***
    com.apple.launchd 1   com.apple.launchd 1   *** Verbose boot, will log to /dev/console. ***
    Running fsck on the boot volume...
    ** /dev/rdisk0s2 (NO WRITE)
    ** Root file system
       Executing FSCK_HFS (version diskdev_cmds-540.1~25).
    BootCacheControl: UNable to open /Var/db/BootCache.playlist:2 No such file or directory
    launchctl:Dubious permissions on file (skipping): /Library/LaunchDaemons
    launchctl:Dubious permissions on file (skipping): /System/Library/LaunchDaemons
    Any help or suggestions on what to do next would be welcomed.
    I am in the middle of the Atlantick, stuck with a brand new, non working Apple MacBook Pro.
    Best regards
    Sergio Ramos

    Reinstalling MacOS does NOT fix the problem for me.  I'm still searching a solution !
    Bernard

Maybe you are looking for

  • MacBook Pro Can't Find RV Park Router's IP Address

    I was using the RV park's wifi, which does not require a password.  Now my MBP won't connect because it can't find the router's IP address.  I used IP Scanner and found the IP address.  Is there some way I can "tell" my MBP what the IP address is?  I

  • Upload Employee Photo into SAP

    Hi, Due to employee photo is stored as ArchiveLink and I tried to upload it by LSMW, but it doesn't work. I was wordering that, the document that stored in ArchiveLink can be uploaded by LSMW or not. Has anyone used to upload employee's photo into SA

  • Replace single quote with two single quotes

    Hi all, I have a value = ABCD'S(>@!23. i want to replace the value as ABCD''S(>@!23. Thanks in advance

  • Multiple websites and templates

    There it is: I have upgraded to iWeb 09 and I have noticed that some of my templates from third parties have disappeared. They are still in resources folder under themes, but not visible when I open iWeb 09. Is there a way to get them up and running?

  • Swap space on windows install

    On starting the installer it will not proceed, giving a 0Mb swap space error. My swap file is on a D: drive. Does the swap file have to be on C:?