OCCI 10.2.0.3.0 Patch 13 cause crash ntdll.dll on vista 32bit

hi,
I ceated an application using VC++ 2005 and OCCI 10.2.0.3.0 (update patch 13). the application run smoothly on 2000/XP. But if it is run on vista (32bit, tested on several computer), it ocassionally creates crash (not always) when trying to connect to oracle server (also when trying to connect to non existance server, sometimes crash and sometimes successfully displaying time out message),
The crash message is as follows:
Problem Event Name:     APPCRASH
Application Name:     myapp.exe
Application Version:     0.0.0.0
Application Timestamp:     473ad65c
Fault Module Name:     ntdll.dll
Fault Module Version:     6.0.6000.16386
Fault Module Timestamp:     4549bdc9
Exception Code:     c0000005
Exception Offset:     0006278d
OS Version:     6.0.6000.2.0.0.256.6
Locale ID:     1041
Additional Information 1:     97d2
Additional Information 2:     aae4dc92551b959656fcd53b4bc6e928
Additional Information 3:     0701
Additional Information 4:     257a6a00f5b8f65db312588a0172a174
here's the code snippet:
try
     Environment* m_occiEnv;
     Connection* m_occiCon;
     m_occiEnv = Environment::createEnvironment();
     if (m_occiEnv != NULL)
          m_occiCon = m_occiEnv->createConnection(user, pass, constr);
          if (m_occiCon != NULL) return SUCCESS;
catch (SQLException ea)
     m_strLastErr = _T(ea.what());
     return FAILED;
I then tried to upgrade the OCCI using OCCI 11.1.0.7.0 (using the same source code). It also creates random crash but on OraOCIEI11.dll (not ntdll.dll) as follows:
Problem Event Name:     APPCRASH
Application Name:     myapp.exe
Application Version:     0.0.0.0
Application Timestamp:     494c1430
Fault Module Name:     OraOCIEI11.dll
Fault Module Version:     0.0.0.0
Fault Module Timestamp:     48e3389a
Exception Code:     c0000005
Exception Offset:     00103991
OS Version:     6.0.6000.2.0.0.256.6
Locale ID:     1041
Additional Information 1:     298d
Additional Information 2:     d9ff73d6b133e41e5ad025e8ab5a02eb
Additional Information 3:     3eb8
Additional Information 4:     aa3992fb7f26e9ad1e018c76d9dcdb5a
any suggestion?
thank you
Edited by: chn on Dec 19, 2008 3:19 AM

hi again,
I tried to change the createEnvironment into the following:
m_occiEnv = Environment::createEnvironment(Environment::THREADED_MUTEXED);
and somehow, using the latest OCCI 11.1.0.7.0 with the above code, the application seems running well. Tested around 40 times, haven't got any crashed.
When using the OCCI 10.2.0.30 patch 13 with the above code, the application occasionally is still crashed.

