Oracle State Session Store throws an Unhandled Exception with Xml

I wish to use the Oracle.Net Session Store to store a value to session. The value or object if you prefer is marked as serializable in order to be placed within the store.
Unfortunately, when running the code I get an unhandled exception error being displayed to the screen. The code itself does not fail at any point in debug. The actual error message in full is "An unhandled exception occurred 'Type 'System.Xml.XmlDocument' in Assembley 'System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable"
Now, we have xml fields in our classes, and we have tried all sorts things, but I would like to know whether there is a far simpler way of saving xml documents to session when using Oracle.Net Session Store. We have also tried saving sessions using the ASP.Net State Server and hit exactly the same error.
Does anyone have any good ideas/solutions?

Hi Muthuraja,
The warning in error log is caused by the error you mentioned above. Based on my search, the error message can be caused by various reasons.
To troubleshooting the issue, please refer to the following steps:
Check the "Idle Time-out" option of the application pool, if its value is not zero, set it to a larger integer value such as 120.
Check the "Virtual Memory Limit" option of the application tool, if its value is not zero, set it to 0 instead.
Set the "Maximum Worker Processes" option of the application tool to 1.
In the web.config of the Web Application, set the “cookieless” to “true” like below:
<sessionState mode="InProc" cookieless="true" timeout="120"/>
Modify the httpRuntime settings like below:
<httpRuntime maxRequestLength="20000" executionTimeout="600"/>
Reference:
sessionState Element
httpRuntime Element
AspNetSessionExpiredException
If you have any more questions, please feel free to ask.
Thanks,
Wendy Fu
If you have any feedback on our support, please click
here.

