ISQLPlus stopped working on 10g

After install of production 10g database on Mac OS X iSQLPlus was working (so I know everything it needed by way of object libraries is there).
After reboot I get the error "SP2-00908: iSQLPlus may have been restarted without being properly shut down."
isqlplusctl start
gives a clean result "iSQL*Plus started."
Everything else works fine. I suspect therefore that some kind of log file or log file entry is left behind that stops this working. It has worked so I know everything is there.
Thanks
Paul

Thanks Alison
what you said pointed me in the right direction to solve the problem.
My system did have ORACLE_HOME and LD_LIBRARY_PATH defined.
However, the isqlplusctl.pl script is called from $ORACLE_HOME/isqlplusctl unix shell script. This script has a comment from an oracle programmer meerabat dated 11/18/04 where an environment variable DYLD_LIBRARY_PATH is set for MACOSX. This variable is conditionally set according to an environment variable uname which was undefined on my system.
So I set the uname variable and the DYLD_LIBRARY_PATH to /System/Library/Frameworks/JavaVM.framework/Libraries in my .bash_profile and everything now works. The isqlplusctl script now adjusts the DYLD_LIBRARY_PATH correctly to look in oracle libraries first.
I also noticed that LD_LIBRARY_PATH included an $ORACLE_HOME/lib32 assignment which is not in my $ORACLE_HOME.
Perhaps Oracle could tidy up these scripts a bit?
Paul.