Similar Messages

  • IE8 Crash which was caused by ntdll.dll

    Hi all
    I want to create a IE8 (Chinese language),so I do not use ZAV template.
    When I generate the ZAV AP, I try to launch it on Clear XP Sp3 workstation.the AP automatic close about 5 secs. I check the event viewer, an error show "Failed Application iexplore.exe,version 8.0.6001.18702,Failed module ntdll.dll,version 5.1.2600.5512,Error Address 0x0002ceae"
    The error seem popular error when I search from Google.....
    Does the problem have patch or other method to fix it ??
    wyld

    wyld,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Occi GetString causing a exception with ntdll.dll oracle 10g and MS 2005

    hi,
    I am getting an exception with using Visual Studio 2005(VC++8) and occi.h 10g client.
    When I run the release version I get an exception in ntdll.dll.
    The problem is in the getString(). The field in the oracle table is defined as a varchar2(300).
    I am new to oracle occi and need a solution because we cannot migrate to another version of the database.
    These are the solutions I have tried:
    download patches for MS Visual studio
    download patched for oracle 10g client
    Check that the charset it correct for std:string
    I see that others have had the same problem but no one has a solution. If anyone has a solution please email me because I have searched for days!
    Thanks
    Sheryl

    Aloha
    Thank you for your response, I am new to posting, occi and C++. Can I send you the files.
    Sorry didnt read this reply until today.
    The email is [email protected].
    This environment:
    1> windows xp
    2> MS Studio 5 VC++8
    3> OCCI 10.2.0.3.0 (patch 13)libraries for Microsoft Visual C++ 8
    4> I am using the Instant Client
    5> I am using /MD Multithreaded DLL
    6> Charset is oracle::occi::Environment::createEnvironment ("US7ASCII","AL16UTF16",Environment::DEFAULT);
    7> We running the application in release mode and getting this error with a bad memory reference on getString().
    I am getting a memory reference error on the getString(4).
    This is the code that is causing the error
    try
              string istmt ="SELECT FILE_ID,FILES.FTYP_ID,LTRIM(RTRIM(FILEPATH)),LTRIM(RTRIM(FILENAME)),TITLE FROM FILES,FILE_TYPES WHERE FILE_TYPES.EXTN = 'img'AND file_types.ftyp_id = files.ftyp_id AND FILES.HDR_SCAN_DATE IS NULL ORDER BY FILEPATH, FILENAME ";
              ResultSet * set = db->select(istmt);
              if (set == NULL)
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"No file to process occured in : %s ", methodName.c_str());
                   return;
              LogT::Get()->log(Logger::LOG_LEVEL_INFO,"Did select in : %s ", methodName.c_str());     
              while (set->next())
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"Doing a set next in : %s ", methodName.c_str());
                   if (set->isNull(1) || set->isNull(2) || set->isNull(4) || set->isNull(3))
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"a value is null continue in : %s ", methodName.c_str());
                        continue;
                   try {
                        LogT::Get()->log(Logger::LOG_LEVEL_INFO,"About to get string 3 in : %s ", methodName.c_str());
                        std::string test(set->getString(3));
                        fname.assign(test);
                        LogT::Get()->log(Logger::LOG_LEVEL_INFO,"File name: %s in : %s ",fname.c_str(), methodName.c_str());
                   } catch (exception ex9) {     
                        LogT::Get()->log(Logger::LOG_LEVEL_ERROR,"Exception in get string msg: occured in : %s ",ex9.what(), methodName.c_str());
                        continue;
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"getting int 1 in : %s ", methodName.c_str());
                   fid = set->getInt(1);
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"getting string 4 in : %s ", methodName.c_str());
                   fn.assign(set->getString(4));
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"after getting string 4 in : %s ", methodName.c_str());
                   //dont append a slash if not need
                   size_t pos = fname.find_last_of("\\");
                   if(pos != fname.length()-1)
                        fname.append("\\");
                   fname.append(fn);
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"adding %s to map in : %s ",fname.c_str(), methodName.c_str());
                   fnames.insert (std::pair<unsigned int,std::string>(fid,fname));
    //               int ftype = set->getInt(2);
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"got fid:%d, fname:%s fn: %s to map in : %s ",fid,fname.c_str(),fn.c_str(), methodName.c_str());
         catch (SQLException ex)
              LogT::Get()->log(Logger::LOG_LEVEL_ERROR,"Sql Exception code: %d message: %s occured in : %s ",ex.getErrorCode(),ex.getMessage().c_str(), methodName.c_str());
              db->exceptionHandler("SELECT PARAMS",ex.getErrorCode(),ex.getMessage());
              throw;
         catch (exception ex3)
              LogT::Get()->log(Logger::LOG_LEVEL_ERROR,"Exception occured message: %sin : %s ", ex3.what(),methodName.c_str());
              db->exceptionHandler("SELECT PARAMS",1,ex3.what());
              throw;
         catch (...) {
              LogT::Get()->log(Logger::LOG_LEVEL_ERROR,"Error occured in : %s ", methodName.c_str());
    This is the code for the select in occi
    /* Select statement for oracle occi*/
    void * OraDb::select(std::string& sqlStr,std::map<std::string,VALUES,classcomp> & val) {
         string methodName = "OraDb::select";
         ResultSet *selectRset;
         try {
              this->stmt->setSQL(sqlStr);
              this->bind(val);
              selectRset = this->stmt->executeQuery ();
              oracle::occi::Statement::Status res = this->stmt->status();
              while(res != oracle::occi::Statement::RESULT_SET_AVAILABLE) {
                   LogT::Get()->log(Logger::LOG_LEVEL_INFO,"the results set isnt ready");
                   res = this->stmt->status();
         catch (SQLException ex)
              LogT::Get()->log(Logger::LOG_LEVEL_ERROR,"Sql Error in %s code: %d Message:%s",methodName.c_str(),ex.getErrorCode(),ex.getMessage().c_str());
              //Add error to error log                          
              this->exceptionHandler(methodName,ex.getErrorCode(),ex.getMessage());
              throw;
         catch (exception ex3)
              LogT::Get()->log(Logger::LOG_LEVEL_ERROR,"Error in %s Message:%s",methodName.c_str(),ex3.what());
              this->exceptionHandler(methodName,1,ex3.what());
              //Add error to errorlog
              throw;
    return selectRset;
    This is the logs I get
    ParamsTb::selectImgParams
    in method OraDb::select this is the statement:SELECT FILE_ID,FILES.FTYP_ID,LTRIM(RTRIM(FILEPATH)),LTRIM(RTRIM(FILENAME)),TITLE FROM FILES,FILE_TYPES WHERE FILE_TYPES.EXTN = 'img'AND file_types.ftyp_id = files.ftyp_id AND FILES.HDR_SCAN_DATE IS NULL
    Did select in : FilesTb::selectImgFiles
    Doing a set next in : FilesTb::selectImgFiles
    About to get string 3 in : FilesTb::selectImgFiles
    File name: \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\MOST-1_backup\CamIRa\fpa\384-for-MnM\ in : FilesTb::selectImgFiles
    getting int 1 in : FilesTb::selectImgFiles
    getting string 4 in : FilesTb::selectImgFiles
    after getting string 4 in : FilesTb::selectImgFiles
    adding \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\MOST-1_backup\CamIRa\fpa\384-for-MnM\\foeHeaderAirplane.img to map in : FilesTb::selectImgFiles
    got fid:4766408, fname:\\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\MOST-1_backup\CamIRa\fpa\384-for-MnM\\foeHeaderAirplane.img fn: foeHeaderAirplane.img to map in : FilesTb::selectImgFiles
    Doing a set next in : FilesTb::selectImgFiles
    About to get string 3 in : FilesTb::selectImgFiles
    File name: \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\MOST-1_backup\HFDS20080826\384-for-MnM\ in : FilesTb::selectImgFiles
    getting int 1 in : FilesTb::selectImgFiles
    getting string 4 in : FilesTb::selectImgFiles
    after getting string 4 in : FilesTb::selectImgFiles
    adding \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\MOST-1_backup\HFDS20080826\384-for-MnM\\foeHeaderAirplane.img to map in : FilesTb::selectImgFiles
    got fid:4778728, fname:\\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\MOST-1_backup\HFDS20080826\384-for-MnM\\foeHeaderAirplane.img fn: foeHeaderAirplane.img to map in : FilesTb::selectImgFiles
    Doing a set next in : FilesTb::selectImgFiles
    About to get string 3 in : FilesTb::selectImgFiles
    File name: \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\workstations\HFDS2-10-1-0-99\c\WINDOWS\system32\drivers\ in : FilesTb::selectImgFiles
    getting int 1 in : FilesTb::selectImgFiles
    getting string 4 in : FilesTb::selectImgFiles
    after getting string 4 in : FilesTb::selectImgFiles
    adding \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\workstations\HFDS2-10-1-0-99\c\WINDOWS\system32\drivers\\netwlan5.img to map in : FilesTb::selectImgFiles
    got fid:4873869, fname:\\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\workstations\HFDS2-10-1-0-99\c\WINDOWS\system32\drivers\\netwlan5.img fn: netwlan5.img to map in : FilesTb::selectImgFiles
    Doing a set next in : FilesTb::selectImgFiles
    About to get string 3 in : FilesTb::selectImgFiles
    File name: \\e1-stor\Backup Data\Backup Folder Archive (from e1-stor)\workstations\rwolfshagen\c\Resp-C4\ in : FilesTb::selectImgFiles
    getting int 1 in : FilesTb::selectImgFiles
    getting string 4 in : FilesTb::selectImgFiles
    I dumped a few things from last night’s Dr. Watson run, shown below, which may help:
    manifest.txt
    Server=watson.microsoft.com
    UI LCID=1033
    Flags=1672016
    Brand=WINDOWS
    TitleName=ImgHeaderLoader.exe
    DigPidRegPath=HKLM\Software\Microsoft\Windows NT\CurrentVersion\DigitalProductId
    ErrorText=This error occurred on 6/25/2009 at 1:47:02 AM.
    HeaderText=ImgHeaderLoader.exe encountered a problem and needed to close.
    Stage1URL=/StageOne/ImgHeaderLoader_exe/0_0_0_0/ntdll_dll/5_2_3790_4455/0002b67d.htm
    Stage2URL=/dw/stagetwo.asp?szAppName=ImgHeaderLoader.exe&szAppVer=0.0.0.0&szModName=ntdll.dll&szModVer=5.2.3790.4455&offset=0002b67d
    DataFiles=C:\DOCUME~1\ndana\LOCALS~1\Temp\1\WER141d.dir00\ImgHeaderLoader.exe.mdmp|C:\DOCUME~1\ndana\LOCALS~1\Temp\1\WER141d.dir00\appcompat.txt
    Heap=C:\DOCUME~1\ndana\LOCALS~1\Temp\1\WER141d.dir00\ImgHeaderLoader.exe.hdmp
    ErrorSubPath=ImgHeaderLoader.exe\0.0.0.0\ntdll.dll\5.2.3790.4455\0002b67d
    DirectoryDelete=C:\DOCUME~1\ndana\LOCALS~1\Temp\1\WER141d.dir00
    appcompat.txt
    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="ImgHeaderLoader.exe" FILTER="GRABMI_FILTER_PRIVACY">
    <MATCHING_FILE NAME="common.dll" SIZE="6656" CHECKSUM="0xA0D33EDD" MODULE_TYPE="WIN32" PE_CHECKSUM="0x8ADC" LINKER_VERSION="0x0" LINK_DATE="06/25/2009 00:44:47" UPTO_LINK_DATE="06/25/2009 00:44:47" />
    <MATCHING_FILE NAME="FileLoader.exe" SIZE="65536" CHECKSUM="0x15C68C49" MODULE_TYPE="WIN32" PE_CHECKSUM="0x16CC5" LINKER_VERSION="0x0" LINK_DATE="06/23/2009 02:29:33" UPTO_LINK_DATE="06/23/2009 02:29:33" />
    <MATCHING_FILE NAME="FileLoaderOriginal.exe" SIZE="65536" CHECKSUM="0x6672AE23" MODULE_TYPE="WIN32" PE_CHECKSUM="0x17E45" LINKER_VERSION="0x0" LINK_DATE="06/20/2009 03:34:40" UPTO_LINK_DATE="06/20/2009 03:34:40" />
    <MATCHING_FILE NAME="ImgHeaderLoader.exe" SIZE="118784" CHECKSUM="0xBA94D6AE" MODULE_TYPE="WIN32" PE_CHECKSUM="0x20F4B" LINKER_VERSION="0x0" LINK_DATE="06/24/2009 22:42:49" UPTO_LINK_DATE="06/24/2009 22:42:49" />
    <MATCHING_FILE NAME="x.exe" SIZE="65536" CHECKSUM="0x66982AE3" MODULE_TYPE="WIN32" PE_CHECKSUM="0x103FD" LINKER_VERSION="0x0" LINK_DATE="06/18/2009 23:55:27" UPTO_LINK_DATE="06/18/2009 23:55:27" />
    </EXE>
    <EXE NAME="ntdll.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="ntdll.dll" SIZE="774144" CHECKSUM="0x74ACB78F" BIN_FILE_VERSION="5.2.3790.4455" BIN_PRODUCT_VERSION="5.2.3790.4455" PRODUCT_VERSION="5.2.3790.4455" FILE_DESCRIPTION="NT Layer DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.2.3790.4455 (srv03_sp2_gdr.090203-1205)" ORIGINAL_FILENAME="ntdll.dll" INTERNAL_NAME="ntdll.dll" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC2B9D" LINKER_VERSION="0x50002" UPTO_BIN_FILE_VERSION="5.2.3790.4455" UPTO_BIN_PRODUCT_VERSION="5.2.3790.4455" LINK_DATE="02/09/2009 11:02:56" UPTO_LINK_DATE="02/09/2009 11:02:56" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    <EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
    <MATCHING_FILE NAME="kernel32.dll" SIZE="1038336" CHECKSUM="0x7EFD9E0D" BIN_FILE_VERSION="5.2.3790.4480" BIN_PRODUCT_VERSION="5.2.3790.4480" PRODUCT_VERSION="5.2.3790.4480" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.2.3790.4480 (srv03_sp2_gdr.090321-1244)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x101B44" LINKER_VERSION="0x50002" UPTO_BIN_FILE_VERSION="5.2.3790.4480" UPTO_BIN_PRODUCT_VERSION="5.2.3790.4480" LINK_DATE="03/21/2009 17:08:26" UPTO_LINK_DATE="03/21/2009 17:08:26" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    </DATABASE>
    THANKS!!!!!

  • Photoshop CS4 and graphic cards. Can cause crashing?

    Since upgrading to CS4 I seem to have increased crashing.
    Here are my system specs.
    Mac 2 x 2.66 GHz Dual-Core Intel Xeon
    9 GB of Ram
    250 GB internal dedicated scratch disc
    NVDIA GeForce 7300 GT with 256 VRAM
    After having endless techs look at my machine and upgrading everything. I am beginning to suspect the graphics card.
    With OpenGL can a underperforming video card cause crashing in photoshop especially with massive file sizes ( multilayered CMYK poster sized files the can exceed 7 GB)?

    Did you install the 11.0.1 update?
    Is your OS up to date with patches?
    Have you tried disabling OpenGL in preferences to avoid using the GPU/Graphics card?

  • Having problem with svchost.exe/ntdll.dll errors causing GPSVC (Group Policy Client) to crash preventing users from logging into the server.

    Recently (within the past 2 weeks) I have noticed a few of our servers will have problems with the svchost.exe application causing the GPSVC (Group Policy Client) to crash. The only fix at that point is to reboot the server since the GPSVC service is tied
    to svchost.exe and therefore is protected from being manually restarted.
    I noticed the following errors when this occurs:
    Log Name:      Application
    Source:        Application Error
    Date:          7/23/2013 4:35:26 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Server1.xxx.xxx.net
    Description:
    Faulting application name: svchost.exe, version: 6.1.7600.16385, time stamp: 0x4a5bc3c1
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000024
    Fault offset: 0x00000000000cd7d8
    Faulting process id: 0x46c
    Faulting application start time: 0x01ce877f9476ac07
    Faulting application path: C:\Windows\system32\svchost.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: d252d26d-f372-11e2-8ad4-005056ac00e8
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-07-23T08:35:26.000000000Z" />
        <EventRecordID>158950</EventRecordID>
        <Channel>Application</Channel>
        <Computer>AAW19XM2.agency.nwie.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data>svchost.exe</Data>
        <Data>6.1.7600.16385</Data>
        <Data>4a5bc3c1</Data>
        <Data>ntdll.dll</Data>
        <Data>6.1.7601.17725</Data>
        <Data>4ec4aa8e</Data>
        <Data>c0000024</Data>
        <Data>00000000000cd7d8</Data>
        <Data>46c</Data>
        <Data>01ce877f9476ac07</Data>
        <Data>C:\Windows\system32\svchost.exe</Data>
        <Data>C:\Windows\SYSTEM32\ntdll.dll</Data>
        <Data>d252d26d-f372-11e2-8ad4-005056ac00e8</Data>
      </EventData>
    </Event>
    All of our servers are running Server 2008 R2 Enterprise where we use Citrix to deliver desktop sessions to our users, but some are virtual and some are physical. This seemingly impacts our virtual machines more, and our VMs are hosted through VMWare, however,
    about 5 months ago a similar error fired on a non-virtual machine:
    Log Name:      Application
    Source:        Application Error
    Date:          2/27/2013 6:57:58 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      AAW29033
    Description:
    Faulting application name: svchost.exe_gpsvc, version: 6.1.7600.16385, time stamp: 0x4a5bc3c1
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000024
    Fault offset: 0x00000000000cd7d8
    Faulting process id: 0x6c0
    Faulting application start time: 0x01ce14e1af313fd9
    Faulting application path: C:\Windows\system32\svchost.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: ed3d01c4-80d4-11e2-9128-b499baa9e5e8
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-02-27T11:57:58.000000000Z" />
        <EventRecordID>286291</EventRecordID>
        <Channel>Application</Channel>
        <Computer>AAW29033</Computer>
        <Security />
      </System>
      <EventData>
        <Data>svchost.exe_gpsvc</Data>
        <Data>6.1.7600.16385</Data>
        <Data>4a5bc3c1</Data>
        <Data>ntdll.dll</Data>
        <Data>6.1.7601.17725</Data>
        <Data>4ec4aa8e</Data>
        <Data>c0000024</Data>
        <Data>00000000000cd7d8</Data>
        <Data>6c0</Data>
        <Data>01ce14e1af313fd9</Data>
        <Data>C:\Windows\system32\svchost.exe</Data>
        <Data>C:\Windows\SYSTEM32\ntdll.dll</Data>
        <Data>ed3d01c4-80d4-11e2-9128-b499baa9e5e8</Data>
      </EventData>
    </Event>
    I've searched and cannot seem to find any information as to what may be causing this, or even really where to start. Would someone be able to help me identify what might be causing this event, specific with the Exception code: 0xc0000024, which causes
    the Group Policy Client service to stop?

    You still out there looking at things? If so I have an update. The issue hasn't stopped, even though it did seemingly die down for awhile, however, it is now back with a vengeance.
    I am able to force it to happen by killing the svchost process that is hosting GPSVC. If I run gpupdate /force, then logout/login it does get GPSVC running again. Furthermore, if I simply start svchost again via the Task Manager GPSVC starts running again.
    When I access the server remotely with KVM it acts just like it does as if I'm logging into it via Citrix/RDP which for Admin IDs gives an error saying "Failed to connect to a windows service. Windows could not connect to the Group Policy Client service...",
    however, normal user accounts just get a message when logging into the server "The Group Policy Client Service Failed the Logon. Access is denied."
    I haven't opened a case with Microsoft yet, but we about ready to because of the increase in these errors.
    If you have any further suggestions that would be great, otherwise I'll provide an update once I get word back from Microsoft.
    **EDIT -- apparently I mistook the the server's SCM's actions as my own. I was able to successfully crash the GPSVC service by killing the hosting svchost process, however, after I crashed it and let it sit crashed for awhile when I attempted
    to restart either by starting a svchost task, or running gpupdate /force it failed. Either that, or there is a timing issue where if we don't restart the svchost process, or run gpupdate /force quickly enough it won't be able to recover without a reboot.

  • AutoVue viewer caused crash while viewing .XSLX documents.

    We use AutoVue Desktop Deployment Viewer incorporated in our application (using JNI). When viewing XLSX (Microsoft Excel) documents on Windows 8.1 x64 system it caused crash of application. It's reproducible only on Windows 8 (8.1 or Server2012) systems. If we set compatibility mode (Windows 7) then problem isn't reproducible.

    I would recommend you log a ticket with customer support

  • CC 2014 (18.1.0) | Text Field editing causing crashes (Windows)

    Greetings;
    I've noticed lately that when saving files from CC 2014 to a CS6 format - and having those files edited on Mac, in either CS6 or CC - when re-opening those files text fields have been causing crashes on the Windows client. When that same file is opened and text fields are edited on the Mac client, a prompt will just appear stating "Cannot Edit text" - yet it still allows it.
    This has caused multiple issues for our teams as it has created files we're starting to refer to as "mine fields" - as working with the .ai file is like playing Russian roulette with text fields, you never know which one is going to crash the file.
    I would love to work with a team member from Adobe to help find a resolution to the problem, and I'm willing to provide any additional details that might aid in that process.
    Thanks!

    Hello Pureweb,
    Please upload the crashdumps on some file sharing website say Dropbox and share the link with us by sending a mail to "[email protected]". We will analyze the dump and will suggest you the workaround appropriately.
    In parallel, please check that you do not have any 3rd Party plugins installed in it. Please try to remove them one-by-one and see which one causes the crashes or do reverse i.e. remove all the 3rd party plugins. Or Uninstall Ai and check at following location:
    C:\Program Files\Adobe\Adobe Illustrator CC 2014
    Please verify that nothing is left at above location on uninstalling Ai. Then try a fresh install and see if Ai works.
    Also, verify that you have the updated Wacom drivers on your system. This might be an issue with the 3rd party program as well. One of the user who was having a similar issue reported on the Ai forum that one of the 3rd party Stahl's ImageWorx DTG RIP - a program for printing to a Direct To Garment printer was causing the issue. So, you may check if the similar thing is not happening in your case.
    Regards,
    Dhirendra

  • Barn doors transition causes crash

    Dear Community,
    Applied barn doors transition to a project in CS4. Stored that project in 2010.
    Opened the project in CS6 CC - and barn doors caused crashes - so I cleaned off the old and applied replacement barn door transitions in CS6 CC.
    Once the wipe is applied - its fairly stable - sometime crashes sometimes doesn't.
    If I apply a broder colour to the wipe - all ok.
    If I then apply a border thickness - crash every time.
    System;
    Premiere Pro CS6 - 6.0.3 (001 (MC: 264587)) through cloud membership
    Updated and current
    Win 7 Pro - SP1 - 64 Bit
    Source footage SONY EX3 - .mp4 and still image .png's
    No error messages - just crash and need to restart PP CS6
    Try to apply colour and border to a barn door transition causes the error
    This worked before on the smae project when created in CS4
    Not running other software at the time
    NewBlueFX modules installed but not applied to this area of sequence
    i7 - 3.20GHz, 16GB RAM, SSD OS drive, 4 x drive RAID on LSI RAID card, - No I/O hardware
    I am using Are you using Mercury Playback Engine Acceleration and CUDA
    Problem occurs during normal edit - as soon as I start to adjust the barn doors wipe - I don't get to compression
    Thanks
    Dave

    Doies it help anyone that I just received this from the email address; [email protected];
    Hello,
    You have received this email because the content you posted below has been rejected by our moderators.
    Re: Barn doors transition causes crash
    posted Jun 5, 2013 5:15 PM  
    Since the original report earlier today - I now just have to put the timeline scrubber over the barn doors transition and PP CS6 closes without an error message and without saving. The unfortunate part here is there doesn't seem to be any record or log of the crashes to be able to disseminate whats going wrong.
      Barn doors worked in CS4 - and the only change in this project is the re-opening in CS6 CC."
    Question; Did I put something in there that was defammatory, rude, obnoxious, incorrect or un-helpful?
    If anyone here believes I did, I sincerely apologise for the need of moderators to have intervened... and for causing any offence.

  • Photoshop CC Content - Aware Move Tool causes crash

    Does anyone have any ideas why this is happening? Content Aware Move tool causes crash every time so far with tiff and jpegs and its getting frustrating!
    I have Windows 8.1 Pro with 8GB RAM
    NVIDIA GeForce GT 650M Graphics
    Photoshop CC 64 bit

    Thanks for the reply JJMack - I have to be honest, i'm not exactly sure what i'm looking for here!
    Source
    Adobe Photoshop CC 2014
    Summary
    Stopped working
    Date
    06/04/2015 09:45
    Status
    Report sent
    Description
    Faulting Application Path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: Photoshop.exe
    Application Version: 15.2.2.310
    Application Timestamp: 5480338c
    Fault Module Name: FaceDetection.dll
    Fault Module Version: 2.2.6.32411
    Fault Module Timestamp: 52e12400
    Exception Code: c0000005
    Exception Offset: 000000000001704d
    OS Version: 6.3.9600.2.0.0.256.48
    Locale ID: 2057
    Additional Information 1: e87c
    Additional Information 2: e87c816cbb2acbf5e54624fc2b1f98cc
    Additional Information 3: 1879
    Additional Information 4: 1879b998534215d47b0a850e45784427
    Extra information about the problem
    Bucket ID: 2dac81db98a57fddf5997edfd40ba6eb (85993531415)

  • HT5704 Hi, Two recent updates for my iPhone have caused crashes (down the white lead via iTunes).I have "fixed" but not sure of the cause?

    Hi,
    Two recent updates for my iPhone have caused crashes (down the white lead) via iTunes.
    I have "fixed" but I don't know the cause?
    Each time the update does n't complete.
    The download does n't happen.
    The computer & internet connection are good.
    It is as if the Apple server does n't complete?
    The phone stays in recovery mode, until you reset and rebuild in iTunes.
    All software is up to date, but I can't find the cause
    ANY IDEAS?
    Regards,
    P.
    <Email Edited by Host>

    No error messages.
    It just fails to complete the download, so recovery mode is the next step.
    This can be over a period of eight hours or more!
    I have so many (original) Apple USB leads that I would n't know if I have been using the same one (if it was faulty).
    Does this sound like a "common" problem?

  • Why Does 3D Reposse cause crashes and work so slow?

    Why Does 3D Reposse cause crashes and work so slow?   I get the pinwheel of death when I use this feature.  It works at a snails pace.  I liked the 3D Type effects in iIllustrator.  Why couldn't Adobe have added all the Reposse features to Illustrator instead of craming all these new features into Photoshop?
    They're worthless if the program needs an hour to process every selection.

    What are your OS specs, your Video Card and your Preferences > Performance settings?
    Why Does 3D Reposse cause crashes and work so slow?
    My guess would be because it has to create a whole bunch of polygons and your computer-set-up may be insufficient for the task.

  • Firefox causes crash when using Youtube explorer does not have the same effect

    firefox causes crash when using Youtube explorer does not have the same effect

    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • Access violation (0xC0000005) cause crash

    Access violation (0xC0000005) cause crash. The crash report is as blow. It may be caused by the function IMAQ FillHole. How this function crash?
    Who knows why? Thank you!
    #Date: 2014年8月12日 14:21:51
    #OSName: Windows 7 Ultimate 
    #OSVers: 6.1
    #OSBuild: 7600
    #AppName: 
    #Version: 12.0 32-bit
    #AppKind: AppLib
    #AppModDate: 08/12/2014 06:17 GMT
    #LabVIEW Base Address: 0x30000000
    <LVExec>
    {"a":[
    "vi": "D\\VISION_SYSTEM\\build\\MyProgram.exe\\IMAQ FillHole",
    "ctx": "主应用程序实例",
    "type": "subVI"
    "vi": "D\\VISION_SYSTEM\\build\\MyProgram.exe\\ccd2表面2二值化.vi",
    "ctx": "主应用程序实例",
    "type": "subVI"
    </LVExec>
    <DEBUG_OUTPUT>
    2014/8/12 16:48:15.894
    Crash 0x0: Crash caught by NIER
    File Unknown(0) : Crash 0x0: Crash caught by NIER
    minidump id: 6e35643f-8ff2-49e6-bbde-98bac2ffa48a
    ExceptionCode: 0xC0000005$N
    </DEBUG_OUTPUT>
    0x307277B4 - lvrt <unknown> + 0
    0x30727B38 - lvrt <unknown> + 0
    0x7C37FDB4 - MSVCR71 <unknown> + 0
    0x77CA5A74 - ntdll <unknown> + 0
    0x77C8B3C8 - ntdll <unknown> + 0
    0x00000000 - <unknown> <unknown> + 0
    Solved!
    Go to Solution.
    Attachments:
    ccd2表面2二值化.vi ‏21 KB

    Hi,
    please stick with your original thread! Don't create double posts!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Windows xp, minidump, applemtm.sys caused crash

    hi, my mbp just crashed in windows xp.
    remained minidump said, applemtm.sys caused crash...
    ^^ i know this info is too little figure out the problem...
    but, is there anyone faced like this one?
    -------- minidump -----
    ATTEMPTEDSWITCH_FROMDPC (b8)
    A wait operation, attach process, or yield was attempted from a DPC routine.
    This is an illegal operation and the stack track will lead to the offending
    code and original DPC routine.
    Arguments:
    Arg1: 00000000, Original thread which is the cause of the failure
    Arg2: 00000000, New thread
    Arg3: 00000000, Stack address of the original thread
    Arg4: 00000000
    Debugging Details:
    *** Kernel symbols are WRONG. Please fix symbols to do analysis.
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the NT_SYMBOLPATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the NT_SYMBOLPATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    FAULTING_MODULE: 804d9000 nt
    DEBUGFLR_IMAGETIMESTAMP: 47685ec5
    CUSTOMERCRASHCOUNT: 1
    DEFAULTBUCKETID: WRONG_SYMBOLS
    BUGCHECK_STR: 0xB8
    LASTCONTROLTRANSFER: from 80547c4b to 804fbf0e
    STACK_TEXT:
    WARNING: Stack unwind information not available. Following frames may be wrong.
    bacd3c8c 80547c4b 000000b8 ffffffff 00000202 nt+0x22f0e
    bacd3ce4 b7e06569 00000000 00000000 00000000 nt+0x6ec4b
    bacd3d10 b7e4be4a 8a1711d8 00000000 8a451e08 Wdf01000+0x15569
    bacd3d2c b7fcb53b 8a171290 75dc0430 8a23fbc8 Wdf01000+0x5ae4a
    bacd3d4c b7fcb651 75bae3b8 8a00de70 bacd3da8 applemtm+0x53b
    bacd3d5c b7e261b2 760ef150 75dfc680 bacd3d80 applemtm+0x651
    bacd3da8 b7e26253 b7e57a08 8a203978 89f10ea8 Wdf01000+0x351b2
    bacd3dc0 b7dfd5d3 8a00df97 8a203978 00000000 Wdf01000+0x35253
    bacd3ddc b7dfd68d 01f10ea8 8962e450 bacd3e08 Wdf01000+0xc5d3
    bacd3dec 804f280d 8a46c5a8 8a00de70 89f10ea8 Wdf01000+0xc68d
    bacd3e08 804f36b0 8a46c5a8 8a00de70 8962e450 nt+0x1980d
    bacd3e38 b99210d5 8a00de70 88da4980 8a2d3028 nt+0x1a6b0
    bacd3ea0 b9921d47 895bd170 00000000 8a2d37d8 USBPORT+0xa0d5
    bacd3ed0 b9922944 026e6f44 8a2d30e0 8a2d30e0 USBPORT+0xad47
    bacd3f08 b992413a 8a2d3028 80548abc 8a2d3230 USBPORT+0xb944
    bacd3f34 b993224b 8a2d3028 80548abc 8a2d3028 USBPORT+0xd13a
    bacd3f70 b99323c2 8a2d3028 00000001 8a34a834 USBPORT+0x1b24b
    bacd3f8c ba6b8d54 8a2d364c 6b755044 00000000 USBPORT+0x1b3c2
    bacd3fbc 8a34adb2 8a34a310 b993225c bacd3fd0 sptd+0x11d54
    bacd3fc0 8a34a310 b993225c bacd3fd0 80547e6f 0x8a34adb2
    bacd3fc4 b993225c bacd3fd0 80547e6f 8a2d364c 0x8a34a310
    bacd3fc8 bacd3fd0 80547e6f 8a2d364c 8a2d3028 USBPORT+0x1b25c
    bacd3fcc 80547e6f 8a2d364c 8a2d3028 00000000 0xbacd3fd0
    bacd3fd0 8a2d364c 8a2d3028 00000000 00000000 nt+0x6ee6f
    bacd3fd4 8a2d3028 00000000 00000000 b401ff4a 0x8a2d364c
    bacd3fd8 00000000 00000000 b401ff4a 6803fe95 0x8a2d3028
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    applemtm+53b
    b7fcb53b ?? ???
    SYMBOLSTACKINDEX: 4
    SYMBOL_NAME: applemtm+53b
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: applemtm
    IMAGE_NAME: applemtm.sys
    BUCKET_ID: WRONG_SYMBOLS
    Followup: MachineOwner
    ---------

    My MBP crashed with exactly the same dump. The crashes occurred during a StandBy operation (My MBP crashed regularly but not reproducably while trying to stand by/sleep).
    Microsoft (R) Windows Debugger Version 6.9.0003.113 X86
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Documents and Settings\vas\Desktop\Mini070508-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: srvc:symbolshttp://msdl.microsoft.com/download/symbols
    Executable search path is: c:\windows\i386
    Windows XP Kernel Version 2600 (Service Pack 2) MP (2 procs) Free x86 compatible
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 2600.xpspsp2rtm.040803-2158
    Kernel base = 0x804d7000 PsLoadedModuleList = 0x8055c700
    Debug session time: Sat Jul 5 22:53:49.999 2008 (GMT-7)
    System Uptime: 0 days 22:33:47.814
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck B8, {0, 0, 0, 0}
    * WARNING: Unable to verify timestamp for applemtm.sys
    * ERROR: Module load completed but symbols could not be loaded for applemtm.sys
    Probably caused by : applemtm.sys ( applemtm+53b )
    Followup: MachineOwner
    1: kd> !analyze -v
    * Bugcheck Analysis *
    ATTEMPTEDSWITCH_FROMDPC (b8)
    A wait operation, attach process, or yield was attempted from a DPC routine.
    This is an illegal operation and the stack track will lead to the offending
    code and original DPC routine.
    Arguments:
    Arg1: 00000000, Original thread which is the cause of the failure
    Arg2: 00000000, New thread
    Arg3: 00000000, Stack address of the original thread
    Arg4: 00000000
    Debugging Details:
    CUSTOMERCRASHCOUNT: 1
    DEFAULTBUCKETID: DRIVER_FAULT
    BUGCHECK_STR: 0xB8
    PROCESS_NAME: System
    LASTCONTROLTRANSFER: from 80544c3b to 804f9c12
    STACK_TEXT:
    bace7ccc 80544c3b 000000b8 ffffffff 00000202 nt!KeBugCheck+0x14
    bace7cdc 8054498b bace7d24 88d3b418 bab40120 nt!ScPatchFxe+0x46
    bace7cf0 80502b17 88d3b488 88d3b418 804fad6c nt!KiSwapContext+0x2f
    bace7cfc 804fad6c 00000000 00000000 8a19a4b0 nt!KiSwapThread+0x6b
    bace7d24 b7022569 00000000 00000000 00000000 nt!KeWaitForSingleObject+0x1c2
    bace7d50 b7067e4a 8a0c2a30 00000000 8a37efb0 Wdf01000!FxWaitLockInternal::AcquireLock+0x3a
    bace7d6c b939853b 8a0c2ae8 75e65b78 8a19a480 Wdf01000!imp_WdfWaitLockAcquire+0xc9
    WARNING: Stack unwind information not available. Following frames may be wrong.
    bace7d8c b9398651 75c81210 89eee008 bace7de8 applemtm+0x53b
    bace7d9c b70421b2 764c7c80 7652beb8 bace7dc0 applemtm+0x651
    bace7de8 b7042253 b7073a08 89ad4140 89b38378 Wdf01000!FxRequestBase::CompleteSubmittedNoContext+0x63
    bace7e00 b70195d3 89eee12f 89ad4140 00000000 Wdf01000!FxRequestBase::CompleteSubmitted+0x97
    bace7e1c b701968d 01b38378 88a9ed80 bace7e48 Wdf01000!FxIoTarget::RequestCompletionRoutine+0x195
    bace7e2c 804f053f 8a053350 89eee008 89b38378 Wdf01000!FxIoTarget::_RequestCompletionRoutine+0x35
    bace7e48 804f13e2 8a053350 89eee008 88a9ed80 nt!IopUnloadSafeCompletion+0x1d
    bace7e78 b9843ee5 89eee008 892f5ee0 8a25c028 nt!IopfCompleteRequest+0xa2
    bace7ee0 b9844b57 89bdc4a8 00000000 8a25c7d8 USBPORT!USBPORT_CompleteTransfer+0x373
    bace7f10 b9845754 026e6f44 8a25c0e0 8a25c0e0 USBPORT!USBPORT_DoneTransfer+0x137
    bace7f48 b9846f6a 8a25c028 80545aac 8a25c230 USBPORT!USBPORT_FlushDoneTransferList+0x16c
    bace7f74 b9854fb0 8a25c028 80545aac 8a25c028 USBPORT!USBPORT_DpcWorker+0x224
    bace7fb0 b9855128 8a25c028 00000001 89edc578 USBPORT!USBPORT_IsrDpcWorker+0x37e
    bace7fcc 80544e5f 8a25c64c 6b755044 00000000 USBPORT!USBPORT_IsrDpc+0x166
    bace7ff4 805449cb b3f6362c 00000000 00000000 nt!KiRetireDpcList+0x61
    bace7ff8 b3f6362c 00000000 00000000 00000000 nt!KiDispatchInterrupt+0x2b
    805449cb 00000000 00000009 0081850f bb830000 0xb3f6362c
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    applemtm+53b
    b939853b ?? ???
    SYMBOLSTACKINDEX: 7
    SYMBOL_NAME: applemtm+53b
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: applemtm
    IMAGE_NAME: applemtm.sys
    DEBUGFLR_IMAGETIMESTAMP: 47685ec5
    FAILUREBUCKETID: 0xB8_applemtm+53b
    BUCKET_ID: 0xB8_applemtm+53b
    Followup: MachineOwner
    Message was edited by: tourist604

  • Internet Explorer MS04-038 patch causes javascript error in EP5 SP4

    The problem in a nutshell that we are experiencing is that the portal Top Level Navigation returns a 'permission denied' javascript error. This is stemming from Microsoft's Internet Explorer Patch MS04-038 <i>(MS04-038 Cumulative Security Update for Internet Explorer
    This update addresses 8 vulnerabilities in systems running Microsoft Internet Explorer [all supported versions], all of which can allow an attacker to take complete control of the system.  Microsoft has rated this patch as CRITICAL).</i>  We also can't get IE to recognize that the portal is a trusted site.
    Any help would be appreciated!

    It's a known problem, and can cause symptoms besides the one you mention, as described in
    SAP Note 785308. Solutions and work arounds will be documented in this note as soon as they
    are available:
    <http://service.sap.com/~sapidb/012006153200001521102004E.ITF>.
    This Note applies to EP5 and EP6, as well as ITS, BSPs, and Visual Composer.
    The latest advice in the Note is, "do not apply MS Security Hotfix KB834707". Information on
    "MS04-038: Cumulative Security Update for Internet Explorer" available at:
    <http://www.microsoft.com/technet/security/bulletin/MS04-038.mspx>).
    Regards,
    Sean

Maybe you are looking for

  • Move data from one Application to another Application.

    Hi All, I have a requirement to move data from one Application to another Application(we are working on SAP BPC 5.1/7.1 MS version). Can anybody please mention all the possible ways to achieve it. Thanks in advance. Regards Vani

  • Outlook 2013 / Exchange 2013 : Shared mailboxes - Mail stuck in outbox (non-cached), Mail sends but doesn't get received (cached).

    Hello, We are currently experiencing some weird behaviour in Outlook 2013 since we added Shared Mailboxes. When we run Outlook 2013 with cached mode enabled: - I create a new e-mail and send it. - The e-mail goes to the outbox, and get's 'send'. - No

  • Change keyboard configuration for special keys

    Hi guys, I want to change the default behaviour for some special keys when running windows. I want the Cmd (Mac) key to be the Alt (Win) key and the Fn (Mac) key to be the Ctrl (Win) key. Is this possible?

  • SelectOneMenu and commandButtons

    Hi Iam using J2EE 1.4 and jsf1.0. I have the following code <h:selectOneMenu id="groups" value="#{UserBean.selectedGroup}"> <f:selectItems value="#{UserBean.groupsList}"/> </h:selectOneMenu> <h:commandButton id="showGroupMembers" value="Show Members"

  • CMSDK vs. Oracle Files

    Is this correct? 1) starting with version 9.0.3 iFS became two separate offerings; Oracle Files (Which comes with the Oracle Collaboration Suite - OCS) and Oracle Content Managment SDK (CMSDK) which comes with Oracle 9iAS. 2) Oracle Files is a packag