Similar Messages

  • Ai::UnicodeString.as_Platform throwing Unhandled exception

    Hi
    I'm trying to read layer titles from an AI file using the following code, but the application keeps on throwing an Unhandled exception Access violation reading location error.
    Here's the code. This code populates a list box with the layers in the AI file, the line with throws an error is in bold.
         ADMItemRef objLayersLB = sADMDialog->GetItem(dlg, kLayersListBox);
        ADMListRef objLayersListRef = sADMItem->GetList(objLayersLB);
        long count = 0;
        int intLayerIndex;
        int intTempSize;
        AILayerHandle currentLayer;
        ai::UnicodeString layerTitle;
        //Set the list box to be multi select
        sADMItem->SetItemStyle(objLayersLB, kADMMultiSelectListBoxStyle);
        // add each layer to the list
        sAILayer->CountLayers (&count);
        //Firstly we need to clear the list
        while(sADMList->NumberOfEntries(objLayersListRef)>0)
            sADMList->RemoveEntry(objLayersListRef, 0); //Remove the first entry
        for (intLayerIndex = 0; intLayerIndex < count; intLayerIndex++)
            IADMEntry objListEntry(sADMList->InsertEntry(objLayersListRef, intLayerIndex));
            sAILayer->GetNthLayer (intLayerIndex, &currentLayer);
            sAILayer->GetLayerTitle(currentLayer, layerTitle);
            // calling this function with NULL as the second param gets you the length of the name
            char buffer[255];
            char * temp = &buffer[0];
            intTempSize = layerTitle.as_Platform(temp, NULL); //error thrown on this call
            // using the above we can make sure we only copy the correct num of chars
            //layerTitle.as_Platform(temp, intTempSize);
            objListEntry.SetID(intLayerIndex);
            objListEntry.SetText(temp);
    This code works correctly against the CS4 SDK, but not against the CS3 SDK.
    Is the ai::UnicodeString a valid parameter type for the CS3 SDK; I've seen some examples of char arrays being passed in, however I've not been able to get that working as it expects a UnicodeString type.
    This is the error that is thrown after executing that line of code:
    Unhandled exception at 0x5e887a5e in Illustrator.exe: 0xC0000005: Access violation reading location 0x5e887a5e.
    The error is thown if I use the CS3 SDK compliled plug-in against Illustrator CS3 and CS4, however the CS4 SDK compiled plug-in works without error against Illustrator CS4 (it does not load at all against Illustrator CS3 which is understandable).
    Any help would be appreciated.
    Thank you.

    Hi
    After hours of digging about, I finally tracked down the problem. In my aquiring of the suites, i had:
    kAILayerSuite, kAILayerSuiteVersion9, &sAILayer,
    The normal kAILayerSuiteVersion in CS3 SDK refers to kAILayerSuiteVersion10. Seems I was referencing an older suite version. Changing it to:
    kAILayerSuite, kAILayerSuiteVersion, &sAILayer,
    has solved the problem.

  • U201CAn unhandled exception win32 occurred in Xcelsius.exeu201D

    I am working on Reporting tool Xcelsius. I am facing an error whenever I make a click on Manage connection tab it throws an unhandled exception u201CAn unhandled exception win32 occurred in Xcelsius.exeu201D and ask me for debug in Visual Studio and finally the error remains the same.
    Can someone help me?
    Thank you in advance
    Warm Regards,
    Sandeep

    Do you mean that you usr the menu Data->Connections?
    Do you have SQL server 2008 installed?
    This is caused by change introduced by Microsoft in the new version of MFC dlls, 1833.
    This is a known bug that is scheduled to be fixed in the next Fix Pack (FP2).
    To work around the issue, you can do the following:
    find the folder
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.MFC_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_3bf8fa05
    Copy all files from this directory to Xcelsius installation directory.
    If it does not fix the problem, please let me know.
    Margaret

  • MFC CDialog domodal throws unhandled exception in WEC 2013

    Hi,
    We have Smart device MFC based application working fine in WEC 7.
    Now we are porting the Smart device MFC application into WEC 2013 platform(Visual Studio 2012).
    As We did not find smart device project in WEC 2013, We converted smart device project into platform builder subproject.
    We are able to build it for WEC 2013  but when we try to run on the platform application throws unhandled exception
    on calling CDialog::domodal method. 
    I tried to display dialog with CreateDialog API and that is working fine; But only domodal throws exception.
    Let me know where I have gone wrong.
    Thanks in advance,

    Hi Andreas,
    Thank you for marking my reply as the answer, I hope that solved your problem. I'm curious -- what version of Power Query did you install and what operating system are you running? Normally both the Power Query installer and the add-in itself
    has checks to let you know when your Internet Explorer version is not supported, I'm wondering why those checks did not work for you.
    Thanks,
    David

  • Profile.store() throws content Exception

    In a custom code, I am using profile.store(). The sample code in doProcessBeforeOutput look like this:
         Form myForm = this.getForm(); // get the form from DynPage
         profile.setProperty("testid", "101");
         profile.setProperty("title", "Test Component");
         profile.store();
         status = "executed";
         myForm.addRawText("Test component is : " + status);
    And make an iView from the par, now this iView is added to a page 10 time that means a page with 10 iview made from similar par. And the iView property isolation mode can be URL/Embedded.
    Now this page is previewed and first time it show content exception unique key EP_PARENTIDNAME voliated --storing of profile failed. If the page is refreshed the exception doesnt appear and iView work fine.
    The code is deployed on SAP WebAs 6.40 and portal version is SAP EP 6.0 SP 14.
    Please let me know how to solve this problem. Thanks in advance.

    The GUID is an octet string syntax and is described here:
    http://developer.novell.com/document...a/sdk5652.html
    I am not a ,NET guy, but retrieve it into a byte[].
    This link might help:
    http://msdn.microsoft.com/en-us/libr...8VS.80%29.aspx
    -jim
    On 11/4/2009 9:56 AM, mharris1984 wrote:
    >
    > Hi,
    >
    > I'm trying to access a Novell directory using .NET, but whenever I try
    > to access the GUID of a DictionaryEntry instance it throws the following
    > exception:
    >
    > 'System.Runtime.InteropServices.COMException'
    > {"Exception from HRESULT: 0x8000500D"}
    >
    > After some googling there appears to be some posts referring to the
    > same problem, but no solutions. Many of the posts mention that the
    > error is probably caused while attempting to convert the guid into a
    > string format.
    >
    > Has anybody else experienced this or have any suggestions about how I
    > can get around it. I need the guid to key a database so it is important
    > that I find a solution.
    >
    > Many Thanks,
    > Martyn.
    >
    >

  • Building CS4 Virtual App throws Unhandled exception

    I've done a snapshot of CS4 on a VM (no tools installed).
    When I try to build the app I get a Unhandled exception has occurred.
    Exception type "SystemOutofMemory was thrown"
    My VM has 2GB ram. I am using no vmtools on this occasion since I read in
    the forums someone had success with that. It makes no difference with the
    error whether I have vmtools installed or not.
    Thomas

    Thomas,
    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/

  • A question about ROLLBACK and Unhandled Exceptions in stored subprograms

    Hi,
    Oracle version :   Enterprise Edition Release 11.2.0.1.0 - 64bit
                      OS :   Linux Fedora Core 17 (X86_64)
    At chapter 11 of the online PL/SQL Reference, here is what oracle says about Unhandled Exceptions :
    If a stored subprogram exits with an unhandled exception, PL/SQL does not roll back database changes made by the subprogram.
    I tried the following code:
    code
    HOST clear;
    SET SQLBLANKLINES ON;
    ALTER SESSION SET PLSQL_WARNINGS='ENABLE:ALL';
    DROP TABLE tmptab;
    CREATE TABLE tmptab(n NUMBER);
    CREATE OR REPLACE PACKAGE pkg1_pkg
    AUTHID DEFINER
    AS
        MYEXCEPTION EXCEPTION;
        PRAGMA      EXCEPTION_INIT(MYEXCEPTION, -20001);
    END;
    SHOW ERRORS;
    -- This is a subprogram which exists
    -- with an unhandled exception
    CREATE OR REPLACE PROCEDURE mytestProc
    AUTHID DEFINER
    IS  
    BEGIN
        INSERT INTO tmptab(n) VALUES(100);
        -- So this unhandled exception does a ROLLBACK
        -- which cancels the previous INSERT statement
        RAISE pkg1_pkg.MYEXCEPTION;
    END mytestProc;
    SHOW ERRORS;
    BEGIN
        mytestProc();
    END;
    SELECT * FROM tmptab;
    And here is the output
    BEGIN
    ERROR at line 1:
    ORA-20001:
    ORA-06512: at "TRAINING.MYTESTPROC", line 6
    ORA-06512: at line 2
    no rows selected
    The fact that SELECT * FROM tmptab gives: no rows selected indicates that the unhandled exception in the stored subprogram myTestProc did in fact a ROLLBACK for the INSERT statement into the tmptab table.
    So I don't understand why in the documentation it has been mentioned that no ROLLBACK is not done.
    Could anyone kindly make some clarification on this?
    Thanks in advance,
    Regards,
    Dariyoosh

    Hi,
    If a stored subprogram exits with an unhandled exception, PL/SQL does not roll back database changes made by the subprogram.
    What's going on here is that an anonymous block (which is not stored) exits with an unhandled exception, and that does roll back uncommitted transactions.
    I created a procedure to see how many rows are in tmptab:
    CREATE OR REPLACE PROCEDURE tmptab_cnt (in_txt  IN  VARCHAR2)
    AUTHID DEFINER
    AS
         n    PLS_INTEGER;
    BEGIN
         SELECT  COUNT (*)
         INTO    n
         FROM    tmptab;
        dbms_output.put_line (  n
                             || ' rows in tmptab in '
                             || in_txt
    END  tmptab_cnt;
    and called it from your procedure, and also from your anonymous block:
    CREATE OR REPLACE PROCEDURE mytestProc
    AUTHID DEFINER
    IS  
    BEGIN
        INSERT INTO tmptab(n) VALUES(100);
        tmptab_cnt ('mytestProc');
        RAISE pkg1_pkg.MYEXCEPTION;
    END mytestProc;
    SHOW ERRORS;
    BEGIN
        mytestProc();
    EXCEPTION
      WHEN OTHERS THEN
        tmptab_cnt ('anonymous block');
        RAISE;
    END;
    The output from this is:
    Procedure created.
    No errors.
    1 rows in tmptab in mytestProc
    1 rows in tmptab in anonymous block
    BEGIN
    ERROR at line 1:
    ORA-20001:
    ORA-06512: at line 6
    no rows selected
    As you can see, there was 1 row in the table after the procedure returned to the anonymous block.
    Thanks for posting such a clear and complete test script; that really helps.
    How did you format the code, with the green background and the title?

  • 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!!!!!

  • Debugger - unhandled exception trapping?

    3.1.681
    Can someone explain to me how to set up a Debugger trap for any unhandled exception?
    I use Debug | Run | Exception Breakpoint (lit) | Unhandled Exception Throw (lit ) but it doesn't seem to save (When I come back it is unlit again)? Is there something more that needs to be done?
    grin Is was fun looking at the documentation like "Step Over to Step Over the method" and then determining that "Step Over==Step" in other debuggers, and I can't find a "Step Over" ( or Skip ) function? sigh If each new town incorporated makes its own vocabulary, changing definitions while using the same words as another town.... well, I guess that's a really common issue in computer application tools.

    You make me smile! Ok, the terms are confusing. I'm not going to lash anyone with a wet noodle, but hopefully the docs will get better, without any tortellini torture.
    Ok, Step Over does execute the method without stopping (unless it encounters a real breakpoint somewhere). What you want is to NOT execute the method. Ok, we have such a feature (starting with JDev 3.1 I think), but it is only available with OJVM, which hopefully you are using! (Unless you specify -classic or -hotspot in the Java VM Parameters field of the Run/Debug tab in the project properties dialog box, then you are probably using OJVM).
    Click in the editor and place the text cursor on the line that you want to skip to. Don't put the text cursor on the line you want to skip over, but do put it on the line where you want to end up. Then go to the main menu and choose Debug -> Set Next Statement. That will move the execution point of the current thread to the line where the text cursor is, without executing any code.
    If the menu item is grayed, check the following:
    1. You are using ojvm. You can verify this by looking in the message view while you are debugging. The message view shows the command which was used to start your program in debug mode. After the "...\jre\bin\java" part, there should be a -XXdebug. Note that there are two Xs. If -XXdebug is present, it means that you are using OJVM. If you see -classic or -hotspot or -Xdebug (only one X), then you are not using OJVM.
    2. The text cursor in the code editor is on a valid and executable line of java code. Make sure it is not on a comment.
    3. The text cursor is within the same method as the execution point. We don't let you "jump" into a different method.
    Be very careful using this feature. We call it a buyer-beware feature. If you skip over initialization of local variables, you are likely to get into trouble very quickly, especially if the uninitialized variable is not a primitive type. If you skip over code which is "necessary" to the rest of you program, you are going to get into trouble.
    You can also use this feature to repeat the execution of a statement. For example, if you pressed Step Over but you meant to Trace Into, you can put the cursor BACK on the line you wanted to trace into, do Set Next Statement, and then do Trace Into. Again, buyer-beware: if the code you are repeating causes side effects, then it may not be safe to repeat it.
    About the exception breakpoint stuff. The problem arises from mixing old and new debugger architectures, which happened when we started supporting JDK 1.2 (new) and continued to support JDK 1.1 (old). The user interface was mostly written when we only supported JDK 1.1, and the UI basically matched the underlying debugging support. However, the debugging support we have in JDK 1.2 is a little different, so we try our best to match an old user interface to the new underlying debugging support.
    Did you happen to go to Oracle Open World and check out JDev 5, which was shown at the "campground"? With JDev 5, we can all look forward to a better product, where the UI can be re-designed (where necessary) to better match the underlying capabilities.
    Liz
    null

  • Post-form trigger raised unhandled exception

    I have enabled TRANSLATION and ATTACHMENTS menu on my oracle form(form customization).
    but if i click on attachment menu the window opens for attachments but when i am going to close a window it throws an exception as
    **FRM-40735: POST_FORM trigger raised unhandled exception ORA-06502**
    and it is not allowing to close an window i have to terminate application every time.
    what shall i do in this situation ????????

    Hello,
    There is a related known issue for the Qualifications form of Oracle Human Resources -
    PERWSQUA Cannot add Attachments to the Qualification Form - FRM-40735: POST-FORM trigger raised unhandled exception ORA-06502 (Doc ID 1470386.1)
    Reference the solution steps and search on your form name as opposed to the PERWSQUA.
    If still not resolved, please open an SR with the owning application of the form or for Forms Developer.
    Thank you,
    Deborah Bourgeois
    Oracle Customer Support

  • Problem: Stopping cluster due to unhandled exception .. Unable to refresh

    Greetings
    While testing a rolling upgrade of an application that uses Coherence 3.5.2 on 62-jvm cluster hosted on
    11 physical machines, we encountered a situation where after the upgrade was completed, most jvms
    in the system abruptly left the cluster. The physical hosts are running CentOS 5.4, the java used is
    the 64-bit server version 1.6.0_16-b01. The test was run under a scenario that imposed "moderate"
    load, with cpu usage on the physical machines never exceeding 60% busy, network bandwidth never
    exceeding 5%, and with some free physical memory. Swapping did not occur during any time during
    the test. I believe we are using the default tangosol-coherence.xml. We got the error below in
    our coherence.log files on all of the systems, all at about the same time (within 10 milliseconds).
    55 of the jvms left the cluster during the incident. There were 55 copies of the error message in
    the various logs, all nearly identical except for the time and member id.
    My questions include
    - what does the error mean?
    - what could cause it? (I investigated system logs, and found no evidence of the NIC cards
    going off line at the time. Any suggestions about how to look for evidence of broadcast storm?)
    - how can we keep it from happening again?
    Many thanks for your help -
    Mike Murphy
    2011-04-26 17:34:14,629 Coherence Logger@9224544 3.5.2/463 ERROR 2011-04-26 17:34:14.629/1929.311 Oracle Coherence GE
    3.5.2/463 <Error> (thread=PacketListenerN, member=30): Stopping cluster due to unhandled exception: com.tangosol.net.mes
    saging.ConnectionException: Unable to refresh sockets: [UnicastUdpSocket{State=STATE_OPEN, address:port=10.48.88.116:809
    1}, MulticastUdpSocket{State=STATE_OPEN, address:port=224.3.5.2:10013, InterfaceAddress=10.48.88.116, TimeToLive=4}, Tcp
    SocketAccepter{State=STATE_OPEN, ServerSocket=10.48.88.116:8091}]; last failed socket: MulticastUdpSocket{State=STATE_OP
    EN, address:port=224.3.5.2:10013, InterfaceAddress=10.48.88.116, TimeToLive=4}
    at com.tangosol.coherence.component.net.Cluster$SocketManager.refreshSockets(Cluster.CDB:91)
    at com.tangosol.coherence.component.net.Cluster$SocketManager$MulticastUdpSocket.onInterruptedIOException(Cluste
    r.CDB:9)
    at com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:33)
    at com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:4)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onNotify(PacketLis
    tener.CDB:19)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.net.SocketTimeoutException: Receive timed out
    at java.net.PlainDatagramSocketImpl.receive0(Native Method)
    at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:136)
    at java.net.DatagramSocket.receive(DatagramSocket.java:712)
    at com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:20)
    at com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:4)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onNotify(PacketLis
    tener.CDB:19)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)

    Hi Mike,
    It looks like you are having problems with multicast. You can run the multicast test described here
    [http://download.oracle.com/docs/cd/E15357_01/coh.360/e15723/tune_multigramtest.htm]
    which will help in diagnosing the problem

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • Unhandled Exception

    Hi I am getting following error while using Import Wizard... error is coming at the last point ..means after selecting all options..when I click on finish to start the import process it throws an error..can any one suggest any solution ?
    1 processor x Family 15 Model 0 Stepping 0
    Windows 2000 Server (Terminal Server) v5.2 build 3790 (S)
    Physical Total/Avail: 3.669.496 Kb / 2.800.920 Kb
    Temp directory C:\DOCUME1\LOCALS1\Temp\3\ (3 Kb available)
    'Unknown' video card
       1024 x 768 with 65536 colors
    Unhandled Exception
      Code: c0000005
      Description: EXCEPTION_ACCESS_VIOLATION
    Call stack:
    Module  at   0x00400000: E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportWiz.exe  v 11.5.8.1030 [E]
        address: 0x0045a30e
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x00823102
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x77395f82
        address: 0x77395e22
        address: 0x77395ffa
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x0083abda
        address: 0x0083c6dd
        address: 0x0083b27d
        address: 0x0083b31c
        address: 0x0083b385
        address: 0x0083b3c3
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739c2d3
        address: 0x77388c01
        address: 0x77387910
        address: 0x7739fb5b
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x0082331b
        address: 0x00816e03
    Module  at   0x00400000: E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportWiz.exe  v 11.5.8.1030 [E]
        address: 0x00415143
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x008b08d5
        address: 0x0083b27d
        address: 0x0083b31c
        address: 0x0083b385
        address: 0x0083b3c3
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x77530000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll  v 5.82.3790.3959 [E]
        address: 0x7755721d
        address: 0x7755756f
        address: 0x77557713
        address: 0x7754bd8b
        address: 0x7755756f
        address: 0x77557773
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739c2d3
        address: 0x7739c337
    Module  at   0x77530000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll  v 5.82.3790.3959 [E]
        address: 0x77537910
        address: 0x7754390c
        address: 0x7754b074
        address: 0x7754e923
        address: 0x7754ee34
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x77395f82
        address: 0x77395e22
        address: 0x77395ffa
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x0083abda
        address: 0x0083b294
        address: 0x0083b31c
        address: 0x0083b385
        address: 0x0083b3c3
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739c2d3
        address: 0x7739c337
        address: 0x773ace63
        address: 0x773ace1c
        address: 0x773ace0f
        address: 0x773ae713
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x77530000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll  v 5.82.3790.3959 [E]
        address: 0x7755721d
        address: 0x7755756f
        address: 0x77557713
        address: 0x7754af0a
        address: 0x7755756f
        address: 0x77557773
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739ba92
        address: 0x7739bad0
        address: 0x77395d78
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x00823449
    Application:
    6680 "
      current thread 0x3A0
    started: Friday, October 31, 2008 at 13:55 PM
    ends:    Friday, October 31, 2008  at 13:57 PM
      User mode: 750 ms   Kernel mode: 1421 ms
    Loaded modules:
        0x00320000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\thread-vc-mt.dll         v 0.0.0.0
        0x00340000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\file-vc-mt.dll         v 0.0.0.0
        0x00360000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\io-vc-mt.dll         v 0.0.0.0
        0x00370000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ldap_connector.dll         v 11.5.8.826         [English (United States)]
        0x003B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\helper-vc-mt.dll         v 0.0.0.0
        0x003D0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\streaming-vc-mt.dll         v 0.0.0.0
        0x00400000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportWiz.exe         v 11.5.8.1030         [English (United States)]
        0x00590000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\btuc320vc71.dll         v 3.2.0.0         [English (United States)]
        0x006C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\libxml2.dll         v 2.6.19.0         [English (United States)]
        0x00780000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wstkCommon.dll         v 11.5.8.1030         [English (United States)]
        0x00810000        C:\WINDOWS\system32\MFC71U.DLL         v 7.10.3077.0         [English (United States)]
        0x00A10000        C:\Program Files\Citrix\system32\CtxSbxHook.dll         v 4.0.2750.1         [English (United States)]
        0x00AB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\pdflib.dll         v 6.0.3.0         [English (United States)]
        0x01070000        C:\Program Files\Citrix\system32\Twnhook.dll         v 4.0.2750.1         [English (United States)]
        0x011A0000        C:\Program Files\Citrix\system32\wdmaudhook.dll         v 4.0.2198.1         [English (United States)]
        0x012E0000        C:\Program Files\Citrix\system32\cxinjime.dll         v 4.0.2198.1         [English (United States)]
        0x01960000        C:\WINDOWS\system32\MSCTF.dll         v 5.2.3790.3959         [English (United States)]
        0x01CF0000        C:\Program Files\Citrix\system32\tzhook.dll         v 4.0.2750.1         [English (United States)]
        0x01F30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\log_xn_system.dll         v 11.5.8.826         [English (United States)]
        0x023C0000        C:\WINDOWS\system32\ntshrui.dll         v 6.0.3790.3959         [English (United States)]
        0x02730000        C:\WINDOWS\system32\xpsp2res.dll         v 5.2.3790.3959         [English (United States)]
        0x02DD0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\InfoStor.dll         v 11.5.8.1030         [English (United States)]
        0x03650000        c:\windows\assembly\gac\businessobjects.enterprise.sdk\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.sdk.dll         v 11.5.8.1030         [English (United States)]
        0x03690000        c:\windows\assembly\gac\businessobjects.enterprise.sdk\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.sdk.ziplib.netmodule         v 11.5.8.1030         [English (United States)]
        0x036B0000        c:\windows\assembly\gac\crystaldecisions.enterprise.infostore\11.5.3300.0__692fbea5521e1304\crystaldecisions.enterprise.infostore.dll         v 11.5.8.826         [English (United States)]
        0x036E0000        c:\windows\assembly\gac\crystaldecisions.enterprise.framework\11.5.3300.0__692fbea5521e1304\crystaldecisions.enterprise.framework.dll         v 11.5.8.826         [English (United States)]
        0x03910000        c:\windows\assembly\gac\businessobjects.enterprise.sdk\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.sdk.netmodule         v 11.5.8.1030         [English (United States)]
        0x03C00000        c:\windows\assembly\gac\log4net\1.2.9.0__b32731d11ce58905\log4net.dll         v 1.2.9.0         [Language Neutral]
        0x03C90000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.QaaWS\qaaws.dll         v 11.5.8.826         [English (United States)]
        0x03CD0000        C:\WINDOWS\system32\NSLDAPSSL32V50.dll         v 0.0.0.0
        0x03CE0000        C:\WINDOWS\system32\NSLDAP32V50.dll         v 0.0.0.0
        0x03D10000        C:\WINDOWS\system32\NSLDAPPR32V50.dll         v 0.0.0.0
        0x03D20000        C:\WINDOWS\system32\plds4.dll         v 4.1.2.0         [English (United States)]
        0x03D30000        C:\WINDOWS\system32\ssl3.dll         v 3.3.2.0         [English (United States)]
        0x03F50000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Folder\Folder.dll         v 11.5.8.1030         [English (United States)]
        0x04080000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.User\User.dll         v 11.5.8.1030         [English (United States)]
        0x04240000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.UserGroup\UserGroup.dll         v 11.5.8.1030         [English (United States)]
        0x043D0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.AFDashboardPage\AFDashboardPage.dll         v 11.5.8.1030         [English (United States)]
        0x04540000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Publication\Publication.dll         v 11.5.8.1030         [English (United States)]
        0x04740000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.PDF\PDF.dll         v 11.5.8.1030         [English (United States)]
        0x048A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Powerpoint\Powerpoint.dll         v 11.5.8.1030         [English (United States)]
        0x04A20000        C:\WINDOWS\system32\nss3.dll         v 3.3.2.0         [English (United States)]
        0x04AC0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\network-vc-mt.dll         v 0.0.0.0
        0x06BE0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Excel\Excel.dll         v 11.5.8.1030         [English (United States)]
        0x06D40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Flash\Flash.dll         v 11.5.8.1030         [English (United States)]
        0x06EC0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.FullClient\FullClient.dll         v 11.5.8.1030         [English (United States)]
        0x07380000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Agnostic\Agnostic.dll         v 11.5.8.1030         [English (United States)]
        0x074C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Xcelsius\Xcelsius.dll         v 11.5.8.1030         [English (United States)]
        0x07640000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\CrystalEnterprise.Smtp\CrystalEnterprise_SMTP.dll         v 11.5.8.826         [English (United States)]
        0x07710000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Webi\Webi.dll         v 11.5.8.1030         [English (United States)]
        0x07B30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.RTF\RTF.dll         v 11.5.8.1030         [English (United States)]
        0x07C90000        E:\Program Files\Business Objects\common\3.5\bin\datadefmodel.dll         v 11.5.8.826         [English (United States)]
        0x07E40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.XCelsiusDMTemplate\XCelsiusDMTemplate.dll         v 11.5.8.1030         [English (United States)]
        0x080E0000        C:\WINDOWS\system32\stringres115_en.dll         v 11.5.8.1030         [English (United States)]
        0x08180000        C:\WINDOWS\system32\W03A2409.dll         v 5.2.3790.4043         [English (United States)]
        0x10000000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ent6bridge-2-d.dll         v 11.5.8.1030         [English (United States)]
        0x11000000        c:\windows\assembly\gac\businessobjects.enterprise.biar\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.biar.dll         v 11.5.8.1030         [Language Neutral]
        0x12000000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\xerces-c_2_1_0.dll         v 2.1.0.0         [English (United States)]
        0x25910000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.MetaData\MetaDataPlugins.dll         v 11.5.8.826         [English (United States)]
        0x29EA0000        C:\WINDOWS\system32\plc4.dll         v 4.1.2.0         [English (United States)]
        0x30000000        C:\WINDOWS\system32\nspr4.dll         v 4.1.2.0         [English (United States)]
        0x45230000        E:\Program Files\Business Objects\Common\3.5\bin\prompt.dll         v 11.5.8.1030         [English (United States)]
        0x47EB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\importwiz_res_en.dll         v 11.5.8.826         [English (United States)]
        0x48070000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportSDK.dll         v 11.5.8.1030         [English (United States)]
        0x480E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportSDK_res_en.dll         v 11.5.8.826         [English (United States)]
        0x49AA0000        C:\WINDOWS\system32\cxlib-3-1.dll         v 11.5.8.826         [English (United States)]
        0x49C00000        C:\WINDOWS\system32\cxlibw-3-1.dll         v 11.5.8.1029         [English (United States)]
        0x4A800000        C:\WINDOWS\system32\icuuc30.dll         v 3.0.0.0         [Language Neutral]
        0x4A900000        C:\WINDOWS\system32\icuin30.dll         v 3.0.0.0         [Language Neutral]
        0x4AD00000        C:\WINDOWS\system32\icudt30.dll         v 3.0.0.1         [Language Neutral]
        0x51A70000        C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\diasymreader.dll         v 7.10.3052.4         [English (United States)]
        0x53000000        C:\WINDOWS\system32\fssl-1-2-1-2.dll         v 1.2.1.2         [English (United States)]
        0x53120000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cs_tools.dll         v 11.5.8.826         [English (United States)]
        0x531B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ct_xml.dll         v 11.5.8.826         [French (France)]
        0x53390000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cs_helpers.dll         v 11.5.8.826         [English (United States)]
        0x53400000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ct_error.dll         v 11.5.8.826         [French (France)]
        0x53430000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cube.dll         v 11.5.8.1030         [English (United States)]
        0x536D0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\unvtools.dll         v 11.5.8.826         [English (United States)]
        0x537C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\resource_exchange.dll         v 11.5.8.826         [English (United States)]
        0x53A20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ct_serialize.dll         v 11.5.8.826         [French (France)]
        0x53A40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\drv_sec.dll         v 11.5.8.826         [English (United States)]
        0x53A90000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cdzcl.dll         v 11.5.8.826         [French (France)]
        0x53B90000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ctxmlutils.dll         v 11.5.8.826         [French (France)]
        0x53BD0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cplib.dll         v 11.5.8.826         [English (United States)]
        0x53D80000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\bo_storage.dll         v 11.5.8.1030         [English (United States)]
        0x53F60000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cnxsrv.dll         v 11.5.8.1030         [English (United States)]
        0x54110000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\TraceLog.dll         v 11.5.8.826         [English (United States)]
        0x542C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\sessmgr.dll         v 11.5.8.1030         [English (United States)]
        0x54430000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpcoll.dll         v 11.5.8.1030         [French (France)]
        0x544F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\uitools.dll         v 11.5.8.1030         [English (United States)]
        0x546C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\rptdisp.dll         v 11.5.8.1030         [English (United States)]
        0x547A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\drv_res.dll         v 11.5.8.826         [English (United States)]
        0x54810000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wiReposit.dll         v 11.5.8.826         [English (United States)]
        0x54860000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dlg1.dll         v 11.5.8.826         [English (United States)]
        0x548F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\i18n.dll         v 11.5.8.826         [English (United States)]
        0x54960000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\drv_authen.dll         v 11.5.8.826         [English (United States)]
        0x549E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpxml.dll         v 11.5.8.826         [English (United States)]
        0x54AB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\category.dll         v 11.5.8.826         [English (United States)]
        0x54AF0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dlgdll.dll         v 11.5.8.826         [English (United States)]
        0x54CA0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\legacy_kagtux.dll         v 11.5.8.826         [English (United States)]
        0x54D40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\RepAttr.dll         v 11.5.8.826         [English (United States)]
        0x54E30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\boDeploy.dll         v 11.5.8.1030         [English (United States)]
        0x55030000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\BOCP_1252.dll         v 11.5.8.826         [English (United States)]
        0x55060000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpi18n.dll         v 11.5.8.1030         [English (United States)]
        0x55290000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\kquery.dll         v 11.5.8.1030         [English (United States)]
        0x55620000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\msgsrv.dll         v 11.5.8.826         [English (United States)]
        0x55660000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\boconfig.dll         v 11.5.8.826         [English (United States)]
        0x556E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\vartools.dll         v 11.5.8.1030         [English (United States)]
        0x56970000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\FCRepoProxy.dll         v 11.5.8.1030         [English (United States)]
        0x57620000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\repo_proxy.dll         v 11.5.8.1030         [English (United States)]
        0x57880000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wqyconv.dll         v 11.5.8.1030         [English (United States)]
        0x59620000        C:\WINDOWS\system32\libOCAHelperw-3-1.dll         v 11.5.8.1029         [English (United States)]
        0x597C0000        C:\WINDOWS\system32\libOCASecurityw-2-0.dll         v 11.5.8.826         [English (United States)]
        0x598A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\EnterpriseFramework.dll         v 11.5.8.826         [English (United States)]
        0x5A280000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\PluginManager.dll         v 11.5.8.826         [English (United States)]
        0x5A650000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.AppFoundation\AppFoundation.dll         v 11.5.8.826         [English (United States)]
        0x5A6A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Calendar\Calendar.dll         v 11.5.8.1030         [English (United States)]
        0x5A870000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Category\CorporateCategory.dll         v 11.5.8.826         [English (United States)]
        0x5A900000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.CMC\CMC.dll         v 11.5.8.826         [English (United States)]
        0x5A950000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Connection\Connection.dll         v 11.5.8.826         [English (United States)]
        0x5A9A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.Designer\Designer.dll         v 11.5.8.826         [English (United States)]
        0x5A9F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Discussions\Discussions.dll         v 11.5.8.826         [English (United States)]
        0x5AAD0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Event\Event.dll         v 11.5.8.1030         [English (United States)]
        0x5ACB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Favorites_Folder\Favorites_Folder.dll         v 11.5.8.1030         [English (United States)]
        0x5AED0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.LicenseKey\LicenseKey.dll         v 11.5.8.826         [English (United States)]
        0x5AF30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.ObjectPackage\ObjectPackage.dll         v 11.5.8.826         [English (United States)]
        0x5B220000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Report\Report.dll         v 11.5.8.1030         [English (United States)]
        0x5BB20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Server\Server.dll         v 11.5.8.1030         [English (United States)]
        0x5BC60000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.ServerGroup\ServerGroup.dll         v 11.5.8.826         [English (United States)]
        0x5BD20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Shortcut\Shortcut.dll         v 11.5.8.1030         [English (United States)]
        0x5BE30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Txt\Txt.dll         v 11.5.8.1030         [English (United States)]
        0x5C2F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.WebIntelligence\WebIntelligence.dll         v 11.5.8.826         [English (United States)]
        0x5C340000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Word\Word.dll         v 11.5.8.1030         [English (United States)]
        0x5C5E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Hyperlink\Hyperlink.dll         v 11.5.8.1030         [English (United States)]
        0x5C9B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Overload\Overload.dll         v 11.5.8.1030         [English (United States)]
        0x5CAA0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Universe\Universe.dll         v 11.5.8.826         [English (United States)]
        0x5CC30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\PersonalCategory\PersonalCategory.dll         v 11.5.8.1030         [English (United States)]
        0x5CCA0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Inbox\Inbox.dll         v 11.5.8.1030         [English (United States)]
        0x5CE20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.MyInfoView\MyInfoView.dll         v 11.5.8.1030         [English (United States)]
        0x5CFC0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Program\Program.dll         v 11.5.8.1030         [English (United States)]
        0x5D1E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Profile\Profile.dll         v 11.5.8.826         [English (United States)]
        0x5D360000        C:\WINDOWS\system32\MFC71ENU.DLL         v 7.10.3077.0         [English (United States)]
        0x5D8A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\CrystalEnterprise.Ftp\ftp.dll         v 11.5.8.826         [English (United States)]
        0x5D950000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\CrystalEnterprise.DiskUnmanaged\DiskUnmanaged.dll         v 11.5.8.826         [English (United States)]
        0x5DA80000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\Managed\Managed.dll         v 11.5.8.826         [English (United States)]
        0x5E880000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll         v 11.5.8.826         [English (United States)]
        0x5E9B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secLDAP\secldap.dll         v 11.5.8.1030         [English (United States)]
        0x5F120000        C:\WINDOWS\System32\ntlanman.dll         v 5.2.3790.3959         [English (United States)]
        0x5F270000        C:\WINDOWS\system32\hnetcfg.dll         v 5.2.3790.3959         [English (United States)]
        0x5F400000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.Analytics\AFDPlugin.dll         v 11.5.8.1030         [English (United States)]
        0x5F860000        C:\WINDOWS\System32\NETUI1.dll         v 5.2.3790.0         [English (United States)]
        0x5F8A0000        C:\WINDOWS\System32\NETUI0.dll         v 5.2.3790.0         [English (United States)]
        0x60420000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.InfoView\InfoView.dll         v 11.5.8.826         [English (United States)]
        0x606C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Program\Program_res_en.dll         v 11.5.8.826         [English (United States)]
        0x60780000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\security-vc-mt.dll         v 0.0.0.0
        0x60970000        C:\WINDOWS\system32\mslbui.dll         v 5.2.3790.3959         [English (United States)]
        0x61290000        E:\Program Files\Business Objects\common\3.5\bin\rptdefmodel.dll         v 11.5.8.826         [English (United States)]
        0x61C40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Encyclopedia\Encyclopedia.dll         v 11.5.8.826         [English (United States)]
        0x61D30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Encyclopedia\Encyc.dll         v 11.5.8.826         [English (United States)]
        0x61E40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.busobjReporter\busobjReporter.dll         v 11.5.8.826         [English (United States)]
        0x62200000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.ReportConvTool\ReportConvTool.dll         v 11.5.8.826         [English (United States)]
        0x622A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.FullClientAddin\FullClientAddin.dll         v 11.5.8.1030         [English (United States)]
        0x62660000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.FullClientTemplate\FullClientTemplate.dll         v 11.5.8.1030         [English (United States)]
        0x63000000        C:\WINDOWS\system32\etc-1-0-12-4.dll         v 1.0.12.21         [English (United States)]
        0x63520000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\tools.dll         v 11.5.8.1030         [English (United States)]
        0x64000000        C:\WINDOWS\system32\ebus-3-3-2-5.dll         v 3.3.2.24         [English (United States)]
        0x66AF0000        C:\Program Files\Citrix\System32\sehook20.dll         v 4.20.2750.1         [English (United States)]
        0x66F00000        C:\Program Files\Citrix\system32\mmhook.dll         v 4.0.2750.1         [English (United States)]
        0x67230000        C:\Program Files\Citrix\system32\mfaphook.dll         v 4.0.2198.1         [English (United States)]
        0x67EC0000        C:\Program Files\Citrix\system32\cdmprov.dll         v 4.0.2750.1         [English (United States)]
        0x68000000        C:\WINDOWS\system32\rsaenh.dll         v 5.2.3790.3959         [English (United States)]
        0x6BE00000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\it_ifc5_vc71.dll         v 0.0.0.1         [English (United States)]
        0x6C5B0000        C:\Program Files\Citrix\system32\scardhook.dll         v 4.0.2750.1         [English (United States)]
        0x6CA00000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\it_art5_vc71.dll         v 0.0.0.1         [English (United States)]
        0x6D580000        C:\WINDOWS\system32\dbghelp.dll         v 5.2.3790.3959         [English (United States)]
        0x6E220000        C:\Program Files\Citrix\system32\RMProcessLink.dll         v 4.0.0.0         [English (United States)]
        0x71AE0000        C:\WINDOWS\System32\wshtcpip.dll         v 5.2.3790.3959         [English (United States)]
        0x71B20000        C:\WINDOWS\System32\mswsock.dll         v 5.2.3790.4318         [English (United States)]
        0x71B70000        C:\WINDOWS\system32\UxTheme.dll         v 6.0.3790.3959         [English (United States)]
        0x71BB0000        C:\WINDOWS\system32\WSOCK32.dll         v 5.2.3790.0         [English (United States)]
        0x71BD0000        C:\WINDOWS\system32\MPR.dll         v 5.2.3790.3959         [English (United States)]
        0x71BF0000        C:\WINDOWS\system32\WS2HELP.dll         v 5.2.3790.3959         [English (United States)]
        0x71C00000        C:\WINDOWS\system32\WS2_32.dll         v 5.2.3790.3959         [English (United States)]
        0x71C20000        C:\WINDOWS\system32\tsappcmp.dll         v 5.2.3790.3959         [English (United States)]
        0x71C40000        C:\WINDOWS\system32\NETAPI32.dll         v 5.2.3790.4392         [English (United States)]
        0x73070000        C:\WINDOWS\system32\WINSPOOL.DRV         v 5.2.3790.3959         [English (United States)]
        0x745E0000        C:\WINDOWS\system32\msi.dll         v 3.1.4000.3959         [Language Neutral]
        0x75360000        C:\WINDOWS\system32\CRYPTUI.dll         v 5.131.3790.3959         [English (United States)]
        0x75DA0000        C:\WINDOWS\system32\sxs.dll         v 5.2.3790.3959         [English (United States)]
        0x75E60000        C:\WINDOWS\system32\apphelp.dll         v 5.2.3790.3959         [English (United States)]
        0x75E90000        C:\WINDOWS\System32\drprov.dll         v 5.2.3790.3959         [English (United States)]
        0x75EA0000        C:\WINDOWS\System32\davclnt.dll         v 5.2.3790.3959         [English (United States)]
        0x75EB0000        C:\WINDOWS\ ystem32\browseui.dll

    Hi,
    Generally the unhandled exception comes when you don't have rights set on some folder will suggest to go ahead and try with the administrator login on machine also.
    Also it happens because of some user rights on specific inbox or public folders.
    Are you migrating the document from two different versions like from 6.5 to XIR2.
    You need to check on the security rights of the users on folders you are migrating.
    Regards,
    gaurav

  • Tear down of include component context failed due to an unhandled exception

    My Application was developed with JDeveloper 11.1.1.3.0 . one of the page has a panel collection with simple table that fetch the data from a view object.
    filter and sorting are enabled for all columns.
    this page runs correctly on the integrated WLS server and on the standalone WLS of the same Fusion Middleware package on my pc.
    I've then deployed the ear file on two different WLS server with the same version. the panel collection with the table did not displayed, and found the error below in log files.
    Also after that error, the application does not accept any request, and I have to close the browser and start a new session.
    Error Details from the log :
    Module : oracle.adf.view.rich.component.fragment.UIXInclude
    Message: Tear down of include component context failed due to an unhandled exception.
    java.util.NoSuchElementException
    at java.util.ArrayDeque.removeFirst(ArrayDeque.java:251)
    at java.util.ArrayDeque.pop(ArrayDeque.java:480)
    at oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl.popContextChange(ApplicationContextManagerImpl.java:66)
    at oracle.adf.view.rich.component.fragment.UIXInclude.tearDownVisitingContext(UIXInclude.java:206)
    at oracle.adf.view.rich.component.fragment.UIXPageTemplate.tearDownVisitingContext(UIXPageTemplate.java:248)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.encodeEnd(ContextSwitchingComponent.java:157)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2567)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
    at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:220)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2567)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
    at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1071)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1515)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:785)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
    at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
    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:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Thank you Shah,
    No, I did not do that , and I don't understand.
    however, all other pages in the applications works fine, and forms and tables are displayed and working fine.
    could you please explain more ?

  • Oracle portal  session and pl/sql

    Hi all i use portal v.10.1.2.2.0 and i would like to play with a session variable. all i do is
    grant execute on wwsto_api_session to myportal from portal schema. and then i want to do
    l_store := portal.wwsto_api_session.load_session (p_domain, p_sub_domain);
    l_store.set_attribute ('myname', 'name');
    l_store.save_session;
    1) i do not know what is the p_domain, p_sub_domain
    2) when i do wwsto_api_session.get_sub_domain and wwsto_api_session.get_domain i get an error.
    How can i read and write to a variable session in oracle portal? to to like java set session and get session?
    Thank you in Advance,
    Antonis

    [email protected] wrote:
    Hi all i use portal v.10.1.2.2.0 and i would like to play with a session variable. all i do is
    grant execute on wwsto_api_session to myportal from portal schema. and then i want to do
    l_store := portal.wwsto_api_session.load_session (p_domain, p_sub_domain);
    l_store.set_attribute ('myname', 'name');
    l_store.save_session;
    1) i do not know what is the p_domain, p_sub_domain
    2) when i do wwsto_api_session.get_sub_domain and wwsto_api_session.get_domain i get an error."Storage is located by the combination of the domain and subdomain parameters, and the Login session ID.
    If a session store object has not previously been created for this combination of domain, sub-domain, and session ID, then an empty session store object is created and returned. "
    How can i read and write to a variable session in oracle portal? to to like java set session and get session?Hi,
    You may want to see the wwsto_api_session here in [Portal APIs|http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc1012/index.html].
    "Working with the session object
    The general procedure for working with the session object is:
    1. Load the session object, with an appropriate domain and sub-domain combination, using the load_session method.
    2. Manipulate the content of the object using the set_attribute methods, or just access its content using the get_attribute methods.
    3. Force these changes to be saved, using the save_session method.
    Typically this sequence occurs within the scope of one client routine that extracts and/or sets all of the client states. For example:
    declare
    l_store portal30.wwsto_api_session;
    l_date date;
    begin
    l_store := portal30.wwsto_api_session.load_session ('PORTAL', 'TEST');
    l_store.set_attribute ('LAST_ACCESSED', sysdate);
    l_store.set_attribute ('USERNAME', 'SMITH');
    l_store.set_attribute ('COUNRTY_CODE', 1);
    l_store.set_attribute ('LOCATION', 'US');
    l_store.set_attribute ('LAST_LOGGED_ON', sysdate);
    l_store.set_attribute_as_string
    ('OFFICE_LOCATION', 'CALIFORNIA', 'US', 'STRING');
    l_store.save_session;
    end;
    The login session that creates the session storage object is defined by wwctx_api.get_sessionid. "
    ref: wwsto_api_session for Portal 10.1.2
    then, look for the functions for getting attributes as number, varchar2, string or index, etc. in the above link.
    hope that helps!
    AMN