Similar Messages

  • 9i Report Builder stops working after 10g install

    I have the 9i Developer Suit installed and recently I installed the 10g Developer Suit. After installing the 10g Developer Suit the 9i Report Builder stopped working. When I try to start it, it hangs at the launch screen. All the other apps in the 9i and 10g Developer Suits seem to work except for the 9i Report Builder. Please Help.

    Nope. The 10g report builder works fine. The issue is only with the 9i report builder.

  • Java(TM) 2 Platform Standard Edition binary has stopped working

    Does anyone ever put ODAC10203x64.zip into Windows Server 2008 x64? I hit the error:
    Java(TM) 2 Platform Standard Edition binary has stopped working
    Ming Man

    Hi Mark,
    Let me get you more details.
    I have Windows Server 2008 x64 running with Visual Studio 2008 installed.
    For Oracle, I have cleared all my previous installation and even deleted all the folders for previous installation of ODP.NET. After that I only installed the Oracle Database 10g Client Release 2 (10.2.0.4) from the link you gave (I installed all the components) :
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204_winx64_vista_win2k8.html
    I have Oracle Database 11g running on VMWare on Windows XP 32 bit.
    When I run my WinForm application using code so far so good. I extract data from the HR schema and put them in listbox, perfectly no error.
    But when I am trying to create by Add New Data Source... then I hit the:
    Attempt to load Oracleclient libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components
    Hope that can give you a better idea.
    Ming Man

  • LDAP Stops working after a few days

    So I configured LDAP using the built in method and it works great. I then have a custom user_in_group function that checks against the ldap. Both of these work perfect for a while, after a day or so though, they stop working all together. Rebooting the server solves the problem, but seems a bit drastic on a nightly basis.
    Does anyone know where to even start looking? I can't find any error logs pertaining to LDAP authentication or authorization.
    Here is the user_in_group sub in case its doing something bad, it is authorizing agianst a local Active Directory server. We have two AD servers and changing the IP address here doesn't make it start working, only rebooting does. I have a feeling that there is a limited pool of LDAP connections and somehow they are getting used up and eventualy there are none left. No errors appear on either AD servers logs or anywhere i can find on Oracle. BTW I'm running oracle on RedHat Enterprise and it is oracle 10g with HTML DB 1.5
    create or replace FUNCTION useringroup (p_username IN VARCHAR2, p_group IN VARCHAR2)
    RETURN boolean
    AS
    l_retval pls_integer := -1;
    l_session dbms_ldap.SESSION;
    l_attrs dbms_ldap.string_collection;
    l_message dbms_ldap.message;
    l_found boolean := FALSE;
    l_username varchar2(50) := '';
    v_array mytabletype;
    BEGIN
    dbms_ldap.use_exception := FALSE;
    --connect to LDAP and authenticate
    l_session := dbms_ldap.init(hostname => '192.168.11.203', portnum => '389');
    l_retval := dbms_ldap.simple_bind_s(ld => l_session, dn => 'LDAP Connector', passwd => '*****');
    --Get Group Membership
    l_attrs(1) := 'memberOf';
    l_username := p_username;
    if (instr( UPPER(l_username),'@NEWAUD.COM') = 0) then
    l_username := concat(l_username, '@newaud.com');
    end if;
    v_array := str2tbl(p_group);
    FOR i IN 1 .. v_array.COUNT LOOP
    l_retval := dbms_ldap.search_s(ld => l_session,
    base => 'ou=Everyone,dc=newaud,dc=com',
    filter =>
    '(&(userPrincipalName=' || l_username || ') ' ||
    '(|(memberOf=CN=' || v_array(i) || ',CN=Builtin,DC=newaud,DC=com) ' ||
    ' (memberOf=CN=' || v_array(i) || ',OU=Groups,OU=Everyone,DC=newaud,DC=com)))',
    scope => DBMS_LDAP.SCOPE_SUBTREE,
    attrs => l_attrs,
    attronly => 0,
    res => l_message);
    IF dbms_ldap.count_entries(ld => l_session, msg => l_message) > 0 THEN
    --must unbind from LDAP
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    RETURN TRUE;
    END IF;
    END LOOP;
    RETURN FALSE;
    EXCEPTION
    WHEN others THEN
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    RETURN FALSE;
    END useringroup;

    Looks like you are only unbinding when you have a success.
    IF dbms_ldap.count_entries(ld => l_session, msg => l_message) > 0 THEN
    --must unbind from LDAP
    l_retval := dbms_ldap.unbind_s(ld => l_session);
    RETURN TRUE;
    You always must unbind.
    Anton

  • Javaw.exe Stop Working on 10.2.0.3 in Vista

    Hi when i try to install 10g 10.2.0.3 Database in Windows Vista
    when it initialize Java JDK extension i face the error "Javaw.exe stopped working"
    (i run the setup as administrator)
    and then the installation program is closed!!!
    any one can help me ???????
    tanx

    Are you connected as Administrator or as a user that belongs to the Administrators group?
    Please, check the metalink notes:
    Permission Issues with Microsoft Vista, and Oracle GUI tools
         Doc ID:      Note:444776.1
    Oracle® Database Client Certification Notes 10g Release 2 (10.2.0.3) for Microsoft Windows Vista
         Doc ID:      Note:415166.1      
    Madrid.

  • Error: Oracle Forms Designer has stopped working

    I have read a lot of different responses regarding this and related issues but none of the answers seem to be relative to my specific problem. Here is what I have done so far:
    a. I just finished loading Oracle 11g 64x enterprise on my laptop running windows 7. It loaded correctly and I was able to import my 10g data dump and set up my schema.
    b. I then installed the Oracle development suite: ds_windows_x86_101202_disk1 and disk2. There were some minor issues regarding compatibility but following the advise of one post, I checked the blocks in question and the software loaded fine.
    c. I also attempted to install the p5969392_10123_WINNT.zip file but it gave a message indicating that no updates applied. (I am not sure if this is the correct patch or not?)
    d. I also had to download and install the Sun SDK, v6.18.
    e. I also updated the ORACLE paths in the default.env and registry entries and tried different urls in the runtime preference block. Nothing helped and I stayed with the default.
    Oracle Forms seems to startup correctly and I am able to connect to the database with no problem. Although I did not build a new form completely, it appears that this would be no problem.
    The problem:
    The problem is that when I attempt to open a form that was previously developed in 10g on XP, I immediately get the "Oracle Forms Designer has stopped working" error and Forms Builder shuts down. I get the same error whether I attempt to open a library, menu, or form.
    I have tried changing the compatibility mode from XP, service pack 3 (the default after install) to XP, service pack 2 but it made no difference.
    If anyone has been able to work through this issue, please let me know how. Thanks

    Gauthier Ooms wrote:
    We've had similar problems in the past, but found a working solution (using this + other forums):
    1. Install Oracle DevSuite 10.1.2.0.2
    2. Install Patchset 5983622 to upgrade DevSuite to version 10.1.2.3 (this upgrade is needed in order to do step 3)
    3. Install Patchset 7047034 to fix the crashing problem in the Forms Builder. (installation instructions are provided in the patchset)Issue no 3
    from Patchset 7047034 readme file..
    3.1 Platforms and Components for Patch 7047034 for Oracle Database Release 10.1.0.5How this patchset goes with the form Builder?
    But according to THIS link.. It works ;)
    Hamid

  • Oracle forms designer has stopped working

    oracle forms designer has stopped working
    I trye open form when I open it,show me mag oracle forms designer has stopped working abd when I press cancel it exit from the forms
    I used oracleform 10g with windoes7
    any help ??

    Gauthier Ooms wrote:
    We've had similar problems in the past, but found a working solution (using this + other forums):
    1. Install Oracle DevSuite 10.1.2.0.2
    2. Install Patchset 5983622 to upgrade DevSuite to version 10.1.2.3 (this upgrade is needed in order to do step 3)
    3. Install Patchset 7047034 to fix the crashing problem in the Forms Builder. (installation instructions are provided in the patchset)Issue no 3
    from Patchset 7047034 readme file..
    3.1 Platforms and Components for Patch 7047034 for Oracle Database Release 10.1.0.5How this patchset goes with the form Builder?
    But according to THIS link.. It works ;)
    Hamid

  • WLS_Reports Stop working

    Hi all,
    a WLS_Reports migrated from Forms/Reports 10g to 11 g is stop working time to time here is the trace :
    awt.toolkit = sun.awt.windows.WToolkit
    classic.oracle.home = D:\Oracle\Middleware\as_1
    common.components.home = D:\Oracle\MIDDLE~1\ORACLE~1
    domain.home = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1
    em.oracle.home = D:\Oracle\Middleware\oracle_common
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    igf.arisidbeans.carmlloc = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1\config\FMWCON~1\carml
    igf.arisidstack.home = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1\config\FMWCON~1\arisidprovider
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.headless = true
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = D:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Oracle\MIDDLE~1\patch_ocp360\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Oracle\Java\JROCKI~1.1\lib\tools.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;D:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;D:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;D:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\Oracle\Middleware\as_1\jdbc\lib\ojdbc6.jar;;;D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;D:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Oracle\MIDDLE~1\patch_ocp360\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Oracle\Java\JROCKI~1.1\lib\tools.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;D:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;D:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;D:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.dms_11.1.1\dms.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.jmx_11.1.1\jmxframework.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.jmx_11.1.1\jmxspi.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.odl_11.1.1\ojdl.jar;D:\Oracle\Middleware\as_1\common\wlst\lib\adf-share-mbeans-wlst.jar;D:\Oracle\Middleware\as_1\common\wlst\lib\mdswlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\auditwlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\jps-wlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\jrf-wlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\oamap_help.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\oamAuthnProvider.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\ossoiap_help.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\ossoiap.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\sslconfigwlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\wsm-wlst.jar;D:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar;D:\Oracle\Middleware\as_1\opmn\lib\nonj2eembeans.jar;D:\Oracle\Middleware\as_1\jdbc\lib\ojdbc6.jar;D:\Oracle\Middleware\as_1\opmn\lib\optic.jar;D:\Oracle\Middleware\as_1\opmn\lib\iasprovision.jar;D:\Oracle\Middleware\as_1\common\wlst\lib\adf-share-mbeans-wlst.jar;D:\Oracle\Middleware\as_1\common\wlst\lib\mdswlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\auditwlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\jps-wlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\jrf-wlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\oamap_help.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\oamAuthnProvider.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\ossoiap_help.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\ossoiap.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\sslconfigwlst.jar;D:\Oracle\Middleware\as_1\common\wlst\resources\wsm-wlst.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.adf.share_11.1.1\commons-el.jar;D:\Oracle\Middleware\as_1\jlib\dfc.jar;D:\Oracle\Middleware\as_1\dvt\lib\dvt-jclient.jar;D:\Oracle\Middleware\as_1\dvt\lib\dvt-utils.jar;D:\Oracle\Middleware\oracle_common\jlib\ewt3.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.iau_11.1.1\fmw_audit.jar;D:\Oracle\Middleware\as_1\oui\jlib\http_client.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.idm_11.1.1\identitystore.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.idm_11.1.1\identityutils.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.jps_11.1.1\jaccprovider.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.jps_11.1.1\jacc-spi.jar;D:\Oracle\Middleware\as_1\ord\jlib\jai_codec.jar;D:\Oracle\Middleware\as_1\ord\jlib\jai_core.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.oc4j-obsolete_11.1.1\jazn.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.oc4j-obsolete_11.1.1\jazncore.jar;D:\Oracle\Middleware\oracle_common\jlib\jewt4.jar;D:\Oracle\Middleware\as_1\jlib\jta.jar;D:\Oracle\Middleware\oracle_common\modules\oracle.ldap_11.1.1\ldapjclnt11.jar;D:\Oracle\Middleware\as_1\lib\mail.jar;D:\Oracle\Middleware\as_1\jlib\netcfg.jar;D:\Oracle\Middleware\as_1\jlib\oracle_ice.jar;D:\Oracle\Middleware\oracle_common\jlib\share.jar;D:\Oracle\Middleware\as_1\jlib\zrclient.jar;D:\Oracle\Middleware\as_1\reports\jlib\aolj.jar;D:\Oracle\Middleware\as_1\reports\jlib\confmbean.jar;D:\Oracle\Middleware\as_1\reports\jlib\runtimembean.jar;D:\Oracle\Middleware\as_1\reports\jlib\rwadmin.jar;D:\Oracle\Middleware\as_1\reports\jlib\rwenv.jar;D:\Oracle\Middleware\as_1\reports\jlib\rwrun.jar;D:\Oracle\Middleware\as_1\reports\jlib\rwxdo.jar;D:\Oracle\Middleware\as_1\jlib\rts2.jar;;D:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\commons-cli-1.1.jar;D:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    java.class.version = 50.0
    java.endorsed.dirs = D:\Oracle\Java\JROCKI~1.1\jre\lib\endorsed
    java.ext.dirs = D:\Oracle\Middleware\as_1\jdk\jre\lib\ext
    java.home = D:\Oracle\Java\JROCKI~1.1\jre
    java.io.tmpdir = C:\Windows\TEMP\
    java.library.path = D:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;D:\Oracle\Java\JROCKI~1.1\jre\bin;D:\Oracle\Java\JROCKI~1.1\bin;D:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8;D:\Oracle\Middleware\as_1\bin;D:\app\Administrateur\product\11.2.0\dbhome_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;D:\Oracle\Middleware\as_1\opmn\bin;D:\Oracle\Middleware\as_1\opmn\lib;D:\Oracle\Middleware\as_1\perl\bin;
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = oracle.mds.net.protocol|weblogic.net
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.6.0_24-b07
    java.security.policy = D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    java.vendor = Oracle Corporation
    java.vendor.url = http://www.oracle.com/
    java.vendor.url.bug = http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version = 1.6.0_24
    java.vm.info = compiled mode
    java.vm.name = Oracle JRockit(R)
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Sun Microsystems Inc.
    java.vm.specification.version = 1.0
    java.vm.vendor = Oracle Corporation
    java.vm.vendor.url = http://www.oracle.com/
    java.vm.vendor.url.bug = http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version = R28.1.3-11-141760-1.6.0_24-20110301-1430-windows-x86_64
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
    jrf.version = 11.1.1
    jrockit.optfile = D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt
    kernel.download.enabled = false
    oracle.core.ojdl.logging.applicationcontextprovider = oracle.core.ojdl.logging.WlsApplicationContextImpl
    oracle.core.ojdl.logging.componentId = WLS_REPORTS
    oracle.core.ojdl.logging.usercontextprovider = oracle.core.ojdl.logging.WlsUserContextImpl
    oracle.deployed.app.dir = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1\servers\WLS_REPORTS\tmp\_WL_user
    oracle.deployed.app.ext = \-
    oracle.domain.config.dir = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1\config\FMWCON~1
    oracle.home = D:\Oracle\Middleware\as_1
    oracle.instance = D:\Oracle\Middleware\asinst_1
    oracle.security.jps.config = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1\config\fmwconfig\jps-config.xml
    oracle.server.config.dir = D:\Oracle\MIDDLE~1\USER_P~1\domains\CLASSI~1\config\FMWCON~1\servers\WLS_REPORTS
    org.apache.commons.logging.Log = org.apache.commons.logging.impl.Jdk14Logger
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.xml.sax.driver = weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
    os.arch = amd64
    os.name = Windows Server 2008 R2
    os.version = 6.1
    path.separator = ;
    platform.home = D:\Oracle\MIDDLE~1\WLSERV~1.3
    sun.arch.data.model = 64
    sun.boot.class.path = D:\Oracle\Java\JROCKI~1.1\jre\lib\resources.jar;D:\Oracle\Java\JROCKI~1.1\jre\lib\rt.jar;D:\Oracle\Java\JROCKI~1.1\jre\lib\sunrsasign.jar;D:\Oracle\Java\JROCKI~1.1\jre\lib\jsse.jar;D:\Oracle\Java\JROCKI~1.1\jre\lib\jce.jar;D:\Oracle\Java\JROCKI~1.1\jre\lib\charsets.jar;D:\Oracle\Java\JROCKI~1.1\jre\classes
    sun.boot.library.path = D:\Oracle\Java\JROCKI~1.1\jre\bin
    sun.cpu.endian = little
    sun.cpu.isalist = amd64
    sun.desktop = windows
    sun.io.unicode.encoding = UnicodeLittle
    sun.jnu.encoding = Cp1252
    sun.management.compiler = Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level = Service Pack 1
    user.country = FR
    user.dir = D:\Oracle\Middleware\user_projects\domains\ClassicDomain
    user.home = C:\
    user.language = fr
    user.name = RAB-SGE-APP03$
    user.timezone = Africa/Casablanca
    vde.home = D:\Oracle\Middleware\user_projects\domains\ClassicDomain\servers\WLS_REPORTS\data\ldap
    wc.oracle.home = D:\Oracle\Middleware\as_1
    weblogic.Name = WLS_REPORTS
    weblogic.ProductionModeEnabled = true
    weblogic.alternateTypesDirectory = D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,D:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1
    weblogic.classloader.preprocessor = weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.ext.dirs = D:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sysext_manifest_classpath;D:\Oracle\MIDDLE~1\patch_ocp360\profiles\default\sysext_manifest_classpath
    weblogic.home = D:\Oracle\MIDDLE~1\WLSERV~1.3\server
    weblogic.jdbc.remoteEnabled = false
    weblogic.management.discover = false
    weblogic.management.server = http://rab-sge-app03.Siege.mci.ma:7001
    weblogic.management.startmode = WinSvc
    wls.home = D:\Oracle\MIDDLE~1\WLSERV~1.3\server
    wlw.iterativeDev = false
    wlw.logErrorsToConsole = false
    wlw.testConsole = false
    ####<11 oct. 2012 12 h 20 WET> <Error> <HTTP> <rab-sge-app03> <WLS_REPORTS> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1349958013763> <BEA-101020> <[ServletContext@11995096[app:reports module:/reports path:/reports spec-version:2.5 version:11.1.1.2.0]] Servlet failed with Exception
    java.lang.IllegalStateException: strict servlet API: cannot call getWriter() after getOutputStream()
         at weblogic.servlet.internal.ServletResponseImpl.getWriter(ServletResponseImpl.java:307)
         at oracle.reports.rwclient.RWWriter.print(RWWriter.java:107)
         at oracle.reports.rwclient.RWWriter.printErrorMsg(RWWriter.java:167)
         at oracle.reports.rwclient.RWClient.handleException(RWClient.java:1472)
         at oracle.reports.rwclient.RWClient.handleException(RWClient.java:1335)
         at oracle.reports.rwclient.RWClient.processRequest(RWClient.java:2017)
         at oracle.reports.rwclient.RWClient.doPost(RWClient.java:784)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<11 oct. 2012 12 h 20 WET> <Notice> <Diagnostics> <rab-sge-app03> <WLS_REPORTS> <[STANDBY] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1349958013795> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'WLS_REPORTS' has triggered at 11 oct. 2012 12 h 20 WET. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = 11 oct. 2012 12 h 20 WET SERVER = WLS_REPORTS MESSAGE = [ServletContext@11995096[app:reports module:/reports path:/reports spec-version:2.5 version:11.1.1.2.0]] Servlet failed with Exception
    java.lang.IllegalStateException: strict servlet API: cannot call getWriter() after getOutputStream()
         at weblogic.servlet.internal.ServletResponseImpl.getWriter(ServletResponseImpl.java:307)
         at oracle.reports.rwclient.RWWriter.print(RWWriter.java:107)
         at oracle.reports.rwclient.RWWriter.printErrorMsg(RWWriter.java:167)
         at oracle.reports.rwclient.RWClient.handleException(RWClient.java:1472)
         at oracle.reports.rwclient.RWClient.handleException(RWClient.java:1335)
         at oracle.reports.rwclient.RWClient.processRequest(RWClient.java:2017)
         at oracle.reports.rwclient.RWClient.doPost(RWClient.java:784)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = rab-sge-app03 TXID = CONTEXTID = TIMESTAMP = 1349958013763
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    >
    ####<11 oct. 2012 12 h 20 WET> <Alert> <Diagnostics> <rab-sge-app03> <WLS_REPORTS> <oracle.dfw.impl.incident.DiagnosticsDataExtractorImpl - Incident Dump Executor (created: Thu Oct 11 12:20:14 WET 2012)> <<WLS Kernel>> <> <> <1349958015013> <BEA-320016> <Creating diagnostic image in d:\oracle\middleware\user_projects\domains\classicdomain\servers\wls_reports\adr\diag\ofm\classicdomain\wls_reports\incident\incdir_24 with a lockout minute period of 1.>
    Thanks for your help.

    There is an utility for make this kind of changes, that you may try.
    First go to C:\Windows\system32\drivers\et and open with notepad the hosts file and add a line like*ip hostname.domainname hostname*
    Go to *%ORACLE_HOME%/chgip/scripts/*
    and run chgiphost.sh -mid in a console. It will prompt for new hostname and old hostname, you have to use hostname.domainname.
    I dont know if this may work for you problem, but when you make this kind of changes, you have to run the utility.
    Regards.

  • IPod - BMW Connector - Mine just stopped working???

    My factory BMW/Ipod connector has worked perfectly up until last week (over 1yr). I don't recall updating any software on either my ipod or my itunes software recently.
    It just stopped working. When it is plugged into the connector in my vehicle, it is recognizing the power source as it is charging the ipod, however my car won't recognize the ipod anymore.
    If anyone has any suggestions on troubleshooting or history of the same thing happening, I would appreciate it!
    Thanks!

    The same thing happened to me. I have a 40G click wheel model, and it suddenly stopped working. I took it in to MBW, and they said it was my Ipod. But the Ipod works in every other way. I also called BMW, but no help there either. So I tried my daughters 10G dock connector Ipod, and it works! So, I went on ebay and bought a 20G dock connector Ipod, and use it only in my car. Not a great solution, as BMW and Apple should work out this bug. But until then, I will use my backup Ipod, as it is only solution I could come up with. Hopefully it does not also stop working some day!!

  • Itunes wont open and gives me a message saying "Itunes has stopped working".  What can I do to fix this?

    I use windows vista and I have upgraded my itunes.  Now when I open it, it gives me a message saying "itunes has stopped working"  and then gives me a message saying it will notify me for a solution.  What can I do to fix this so it can open and not give me any more problems???

    First you can try;
    Try restarting PC and run itunes again!
    If error again than perform clean instal of itunes (uninstal first and than instal again)!

  • Each time I try to synch photos from my Windows 7 PC to my iPad2, iTunes stops working, and the error report says Problem Event Name:     APPCRASH   Application Name:     iTunes.exe   Application Version:     10.3.1.55   Application Timestamp:     4deec35

    Each time I try to synch photos from my Windows7 PC to my iPad2, iTunes stops working and the error message is:
    Problem Event Name:                          APPCRASH
      Application Name:                             iTunes.exe
      Application Version:                           10.3.1.55
      Application Timestamp:                    4deec351
      Fault Module Name:                          ntdll.dll
      Fault Module Version:                        6.1.7601.17514
      Fault Module Timestamp:                 4ce7ba58
      Exception Code:                                  c0000005
      Exception Offset:                                0002e3fb
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    I reloaded iTunes 10 (64 bit) successfully, but the problem remains the same.
    Any suggestions?

    I looked in the folder from which I want to synch photos, but there is no such thing as an "ipod photo cache" in that folder, or sub-folders, as suggested in the link which you were nice enough to provide.
    I have also tried removing photos from my iPad2 Photos App, and "iTunes has stopped working" shows up  again as soon as I click on the "Synch photos from" button.

  • Since I installed a printer software Satellite L300 has stopped working

    Hello there!
    I'm new here so not really sure if I'm posting in the right place. Mods, please feel free to move to the relevant section, thank you.
    OK I have a Toshiba Satellite L300 Laptop and ever since I installed a printer software on Wednesday night, my laptop has suddenly stopped working!
    Ever since Thursday night, I have been trying to get it working but I'm faced with this message:
    when i load it up it goes to Windows error recovery:
    'windows has failed to start.a recent hardware or software change might be the cause
    if windows files have been damaged or configured incorrectly,startup repair can help diagnose and fix the problem.if power was interrupted during startup,choose start windows normally'
    then it gives two options: Launch startup repair (recomended)
    start windows normally
    ==========
    -so i click launch startup repair (reccomended)
    -then a scren loads up called 'system recovery options'.. it says: select an operating system to repair and click next.only windows vista operating systems are listed and can be repaired
    if you do not see your operating system listed, click load drivers to load drivers for your hard disks'.....
    but nothing comes up so i click load drivers and it just gives me loads of random folders...and i haven't a clue which ones to load
    ========
    5 years ago Report Abuse
    Additional Details
    so i just click 'next'
    ========
    then i have 5 options:
    -startup repair
    -system restore
    -windows complete pc restore
    -windows memory diagnostic tool
    -command prompt
    ==========
    startup repair says it cannot manually fix any problems
    -system restore just says your computer is in a limited state and performing this action cannot be changed...but there is no option to do so
    -windows comple pc restore says i need to insert a backup disk which I dont have
    windows memory diagnostics tool says that windows is preventing this
    ============
    but on the system resotre it tells me to type something like: rstrui.exe /OFFLINE:C:\Windows
    but i don't know where...i typed it in the command prompt but don't understand how to use it
    =========
    i also tried to click start windows normally but it won't work

    If the problem is installed software, start notebook in safe mode and try to start system restore from there.
    Please let me know which options are available. Can you roll back OS few days back?
    Are some restore points listed there?

  • Mozalloc.dll A firefox plug in container has stopped working. I can't get firefox to work for more than 2 mins. before crashing. How do I make this stop?

    AdapterDeviceID: 0x9712
    AdapterDriverVersion: 8.861.1.2000
    AdapterSubsysID: 164c103c
    AdapterVendorID: 0x1002
    Add-ons: %7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:33.1.1
    AvailablePageFile: 13967405056
    AvailablePhysicalMemory: 6222434304
    AvailableVirtualMemory: 3783245824
    BIOS_Manufacturer: Hewlett-Packard
    BlockedDllList:
    BreakpadReserveAddress: 46661632
    BreakpadReserveSize: 41943040
    BuildID: 20141113143407
    CrashTime: 1417153956
    EMCheckCompatibility: true
    EventLoopNestingLevel: 1
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1416895140
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x9712, AdapterSubsysID: 164c103c, AdapterDriverVersion: 8.861.1.2000
    D2D? D2D+ DWrite? DWrite+ D3D11 Layers? D3D11 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 175
    StartupTime: 1417153798
    SystemMemoryUsePercentage: 25
    Theme: classic/1.0
    Throttleable: 1
    TotalPageFile: 16630353920
    TotalPhysicalMemory: 8316153856
    TotalVirtualMemory: 4294836224
    URL: https://support.mozilla.org/en-US/questions/new/desktop/fix-problems/form?search=mozalloc.dll&step=aaq-question
    Vendor: Mozilla
    Version: 33.1.1
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    useragent_locale: en-US
    This report also contains technical information about the state of the application when it crashed.
    AND:
    A plugin container for firefox has stopped working.
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: plugin-container.exe
    Application Version: 33.1.1.5430
    Application Timestamp: 54656826
    Fault Module Name: mozalloc.dll
    Fault Module Version: 33.1.1.5430
    Fault Module Timestamp: 54654321
    Exception Code: 80000003
    Exception Offset: 00001425
    OS Version: 6.1.7600.2.0.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

    Try creating a new Profile by following the steps from [[Managing Profiles]] [[Troubleshooting extensions and themes]] and also [[The Adobe Flash plugin has crashed]]

  • HT1689 I can reach the iTunes Store from my iPod Touch, but it will not open on my PC running Windows 7.  Message shows that iTunes has stopped working.  This happens every time.  I have updated iTunes Software.  Will not solve the problem.  What is wrong

    I have uninstalled iTunes several times and reinstalled it on my PC running Window 7 with all updated loaded.  When I click on the iTunes Store Box, Nothing happens except for a message that reads:
              iTunes has stopped working.
    The following items give me a choice, but no answer comes up.  The computer will shut down the website.
              "Check online for a solution and close the program"
              "Close the program."
    There is an item below the box that is selectable for View problem details.  When clicked a long list of items show up.  I have listed some of the problems as written, but I do not understand them.  I know the iTunes Store has been available on earlier versions of of iTunes but is not on this version.  How can we go back and download an earlier version of iTunes?
         Here are some of the Problem Details:
         "Problem signature:  APPCRASH
         Application Name:     iTunes.exe
         Application Version:  11.0.1.12
         Application Timestamp:  50c8fc7e"

    I had this exact same problem.  I found this fix and it worked for me. 
    Step 1:
    Browse to C:\Program Files (x86)\Common Files\Apple\Apple Application Support and copy the filen named QTMovieWin.dll. 
    Step 2:
    Browse and past that file into C:\Program Files (x86)\iTunes.
    Hope this helps you.  I wish I could remember where I saw this originally so I could thank them.
    Good Luck.
    Anthony

  • Can't get itunes.  I get the following message when I click on either the shortcut or the program.  It says ITunes has stopped working and I can either check on line for a solution and close the program or just close the program.

    When I click on the itunes shortcut or the program  I get the following message:
    ITunes has stopped working.  My two options are:  Windows can check on line for a solution to the problem or close the program. 
    It seems that my entire library is not there.  If I sync my ipod will it add it back into my library on the computer? 
    I've even tried installing again and nothing works.  Tried the "repair" and it says that ITunes is loaded but I stil get the above error when I try to open the program.
    Thanks

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

Maybe you are looking for