Interlligent agent problem ,when start it.

when i start interlligent agent ,it is report that ????.lib has bad magic. how do make deal it.
thank in advance

Hi,
I fixed the java.lang.NoClassDefFoundError problem in the Eclipse 3.1 Plug-in: in the Run > Environment, set the CLASSPATH variable to the directory containing the target program's package hierarchy. Now the Trace program runs ok when invoked from the plug-in.
However, when I repeated the same configuration in Eclipse 3.0.2, I got the following runtime error.
Unhandled event loop exception
Reason:
com/sun/jdi/connect/VMStartException
Isn't Eclipse 3.0.2 supposed to behave in the same way? Any help will be much appreciated!
Sunny

Similar Messages

  • Problem when start lightroom 6 on my windows 8.1 notebook

    I have a problem when start lightroom 6 on my windows 8.1 notebook, the system says "impossible find input point in _crtCreateSymbolicLinkW in C:\windows\system32\msvcp110.dll", and lightroom 6 terminate. I disinstalled and reinstalled many times but I have always the same error. What is the problem? Thank for the answers.

    Download update 4 for Intel x64 or Amd if your notebook have an Amd CPU of Visual studio 2012 and trya again. Before you can controll if the installer install library of visual studio 12 during installation and see if the library missing is on windows\system32.

  • HANDSHAKE_FAILURE problem when starting managed server via NOdeManager

    hi all, i am trying to start a managed server using nodeManager, but i keep on
    getting following exception:
    weblogic.nodemanager.NodeManagerException: [Could not execute command start for
    server managedServer via the Node Manager - reason: [CommandInvoker: Failed to
    send command: 'online to server 'managedServer' to NodeManager at host: 'localhost:5555'
    with exception FATAL Alert:HANDSHAKE_FAILURE - The handshake handler was unable
    to negotiate an acceptable set of security parameters.. Please ensure that the
    NodeManager is active on the target machine].] at weblogic.nodemanager.NodeManagerRuntime.executeCommand(NodeManagerRuntime.java:472)
    at weblogic.nodemanager.NodeManagerRuntime.start(NodeManagerRuntime.java:76) at
    java.lang.reflect.Method.invoke(Native Method) at
    here is my script for starting nodemanager
    set JAVA_HOME=c:\bea\jdk131
    set WL_HOME=c:\bea\weblogic700
    set PATH=%WL_HOME%\server\bin;%JAVA_HOME%\bin;%PATH%
    set CLASSPATH=.;%WL_HOME%\server\lib\weblogic_sp.jar;%WL_HOME%\server\lib\weblogic.jar
    java -hotspot -ms16m -mx16m -classpath %CLASSPATH% -Dbea.home=C:\bea\weblogic700
    -Djava.security.policy=C:\bea\weblogic700\server\lib\weblogic.policy -Dweblogic.nodemanager.weblogicHome=C:\bea\weblogic700
    -Dweblogic.nodemanager.listenAddress=172.21.73.94 -Dweblogic.nodemanager.listenPort=5555
    -Dweblogic.nodemanager.trustedHosts=C:\bea\weblogic700\common\nodemanager\config\nodemanager.hosts
    -Dweblogic.nodemanager.certificateFile=C:\bea\weblogic700\common\nodemanager\config\demo.crt
    weblogic.nodemanager.NodeManager
    i have created an admin server, called adminserver
    then i have created in the same domain a server called managedserver
    both servers run on the same machine,at different port number.
    i have created a machine, and associated managedserver to it.
    in the machine/configuration/nodemanager i have set listenaddress localhost and
    listenport 5555.
    my nodemanager starts automatically at htat port. however, when i try to start
    the managed server via adminserver console, i got the exception mentioned in
    the subject.
    can anyone help?
    regards
    marco
    can anyone point me to the right direction for solving this problem?
    in the adminserver console i have defined a machine for teh managedserver, and
    nodemanager is supposed to run at localhost:5555 (and indeed it does, because
    ihave started it successfully).
    thanx in advance and regards marco

    Marco.
    Sorry, this is not a solution to your problem but i am trying to solve the same
    problem for a week now.
    I have wl7.0 sp2, 1 admin server, 2 managed servers on the same box. I get the
    same error. I know that the default certificate installed provides a hostname
    verification of weblogic.com. I turned the hostname verification off, i put in
    the Dweblogic.nodemanager.sslHostNameVerificationEnabled=false, i get the same
    error when starting the managed server. I went ahead and created my own certificate
    for machine called mallik, created my own passphrase, created a new keystore,
    made the admin server view the keystore, used the same certificate for both the
    admin server and the node manager. It still fails with the same error. I went
    ahead and added the machine 'mallik' to nodeManager.hosts file. It fails. I am
    totally confused now what needs to be done.
    My nodeManger.hosts looks like this:
    mallik 10.100.10.130
    managedServer1 10.100.10.130
    managedServer2 10.100.10.13
    Below is the startNodeManager.cmd.
    @echo off
    @rem *************************************************************************
    @rem This script can be used to start the WebLogic NodeManager
    @rem
    @rem This script sets the following variables before starting the NodeManager:
    @rem
    @rem WL_HOME - The root directory of your WebLogic installation.
    @rem NODEMGR_HOME - The home directory for this NodeManager instance.
    @rem JAVA_HOME - Location of the version of Java used to start WebLogic
    @rem Server. This variable must point to the root directory of
    @rem a JDK installation and will be set for you by the
    @rem          installer. See the WebLogic platform support page
    @rem (http://e-docs.bea.com/wls/platforms/index.html) for an up-to-date
    list of
    @rem supported JVMs on Windows NT.
    @rem PATH - Adds the JDK and WebLogic directories to the system path.
    @rem CLASSPATH - Adds the JDK and WebLogic jars to the classpath.
    @rem JAVA_OPTIONS - Java command-line options for running the server. (These
    @rem will be tagged on to the end of the JAVA_VM and MEM_ARGS)
    @rem JAVA_VM - The java arg specifying the VM to run. (i.e. -server,
    @rem -client, etc.)
    @rem MEM_ARGS - The variable to override the standard memory arguments
    @rem passed to java
    @rem
    @rem *************************************************************************
    SETLOCAL
    set WL_HOME=C:\bea7.0\weblogic700
    set NODEMGR_HOME=%WL_HOME%\common\nodemanager
    set JAVA_HOME=C:\bea7.0\jdk131_06
    Call %WL_HOME%\common\bin\commEnv.cmd
    @rem If NODEMGR_HOME does not exist, create it
    :checkNodeManagerHome
    if exist %NODEMGR_HOME% goto checkJava
    echo.
    echo NODEMGR_HOME %NODEMGR_HOME% does not exist, creating it..
    mkdir %NODEMGR_HOME%
    @rem Check that java is where we expect it to be
    :checkJava
    if exist %JAVA_HOME%\bin\java.exe goto runNodeManager
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit this script so that the JAVA_HOME
    echo variable points to the location of your JDK.
    goto finish
    :runNodeManager
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    rem set JAVA_VM=-hotspot
    set JAVA_VM=%COMM_VM%
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=.;%JAVA_HOME%\lib\tools.jar;%WL_HOME%\server\lib\weblogic_sp.jar;%WL_HOME%\server\lib\weblogic.jar;%CLASSPATH%
    set PATH=%WL_HOME%\server\bin;%JAVA_HOME%\bin;%PATH%
    cd %NODEMGR_HOME%
    #"%JAVA_HOME%\bin\java.exe" %JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath "%CLASSPATH%"
    "-Dbea.home=C:\bea7.0" "-Dweblogic.security.SSL.trustedCAKeyStore=%WL_HOME%\server\lib\cacerts"
    "-Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy" "-Dweblogic.nodemanager.reverseDnsEnabled=true"
    "-Dweblogic.nodemanager.javaHome=%JAVA_HOME%" weblogic.nodemanager.NodeManager
    "%JAVA_HOME%\bin\java.exe" %JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath "%CLASSPATH%"
    "-Dbea.home=C:\bea7.0" "-Dweblogic.security.SSL.trustedCAKeyStore=%WL_HOME%\server\lib\cacerts"
    "-Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy" "-Dweblogic.nodemanager.certificateFile=C:\bea7.0\user_projects\myDomain\mallikcert.pem"
    "-Dweblogic.nodemanager.sslHostNameVerificationEnabled=false" "-Dweblogic.nodemanager.javaHome=%JAVA_HOME%"
    "-Dweblogic.ListenAddress=mallik" "-Dweblogic.nodemanager.nativeVersionEnabled=true"
    "-Dweblogic.nodemanager.reverseDnsEnabled=true" "-Dweblogic.nodemanager.javaHome=%JAVA_HOME%"
    "-Dweblogic.nodemanager.trustedHosts=%WL_HOME%\common\nodemanager\config\nodemanager.hosts"
    "-Dweblogic.management.pkpassword=weblogic" weblogic.nodemanager.NodeManager
    goto finish
    :finish
    ENDLOCAL
    I would appreciate if anybody can help me.
    Mallik.
    "Marco" <[email protected]> wrote:
    >
    hi all, i am trying to start a managed server using nodeManager, but
    i keep on
    getting following exception:
    weblogic.nodemanager.NodeManagerException: [Could not execute command
    start for
    server managedServer via the Node Manager - reason: [CommandInvoker:
    Failed to
    send command: 'online to server 'managedServer' to NodeManager at host:
    'localhost:5555'
    with exception FATAL Alert:HANDSHAKE_FAILURE - The handshake handler
    was unable
    to negotiate an acceptable set of security parameters.. Please ensure
    that the
    NodeManager is active on the target machine].] at weblogic.nodemanager.NodeManagerRuntime.executeCommand(NodeManagerRuntime.java:472)
    at weblogic.nodemanager.NodeManagerRuntime.start(NodeManagerRuntime.java:76)
    at
    java.lang.reflect.Method.invoke(Native Method) at
    here is my script for starting nodemanager
    set JAVA_HOME=c:\bea\jdk131
    set WL_HOME=c:\bea\weblogic700
    set PATH=%WL_HOME%\server\bin;%JAVA_HOME%\bin;%PATH%
    set CLASSPATH=.;%WL_HOME%\server\lib\weblogic_sp.jar;%WL_HOME%\server\lib\weblogic.jar
    java -hotspot -ms16m -mx16m -classpath %CLASSPATH% -Dbea.home=C:\bea\weblogic700
    -Djava.security.policy=C:\bea\weblogic700\server\lib\weblogic.policy
    -Dweblogic.nodemanager.weblogicHome=C:\bea\weblogic700
    -Dweblogic.nodemanager.listenAddress=172.21.73.94 -Dweblogic.nodemanager.listenPort=5555
    -Dweblogic.nodemanager.trustedHosts=C:\bea\weblogic700\common\nodemanager\config\nodemanager.hosts
    -Dweblogic.nodemanager.certificateFile=C:\bea\weblogic700\common\nodemanager\config\demo.crt
    weblogic.nodemanager.NodeManager
    i have created an admin server, called adminserver
    then i have created in the same domain a server called managedserver
    both servers run on the same machine,at different port number.
    i have created a machine, and associated managedserver to it.
    in the machine/configuration/nodemanager i have set listenaddress localhost
    and
    listenport 5555.
    my nodemanager starts automatically at htat port. however, when i try
    to start
    the managed server via adminserver console, i got the exception mentioned
    in
    the subject.
    can anyone help?
    regards
    marco
    can anyone point me to the right direction for solving this problem?
    in the adminserver console i have defined a machine for teh managedserver,
    and
    nodemanager is supposed to run at localhost:5555 (and indeed it does,
    because
    ihave started it successfully).
    thanx in advance and regards marco

  • Problems when starting OC4J J2EE 10.1.3 standalone container

    Hi,
    For month's now my OC4J standalone container functioned without any problems..
    Suddenly, it does not start anymore and I'm getting the following error:
    Starting OC4J from c:\oracle\oc4j_1013\j2ee\home ...
    2006-07-19 21:45:23.046 ERROR Failed to set the internal configuration of the OC
    4J JMS Server with: XMLJMSServerConfig[file:/C:/oracle/oc4j_1013/j2ee/home/confi
    g/jms.xml]
    06/07/19 21:45:23 *** (SEVERE) Failed to set the internal configuration of the O
    C4J JMS Server with: XMLJMSServerConfig[file:/C:/oracle/oc4j_1013/j2ee/home/conf
    ig/jms.xml]
    2006-07-19 21:45:23.062 ERROR J2EE OJR0011 Exception starting JMS server: Failed
    to set the internal configuration of the OC4J JMS Server with: XMLJMSServerConf
    ig[file:/C:/oracle/oc4j_1013/j2ee/home/config/jms.xml]
    2006-07-19 21:45:25.171 WARNING J2EE JNDI0001 Resource Environment reference jms
    /store not found. Allowing J2EEContext creation to continue anyway.
    2006-07-19 21:45:25.171 WARNING J2EE JNDI0001 Resource Environment reference jms
    /eventQueue not found. Allowing J2EEContext creation to continue anyway.
    2006-07-19 21:45:25.171 WARNING J2EE JNDI0001 Resource Environment reference jms
    /notificationQueue not found. Allowing J2EEContext creation to continue anyway.
    2006-07-19 21:45:25.218 WARNING J2EE JNDI0001 Resource Environment reference jms
    /eventQueue not found. Allowing J2EEContext creation to continue anyway.
    2006-07-19 21:45:25.218 WARNING J2EE JNDI0001 Resource Environment reference jms
    /notificationQueue not found. Allowing J2EEContext creation to continue anyway.
    2006-07-19 21:45:25.218 ERROR J2EE EJB3027 [default] An error occured deploying
    EJB module: java.lang.InstantiationException: Resource exception(OracleASjms) fo
    r MessageDrivenBean event during endpoint activation: failure looking up Connect
    ionFactoryJndiName:jms/XAQueueConnectionFactory: javax.resource.spi.ResourceAdap
    terInternalException: Looking up jms/XAQueueConnectionFactory: javax.naming.Name
    NotFoundException: jms/XAQueueConnectionFactory not found
    06/07/19 21:45:25 WARNING: Application.setConfig Application: default is in fail
    ed state as initialization failedjava.lang.InstantiationException: Error initial
    izing ejb-modules: Resource exception(OracleASjms) for MessageDrivenBean event d
    uring endpoint activation: failure looking up ConnectionFactoryJndiName:jms/XAQu
    eueConnectionFactory: javax.resource.spi.ResourceAdapterInternalException: Looki
    ng up jms/XAQueueConnectionFactory: javax.naming.NameNotFoundException: jms/XAQu
    eueConnectionFactory not found
    Jul 19, 2006 9:45:25 PM com.evermind.server.Application setConfig
    WARNING: Application: default is in failed state as initialization failedjava.la
    ng.InstantiationException: Error initializing ejb-modules: Resource exception(Or
    acleASjms) for MessageDrivenBean event during endpoint activation: failure looki
    ng up ConnectionFactoryJndiName:jms/XAQueueConnectionFactory: javax.resource.spi
    .ResourceAdapterInternalException: Looking up jms/XAQueueConnectionFactory: java
    x.naming.NameNotFoundException: jms/XAQueueConnectionFactory not found
    2006-07-19 21:45:25.250 WARNING DEBUG GJRA-1100, oracle.j2ee.connector.messagein
    flow.MessageEndpointFactoryImpl@159d450.
    06/07/19 21:45:25 Error initializing server: Error initializing ejb-modules: Res
    ource exception(OracleASjms) for MessageDrivenBean event during endpoint activat
    ion: failure looking up ConnectionFactoryJndiName:jms/XAQueueConnectionFactory:
    javax.resource.spi.ResourceAdapterInternalException: Looking up jms/XAQueueConne
    ctionFactory: javax.naming.NameNotFoundException: jms/XAQueueConnectionFactory n
    ot found
    2006-07-19 21:45:26.093 WARNING J2EE JTA RecoveryManager is null during shut
    down
    06/07/19 21:45:26 Fatal error: server exiting
    The version of the OC4J J2EE container is:
    Oracle Containers for J2EE 10g (10.1.3.0.0) (build 060119.1546.05277)
    Does anyone has any suggestions why this error happens, I did not changes anything in my installation and also did not deploy any new apps
    Thanks for your help

    I still have this problem when I try to login to the EM:
    This OC4J is configured to make JMX connections via RMIS and fall back to RMI if the RMIS port is not configured. The RMIS connection on the OC4J instance home on Application Server assoa.locahost is configured but a connection could not be established. The JMX protocol is specified by the oracle.oc4j.jmx.internal.connection.protocol property in opmn.xml
    Can you help me here?

  • IPC permission problems when starting Listener

    I have installed Oracle 8.0.5 on my Redhat 5.2 system.
    I am able to start the database instance and access it with SQL
    Plus. I am also able to start the listener and get a response
    back from the listener using tnsping.
    However, when starting the listener I get some error messages
    stating that I don't have permissions to access/use the IPC
    (sorry, I know little more about IPC other than inter process
    communication). I have a user oracle which owns the database and
    has a primary group of dba.
    Bellow is the output from when i try to run lsnrctl start:
    thanks for your help,
    Federico
    LSNRCTL for Linux: Version 8.0.5.0.0 - Production on 09-JAN-99
    03:04:21
    (c) Copyright 1997 Oracle Corporation. All rights reserved.
    Starting /oracle/u01/app/oracle/product/8.0.5/bin/tnslsnr: please
    wait...
    TNSLSNR for Linux: Version 8.0.5.0.0 - Production
    System parameter file is
    /oracle/u01/app/oracle/product/8.0.5/network/admin/listener.ora
    Log messages written to
    /oracle/u01/app/oracle/product/8.0.5/network/log/listener.log
    Trace information written to
    /oracle/u01/app/oracle/product/8.0.5/network/trace/listener.trc
    Listening on: (ADDRESS=(PROTOCOL=ipc)(DEV=9)(KEY=orcl))
    Listening on: (ADDRESS=(PROTOCOL=ipc)(DEV=12)(KEY=PNPKEY))
    Listening on:
    (ADDRESS=(PROTOCOL=tcp)(DEV=13)(HOST=192.168.1.2)(PORT=1521))
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=orcl))
    TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00516: Permission denied
    null

    Did it say "command completed successfully" "service has 1
    handler" ? If so, then it ran fine. As for the root ownership of
    certain things: some things need to be setuid root to access
    certain OS resources for security purposes. If you see an "s"
    where the execute permissions for owner or group, then the
    executable most likely is set to run setuid or setgid. In other
    words, no matter who invokes that command, the process is run as
    the root user.
    Kevin
    Federico Grau (guest) wrote:
    : Feel kind of stupid about this but i fixed my own problems...
    : first of all, I am using NIS, and my oracle "server" is an NIS
    : client. I had changed the primary group of oracle to dba on my
    : NIS server, but had not updated the NIS databases, so my oracle
    : "server" thought that the user oracle still had a primary group
    : of oracle.
    : I am not sure if that is the cause of the problem, but somehow
    : during one of the package installations *using the defualt
    : installation) the file $ORACLE_HOME/bin/tnslsnr gets owned by
    : user.group root.dba (this does not happen on my AIX oracle
    : installation of 7.3)... Once I change ownership back to
    : oracle.dba things run smothly. Other files that have this same
    : root ownership are dbsnmp, oratclsh, and osh?!
    : any ideas?
    : Federico
    : Federico Grau (guest) wrote:
    : : I have installed Oracle 8.0.5 on my Redhat 5.2 system.
    : : I am able to start the database instance and access it with
    SQL
    : : Plus. I am also able to start the listener and get a
    response
    : : back from the listener using tnsping.
    : : However, when starting the listener I get some error messages
    : : stating that I don't have permissions to access/use the IPC
    : : (sorry, I know little more about IPC other than inter process
    : : communication). I have a user oracle which owns the database
    : and
    : : has a primary group of dba.
    : : Bellow is the output from when i try to run lsnrctl start:
    : : thanks for your help,
    : : Federico
    : : LSNRCTL for Linux: Version 8.0.5.0.0 - Production on
    09-JAN-99
    : : 03:04:21
    : : (c) Copyright 1997 Oracle Corporation. All rights reserved.
    : : Starting /oracle/u01/app/oracle/product/8.0.5/bin/tnslsnr:
    : please
    : : wait...
    : : TNSLSNR for Linux: Version 8.0.5.0.0 - Production
    : : System parameter file is
    /oracle/u01/app/oracle/product/8.0.5/network/admin/listener.ora
    : : Log messages written to
    : : /oracle/u01/app/oracle/product/8.0.5/network/log/listener.log
    : : Trace information written to
    /oracle/u01/app/oracle/product/8.0.5/network/trace/listener.trc
    : : Listening on: (ADDRESS=(PROTOCOL=ipc)(DEV=9)(KEY=orcl))
    : : Listening on: (ADDRESS=(PROTOCOL=ipc)(DEV=12)(KEY=PNPKEY))
    : : Listening on:
    : : (ADDRESS=(PROTOCOL=tcp)(DEV=13)(HOST=192.168.1.2)(PORT=1521))
    : : Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=orcl))
    : : TNS-12546: TNS:permission denied
    : : TNS-12560: TNS:protocol adapter error
    : : TNS-00516: Permission denied
    null

  • 10.10.3 - problems when starting up my MacBook Air

    Hi, I have a MacBook Air 2013 and I have installed the update to Yosemite 10.10.3. Since then, my Mac is having problems in starting up... in fact, after pressing the start button, my Mac is giving the starting sound and then nothing else. I have to press two more times the start button to start my Mac as normally. Any idea?

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Download and reinstall the OS X Yosemite 10.10.3 Combo Update.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Msvcr100.dll problem when starting Photoshop CS6

    Windows 7 64bit - Creative Cloud License -
    Hello,
    I have the following problem:
    When I start (click icon) my photoshop, the icon highlights for a moment and then it's gone.
    When I check my logs, it gives me the following message:
    Translated from Dutch
    Foutbucket 86825153, type 4
    Name of event: APPCRASH
    Answer: Not available
    Id of CAB-file: 0
    Signature of problem:
    P1: Photoshop.exe
    P2: 13.1.0.0
    P3: 50b4058d
    P4: MSVCR100.dll
    P5: 10.0.40219.1
    P6: 4d5f034a
    P7: 40000015
    P8: 00000000000761c9
    P9:
    P10:
    Attached files:
    C:\Users\Joogle\AppData\Local\Temp\WERFF19.tmp.WERInternalMetadata.xml
    These files are probably not available anymore:
    C:\Users\Joogle\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_Photoshop.exe_a e46505f703c2a262d971eb2a381f58683537d10_11633620
    Analysesymbol:
    Searching again for fix: 0nRapport-id: c89243bf-6332-11e2-ac22-ed6ea1309e4a
    Reportstatus: 0
    I already installed Photoshop again from the Cloud (Creative Cloud), also from a different language (like American English or just Dutch, using Int. English), but still the same.
    Maybe one you knows how to fix? Or had the same issue?
    Greetings Marvin

    I found another fix, and I wonder why this one is so uncommon, because it worked like a charm for me.
    There is a program called SFC which scans for missing or defective DLL and system files and repairs them. To make it work, you need to run it from the command line in "repair mode" which you can access when booting the pc. Running this program from a normal windows session won't work, because Windows won't have access to all the files.
    If you hit F8 while booting, Windows will offer you some options to continue.
    Choose REPAIR - don't worry, it won't do anything to your Windows installation until you explicitly opt for it.
    Then you can choose your language and you can log in with your account. (Not the $homeusergroup)
    Now click on the command-line icon. It will be opened right at c:\windows\system32
    You can type in SFC /scannow
    This program will search for defective system files and try to repair them. It may also ask for your Windows installation disc, if files are completely missing, but that didn't happen to me.

  • Help with tabs, I reset but doesn't fix problem when started again

    When started the new tab is blank and doesn't show the 9 previous pages like before. I have gone to help the troubleshooting and then reset Firefox. This works until I shut down Firefox although when I start a new session the New Tabs are Blank again.
    please help.

    Is the new tab page completely blank or is there a little 9-square icon on the right side? If that's there, can you check your history and make sure your history wasn't cleared?
    In the future, you shouldn't need to do a full reset to edit this preference. In fact, it would be helpful to take a look at what is there when this problem occurs. This involves using the about:config preferences editor:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and enter your preferred page:
    * ''Page thumbnails (default)'' => about:newtab
    * ''Blank tab'' => about:blank
    * ''Built-in Firefox home page'' => about:home
    * ''Any other page'' => full URL to the page
    Press Ctrl+t to open a new tab and verify that it worked. Fixed?
    If it's fixed temporarily, does it stick until you exit Firefox and restart it? Sometimes preferences will be changed at startup by a user.js file. This file isn't created by Firefox, but can be created by a user or third party software to override your regular settings. To check for a user.js file, try the steps in this article: [[How to fix preferences that won't save]].

  • I have a problem when starting my Macbook. A message saying /Library/StartupItems/Icon has not been started due to not having the right security settings. So far it is not under HD og system folder, nor can't find via terminal. Any good suggestions?

    I have tried to delete it via terminal but no luck, have also run a disk permissions repair but no luck.
    I still shows when starting the mac or restarting it.
    Any of you have a good suggestion of what do??
    Just hate when it appears every time I start the Mac

    What items do you have in the Startup Items of your System Preference for your present login user?  Maybe removing and adding them back in will help?
    /Applications/iTunes.app/Contents/Resources
    includes the iTunes Helper application in case you need to reconnect it later.

  • Problem when starting performance pack

    Environment: AIX 4.3.3, JDK 1.2.2 with lastest fix, weblogic 5.1
    When starting weblogic, the weblogic.log shows:
    <POSIX Performance Pack> Could not initialize POSIX Performance PACK.
    <Performance Pack> Unable to load performance pack, using JAVA I/O.
    I have weblogic.system.nativeIO.enable=true set in the weblogic.properties file
    and LIBPATH pointing to ~weblogic/lib/aix .
    Appreciate if somebody here can give idea where to look into in order to load
    the Performance Pack.
    Thanks for any input
    Daping Xia
    System Admin
    United Airlines

    Could you do a directory listing of the directory that contains the
    performance packs?
    Michael Girdley
    BEA Systems Inc
    "Daping Xia" <[email protected]> wrote in message
    news:39ecc7f1$[email protected]..
    >
    Environment: AIX 4.3.3, JDK 1.2.2 with lastest fix, weblogic 5.1
    When starting weblogic, the weblogic.log shows:
    <POSIX Performance Pack> Could not initialize POSIX Performance PACK.
    <Performance Pack> Unable to load performance pack, using JAVA I/O.
    I have weblogic.system.nativeIO.enable=true set in the weblogic.propertiesfile
    and LIBPATH pointing to ~weblogic/lib/aix .
    Appreciate if somebody here can give idea where to look into in order toload
    the Performance Pack.
    Thanks for any input
    Daping Xia
    System Admin
    United Airlines

  • Problems when starting with oracle SQL developer

    Hello,
    I am very much new with oracle SQL developer. I use oracle 10g and have a database named 'pallabDB' with username: xxxxxx and paswd:yyyyyy. I have installed oracle SQL developer.But i am unable to start up.What i should do? If any body replies it will be a great help.Thanks in advance.

    But i am unable to
    start up.How to understand this sentence without confusion?
    Can you explain exactly what is your problem at start up of SQL Developer?

  • T410 drive problem when starts up

    Good day,
    I try to get the laptop of my son running again. its a think pad T410.
    when started it runs through its bios but than stops stating no drive to be found.
    did a drive test in bios and it gives a 0000 error (drive is a Hitachi type TS7SAA320.
    strangely when I run linux puppy on the computer by a external than Linux can still find files on the hard drive.
    doe any one have a Idea how to solve it so my son can has his computer up and running again.
    I read some olther threats but coeld not find any thing that showed what to do when drive was still operatable by linux on sam e computer.
    kind regards
    Hin

    Hi Hindrick,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing issue with system not booting to Windows on your ThinkPad T410.
    I think the boot files have been corrupted, try reinstalling the Operating System once, this may resolve the issue. If the system is having pre-loaded OS then try to perform system recovery.
    http://support.lenovo.com/en/documents/ht075445
    Hope this helps.
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • OSB: problem when starting a managed server in an OSB cluster

    Hi,
    I used the configuration wizard to setup a very simple domain, containing a cluster with a managed server. When I start the managed server from the console I get prompted for the boot user and password. I specify the values I defined during the installation (weblogic user and custom passwort). After some time the managed server exists with the following exception:
    ####<21.04.2010 19.25 Uhr CEST> <Critical> <WebLogicServer> <DEMUC10525> <ManagedServer1> <main> <<WLS Kernel>> <> <> <1271870735741> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication for user weblogic denied
    weblogic.security.SecurityInitializationException: Authentication for user weblogic denied
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(Unknown Source)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(Unknown Source)
         at weblogic.security.service.SecurityServiceManager.initialize(Unknown Source)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    What is its problem and how do I fix it? I have not configured anything special in the domain - just the cluster, a single machine and the managed server and admin server targeted at this machine.
    The admin server starts without these problems. I also tried copying the boot.properties from the admin server to the managed server without any success - the same problem.
    Regards
    Dimo
    Edited by: dimo velev on 21.04.2010 11:24

    Hi Anuj,
    it turned out to be an OSB related problem - WLS forum would not have been able to help.
    The startManagedWebLogic script should be run only within an environment which has been correctly setup using the domain setDomainEnv script. This seems to add some classpaths and stuff like this which, if missing, produces the exception - it actually has absolutely nothing to do with the user and password being wrong.
    If you are using a node manager to start the managed servers then it should also be run within an evironment correctly setup with the domain's setDomainEnv script.
    Best regards
    Dimo

  • DS XI3.2 SP1 - Problem when starting RFC server from management console

    Hi,
    We're using DataServices XI 3.2 SP1 FP1 on a windows 2008 server 64bits to load SAP BW. We have set up an external system in SAP BW called "DI_SOURCE" and then successfully created a RFC server interface (DI_SOURCE) within the management console.
    When we try to start this RFC server from the management console, we immediately get the following error message : "An internal error occurred in: server.start()::rfc_bad_connection".
    On the other hand, when we follow the "old method" (pre SP2) and start the RFC server from a command window, it works : we have "CONNECTION DI_SOURCE OK" in SAP BW.
    Any ideas how to solve this ?
    Thanks,
    Olivier

    Hi,
    We have tried your suggestions above.
    Instead of just crashing we now get an error from designer (before closing down). Seems as if our librfc32.dll has a problem.
    We have verified that the librfc32.dll from the Data Services package is the only one on the server.
    Problem signature:
      Problem Event Name:        BEX
      Application Name:        al_designer.exe
      Application Version:        12.2.2.0
      Application Timestamp:        4b99c5ef
      Fault Module Name:        LIBRFC32.DLL
      Fault Module Version:        7100.3.144.6097
      Fault Module Timestamp:        49bec8be
      Exception Offset:        000179a4
      Exception Code:        c0000409
      Exception Data:        00000000
      OS Version:        6.1.7600.2.0.0.272.7
      Locale ID:        1030
      Additional Information 1:        4b85
      Additional Information 2:        4b85a4b06dde50b4e092d24f447efca0
      Additional Information 3:        45fe
      Additional Information 4:        45feda9db76a48384005c14dafbddc29
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

  • Urgent facing problem when starting the weblogic admin serverof soa11.1.1.3

    install the soa 11.1.1.3 trying to start the admin server of weblogic getting the below exception plz help me its urgent.
    ####<Jun 9, 2010 10:31:55 AM IST> <Critical> <WebLogicServer> <PC-AMD40> <AdminServer> <main> <<WLS Kernel>> <> <> <1276059715500> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: The dynamic loading of the OPSS java security policy provider class oracle.security.jps.internal.policystore.JavaPolicyProvider failed due to problem inside OPSS java security policy provider. Exception was thrown when loading or setting the JPSS policy provider. Enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: JPS-01538: The default policy provider was not found.
    weblogic.security.SecurityInitializationException: The dynamic loading of the OPSS java security policy provider class oracle.security.jps.internal.policystore.JavaPolicyProvider failed due to problem inside OPSS java security policy provider. Exception was thrown when loading or setting the JPSS policy provider. Enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: JPS-01538: The default policy provider was not found.
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1394)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: oracle.security.jps.JpsRuntimeException: JPS-01538: The default policy provider was not found.
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:273)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:265)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:136)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1312)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: oracle.security.jps.JpsException: JPS-01538: The default policy provider was not found.
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:705)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:271)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:265)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:136)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1312)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: oracle.security.jps.JpsException: JPS-01514: The default context is missing in jps-config.xml.
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:665)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:650)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:650)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:271)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:265)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:136)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1312)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: oracle.security.jps.service.credstore.CredStoreException: JPS-01050: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
         at oracle.security.jps.internal.credstore.ssp.CsfWalletManager.openWallet(CsfWalletManager.java:177)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.doInit(SspCredentialStore.java:218)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.<init>(SspCredentialStore.java:140)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.<init>(SspCredentialStore.java:127)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStoreProvider.getInstance(SspCredentialStoreProvider.java:115)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStoreProvider.getInstance(SspCredentialStoreProvider.java:53)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:133)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:128)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:656)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:650)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:650)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:271)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:265)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:136)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1312)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    using orapki you should be able to see the contents of the wallet without a password. try using this:
    ORACLE_WM_HOME/oracle_common/bin/orapki wallet display -wallet ORACLE_WM_HOME/user_projects/domains/EPMSystem/config/fmwconfig
    Should result in the following
    Oracle PKI Tool : Version 11.1.1.2.0
    Copyright (c) 2004, 2009, Oracle and/or its affiliates. All rights reserved.
    Requested Certificates:
    User Certificates:
    Trusted Certificates:
    Subject: OU=Class 1 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US
    Subject: OU=Secure Server Certification Authority,O=RSA Data Security\, Inc.,C=US
    Subject: CN=Entrust.net Secure Server Certification Authority,OU=(c) 1999 Entrust.net Limited,OU=www.entrust.net/CPS incorp. by ref. (limits liab.),O=Entrust.net,C=US
    Subject: CN=GTE CyberTrust Global Root,OU=GTE CyberTrust Solutions\, Inc.,O=GTE Corporation,C=US
    Subject: OU=Class 3 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US
    Subject: CN=Entrust.net Secure Server Certification Authority,OU=(c) 2000 Entrust.net Limited,OU=www.entrust.net/SSL_CPS incorp. by ref. (limits liab.),O=Entrust.net
    Subject: OU=Class 2 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US
    Subject: CN=Entrust.net Certification Authority (2048),OU=(c) 1999 Entrust.net Limited,OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.),O=Entrust.net
    If it prompts you for a password then that's your issue...

Maybe you are looking for

  • Iphone 5 no longer connects to my PC after last update OS8.1

    Firstly I am not a "tech" expert and really do not understand the whole lingo etc - in fact I find it VERY overwhelming whenever I have an issue that needs to be solved with all the massive volume of technical jargon thrown around and end up being to

  • Deleting email on outlook opens a file download from firefox

    deleting email on outlook opens a file download from firefox

  • Ale settings or idoc issue

    Hi Am able to send idoc successfully from ecc 6.0  but i can see them in  target system  dont know where am mistaking in Ale settings or where   pls help me out its bit urgent requirment. Regards Meeta

  • Design patterns in WLI

    What design patterns could provide the best reuse of business processes and messaging infrastructure?

  • Problems with NullPointerException

    Hi there. I'm currently working on a school project on MIDP. My porject requires me to retrieve data which is an xml file through a socket connection via the DataInputStream and DataOutputStream. When i run the application using the ktoolbar, I encou