Maybe you are looking for

  • Photoshop CS5 64-bit Crashing due to CoolType.dll

    Spent 30 minutes on the phone with Adobe's fairly useless tech support, who asked me to do all the things I had already tried (delete prefs, turn of Font Preview, rename the scripting support plug-in, turn off OpenGL, etc.) in order to find out why m

  • Odd One Step DVD Burn

    A friend of mine wanted me to make some DVD copies of a couple of his mini dv tapes. Each tape has 2 videos each taken on different days. Instead of using Magic Movie, I opted to burn using One Step. I burned 2 DVDs for each tape and didn't bother to

  • Multiple files, same structure into one message without BPM

    Hi, Is it possible to read multiple files (each with single row) as one message without BPM by some configuration in channel? For example: input files placed simultaneously in input folder: file1: a,b,c file2: f,g,h file3: k,l,m after adapter picks f

  • Printed document is jumbled up gurbish,

    printed document is jumbled up gurbish, not legible. looks like another language. I.e.. bank statement with lots of numeric. Any time I print my bank statements this happens. HP 4215 Office Jet All-In-One

  • Acrobat 3D Triangulation

    Hello, As known does Acrobat 3D triangulate all models captured from CAD Applications. Currently I bumped on the request to suppress that and to remain it as quad structure. Of course I tried a whole bunch of  tickboxes and and pulldowns in many prog