Mscoree.dll

I have an old computer and I just reloaded Window XP Professional, and when I tried to download a program it gave me a "mscoree.dll" error. 
How do I fix the problem?  Which website and download should I do?
Thanks
moosedog

Hi,
The forum supports .Net Framework setup.
>>when I tried to download a program it gave me a "mscoree.dll" error. 
Is the program .Net Framework? If it is, please clarify the version and download it from download center of microsoft.
http://search.microsoft.com/en-us/DownloadResults.aspx?q=.Net+Framework
If not, I think the issue is about the program. Please contact the provider of the program. 
And I will move the thread to off-topic forum. Thanks for your understanding.
Regards.
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • EvaluatingTteststand 4.2.1: Null pointer access violation (error 17502) when attempting to use a mixed-mode std::map / boost shared_ptr class contained in a DLL through an interface from a different DLL

    Hi there.
    I have been working on a test system which will potentially have TestStand at its core, and downloaded/installed the 4.2.1 evaluation. Current details from the information dialog are:
    TestStand Engine version 4.2.1 (4.2.1.83)
    Sequence Editor Verison 4.2.1.83
    The system will drive mobile radio devices using RS232 serial interfaces, usnig a variety of serial protocols (Hayes, and a couple of proprietary binary protocols for other work).
    We already have in existence a soak tester, written in VS2005 with MFC unmanaged DLLs and also managed DLLs, which are mixed up together to provide different aspects of the functionality required for the binary protocols.
    I have created:
    1. a "master wrapper" DLL for the constellation of other DLLs - this offers up a simple C-API interface which I hope TestStand will use. It's called "SerialSessionMgr.dll""
    2. a mixed managed / unmanaged "IJW" (it just works) DLL which wraps up the binary logging protocol control interfaces, which are entirely in managed C++/CLI: the "master wrapper" DLL calls into this through an unmanaged interface to create instances of the CLI-compiled class which interfaces to the underlying managed DLLs imlpementing the logging protocol. This is called "WinTseInterface.dll".
    Before I started evaluating TestStand, I knocked up a test harness using CPPUnit / MFC, with which I was able to test SerialSessionMgr.dll and its' use of WinTseInterface.dll and verify they worked. The harness loads the DLL dynamically at run-time using AfxLoadLibrary() to try to emulate the way TestStand uses it.
    When we open a
    TSE session:
    The SerialSessionManager makes a call to the
    WinTseInterface.dll to "create" a logging instance. The instance is
    created in a std::map which is held by the CWinApp derived class, this map
    contains boost::shared_ptr of the class which works with a managed class. So we
    have a call trace: Client
    app->SerialSessionManager{TseStartSession()}->WinTseInterface{WINTSE_GetWinTseBridge()} - WINTSE_GetWinTseBridge()
    just creates a new instance of the unmanaged class which interfaces through to
    the managed CLI/C++ class beneath, and returns the address to the
    SerialSessionManager, which stores it.
    The SerialSessioManager actually initialises the WinTseBridge using a method of a C++ pure virtual interface class to the class in the std::map in the WinTseInterface DLL
    implements. The initialise call passes miscellaneous details and actually calls
    "gcnew" to create the managed class which interfaces to the
    underlying managed DLLs which implement the logging protocol.
    My logs of the DLL loading as seen in VS2005 debug output are attached this message as PDFs
    While trying to fix this, I have tried:
    Enhancing the WinTseInterface DLL so it manually loads all the other assemblies in the logging system, including the managed portion of WinTseInterface itself (no effect)
    All the different options for the way the C DLL adapter loads and unloads the DLL in the DLL adapter steptype in TestStand
    I've even tried calling directly into the WinTseInterface DLL before trying any SerialSessionManager DLL calls to try to load the WinTseInterface DLL completely beforehand
    and I cannot stop this exception.
    It seems like the object is created in the WinTseInterface DLL OK (I have debugged the creation step which runs for WINTSE_GetWinTseBridge() and the object is created OK) when the SerialSessionManager makes the call, but when it calls the first managed function, which creates the managed object, the DLL is reloaded as managed - I suspect this causes the object to be destroyed or overwritten, and thus the call to initialise bombs with null pointer violation.
    Have I done something obviously wrong, and what other approaches can I take? 
    Does TestStand 4.2.1 have issues with driving DLLs which use managed/unmanaged DLLs beneath them?
    My nuclear option is to throw the WinTseInterface DLL out completely and wrap up the managed C++ CLI code in a new interface, entirely managed, and use the TestStand ".Net" adaptor to drive that, creating my step library to run to that directly. This isn't ideal as I have some co-ordination of the protocols which is implemented in the SerialSessionMgr DLL.
    I hope someone can help. This one's low level, dirty and a stumper to me.
    Many thanks to the NI community. This is my first posting!
    Solved!
    Go to Solution.
    Attachments:
    CPPUnit Test Harness DLL load debug output.pdf ‏18 KB
    TestStand DLL load & crash debug output.pdf ‏43 KB

    Hi there Ray.
    First - many thanks for engaging with this thorny problem. Love the avatar BTW.
    I've been using the C/C++ DLL adapter: the original premise of the Serial Session Manager DLL was to provide a simple C type functional interface, using simple data types, so that TestStand would be able to drive the underlying functionality easily through a single DLL.
    Seeing as you've been kind enough to respond, I should explain the makeup of the DLLs a little more, I think.
    The SerialSessionManager (SSMgr) DLL uses C++ and MFC internally. This is the DLL which TestStand calls into directly through the C/C++ adapter. This DLL does have one odd feature though - because the it uses the Windows Multimedia Timer (implemented in WinMM.dll) I had to artificially create a scenario where it would load the .Net mscoree DLL _before_ it loads WinMM.dll - (http://connect.microsoft.com/VisualStudio/feedback/details/329819/freelibrary-in-the-winmm-dlls-modu...), basically WinMM.dll's init code gets rather upset when .Net DLLs load, which causes the entire executable to be unloaded with subsequent crashes.
    To work around this crash, the SSMgr has a single, completely empty, file which is compiled for CLR, effectively forcing a dependency into the DLL on the .Net subsystems and turning the DLL into a "IJW" binary. The resulting DLL doesn't actually have any executable managed .Net assemblies, but I'm guessing that it does contain enough .Net related stubs and information that when the DLL is loaded, mscoree.dll loads before WinMM.dll - and this means the system doesn't crash.
    Now, on to the WinTseInterface DLL. My initial description of this little software system was done in something of a hurry.
    This DLL is the C++/CLI "IJW" DLL which actually contains managed and unmanaged code. Underneath the WinTseInterface DLL is another system of (this time exclusively C++/CLI) DLL assemblies which implement the TSE protocol interpretation system.
    When the SSMgr DLL needs to start a TSE protocol session, it calls a C-API function in the WinTseInterface which creates a new CWinTseBridge class. Here's the steps in a little more detail:
    SSMgr DLL calls WINTSE_GetWinTseBridge(), passing in the name of the device which needs it (this is used to put the new WinTseBridge into a std::map in the WinTseInterface DLL) - this call runs just fine, and returns the address of the CWinTseBridge C++ object. This is stored in the SSMgr, because the CWinTseBridge class implements a pure virtual interface which is used by the SSMgr as a way of accessing the CWinTseBridge methods. 
    We now use the address from (1) to make a call to CWinTseBridge::Initialise(), passing some basic configuration details.
    I've run VS2005 debug on the Sequence Editor when running the test, and done F11 step-throughs of the code loading each parameter in the Initialise() call onto the stack, and what appears to happen is that when the call is made, the whole lot steps off into oblivion (a reference to 0x00000000 is made, I think).
    Do you think it's worth trying to get this approach to work? It would be useful to retain the control surface in the top of the SSMgr as there is co-ordination of the protocols within the logic of that component. If I move the Wintse control out into a separate managed DLL I may not have that co-ordination (this might be overcome with some design, as I've confirmed that it is possible to "reach into" the WinTseInterface DLL with TestStand and create and use managed objects from assemblies contained within).
    Are there any known issues with this version of TestStand using C/C++ CLI IJW DLLs? I haven't found much out there on the web.
    Attachments:
    Tse_Test.seq ‏7 KB

  • Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e21213c

    Hi,
    Good day!
    I'm having this issue when I just installed an application. I have been searching this kernelbase.dll thing but none of them have fix or any workaround. Hopefully with the great technical guys here can help me with this issue.
    The server is windows 2008 R2
    From the event viewer I got this
    Faulting application name: Tlc.LogManager.Svc.exe, version: 7.0.1.5108, time stamp: 0x51d1ee27
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e21213c
    Exception code: 0xe0434352
    Fault offset: 0x000000000000cacd
    Faulting process id: 0x1130
    Faulting application start time: 0x01cf6dbd862da5b1
    Faulting application path: D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogManager.Svc.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: fefb5c84-d9b0-11e3-9578-5ef3fcdc0b9f
    Application: Tlc.LogManager.Svc.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.ArgumentNullException
    Stack:
       at Tlc.CapCollector.Common.CapPersistentStateManager..ctor(Tlc.Interfaces.BusinessObjects.IAssetBusinessObject, Tlc.PersistentState.IPersistentStateStore, Tlc.Interfaces.ApplicationLog.IApplicationLog, Int32, Tlc.CapCollector.AgentDiscovery.CapAgentAutoDiscovery)
       at Tlc.LogManager.Lib.ascMan.OnMessageBusStart(Tlc.Interfaces.MessageBus.IMessageBus, Tlc.Interfaces.ApplicationLog.IApplicationLog, Tlc.Interfaces.ApplicationLog.IApplicationLog, Tlc.Interfaces.ApplicationLog.IApplicationLog)
       at Tlc.MessageBus.ActiveMQMessageBus.Start()
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
       at System.Threading.ThreadHelper.ThreadStart()
    Fault bucket , type 0
    Event Name: CLR20r3
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: tlc.logmanager.svc.exe
    P2: 7.0.1.5108
    P3: 51d1ee27
    P4: Tlc.CapCollector
    P5: 7.0.1.5108
    P6: 51d1edf4
    P7: f2
    P8: 34
    P9: System.ArgumentNullException
    P10:
    Attached files:
    These files may be available here:
    C:\ProgramData\Microsoft\Windows\WER\ReportQueue\AppCrash_tlc.logmanager.s_4d5cd055f698b9b7d9e989629dd2eb52d0be2b_1a6a145b
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: fefb5c84-d9b0-11e3-9578-5ef3fcdc0b9f
    Version=1
    EventType=CLR20r3
    EventTime=130443543988233973
    ReportType=2
    Consent=1
    ReportIdentifier=8c35a7c6-d9a9-11e3-9578-5ef3fcdc0b9f
    IntegratorReportIdentifier=8c35a7c5-d9a9-11e3-9578-5ef3fcdc0b9f
    Response.type=4
    Sig[0].Name=Problem Signature 01
    Sig[0].Value=tlc.logmanager.svc.exe
    Sig[1].Name=Problem Signature 02
    Sig[1].Value=7.0.1.5108
    Sig[2].Name=Problem Signature 03
    Sig[2].Value=51d1ee27
    Sig[3].Name=Problem Signature 04
    Sig[3].Value=Tlc.CapCollector
    Sig[4].Name=Problem Signature 05
    Sig[4].Value=7.0.1.5108
    Sig[5].Name=Problem Signature 06
    Sig[5].Value=51d1edf4
    Sig[6].Name=Problem Signature 07
    Sig[6].Value=f2
    Sig[7].Name=Problem Signature 08
    Sig[7].Value=34
    Sig[8].Name=Problem Signature 09
    Sig[8].Value=System.ArgumentNullException
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.272.7
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=18441
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=3ada
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=3adac3ca3b54f3f7659e16fb4fdadcbe
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=b033
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=b0336032f99007ec98baa22debc5fb25
    UI[2]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogManager.Svc.exe
    UI[3]=Tlc.LogManager.Svc has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution (recommended)
    UI[6]=Check for a solution later (recommended)
    UI[7]=Close
    UI[8]=Tlc.LogManager.Svc stopped working and was closed
    UI[9]=A problem caused the application to stop working correctly. Windows will notify you if a solution is available.
    UI[10]=&Close
    LoadedModule[0]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogManager.Svc.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\SYSTEM32\MSCOREE.DLL
    LoadedModule[3]=C:\Windows\system32\KERNEL32.dll
    LoadedModule[4]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[5]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[6]=C:\Windows\system32\msvcrt.dll
    LoadedModule[7]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[8]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[9]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
    LoadedModule[10]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[11]=C:\Windows\system32\GDI32.dll
    LoadedModule[12]=C:\Windows\system32\USER32.dll
    LoadedModule[13]=C:\Windows\system32\LPK.dll
    LoadedModule[14]=C:\Windows\system32\USP10.dll
    LoadedModule[15]=C:\Windows\system32\IMM32.DLL
    LoadedModule[16]=C:\Windows\system32\MSCTF.dll
    LoadedModule[17]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
    LoadedModule[18]=C:\Windows\system32\MSVCR100_CLR0400.dll
    LoadedModule[19]=C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\bc19222db4406c472d9aa1f8b6e0f470\mscorlib.ni.dll
    LoadedModule[20]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\nlssorting.dll
    LoadedModule[21]=C:\Windows\system32\ole32.dll
    LoadedModule[22]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[23]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[24]=C:\Windows\system32\rsaenh.dll
    LoadedModule[25]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System\0f8f78b729ce16dd078f5d5f734a1110\System.ni.dll
    LoadedModule[26]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.ServiceProce#\7b167f31f23d4aed19dfa65ad3d29480\System.ServiceProcess.ni.dll
    LoadedModule[27]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll
    LoadedModule[28]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[29]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Xceed.Zip.v5.1.dll
    LoadedModule[30]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Xceed.GZip.v5.1.dll
    LoadedModule[31]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Xceed.Tar.v5.1.dll
    LoadedModule[32]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Xceed.Compression.Formats.v5.1.dll
    LoadedModule[33]=C:\Windows\system32\VERSION.dll
    LoadedModule[34]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Common.dll
    LoadedModule[35]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Xceed.FileSystem.v5.1.dll
    LoadedModule[36]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Xceed.Compression.v5.1.dll
    LoadedModule[37]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogManager.Lib.dll
    LoadedModule[38]=C:\Windows\assembly\GAC_MSIL\VistaDB.4\4.1.0.0__dfc935afe2125461\VistaDB.4.dll
    LoadedModule[39]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Interfaces.dll
    LoadedModule[40]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Enums.dll
    LoadedModule[41]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\7a93c267da35a5f16b6fa5a10482eb4e\System.Core.ni.dll
    LoadedModule[42]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data\5a47dfd0b200a502a4d5d27ee99bcc3c\System.Data.ni.dll
    LoadedModule[43]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
    LoadedModule[44]=C:\Windows\system32\WS2_32.dll
    LoadedModule[45]=C:\Windows\system32\NSI.dll
    LoadedModule[46]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[47]=C:\Windows\system32\MSASN1.dll
    LoadedModule[48]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\5d9f385419332f14eaf937556199856f\System.Xml.ni.dll
    LoadedModule[49]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Dal.LogManager.Client.dll
    LoadedModule[50]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data.Service#\5ac492f703d6d741140f7cd45ef3c746\System.Data.Services.Client.ni.dll
    LoadedModule[51]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Dal.LogManager.Local.dll
    LoadedModule[52]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data.Entity\c41b30de7215a62c8ca5bfe6e04ea763\System.Data.Entity.ni.dll
    LoadedModule[53]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.DataAccess.Config.dll
    LoadedModule[54]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogManager.Log.dll
    LoadedModule[55]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Utils.dll
    LoadedModule[56]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogMessageClassifier.dll
    LoadedModule[57]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Wintellect.PowerCollections.dll
    LoadedModule[58]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\nsoftware.IPWorks.dll
    LoadedModule[59]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\11581b5eba4b3ff58441c638ab66c742\System.Configuration.ni.dll
    LoadedModule[60]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web\7e5af1fdbcffeab8daffc7633f9c337a\System.Web.ni.dll
    LoadedModule[61]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Drawing\1266d26c7b7843d308e2705cb8239d55\System.Drawing.ni.dll
    LoadedModule[62]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Windows.Forms\f0acb5c0e7dc2c42c6c61f3aa1278338\System.Windows.Forms.ni.dll
    LoadedModule[63]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.CommonAssemblyInfo.dll
    LoadedModule[64]=C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_2b24536c71ed437a\gdiplus.dll
    LoadedModule[65]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[66]=C:\Windows\system32\shell32.dll
    LoadedModule[67]=C:\Windows\system32\profapi.dll
    LoadedModule[68]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\webengine4.dll
    LoadedModule[69]=C:\Windows\system32\USERENV.dll
    LoadedModule[70]=C:\Windows\system32\PSAPI.DLL
    LoadedModule[71]=C:\Windows\system32\urlmon.dll
    LoadedModule[72]=C:\Windows\system32\WININET.dll
    LoadedModule[73]=C:\Windows\system32\iertutil.dll
    LoadedModule[74]=C:\Windows\system32\SspiCli.dll
    LoadedModule[75]=C:\Windows\system32\shfolder.dll
    LoadedModule[76]=C:\Windows\system32\bcrypt.dll
    LoadedModule[77]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuratio#\c080a9ed31f78466f2400bba623af2f8\System.Configuration.Install.ni.dll
    LoadedModule[78]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.Services\6cd002594b56953e9c210581e7f3f3cd\System.Web.Services.ni.dll
    LoadedModule[79]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.PersistentState.dll
    LoadedModule[80]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Mitre.CommonEventExpression.dll
    LoadedModule[81]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.ClientServer.Communications.dll
    LoadedModule[82]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Numerics\215d813343ba0950ad6e148e2098018b\System.Numerics.ni.dll
    LoadedModule[83]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Management\da51604aa808b94c181181b37c727078\System.Management.ni.dll
    LoadedModule[84]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.VisualBas#\af08f116e2c31d2c65bd492804fb2fef\Microsoft.VisualBasic.ni.dll
    LoadedModule[85]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[86]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\wminet_utils.dll
    LoadedModule[87]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[88]=C:\Windows\system32\wbem\wmiutils.dll
    LoadedModule[89]=C:\Windows\system32\wbemcomn.dll
    LoadedModule[90]=C:\Windows\system32\wbem\wbemprox.dll
    LoadedModule[91]=C:\Windows\system32\wbem\wbemsvc.dll
    LoadedModule[92]=C:\Windows\system32\wbem\fastprox.dll
    LoadedModule[93]=C:\Windows\system32\NTDSAPI.dll
    LoadedModule[94]=C:\Windows\system32\mswsock.dll
    LoadedModule[95]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[96]=C:\Windows\System32\wship6.dll
    LoadedModule[97]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[98]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[99]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[100]=C:\Windows\system32\rasadhlp.dll
    LoadedModule[101]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[102]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Devart.Data.MySql.dll
    LoadedModule[103]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Transactions\122cea70c5d0d591f9af1f4316848fd1\System.Transactions.ni.dll
    LoadedModule[104]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
    LoadedModule[105]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Devart.Data.dll
    LoadedModule[106]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\nsoftware.IPWorksSSL.dll
    LoadedModule[107]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data.OracleC#\850abdea1c65b88ba24a77f0191caea8\System.Data.OracleClient.ni.dll
    LoadedModule[108]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll
    LoadedModule[109]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml.Linq\9d14b7bc969452800c0456286309d41d\System.Xml.Linq.ni.dll
    LoadedModule[110]=C:\Windows\assembly\GAC_MSIL\VistaDB.Entities.4\4.1.0.0__dfc935afe2125461\VistaDB.Entities.4.dll
    LoadedModule[111]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.EnterpriseSe#\48264d6ad04173a3a82cc06b70c5cd28\System.EnterpriseServices.ni.dll
    LoadedModule[112]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.EnterpriseSe#\48264d6ad04173a3a82cc06b70c5cd28\System.EnterpriseServices.Wrapper.dll
    LoadedModule[113]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll
    LoadedModule[114]=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll
    LoadedModule[115]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Runtime.Seri#\08fba6b56d838ad48b4451c82e5728d4\System.Runtime.Serialization.ni.dll
    LoadedModule[116]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.RuleEngine.dll
    LoadedModule[117]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.EventForwarder.dll
    LoadedModule[118]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Lucene.Net.dll
    LoadedModule[119]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.ServiceModel\d072039db89cac96d9e0b1ae9b3a94f4\System.ServiceModel.ni.dll
    LoadedModule[120]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.ServiceModel#\43f892698b9de4d752c13cc2d91ff16d\System.ServiceModel.Web.ni.dll
    LoadedModule[121]=C:\Windows\assembly\NativeImages_v4.0.30319_64\SMDiagnostics\ac74a156499a8303d5788ab299881d5d\SMDiagnostics.ni.dll
    LoadedModule[122]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Runtime.Dura#\2f02efd9ddb7417ffd5c06cfe6e865ca\System.Runtime.DurableInstancing.ni.dll
    LoadedModule[123]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.IdentityModel\33ac21194152cf9a89b82d9cd38b398d\System.IdentityModel.ni.dll
    LoadedModule[124]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xaml\535e182d16212c61bc8b22e0309d3362\System.Xaml.ni.dll
    LoadedModule[125]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data.Services\84226b67f4623bd3b0dde9aa00c5c88d\System.Data.Services.ni.dll
    LoadedModule[126]=C:\Windows\system32\pcwum.DLL
    LoadedModule[127]=C:\Windows\system32\httpapi.dll
    LoadedModule[128]=C:\Windows\system32\cryptnet.dll
    LoadedModule[129]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[130]=C:\Windows\system32\SensApi.dll
    LoadedModule[131]=C:\Windows\system32\dsrole.dll
    LoadedModule[132]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.MessageBus.dll
    LoadedModule[133]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Apache.NMS.dll
    LoadedModule[134]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Google.ProtocolBuffers.dll
    LoadedModule[135]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\nsoftware.IPWorksSSH.dll
    LoadedModule[136]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Reports.dll
    LoadedModule[137]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\SecureBlackbox.dll
    LoadedModule[138]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.GenericDbLogCollector.dll
    LoadedModule[139]=C:\Windows\system32\ntmarta.dll
    LoadedModule[140]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\perfcounter.dll
    LoadedModule[141]=C:\Windows\system32\pdh.dll
    LoadedModule[142]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\nsoftware.System.dll
    LoadedModule[143]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\diasymreader.dll
    LoadedModule[144]=C:\Windows\system32\aspnet_counters.dll
    LoadedModule[145]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_perf.dll
    LoadedModule[146]=C:\Windows\system32\Secur32.dll
    LoadedModule[147]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[148]=C:\Windows\system32\security.dll
    LoadedModule[149]=C:\Windows\system32\credssp.dll
    LoadedModule[150]=C:\Windows\system32\schannel.DLL
    LoadedModule[151]=C:\Windows\system32\ncrypt.dll
    LoadedModule[152]=C:\Windows\system32\bcryptprimitives.dll
    LoadedModule[153]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\nsoftware.IPWorksSSNMP.dll
    LoadedModule[154]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Apache.NMS.ActiveMQ.dll
    LoadedModule[155]=C:\Windows\system32\NLAapi.dll
    LoadedModule[156]=C:\Windows\system32\napinsp.dll
    LoadedModule[157]=C:\Windows\System32\winrnr.dll
    LoadedModule[158]=C:\Windows\system32\rasman.dll
    LoadedModule[159]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.CapCollector.dll
    LoadedModule[160]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.CapIDL.dll
    LoadedModule[161]=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.Dto.dll
    FriendlyEventName=Stopped working
    ConsentKey=CLR20r3
    AppName=Tlc.LogManager.Svc
    AppPath=D:\Program Files (x86)\Tripwire\Tripwire Log Center Manager\Tlc.LogManager.Svc.exe

    Hi Ross Rene,
    Sorry for the delay.
    Please make sure the App is compatible with the .Net framework installed, please check the .net version.
    Best Regards,
    Anna

  • Invoking Native Dll in Java

    Hi,
    We have tried to invoke a native dll method using JNI in java.
    While invoking the dll method(below native code dll) we face the "Access violation error".
    But the very same native implementation code is working successfully when invoked from VC++ Exe application.
    We have given the Java class file, header file, CPP implementation of the method and the error report below.
    Can anybody let us know if there is some fault in the way code we have coded?
    *{color:#0000ff}Source Code:{color}
    {color:#0000ff}---------------------{color}
    _______________________________________WsqLib.java____________________________________________________________________
    class WsqLib
    private native int BitmapToWSQ();
    private native int WsqToBitmap();
    public static void main(String[] args)
    WsqLib wsqlib=new WsqLib();
    System.out.println("wsqlib.BitmapToWSQ() ==> "+wsqlib.BitmapToWSQ());
    static
    System.loadLibrary("WsqLib");
    # Create a class (WsqLib.java) that declares the native method.
    # We use javac to compile the WsqLib source file, resulting in the class file WsqLib.class.
    # We use javah to generate a C header file (WsqLib.h) containing the function prototype for the native method implementation.*
    _______________________________________WsqLib.h*_______________________________________________________________________
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include "jni.h"
    /* Header for class WsqLib */
    #ifndef IncludedWsqLib
    #define IncludedWsqLib
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class: WsqLib
    * Method: BitmapToWSQ
    * Signature: ()I
    JNIEXPORT jint JNICALL Java_WsqLib_BitmapToWSQ
    (JNIEnv *, jobject);
    * Class: WsqLib
    * Method: WsqToBitmap
    * Signature: ()I
    JNIEXPORT jint JNICALL Java_WsqLib_WsqToBitmap
    (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endif
    # CPP implementation (WsqLib.cpp) of the native method is as below.
    # We compiled the cpp implementation into a native library, creating WsqLib.dll.
    # We use the WsqLib.dll in WsqLib.java.
    _______________________________________WsqLib.cpp______________________________________________________________________
    #include "stdafx.h"
    #include "WsqLib.h"
    #include "_vcclrit.h"
    #include "gdiplus.h"
    #include <afxstr.h>
    #include <atlimage.h>
    #include "WsqLib1.h"
    static const GUID guidBmp =
    { 0x557cf400, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e } };
    extern "C"
    int debug = 0;
    JNIEXPORT jint JNICALL Java_WsqLib_BitmapToWSQ(JNIEnv *, jobject)
    Gdiplus::Bitmap *pBitmap = Gdiplus::Bitmap::FromFile(L"temp.bmp", TRUE);
    Gdiplus::BitmapData lockedBitmapData;
    Gdiplus::Rect rect(0, 0,pBitmap->GetWidth(),pBitmap->GetHeight());
    //Error occured in this Line.
    pBitmap->LockBits( &rect, Gdiplus::ImageLockModeRead, PixelFormat8bppIndexed, &lockedBitmapData );
    int byteCount = pBitmap->GetWidth() * pBitmap->GetHeight() * (int)(8 / 8);
    unsigned char *pPixelData2 = new unsigned char[byteCount];
    memset(pPixelData2, 0, (size_t)byteCount);
    unsigned char pBytes = (unsigned char) lockedBitmapData.Scan0;
    for (int index = 0; index < byteCount; index++)
    pPixelData2[index] = pBytes[index];
    pBitmap->UnlockBits(&lockedBitmapData);
    unsigned char *pPixelData = pPixelData2;
    int pixelsPerInch = (int)pBitmap->GetHorizontalResolution();
    float compressionFactor = (float)( (float)((int)75) / 100.0);
    unsigned char *pWsqBytes = NULL;
    int wsqBytesCount = 0;
    int result = 0;
    result = wsq_encode_mem(
    &pWsqBytes, // Output data buffer
    &wsqBytesCount, // Length of output data buffer
    compressionFactor, // Determines the amount of lossy compression.
    pPixelData, // Input pixel data
    pBitmap->GetWidth(), // Pixel width of the pixmap
    pBitmap->GetHeight(), // Pixel height of the pixmap
    8, // Depth (bits) of the pixmap
    pixelsPerInch, // Scan resolution of the image in integer units of pixels per inch
    (char *)NULL // Optional (we do not want to use this - we may even want to remove the implementation)
    if (result == 0)
    FILE *fptr1;
    fptr1=fopen("C:\\saran2.wsq_1.0","wb");
    fwrite(pWsqBytes,wsqBytesCount,1,fptr1);
    fclose(fptr1);
    return 10;
    JNIEXPORT jint JNICALL Java_WsqLib_WsqToBitmap(JNIEnv *, jobject)
    BYTE gData[242998];
    Gdiplus::Bitmap* image;
    CFile file;
    file.Open("temp.wsq_1.0",CFile::modeRead,NULL);
    file.Read(gData,242998);
    unsigned char pByteArray =(unsigned char)gData;
    unsigned char *pPixelData = NULL;
    int bitmapWidth = 0;
    int bitmapHeight = 0;
    int pixelDepth = 0;
    int pixelsPerInch = 0;
    int lossyFlag = 1;
    int byteArrayLength = 242998;
    int result = 0;
    result = wsq_decode_mem(
    &pPixelData, // Output image buffer
    &bitmapWidth, // Pixel width of the pixmap
    &bitmapHeight, // Pixel height of the pixmap
    &pixelDepth, // Depth (bits) of the pixmap
    &pixelsPerInch, // Scan resolution of the image in integer units of pixels per inch
    &lossyFlag, // Is the image lossy? F.I.I.K.
    pByteArray, // Input data buffer
    byteArrayLength // Input data buffer length
    if (result == 0 && pixelDepth == 8)
    image = new Gdiplus::Bitmap(bitmapWidth, bitmapHeight);
    Gdiplus::Rect bound( 0, 0,bitmapWidth,bitmapHeight);
    Gdiplus::BitmapData lockedBitmapData;
    image->LockBits( &bound, Gdiplus::ImageLockModeWrite, PixelFormat8bppIndexed, &lockedBitmapData );
    int imageRowSize = bitmapWidth * (8/8);
    unsigned char pBitmapPixelData = (unsigned char )lockedBitmapData.Scan0;
    int byteCount = bitmapWidth * bitmapHeight;
    for (int index = 0; index < byteCount; index++)
    pBitmapPixelData[index] = pPixelData[index];
    image->UnlockBits( &lockedBitmapData );
    else
    return result;
    image->Save(L"C:\\temp.bmp", &guidBmp);
    return 0;
    {color:#0000ff}Error report:{color}
    {color:#0000ff}-------------------{color}
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x03920780, pid=380, tid=3572
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_12-b04 mixed mode, sharing)
    # Problematic frame:
    # C 0x03920780
    --------------- T H R E A D ---------------
    Current thread (0x00036d88): JavaThread "main" [_thread_in_native, id=3572]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000004
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
    ESP=0x0007f9a8, EBP=0x0007fa70, ESI=0x00000000, EDI=0x00000000
    EIP=0x03920780, EFLAGS=0x00010246
    Top of Stack: (sp=0x0007f9a8)
    0x0007f9a8: 00000000 00000000 00000000 00000000
    0x0007f9b8: 039204ba 00000001 00000000 000be780
    0x0007f9c8: 03726248 0007fa10 00000000 00000000
    0x0007f9d8: 03920430 0007fa2c 7a32b4fa ffffffff
    0x0007f9e8: 0007fa38 79e7bba9 79e7bbb1 cce41966
    0x0007f9f8: ffffffff 0007fa68 000a4b30 00000000
    0x0007fa08: 00000000 00000000 00000000 00000000
    0x0007fa18: 00000000 00000000 00000000 00000000
    Instructions: (pc=0x03920780)
    0x03920770: 03 00 74 05 e8 85 1b 77 76 33 d2 89 14 24 8b fe
    0x03920780: 8b 4e 04 8d 14 24 e8 05 65 e0 ff 8b d8 8b d3 8b
    Stack: [0x00040000,0x00080000), sp=0x0007f9a8, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x03920780
    C 0x031e3171
    j WsqLib.BitmapToWSQ()I+0
    j WsqLib.main([Ljava/lang/String;)V+24
    v ~StubRoutines::call_stub
    V [jvm.dll+0x87599]
    V [jvm.dll+0xdfbb2]
    V [jvm.dll+0x8746a]
    V [jvm.dll+0x8e6ac]
    C [java.exe+0x14c5]
    C [java.exe+0x69cd]
    C [kernel32.dll+0x16d4f]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j WsqLib.BitmapToWSQ()I+0
    j WsqLib.main([Ljava/lang/String;)V+24
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x009f2b28 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3996]
    0x009f1820 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2832]
    0x009f0a68 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=404]
    0x009eb330 JavaThread "Finalizer" daemon [_thread_blocked, id=3304]
    0x009e9eb0 JavaThread "Reference Handler" daemon [_thread_blocked, id=1648]
    =>0x00036d88 JavaThread "main" [_thread_in_native, id=3572]
    Other Threads:
    0x009c8508 VMThread [id=492]
    0x009f0528 WatcherThread [id=2924]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 497K [0x22a50000, 0x22af0000, 0x22f30000)
    eden space 512K, 84% used [0x22a50000, 0x22abc5b8, 0x22ad0000)
    from space 64K, 99% used [0x22ae0000, 0x22aefff8, 0x22af0000)
    to space 64K, 0% used [0x22ad0000, 0x22ad0000, 0x22ae0000)
    tenured generation total 1408K, used 115K [0x22f30000, 0x23090000, 0x26a50000)
    the space 1408K, 8% used [0x22f30000, 0x22f4cc28, 0x22f4ce00, 0x23090000)
    compacting perm gen total 8192K, used 20K [0x26a50000, 0x27250000, 0x2aa50000)
    the space 8192K, 0% used [0x26a50000, 0x26a553b8, 0x26a55400, 0x27250000)
    ro space 8192K, 63% used [0x2aa50000, 0x2af60590, 0x2af60600, 0x2b250000)
    rw space 12288K, 46% used [0x2b250000, 0x2b7f21b0, 0x2b7f2200, 0x2be50000)
    Dynamic libraries:
    0x00400000 - 0x0040d000 C:\WINDOWS\system32\java.exe
    0x7c900000 - 0x7c9b0000 C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000 C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000 C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000 C:\WINDOWS\system32\MSVCRT.dll
    0x6d640000 - 0x6d7dd000 C:\Program Files\Java\jre1.5.0_12\bin\client\jvm.dll
    0x77d40000 - 0x77dd0000 C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000 C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000 C:\WINDOWS\system32\WINMM.dll
    0x6d290000 - 0x6d298000 C:\Program Files\Java\jre1.5.0_12\bin\hpi.dll
    0x76bf0000 - 0x76bfb000 C:\WINDOWS\system32\PSAPI.DLL
    0x6d610000 - 0x6d61c000 C:\Program Files\Java\jre1.5.0_12\bin\verify.dll
    0x6d310000 - 0x6d32d000 C:\Program Files\Java\jre1.5.0_12\bin\java.dll
    0x6d630000 - 0x6d63f000 C:\Program Files\Java\jre1.5.0_12\bin\zip.dll
    0x10000000 - 0x10075000 D:\Jagadeesan\JNI_NEW\WSQ\WsqLib.dll
    0x79000000 - 0x79045000 C:\WINDOWS\system32\mscoree.dll
    0x7c140000 - 0x7c357000 C:\WINDOWS\system32\MFC71D.DLL
    0x10200000 - 0x10287000 C:\WINDOWS\system32\MSVCR71D.dll
    0x77f60000 - 0x77fd6000 C:\WINDOWS\system32\SHLWAPI.dll
    0x77120000 - 0x771ac000 C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761c000 C:\WINDOWS\system32\ole32.dll
    0x4ec50000 - 0x4edf3000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
    0x5d360000 - 0x5d36e000 C:\WINDOWS\system32\MFC71ENU.DLL
    0x79e70000 - 0x7a3d1000 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
    0x78130000 - 0x781cb000 C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCR80.dll
    0x7c9c0000 - 0x7d1d4000 C:\WINDOWS\system32\shell32.dll
    0x773d0000 - 0x774d2000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5d090000 - 0x5d127000 C:\WINDOWS\system32\comctl32.dll
    0x790c0000 - 0x79ba6000 C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\mscorlib\bf3b003e3ac7e449bdf8fc9375318452\mscorlib.ni.dll
    0x79060000 - 0x790b3000 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll
    0x5e380000 - 0x5e409000 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\diasymreader.dll
    VM Arguments:
    java_command: WsqLib
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.5.0_12;
    CLASSPATH=C:\Program Files\Apache Software Foundation\Tomcat 5.5\shared\lib\*.jar;C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\axis\WEB-INF\classes\org\apache\axis\transport\http\*.classs;D:\JONAS_4_6_6\lib\ext\axis.jar;C:\Sun\jwsdp-1.6\jaxp\lib\endorsed\sax.jar;C:\tomcat50-jwsdp\jaxp\lib\endorsed\sax.jar;C:\Files\Java\jdk1.5.0_01\jre\lib;C:\Program Files\Java\jdk1.5.0_12\jre\lib\ext;
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Jagadeesan Backup\DotNet\DynamicLibrary\MathFuncsDll\Debug;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies;C:\Sun\jwsdp-1.6\jaxrpc\bin;C:\Sun\jwsdp-1.6\jaxp\lib;C:\Sun\jwsdp-1.6\jaxp\lib\endorsed;C:\Program Files\Java\jdk1.5.0_12\bin;C:\Sun\jwsdp-1.6\jwsdp-shared\bin;C:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT;C:\Sun\jwsdp-1.6\jaxrpc\bin;C:\Sun\jwsdp-1.6\jaxp\lib;C:\Sun\jwsdp-1.6\jaxp\lib\endorsed;C:\Program Files\Java\jdk1.5.0_12\bin;
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 1 Stepping 2, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 1 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 259888k(81380k free), swap 636388k(342588k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_12-b04) for windows-x86, built on May 2 2007 02:07:59 by "java_re" with MS VC++ 6.0

    Is there any other reason for this error?There is one and only one reason for the error code 0xc0000005 - there is a pointer (C/C++) pointing somewhere it shouldn't.
    The above C code working fine while invoking in VC++ Exe application,
    But the error occured only while invoking in java using JNI.Which suggests only that sometimes that it works. It doesn't mean that it always works.
    There are a number of places in the C/C++ code where it could fail and none of them are being checked.

  • Sql server 2008 R2 sp2 keeps crashing with ntdll.dll

    Our sql server 2008 r2 on windows 2008 r2 crashes once a day with this error
    Faulting application name: sqlservr.exe, version: 2009.100.4290.0, time stamp: 0x52007306
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000374
    Fault offset: 0x00000000000c40f2
    Faulting process id: 0x11b8
    Faulting application start time: 0x01cf59e47c2e9f9a
    Faulting application path: C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 93d8ef8b-c70c-11e3-b572-002564fcc042
    Here is the dump
    Version=1
    EventType=APPCRASH
    EventTime=130423078596029680
    ReportType=2
    Consent=1
    ReportIdentifier=93d8ef8c-c70c-11e3-b572-002564fcc042
    IntegratorReportIdentifier=93d8ef8b-c70c-11e3-b572-002564fcc042
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=sqlservr.exe
    Sig[1].Name=Application Version
    Sig[1].Value=2009.100.4290.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=52007306
    Sig[3].Name=Fault Module Name
    Sig[3].Value=StackHash_259d
    Sig[4].Name=Fault Module Version
    Sig[4].Value=6.1.7601.17725
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=4ec4aa8e
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000374
    Sig[7].Name=Exception Offset
    Sig[7].Value=00000000000c40f2
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.274.10
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=259d
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=259dc7d033214d7478a8b078fa9c6fc4
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=a970
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=a9707a254613322c29b1185c564c54e6
    UI[2]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
    UI[5]=Check online for a solution (recommended)
    UI[6]=Check for a solution later (recommended)
    UI[7]=Close
    UI[8]=SQL Server Windows NT - 64 Bit stopped working and was closed
    UI[9]=A problem caused the application to stop working correctly. Windows will notify you if a solution is available.
    UI[10]=&Close
    LoadedModule[0]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[5]=C:\Windows\system32\msvcrt.dll
    LoadedModule[6]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[7]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[8]=C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\MSVCR80.dll
    LoadedModule[9]=C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\MSVCP80.dll
    LoadedModule[10]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlos.dll
    LoadedModule[11]=C:\Windows\system32\Secur32.dll
    LoadedModule[12]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[13]=C:\Windows\system32\pdh.dll
    LoadedModule[14]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[15]=C:\Windows\system32\GDI32.dll
    LoadedModule[16]=C:\Windows\system32\USER32.dll
    LoadedModule[17]=C:\Windows\system32\LPK.dll
    LoadedModule[18]=C:\Windows\system32\USP10.dll
    LoadedModule[19]=C:\Windows\system32\USERENV.dll
    LoadedModule[20]=C:\Windows\system32\profapi.dll
    LoadedModule[21]=C:\Windows\system32\WINMM.dll
    LoadedModule[22]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[23]=C:\Windows\system32\NSI.dll
    LoadedModule[24]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[25]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\opends60.dll
    LoadedModule[26]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[27]=C:\Windows\system32\netutils.dll
    LoadedModule[28]=C:\Windows\system32\srvcli.dll
    LoadedModule[29]=C:\Windows\system32\wkscli.dll
    LoadedModule[30]=C:\Windows\system32\LOGONCLI.DLL
    LoadedModule[31]=C:\Windows\system32\SAMCLI.DLL
    LoadedModule[32]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\BatchParser.dll
    LoadedModule[33]=C:\Windows\system32\IMM32.DLL
    LoadedModule[34]=C:\Windows\system32\MSCTF.dll
    LoadedModule[35]=C:\Windows\system32\psapi.dll
    LoadedModule[36]=C:\Program Files\Microsoft SQL Server\100\Shared\instapi10.dll
    LoadedModule[37]=C:\Windows\system32\cscapi.dll
    LoadedModule[38]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\Resources\1033\sqlevn70.rll
    LoadedModule[39]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[40]=C:\Windows\system32\rsaenh.dll
    LoadedModule[41]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[42]=C:\Windows\system32\BROWCLI.DLL
    LoadedModule[43]=C:\Windows\system32\AUTHZ.DLL
    LoadedModule[44]=C:\Windows\system32\MSCOREE.DLL
    LoadedModule[45]=C:\Windows\system32\ole32.dll
    LoadedModule[46]=C:\Windows\system32\credssp.dll
    LoadedModule[47]=C:\Windows\system32\msv1_0.DLL
    LoadedModule[48]=C:\Windows\system32\cryptdll.dll
    LoadedModule[49]=C:\Windows\system32\kerberos.DLL
    LoadedModule[50]=C:\Windows\system32\MSASN1.dll
    LoadedModule[51]=C:\Windows\system32\schannel.DLL
    LoadedModule[52]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[53]=C:\Windows\system32\security.dll
    LoadedModule[54]=C:\Windows\system32\WS2_32.dll
    LoadedModule[55]=C:\Windows\system32\SHELL32.dll
    LoadedModule[56]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[57]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\ftimport.dll
    LoadedModule[58]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\MSFTE.DLL
    LoadedModule[59]=C:\Windows\system32\VERSION.dll
    LoadedModule[60]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\dbghelp.dll
    LoadedModule[61]=C:\Windows\system32\WINTRUST.dll
    LoadedModule[62]=C:\Windows\system32\ntmarta.dll
    LoadedModule[63]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[64]=C:\Windows\system32\ncrypt.dll
    LoadedModule[65]=C:\Windows\system32\bcrypt.dll
    LoadedModule[66]=C:\Windows\system32\mswsock.dll
    LoadedModule[67]=C:\Windows\System32\wship6.dll
    LoadedModule[68]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[69]=C:\Windows\system32\ntdsapi.dll
    LoadedModule[70]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[71]=C:\Windows\system32\rasadhlp.dll
    LoadedModule[72]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[73]=C:\Windows\system32\bcryptprimitives.dll
    LoadedModule[74]=C:\Windows\system32\SAMLIB.dll
    LoadedModule[75]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[76]=C:\Windows\system32\sqlncli10.dll
    LoadedModule[77]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_a4d6a923711520a9\COMCTL32.dll
    LoadedModule[78]=C:\Windows\system32\COMDLG32.dll
    LoadedModule[79]=C:\Windows\system32\1033\SQLNCLIR10.RLL
    LoadedModule[80]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
    LoadedModule[81]=C:\Windows\assembly\NativeImages_v2.0.50727_64\mscorlib\51a23687fdafc32b697f5a719e364651\mscorlib.ni.dll
    LoadedModule[82]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorsec.dll
    LoadedModule[83]=C:\Windows\system32\imagehlp.dll
    LoadedModule[84]=C:\Windows\system32\GPAPI.dll
    LoadedModule[85]=C:\Windows\system32\cryptnet.dll
    LoadedModule[86]=C:\Windows\system32\SensApi.dll
    LoadedModule[87]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\SqlAccess.dll
    LoadedModule[88]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorjit.dll
    LoadedModule[89]=C:\Windows\assembly\GAC_64\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
    LoadedModule[90]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System\6be6efa1e2ffc9d46e99839edac5c5a8\System.ni.dll
    LoadedModule[91]=C:\Windows\assembly\GAC_64\System.Transactions\2.0.0.0__b77a5c561934e089\System.Transactions.dll
    LoadedModule[92]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Security\15270ef5168ba4d4185515789a08655d\System.Security.ni.dll
    LoadedModule[93]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\xpstar.dll
    LoadedModule[94]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\SQLSCM.dll
    LoadedModule[95]=C:\Windows\system32\ODBC32.dll
    LoadedModule[96]=C:\Windows\WinSxS\amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.4053_none_8a1a02152edb659b\ATL80.DLL
    LoadedModule[97]=C:\Windows\system32\odbcint.dll
    LoadedModule[98]=C:\Windows\system32\clusapi.dll
    LoadedModule[99]=C:\Windows\system32\resutils.dll
    LoadedModule[100]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\Resources\1033\xpstar.rll
    LoadedModule[101]=C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll
    LoadedModule[102]=C:\Windows\assembly\GAC_MSIL\System.Security\2.0.0.0__b03f5f7f11d50a3a\System.Security.dll
    LoadedModule[103]=C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll
    LoadedModule[104]=C:\Windows\system32\COMRES.DLL
    LoadedModule[105]=C:\Windows\system32\XOLEHLP.DLL
    LoadedModule[106]=C:\Windows\system32\MSDTCPRX.DLL
    LoadedModule[107]=C:\Windows\system32\MTXCLU.DLL
    LoadedModule[108]=C:\Windows\system32\ktmw32.dll
    LoadedModule[109]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[110]=C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xp_greta_64.dll
    LoadedModule[111]=C:\Windows\system32\apphelp.dll
    LoadedModule[112]=C:\Windows\system32\dsrole.dll
    LoadedModule[113]=C:\Program Files\Microsoft SQL Server\80\COM\sqlvdi.dll
    LoadedModule[114]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\odsole70.dll
    LoadedModule[115]=C:\Windows\system32\scrrun.dll
    LoadedModule[116]=C:\Windows\system32\SXS.DLL
    LoadedModule[117]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\Resources\1033\odsole70.RLL
    LoadedModule[118]=C:\Program Files\Microsoft SQL Server\90\Shared\instapi.dll
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=SQL Server Windows NT - 64 Bit
    AppPath=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
    Can help me fixed this
    Thanks

    Thank you for your responses.  This server is on a dell poweredge T710 with 192 gb of memory.  All the hardware drivers are up to date and so is sql.  No memory errors.  The only error I get is when sql crashes.  The only 3rd party
    dll what is on the server would be xp_greta_64.dll.  We are looking into that.
    I have a question about setting up a link server with 'out of process'  We only use sql server link connections with other sql servers.  When I try to setup 'out of process' unchecking allow inprocess under SQLNCLI all of my link servers end up
    failing and giving me errors.  I had to switch it back since this is a production machine. Is there a way to just set up 'out of process' on one link server with SQLNCLI, it seems it is all or nothing.  Do I have to delete all the current link
    servers and recreate them?
    The only other thing that we have changed is that we have added Python 3.3 and ActivePerl 5.16.3 but not on this server.  Only on all of our other sql servers. 
    Here is our last dump from yesterday.  Thanks again, If I have too I will open a case up with Microsoft.
    Version=1
    EventType=APPCRASH
    EventTime=130444796758798656
    ReportType=2
    Consent=1
    ReportIdentifier=3b3973c8-dacd-11e3-a1c5-002564fcc042
    IntegratorReportIdentifier=3b3973c7-dacd-11e3-a1c5-002564fcc042
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=sqlservr.exe
    Sig[1].Name=Application Version
    Sig[1].Value=2009.100.4302.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=52f5d194
    Sig[3].Name=Fault Module Name
    Sig[3].Value=StackHash_9f88
    Sig[4].Name=Fault Module Version
    Sig[4].Value=6.1.7601.18247
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=521eaf24
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000374
    Sig[7].Name=Exception Offset
    Sig[7].Value=00000000000c4102
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.274.10
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=9f88
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=9f887580f62df3cb4138fc685cae8618
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=d54e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=d54ee610c7110c152675c4fdbbef635a
    UI[2]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
    UI[5]=Check online for a solution (recommended)
    UI[6]=Check for a solution later (recommended)
    UI[7]=Close
    UI[8]=SQL Server Windows NT - 64 Bit stopped working and was closed
    UI[9]=A problem caused the application to stop working correctly. Windows will notify you if a solution is available.
    UI[10]=&Close
    LoadedModule[0]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[5]=C:\Windows\system32\msvcrt.dll
    LoadedModule[6]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[7]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[8]=C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\MSVCR80.dll
    LoadedModule[9]=C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\MSVCP80.dll
    LoadedModule[10]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlos.dll
    LoadedModule[11]=C:\Windows\system32\Secur32.dll
    LoadedModule[12]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[13]=C:\Windows\system32\pdh.dll
    LoadedModule[14]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[15]=C:\Windows\system32\GDI32.dll
    LoadedModule[16]=C:\Windows\system32\USER32.dll
    LoadedModule[17]=C:\Windows\system32\LPK.dll
    LoadedModule[18]=C:\Windows\system32\USP10.dll
    LoadedModule[19]=C:\Windows\system32\USERENV.dll
    LoadedModule[20]=C:\Windows\system32\profapi.dll
    LoadedModule[21]=C:\Windows\system32\WINMM.dll
    LoadedModule[22]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[23]=C:\Windows\system32\NSI.dll
    LoadedModule[24]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[25]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\opends60.dll
    LoadedModule[26]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[27]=C:\Windows\system32\netutils.dll
    LoadedModule[28]=C:\Windows\system32\srvcli.dll
    LoadedModule[29]=C:\Windows\system32\wkscli.dll
    LoadedModule[30]=C:\Windows\system32\LOGONCLI.DLL
    LoadedModule[31]=C:\Windows\system32\SAMCLI.DLL
    LoadedModule[32]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\BatchParser.dll
    LoadedModule[33]=C:\Windows\system32\IMM32.DLL
    LoadedModule[34]=C:\Windows\system32\MSCTF.dll
    LoadedModule[35]=C:\Windows\system32\psapi.dll
    LoadedModule[36]=C:\Program Files\Microsoft SQL Server\100\Shared\instapi10.dll
    LoadedModule[37]=C:\Windows\system32\cscapi.dll
    LoadedModule[38]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\Resources\1033\sqlevn70.rll
    LoadedModule[39]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[40]=C:\Windows\system32\rsaenh.dll
    LoadedModule[41]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[42]=C:\Windows\system32\BROWCLI.DLL
    LoadedModule[43]=C:\Windows\system32\AUTHZ.DLL
    LoadedModule[44]=C:\Windows\system32\MSCOREE.DLL
    LoadedModule[45]=C:\Windows\system32\ole32.dll
    LoadedModule[46]=C:\Windows\system32\credssp.dll
    LoadedModule[47]=C:\Windows\system32\msv1_0.DLL
    LoadedModule[48]=C:\Windows\system32\cryptdll.dll
    LoadedModule[49]=C:\Windows\system32\kerberos.DLL
    LoadedModule[50]=C:\Windows\system32\MSASN1.dll
    LoadedModule[51]=C:\Windows\system32\schannel.DLL
    LoadedModule[52]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[53]=C:\Windows\system32\security.dll
    LoadedModule[54]=C:\Windows\system32\WS2_32.dll
    LoadedModule[55]=C:\Windows\system32\SHELL32.dll
    LoadedModule[56]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[57]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\ftimport.dll
    LoadedModule[58]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\MSFTE.DLL
    LoadedModule[59]=C:\Windows\system32\VERSION.dll
    LoadedModule[60]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\dbghelp.dll
    LoadedModule[61]=C:\Windows\system32\WINTRUST.dll
    LoadedModule[62]=C:\Windows\system32\ntmarta.dll
    LoadedModule[63]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[64]=C:\Windows\system32\ncrypt.dll
    LoadedModule[65]=C:\Windows\system32\bcrypt.dll
    LoadedModule[66]=C:\Windows\system32\mswsock.dll
    LoadedModule[67]=C:\Windows\System32\wship6.dll
    LoadedModule[68]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[69]=C:\Windows\system32\ntdsapi.dll
    LoadedModule[70]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[71]=C:\Windows\system32\rasadhlp.dll
    LoadedModule[72]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[73]=C:\Windows\system32\bcryptprimitives.dll
    LoadedModule[74]=C:\Windows\system32\SAMLIB.dll
    LoadedModule[75]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[76]=C:\Windows\system32\sqlncli10.dll
    LoadedModule[77]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_a4d3b9377117c3df\COMCTL32.dll
    LoadedModule[78]=C:\Windows\system32\COMDLG32.dll
    LoadedModule[79]=C:\Windows\system32\1033\SQLNCLIR10.RLL
    LoadedModule[80]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\xpstar.dll
    LoadedModule[81]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\SQLSCM.dll
    LoadedModule[82]=C:\Windows\system32\ODBC32.dll
    LoadedModule[83]=C:\Windows\WinSxS\amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.4053_none_8a1a02152edb659b\ATL80.DLL
    LoadedModule[84]=C:\Windows\system32\odbcint.dll
    LoadedModule[85]=C:\Windows\system32\clusapi.dll
    LoadedModule[86]=C:\Windows\system32\resutils.dll
    LoadedModule[87]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\Resources\1033\xpstar.rll
    LoadedModule[88]=C:\Windows\system32\COMRES.DLL
    LoadedModule[89]=C:\Windows\system32\XOLEHLP.DLL
    LoadedModule[90]=C:\Windows\system32\MSDTCPRX.DLL
    LoadedModule[91]=C:\Windows\system32\MTXCLU.DLL
    LoadedModule[92]=C:\Windows\system32\ktmw32.dll
    LoadedModule[93]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[94]=C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xp_greta_64.dll
    LoadedModule[95]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
    LoadedModule[96]=C:\Windows\assembly\NativeImages_v2.0.50727_64\mscorlib\bb750d3baf928f94ea3977e96af9769f\mscorlib.ni.dll
    LoadedModule[97]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorsec.dll
    LoadedModule[98]=C:\Windows\system32\imagehlp.dll
    LoadedModule[99]=C:\Windows\system32\GPAPI.dll
    LoadedModule[100]=C:\Windows\system32\cryptnet.dll
    LoadedModule[101]=C:\Windows\system32\SensApi.dll
    LoadedModule[102]=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\SqlAccess.dll
    LoadedModule[103]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorjit.dll
    LoadedModule[104]=C:\Windows\assembly\GAC_64\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
    LoadedModule[105]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System\350ed175b92e48f5249a1bab538872e5\System.ni.dll
    LoadedModule[106]=C:\Windows\assembly\GAC_64\System.Transactions\2.0.0.0__b77a5c561934e089\System.Transactions.dll
    LoadedModule[107]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Security\7c4199ce0470f8e4664a7ee345b31235\System.Security.ni.dll
    LoadedModule[108]=C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll
    LoadedModule[109]=C:\Windows\assembly\GAC_MSIL\System.Security\2.0.0.0__b03f5f7f11d50a3a\System.Security.dll
    LoadedModule[110]=C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll
    LoadedModule[111]=C:\Windows\system32\apphelp.dll
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=SQL Server Windows NT - 64 Bit
    AppPath=C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Binn\sqlservr.exe

  • EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d641e26, pid=3376, tid=354

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d641e26, pid=3376, tid=3540
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode, sharing)
    # Problematic frame:
    # C 0x6d641e26
    --------------- T H R E A D ---------------
    Current thread (0x030052a8): VMThread [id=3540]
    siginfo: ExceptionCode=0xc0000005, reading address 0x000000ac
    Registers:
    EAX=0x0000007c, EBX=0x0502fc74, ECX=0x22d97480, EDX=0x0000007c
    ESP=0x0502fc20, EBP=0x0502fc54, ESI=0x22d97480, EDI=0x02fa8f38
    EIP=0x6d641e26, EFLAGS=0x00010202
    Top of Stack: (sp=0x0502fc20)
    0x0502fc20: 22d97480 6d72c24b 0000007c 02fa8f38
    0x0502fc30: 02ff1698 00000000 00000001 24ba0738
    0x0502fc40: 22d97480 00000000 000abfcc 25d3f000
    0x0502fc50: 22d97480 0502fc80 6d6b0f83 22d97480
    0x0502fc60: 02fdaae8 6d6ad593 0502fc74 02ff1698
    0x0502fc70: 02fa0fd0 02fdaae8 02fa8f38 22d97600
    0x0502fc80: 0502fcd0 6d6aded3 00000001 02ff1698
    0x0502fc90: 00000000 00000001 00000001 00000000
    Instructions: (pc=0x6d641e26)
    0x6d641e16: e8 0c 1b 06 00 5f 5e c9 c3 8b 54 24 04 56 8b f1
    0x6d641e26: 8b 42 30 85 c0 7f 25 7d 1b 83 c9 ff 2b c8 8b 46
    Stack: [0x04f30000,0x05030000), sp=0x0502fc20, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x6d641e26
    C 0x6d6b0f83
    C 0x6d6aded3
    C 0x6d6adb88
    C 0x6d6b115a
    C 0x6d73d70f
    C 0x6d6ac9c7
    C 0x6d6ad05a
    C 0x6d757d4e
    C 0x6d757825
    C 0x6d7579c5
    C 0x6d75775a
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    VM_Operation (0x0720f640): full generation collection, mode: safepoint, requested by thread 0x03004760
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x06be0238 JavaThread "Thread-12" daemon [_thread_blocked, id=3636]
    0x02fb9968 JavaThread "Thread-11" daemon [_thread_blocked, id=640]
    0x0964e3d0 JavaThread "Thread-10" daemon [_thread_blocked, id=3968]
    0x03004760 JavaThread "Thread-8" daemon [_thread_blocked, id=2352]
    0x02f77978 JavaThread "Thread-6" daemon [_thread_blocked, id=3236]
    0x02f8d000 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=3100]
    0x03024c00 JavaThread "thread applet-loader.class" [_thread_blocked, id=2696]
    0x02f73510 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2668]
    0x02f7f710 JavaThread "AWT-Shutdown" [_thread_blocked, id=2660]
    0x02fd3e30 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1792]
    0x0003fbb8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2584]
    0x02f844e8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3292]
    0x02fc8c48 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1404]
    0x03002dc8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2052]
    0x02fcdb18 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3640]
    0x02fc18d8 JavaThread "Finalizer" daemon [_thread_blocked, id=1988]
    0x02fb5728 JavaThread "Reference Handler" daemon [_thread_blocked, id=2968]
    0x02fbc1b0 JavaThread "main" [_thread_in_native, id=1356]
    Other Threads:
    =>0x030052a8 VMThread [id=3540]
    0x03005200 WatcherThread [id=3520]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x0003db88/0x00000814] Threads_lock - owner thread: 0x030052a8
    [0x0003ff88/0x00000654] Heap_lock - owner thread: 0x03004760
    Heap
    def new generation total 4160K, used 1830K [0x22020000, 0x224a0000, 0x22780000)
    eden space 3712K, 46% used [0x22020000, 0x221cb6b0, 0x223c0000)
    from space 448K, 26% used [0x223c0000, 0x223de3c0, 0x22430000)
    to space 448K, 0% used [0x22430000, 0x22430000, 0x224a0000)
    tenured generation total 55036K, used 36993K [0x22780000, 0x25d3f000, 0x28020000)
    the space 55036K, 67% used [0x22780000, 0x24ba0738, 0x22d97600, 0x25d3f000)
    compacting perm gen total 8192K, used 1970K [0x28020000, 0x28820000, 0x2c020000)
    the space 8192K, 24% used [0x28020000, 0x2820c850, 0x2820ca00, 0x28820000)
    ro space 8192K, 62% used [0x2c020000, 0x2c528018, 0x2c528200, 0x2c820000)
    rw space 12288K, 46% used [0x2c820000, 0x2cdac620, 0x2cdac800, 0x2d420000)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000      C:\WINDOWS\system32\GDI32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77760000 - 0x778cc000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x10000000 - 0x10019000      C:\WINDOWS\system32\NVDESK32.DLL
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x7c9c0000 - 0x7d1d4000      C:\WINDOWS\system32\SHELL32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\comctl32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x75f80000 - 0x7607c000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINDOWS\system32\browselc.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x77260000 - 0x772fe000      C:\WINDOWS\system32\urlmon.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x00dd0000 - 0x00dec000      C:\Program Files\Norton AntiVirus\NavShExt.dll
    0x00df0000 - 0x00e0a000      C:\WINDOWS\system32\ccTrust.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x00e10000 - 0x00e98000      C:\WINDOWS\system32\shdoclc.dll
    0x00ea0000 - 0x01165000      C:\WINDOWS\system32\xpsp2res.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x017b0000 - 0x01a76000      C:\WINDOWS\system32\msi.dll
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x7d4a0000 - 0x7d785000      C:\WINDOWS\System32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\System32\msls31.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\System32\msimtf.dll
    0x5c2c0000 - 0x5c300000      C:\WINDOWS\ime\sptip.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\OLEACC.dll
    0x02150000 - 0x02161000      C:\WINDOWS\IME\SPGRMR.DLL
    0x02170000 - 0x021cb000      C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x325c0000 - 0x325d2000      C:\Program Files\Microsoft Office\OFFICE11\msohev.dll
    0x02350000 - 0x0236b000      C:\Program Files\Common Files\Symantec Shared\Script Blocking\scrauth.dll
    0x02480000 - 0x0249e000      C:\Program Files\Common Files\Symantec Shared\Script Blocking\ScrBlock.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x75e60000 - 0x75e73000      C:\WINDOWS\system32\cryptnet.dll
    0x4d4f0000 - 0x4d548000      C:\WINDOWS\system32\WINHTTP.dll
    0x75c50000 - 0x75cbe000      c:\windows\system32\jscript.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x71d40000 - 0x71d5c000      C:\WINDOWS\System32\actxprxy.dll
    0x03d40000 - 0x03ecd000      C:\WINDOWS\system32\macromed\flash\flash.ocx
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x6d430000 - 0x6d43a000      C:\WINDOWS\System32\ddrawex.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\System32\DDRAW.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\System32\DCIMAN32.dll
    0x76820000 - 0x76834000      C:\WINDOWS\system32\HLINK.DLL
    0x73300000 - 0x73367000      c:\windows\system32\vbscript.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x5ff20000 - 0x5ff46000      C:\WINDOWS\system32\MSRATING.dll
    0x5ff50000 - 0x5ff61000      C:\WINDOWS\system32\msratelc.dll
    0x79170000 - 0x79196000      C:\WINDOWS\system32\mscoree.dll
    0x79410000 - 0x79425000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorie.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\MSVCR71.dll
    0x79480000 - 0x79499000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorld.dll
    0x72b20000 - 0x72b38000      C:\WINDOWS\system32\plugin.ocx
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76980000 - 0x76988000      C:\WINDOWS\system32\LINKINFO.dll
    0x6e4a0000 - 0x6e4ac000      C:\WINDOWS\system32\corpol.dll
    0x732d0000 - 0x732d5000      C:\WINDOWS\system32\SOFTPUB.DLL
    0x71b20000 - 0x71b32000      C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000      C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000      C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000      C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000      C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000      C:\WINDOWS\System32\NETRAP.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\System32\SAMLIB.dll
    0x75f70000 - 0x75f79000      C:\WINDOWS\System32\davclnt.dll
    0x75970000 - 0x75a67000      C:\WINDOWS\system32\MSGINA.dll
    0x76360000 - 0x76370000      C:\WINDOWS\system32\WINSTA.dll
    0x74320000 - 0x7435d000      C:\WINDOWS\system32\ODBC32.dll
    0x06090000 - 0x060a7000      C:\WINDOWS\system32\odbcint.dll
    0x6bdd0000 - 0x6be05000      C:\WINDOWS\System32\dxtrans.dll
    0x6be10000 - 0x6be6a000      C:\WINDOWS\System32\dxtmsft.dll
    0x5a620000 - 0x5a67d000      C:\WINDOWS\system32\inetcpl.cpl
    0x667d0000 - 0x667ed000      C:\WINDOWS\system32\inetcplc.dll
    0x66400000 - 0x66442000      C:\WINDOWS\System32\msieftp.dll
    0x66f00000 - 0x66f35000      C:\WINDOWS\system32\QuickTime\QuickTimeWebHelper.qtx
    0x66800000 - 0x66e31000      C:\WINDOWS\system32\QuickTime.qts
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\dsound.dll
    0x73ee0000 - 0x73ee4000      C:\WINDOWS\system32\KsUser.dll
    0x67760000 - 0x677f3000      C:\WINDOWS\system32\QuickTime\QuickTime3GPP.qtx
    0x67100000 - 0x67291000      C:\WINDOWS\system32\QuickTime\QuickTimeAuthoring.qtx
    0x672a0000 - 0x672e9000      C:\WINDOWS\system32\QuickTime\QuickTimeCapture.qtx
    0x672f0000 - 0x6736e000      C:\WINDOWS\system32\QuickTime\QuickTimeEffects.qtx
    0x67550000 - 0x675cd000      C:\WINDOWS\system32\QuickTime\QuickTimeEssentials.qtx
    0x67380000 - 0x67404000      C:\WINDOWS\system32\QuickTime\QuickTimeImage.qtx
    0x67020000 - 0x670f7000      C:\WINDOWS\system32\QuickTime\QuickTimeInternetExtras.qtx
    0x674e0000 - 0x6754a000      C:\WINDOWS\system32\QuickTime\QuickTimeMPEG.qtx
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~2.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~2.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~2.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~2.0_0\bin;C:\Program Files\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;.
    USERNAME=a
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 1 Stepping 2, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 523760k(223640k free), swap 1278952k(977872k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_02-b09) for windows-x86, built on Mar 4 2005 01:53:53 by "java_re" with MS VC++ 6.0
    -- NEED HELP PELASE this is the error i get in an otepad file after my java freezes on my etc it has cost me $15,000 now :| I use to leave a java chat on while having other programes open and they do nto have a recovery option built into them as the java links me with other key partners. I get restarted, frozen anything Its been two weeks and I am falling behind each day. Please help me
    --Gabliaven                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

    I was also facing this problem for the last 2 days. Today i removed all the version of JRE installed on my system from Control Panel & installed Java Platfor, Standard Edition 6 Version 1.6.0. Now my applications are working perfectly.
    thanks
    Sooraj

  • Active Directory Web Services service terminated unexpectedly

    Hi everyone:
    I'm having a problem with the Active Directory Web Services service does not start. Attach the event ID:
    Log System:
    Log Name: System
    Source: Service Control Manager
    Date: 1/6/2015 6:55:19 PM
    Event ID: 7034
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: xxx.dominio.com
    Description:
    The Active Directory Web Services service terminated unexpectedly. It has done this 35 time(s).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
    <EventID Qualifiers="49152">7034</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>0</Task>
    <Opcode>0</Opcode>
    <Keywords>0x8080000000000000</Keywords>
    <TimeCreated SystemTime="2015-01-06T22:55:19.292471600Z" />
    <EventRecordID>32583</EventRecordID>
    <Correlation />
    <Execution ProcessID="556" ThreadID="1388" />
    <Channel>System</Channel>
    <Computer>xxx.dominio.com</Computer>
    <Security />
    </System>
    <EventData>
    <Data Name="param1">Active Directory Web Services</Data>
    <Data Name="param2">35</Data>
    <Binary>41004400570053000000</Binary>
    </EventData>
    </Event>
    Log Application:
    Log Name: Application
    Source: .NET Runtime
    Date: 1/6/2015 6:55:13 PM
    Event ID: 1026
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: xxx.dominio.com
    Description:
    Application: Microsoft.ActiveDirectory.WebServices.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.ServiceModel.CommunicationObjectFaultedException
    Stack:
    at System.ServiceModel.Channels.CommunicationObject.Close(System.TimeSpan)
    at Microsoft.ActiveDirectory.WebServices.WindowsHostService.StartService(System.Object)
    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
    at System.Threading.ThreadHelper.ThreadStart(System.Object)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name=".NET Runtime" />
    <EventID Qualifiers="0">1026</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2015-01-06T22:55:13.000000000Z" />
    <EventRecordID>1661713</EventRecordID>
    <Channel>Application</Channel>
    <Computer>xxx.dominio.com</Computer>
    <Security />
    </System>
    <EventData>
    <Data>Application: Microsoft.ActiveDirectory.WebServices.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.ServiceModel.CommunicationObjectFaultedException
    Stack:
    at System.ServiceModel.Channels.CommunicationObject.Close(System.TimeSpan)
    at Microsoft.ActiveDirectory.WebServices.WindowsHostService.StartService(System.Object)
    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
    at System.Threading.ThreadHelper.ThreadStart(System.Object)
    </Data>
    </EventData>
    </Event>
    And
    Log Name: Application
    Source: Application Error
    Date: 1/6/2015 6:55:13 PM
    Event ID: 1000
    Task Category: (100)
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: xxx.dominio.com
    Description:
    Faulting application name: Microsoft.ActiveDirectory.WebServices.exe, version: 6.2.9200.16579, time stamp: 0x516356a2
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16864, time stamp: 0x531d34d8
    Exception code: 0xe0434352
    Fault offset: 0x0000000000047b8c
    Faulting process id: 0x4ac
    Faulting application start time: 0x01d02a03d45e2d00
    Faulting application path: C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 1273a0f1-95f7-11e4-93f7-3440b59e2092
    Faulting package full name:
    Faulting package-relative application ID:
    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="2015-01-06T22:55:13.000000000Z" />
    <EventRecordID>1661714</EventRecordID>
    <Channel>Application</Channel>
    <Computer>xxx.dominio.com</Computer>
    <Security />
    </System>
    <EventData>
    <Data>Microsoft.ActiveDirectory.WebServices.exe</Data>
    <Data>6.2.9200.16579</Data>
    <Data>516356a2</Data>
    <Data>KERNELBASE.dll</Data>
    <Data>6.2.9200.16864</Data>
    <Data>531d34d8</Data>
    <Data>e0434352</Data>
    <Data>0000000000047b8c</Data>
    <Data>4ac</Data>
    <Data>01d02a03d45e2d00</Data>
    <Data>C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.exe</Data>
    <Data>C:\Windows\system32\KERNELBASE.dll</Data>
    <Data>1273a0f1-95f7-11e4-93f7-3440b59e2092</Data>
    <Data>
    </Data>
    <Data>
    </Data>
    </EventData>
    </Event>
    I was working about this solution but nothing. "http://blogs.microsoft.co.il/yuval14/2012/06/08/how-to-resolve-error-message-the-active-directory-web-services-service-terminated-unexpectedly-event-id-4079-andor-7034/".
    I changed the Microsoft.ActiveDirectory.WebServices.exe.config file, add two line " <add key=”DebugLevel” value=”Info” />
    <add key=”DebugLogFile” value=”c:windowsdebugadws.log” />", Attach the log
    ADWS Log - AppDomain Microsoft.ActiveDirectory.WebServices.exe with ID 1 - 01/06/2015 17:51:37 ((UTC-04:00) Georgetown, La Paz, Manaus, San Juan)
    OS Version Microsoft Windows NT 6.2.9200.0 - CLR Version 4.0.30319.18449
    ADWS: [1/6/2015 5:51:37 PM] [1] Main: entered
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeBackupPrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeBackupPrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeRestorePrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeRestorePrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeAssignPrimaryTokenPrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeAssignPrimaryTokenPrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeIncreaseQuotaPrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeIncreaseQuotaPrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeDebugPrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeDebugPrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeTcbPrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeTcbPrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: trying to remove priviledge SeShutdownPrivilege
    Utils: [1/6/2015 5:51:37 PM] [1] RemovePriviledgeFromProcess: unable to remove SeShutdownPrivilege priviledge because it was absent
    Utils: [1/6/2015 5:51:37 PM] [1] RemoveUnnecessaryPriviledges: all present unnecessary priviledges removed successfully
    Program: [1/6/2015 5:51:37 PM] [1] Main: Starting Windows service host.
    WindowsHostService: [1/6/2015 5:51:37 PM] [1] WindowsHostService constructed
    WindowsHostService: [1/6/2015 5:51:37 PM] [4] OnStart: entering.
    WindowsHostService: [1/6/2015 5:51:37 PM] [4] OnStart: ServiceStart thread started.
    WindowsHostService: [1/6/2015 5:51:37 PM] [6] StartService: entering.
    PerfCounters: [1/6/2015 5:51:37 PM] [6] InstallCountersIfNeeded: entered
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersInstalled: entered
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersInstalled: System\CurrentControlSet\Services\ADWS key is present
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersInstalled: System\CurrentControlSet\Services\ADWS\Performance key is present
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersInstalled: First Counter value is present
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersInstalled: perf counters are installed
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersCurrent: installed perf counter version: 6
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersCurrent: desired perf counter version: 6
    PerfCounters: [1/6/2015 5:51:37 PM] [6] AreCountersCurrent: perf counter category ADWS is current
    PerfCounters: [1/6/2015 5:51:37 PM] [6] InstallCountersIfNeeded: counters already installed and current, no work needed
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Create Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Delete Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Get Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Put Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Enumerate Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Pull Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Open Enumeration Contexts' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetADGroupMember Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetADPrincipalGroupMembership Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'SetPassword Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'ChangePassword Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetADPrincipalAuthorizationGroup Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'TranslateName Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetADDomainController Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetADDomain Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'MoveADOperationMasterRole Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetADForest Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'ChangeOptionalFeature Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'GetVersion Operations Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Number of Directory Instances' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Possible Connections' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Allocated Connections' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Reserved Connections' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Non-reserved Connections In Use' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Reserved Connections In Use' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Open Web Service Sessions' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Active Web Service Sessions' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Web Service Sessions Created Per Second' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action LDAP Cache Maximum Possible Size' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action LDAP Cache Connection Creation Rate' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action LDAP Cache Connection Reuse Rate' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action DS RPC Cache Maximum Possible Size' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action DS RPC Cache Connection Creation Rate' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action DS RPC Cache Connection Reuse Rate' performance counter
    AdwsPerfCounter: [1/6/2015 5:51:37 PM] [6] AdwsPerfCounter: constructed 'Custom Action Cache Size' performance counter
    PerfCounters: [1/6/2015 5:51:37 PM] [6] Initialize: initializing performance counters
    PerfCounters: [1/6/2015 5:51:37 PM] [6] Initialize: all performance counters initialized
    ADWSHost: [1/6/2015 5:51:37 PM] [6] ADWSHost constructed
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] ProvisionCertificate: using host name for certificate name
    Utils: [1/6/2015 5:51:37 PM] [6] GetComputerDnsName: computer name is xxx.dominio.com
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] ProvisionCertificate: using cert name xxx.dominio.com
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] ProvisionCertificate: loaded certificate
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] AddServiceThrottlingBehavior: MaxConcurrentCalls=32, MaxConcurrentSessions=500
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateServiceHost: including UserName endpoints
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateServiceHost: adding endpoints for Windows/
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateServiceHost: adding endpoints for UserName/
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxReceivedMessageSize=1048576, ReceiveTimeout=00:10:00
    ADWSHostFactory: [1/6/2015 5:51:37 PM] [6] CreateAdwsTransportWithMessageCredentialBinding: MaxDepth=10, MaxArrayLength=16384, MaxStringContentLength=32768
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] StartConfigurationLoading: entered
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] StartConfigurationLoading: establishing watcher on C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.exe.Config
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: entered
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for InitialPoolConnections, using default value 5
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 10 for MaxPoolConnections
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 50 for MaxPercentageReservedConnections
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for MaxReservedIdleTimeout, using default value 00:02:00
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for MaxReservedTimeout, using default value 00:30:00
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 5 for MaxConnectionsPerUser
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for MaxBindLifetime, using default value 00:15:00
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for MaxServerDownRetry, using default value 10
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for SyntaxCacheEntryLifetime, using default value 01:00:00
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 00:30:00 for MaxEnumContextExpiration
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 00:02:00 for OperationTimeout
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 00:02:00 for MaxPullTimeout
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 5 for MaxEnumCtxsPerSession
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 100 for MaxEnumCtxsTotal
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for CertName, using default value NULL
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for MaxGroupOrMemberEntries, using default value 5000
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for CustomActionConnectionCount, using default value 10
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for CustomActionIdleConnectionTimeout, using default value 00:02:00
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: no value specified for InstanceRediscoveryInterval, using default value 00:01:00
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 32 for MaxConcurrentCalls
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value 500 for MaxConcurrentSessions
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value Info for DebugLevel
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] LoadConfigSettingsFromFile: using loaded value C:\temp\windowsdebugadws.log for DebugLogFile
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] ValidateSettingLimits: entered
    ClassManager: [1/6/2015 5:51:37 PM] [6] Start: starting...
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [3] ScavengerThread: thread starting
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [3] Scavenger: waking up at 00:00:40 interval
    EnumerationContextCache: [1/6/2015 5:51:37 PM] [6] EnumerationContextCache: using timer inverval 00:00:30
    InstanceMap: [1/6/2015 5:51:37 PM] [6] InstanceMap: using timer inverval 00:01:00
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadAll: beginning
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadNTDSInstance: entered
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadNTDSInstance: found NTDS Parameters key
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadNTDSInstance: trying to change state to DC
    InstanceMap: [1/6/2015 5:51:37 PM] [6] AddRemoveSessionPoolAndDictionaryEntry: trying to change state for identifier ldap:389
    InstanceMap: [1/6/2015 5:51:37 PM] [6] AddSessionPool: adding a session pool for NTDS
    DirectoryDataAccessImplementation: [1/6/2015 5:51:37 PM] [6] InitializeInstance: entering, instance=NTDS, init=5, max=10
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] InitializeInstance: entering, instance=NTDS, init=5, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 0
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=NTDS
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=NTDS, new count=1, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 1
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=NTDS
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=NTDS, new count=2, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 2
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=NTDS
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=NTDS, new count=3, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 3
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=NTDS
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=NTDS, new count=4, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 4
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=NTDS
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=NTDS, new count=5, max=10
    InstanceMap: [1/6/2015 5:51:37 PM] [6] AddRemoveSessionPoolAndDictionaryEntry: state change successful (now hosts identifier ldap:389)
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadGCInstance: entered
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckForGlobalCatalog: entered
    DirectoryUtilities: [1/6/2015 5:51:37 PM] [6] GetTimeRemaining: remaining time is 00:02:00
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckForGlobalCatalog: isGlobalCatalogReady: TRUE
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckForGlobalCatalog: NTDS Settings DN: CN=NTDS Settings,CN=XXX,CN=Servers,CN=Alpacoma,CN=Sites,CN=Configuration,DC=dominio,DC=com
    DirectoryUtilities: [1/6/2015 5:51:37 PM] [6] GetTimeRemaining: remaining time is 00:02:00
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckForGlobalCatalog: options: 1
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadGCInstance: CheckForGlobalCatalog=True
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadGCInstance: trying to change state to Global Catalog
    InstanceMap: [1/6/2015 5:51:37 PM] [6] AddRemoveSessionPoolAndDictionaryEntry: trying to change state for identifier ldap:3268
    InstanceMap: [1/6/2015 5:51:37 PM] [6] AddSessionPool: adding a session pool for GC
    DirectoryDataAccessImplementation: [1/6/2015 5:51:37 PM] [6] InitializeInstance: entering, instance=GC, init=5, max=10
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] InitializeInstance: entering, instance=GC, init=5, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 0
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=GC
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=GC, new count=1, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 1
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=GC
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=GC, new count=2, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 2
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=GC
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=GC, new count=3, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 3
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=GC
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=GC, new count=4, max=10
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ConnectionPool: trying to add connection 4
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: entering, instance=GC
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] ConnectionPoolEntry: connection created
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] AddConnectionIfPossible: grew pool, instance=GC, new count=5, max=10
    InstanceMap: [1/6/2015 5:51:37 PM] [6] AddRemoveSessionPoolAndDictionaryEntry: state change successful (now hosts identifier ldap:3268)
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadADAMInstances: entered
    InstanceMap: [1/6/2015 5:51:37 PM] [6] CheckAndLoadAll: caught unexpected exception System.IO.IOException: No more data is available.
    at Microsoft.Win32.RegistryKey.Win32Error(Int32 errorCode, String str)
    at Microsoft.Win32.RegistryKey.InternalGetSubKeyNames()
    at Microsoft.ActiveDirectory.WebServices.InstanceMap.DiscoverInstancesFromRegistry(String regRootKey, String regKeyInstancePrefix, Boolean& instanceEncounteredErrorsOnThisRun, List`1 discoveredInstances, DirectoryType directoryType)
    at Microsoft.ActiveDirectory.WebServices.InstanceMap.CheckAndLoadADAMInstances()
    at Microsoft.ActiveDirectory.WebServices.InstanceMap.CheckAndLoadAll()
    ADWSHost: [1/6/2015 5:51:37 PM] [6] OnClosed: entered
    CustomActionCaches: [1/6/2015 5:51:37 PM] [6] StopCaches: disposing Custom Action connection caches
    ClassManager: [1/6/2015 5:51:37 PM] [6] Stop: closing down...
    EnumerationContextCache: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    QuotaTracker: [1/6/2015 5:51:37 PM] [6] Clear: clearing all usage
    DirectoryActionImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    DirectoryDataAccessImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [3] ScavengerThread: woke up
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [3] ScavengerThread: received termination signal, exiting
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing pool
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing (instance=NTDS)...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ProhibitConnectionAcquisition: entering, instance=NTDS
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing pool
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing (instance=GC)...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] ProhibitConnectionAcquisition: entering, instance=GC
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    ConnectionPool: [1/6/2015 5:51:37 PM] [6] Dispose: disposing a ConnectionPoolEntry
    ConnectionPoolEntry: [1/6/2015 5:51:37 PM] [6] Dispose: disposing...
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing utility connection NTDS
    LdapSessionPoolImplementation: [1/6/2015 5:51:37 PM] [6] Dispose: disposing utility connection GC
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] StopConfigurationLoading: entered
    ConfigurationSettings: [1/6/2015 5:51:37 PM] [6] Dispose: disposing
    Some Idea, Tks for your help.
    migrations

    Here a dump file when I try to start the service, I hope can you help me.
    Version=1
    EventType=CLR20r3
    EventTime=130652059133527283
    ReportType=2
    Consent=1
    ReportIdentifier=4368792e-974e-11e4-93f7-3440b59e2092
    IntegratorReportIdentifier=4368792d-974e-11e4-93f7-3440b59e2092
    NsAppName=Microsoft.ActiveDirectory.WebServices.exe
    Response.type=4
    Sig[0].Name=Problem Signature 01
    Sig[0].Value=V0KXCIQIJBOA2NW5DIQBFTEBV5SCPPFH
    Sig[1].Name=Problem Signature 02
    Sig[1].Value=6.2.9200.16579
    Sig[2].Name=Problem Signature 03
    Sig[2].Value=516356a2
    Sig[3].Name=Problem Signature 04
    Sig[3].Value=System.ServiceModel
    Sig[4].Name=Problem Signature 05
    Sig[4].Value=4.0.30319.34230
    Sig[5].Name=Problem Signature 06
    Sig[5].Value=53be5c02
    Sig[6].Name=Problem Signature 07
    Sig[6].Value=ca
    Sig[7].Name=Problem Signature 08
    Sig[7].Value=c4
    Sig[8].Name=Problem Signature 09
    Sig[8].Value=I0SHPZEWVQV4P1UJY40X15MQTHF34RR5
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.2.9200.2.0.0.272.7
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=5220
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=52200675db6baa97bf416b02ff886e01
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=0b14
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=0b146b7eb5ed6bd9871c898c60ee5051
    UI[2]=C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.exe
    UI[5]=Check online for a solution (recommended)
    UI[6]=Check for a solution later (recommended)
    UI[7]=Close
    UI[8]=Microsoft.ActiveDirectory.WebServices stopped working and was closed
    UI[9]=A problem caused the application to stop working correctly. Windows will notify you if a solution is available.
    UI[10]=&Close
    LoadedModule[0]=C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\SYSTEM32\MSCOREE.DLL
    LoadedModule[3]=C:\Windows\system32\KERNEL32.dll
    LoadedModule[4]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[5]=C:\Windows\SYSTEM32\dlphook.x64.dll
    LoadedModule[6]=C:\Windows\SYSTEM32\VERSION.dll
    LoadedModule[7]=C:\Windows\system32\PSAPI.DLL
    LoadedModule[8]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[9]=C:\Windows\system32\WS2_32.dll
    LoadedModule[10]=C:\Windows\system32\msvcrt.dll
    LoadedModule[11]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[12]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[13]=C:\Windows\system32\NSI.dll
    LoadedModule[14]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
    LoadedModule[15]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[16]=C:\Windows\system32\USER32.dll
    LoadedModule[17]=C:\Windows\system32\GDI32.dll
    LoadedModule[18]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
    LoadedModule[19]=C:\Windows\SYSTEM32\MSVCR110_CLR0400.dll
    LoadedModule[20]=C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\51fbf5aac9c6f1aef14557276f98ad28\mscorlib.ni.dll
    LoadedModule[21]=C:\Windows\system32\ole32.dll
    LoadedModule[22]=C:\Windows\SYSTEM32\combase.dll
    LoadedModule[23]=C:\Windows\SYSTEM32\CRYPTBASE.dll
    LoadedModule[24]=C:\Windows\SYSTEM32\bcryptPrimitives.dll
    LoadedModule[25]=C:\Windows\SYSTEM32\CRYPTSP.dll
    LoadedModule[26]=C:\Windows\system32\rsaenh.dll
    LoadedModule[27]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll
    LoadedModule[28]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[29]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System\803e478b5cb2fe994c4f977853849956\System.ni.dll
    LoadedModule[30]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Serv759bfb78#\060758702287150a3b9ca51bfbd135e4\System.ServiceProcess.ni.dll
    LoadedModule[31]=C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.Shared.dll
    LoadedModule[32]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\af08c33d3e853168e58f0bb32118170b\System.Configuration.ni.dll
    LoadedModule[33]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\5641065f716dfd6c76dd7bc6ab18c47a\System.Core.ni.dll
    LoadedModule[34]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\b3344890d2d919e93f506faabd08186a\System.Xml.ni.dll
    LoadedModule[35]=C:\Windows\system32\urlmon.dll
    LoadedModule[36]=C:\Windows\system32\iertutil.dll
    LoadedModule[37]=C:\Windows\system32\WININET.dll
    LoadedModule[38]=C:\Windows\system32\USERENV.dll
    LoadedModule[39]=C:\Windows\system32\profapi.dll
    LoadedModule[40]=C:\Windows\SYSTEM32\Secur32.dll
    LoadedModule[41]=C:\Windows\SYSTEM32\SSPICLI.DLL
    LoadedModule[42]=C:\Windows\system32\SHELL32.dll
    LoadedModule[43]=C:\Windows\SYSTEM32\SHCORE.dll
    LoadedModule[44]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Dire5d62f0a2#\7ab37f1ca732666c1ab41d8e500942e0\System.DirectoryServices.Protocols.ni.dll
    LoadedModule[45]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.ServiceModel\4e643cb8b12402db89eb2d5839872b78\System.ServiceModel.ni.dll
    LoadedModule[46]=C:\Windows\assembly\NativeImages_v4.0.30319_64\SMDiagnostics\02b9ba874b1c07b6016aa9406745e96b\SMDiagnostics.ni.dll
    LoadedModule[47]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.Services\f936aad8a951da6674d460db1855a3db\System.Web.Services.ni.dll
    LoadedModule[48]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Servd1dec626#\8944debbd3293f930c7e37b64aed0d77\System.ServiceModel.Internals.ni.dll
    LoadedModule[49]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.IdentityModel\5844c97798b9e56b45cb0e5d3505ffd2\System.IdentityModel.ni.dll
    LoadedModule[50]=C:\Windows\system32\crypt32.dll
    LoadedModule[51]=C:\Windows\system32\MSASN1.dll
    LoadedModule[52]=C:\Windows\SYSTEM32\DPAPI.dll
    LoadedModule[53]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Runteb92aa12#\3838e7c87e962eaec01572bff0396922\System.Runtime.Serialization.ni.dll
    LoadedModule[54]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Servf73e6522#\38df17ed0feec9b27d7d33272eecc176\System.ServiceModel.Web.ni.dll
    LoadedModule[55]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Dired13b18a9#\4ecba93b4eae5bb0c97205c4e4196702\System.DirectoryServices.ni.dll
    LoadedModule[56]=C:\Windows\system32\wldap32.dll
    LoadedModule[57]=C:\Windows\system32\mswsock.dll
    LoadedModule[58]=C:\Windows\SYSTEM32\DNSAPI.dll
    LoadedModule[59]=C:\Windows\System32\rasadhlp.dll
    LoadedModule[60]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[61]=C:\Windows\SYSTEM32\IPHLPAPI.DLL
    LoadedModule[62]=C:\Windows\SYSTEM32\WINNSI.DLL
    LoadedModule[63]=C:\Windows\SYSTEM32\DSPARSE.dll
    LoadedModule[64]=C:\Windows\system32\kerberos.DLL
    LoadedModule[65]=C:\Windows\SYSTEM32\cryptdll.dll
    LoadedModule[66]=C:\Windows\SYSTEM32\bcrypt.dll
    LoadedModule[67]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\diasymreader.dll
    FriendlyEventName=Stopped working
    ConsentKey=CLR20r3
    AppName=Microsoft.ActiveDirectory.WebServices
    AppPath=C:\Windows\ADWS\Microsoft.ActiveDirectory.WebServices.exe
    NsPartner=windows
    NsGroup=windows8
    Tks for your help.
    migrations

  • NI-LabVIEW run-time engine interop 2010 failed to install

    Hi,
    While installing Labview 2010 (32 bit) I got an error message:
    NI-LabVIEW run-time engine interop 2010 installation has failed with the following error:
    Error 1935. .... (see the .ppt for screenshot if interested)... HRESULT 0x8002802F
    I googled HRESULT 0x8002802F and found a page that said that this error is usually b/c of a missing/corrupt entry in the registry: file %windir%\system32\mscoree.dll, and that "repairing the highest version of the .NET Framework on the system will correct any problems resulting from this error."
    I have verified that mscoree.dll is not present, and I don't have the .NET Framework installed on my system. SO, I have the following questions:
    1) do you concur with the advice given on the page referenced re: the reason for the error;
    2) If so, should I install .NET Framework, and what do I then need to do in LabVIEW to tell it that the .dll is now present?
    3) If your opinion is other, what do you advise?
    Cheers
    Attachments:
    Labview Installation error.ppt ‏227 KB

    Hi Luke, 
    After doing some research, there are two possible solutions.  
    1) According to a KB, it could be your antivirus. You may want to try to turn off any spyware blocking software such as Ad-Aware, Norton, etc and try the installation again. 
    2) Another customer had the same error, and they got it working by installing .NET 3.5 from Microsoft's website and then installing LabVIEW again.
    Hope one of those options work for you!

  • Error in Java Runtime Environment when running JNI native library

    Hi,
    I am kinda new to JNI but understand it [and done some tutorials]. I am trying to implement JavaStyle [ a Java vst host that uses JNI ] and have reached a point where i successfully build the native code to a dll, and almost manage to load the native dll library. I do not get a Unsatisfied Link Error, but instead have the JVM close due an internal error.
    I am completely lost and dont know what to try now, and I would appreciate any help offered.
    I have debugged and the error arrives at the System.load line of code:
      static {
        System.out.print("Pre loadLibrary..."); 
        System.loadLibrary("JaVaSTyle");
        System.out.println("JavaStyle dll loaded in JVSTLibrary");
      }Detail: I compiled the native library with MS visual studio .NET 2003 using the project settings supplied from the CVS repository.
    I use Netbeans 6.0 for the java side of things. The console output is:
    # An unexpected error has been detected by Java Runtime Environment:
    #  Internal Error (0xe0434f4d), pid=1500, tid=6012
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # C  [kernel32.dll+0x12a5b]
    # An error report file with more information is saved as hs_err_pid1500.logand the error report is :
    # An unexpected error has been detected by Java Runtime Environment:
    #  Internal Error (0xe0434f4d), pid=1500, tid=6012
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # C  [kernel32.dll+0x12a5b]
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    ---------------  T H R E A D  ---------------
    Current thread (0x00297000):  JavaThread "main" [_thread_in_native, id=6012]
    siginfo: ExceptionCode=0xe0434f4d
    Registers:
    EAX=0x0090f4c0, EBX=0x00000001, ECX=0x000b0fd0, EDX=0x00000000
    ESP=0x0090f4bc, EBP=0x0090f510, ESI=0x00000000, EDI=0x00000000
    EIP=0x7c812a5b, EFLAGS=0x00000246
    Top of Stack: (sp=0x0090f4bc)
    0x0090f4bc:   000b0fd0 e0434f4d 00000001 00000000
    0x0090f4cc:   7c812a5b 00000000 791b9d02 02ea1198
    0x0090f4dc:   07624998 000b0fd0 0090f4fc 791be271
    0x0090f4ec:   000ae008 00000002 07624998 00000000
    0x0090f4fc:   0090f50c 791be286 000ae008 07624998
    0x0090f50c:   0090f51c 0090f568 7921020d e0434f4d
    0x0090f51c:   00000001 00000000 00000000 000b0fd0
    0x0090f52c:   0090f578 00000001 7c812a5b 0090f1f0
    Instructions: (pc=0x7c812a5b)
    0x7c812a4b:   8d 7d c4 f3 a5 5f 8d 45 b0 50 ff 15 08 15 80 7c
    0x7c812a5b:   5e c9 c2 10 00 85 ff 0f 8e 36 93 ff ff 8b 55 fc
    Stack: [0x008c0000,0x00910000),  sp=0x0090f4bc,  free space=317k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [kernel32.dll+0x12a5b]
    C  [mscorwks.dll+0x6020d]
    C  [mscorwks.dll+0x60190]
    C  [mscorwks.dll+0x60144]
    C  [mscorwks.dll+0xa6dcb]
    C  [mscorwks.dll+0x26a7e]
    C  0x000b15f6
    j  java.lang.ClassLoader$NativeLibrary.load(Ljava/lang/String;)V+0
    j  java.lang.ClassLoader.loadLibrary0(Ljava/lang/Class;Ljava/io/File;)Z+300
    j  java.lang.ClassLoader.loadLibrary(Ljava/lang/Class;Ljava/lang/String;Z)V+268
    j  java.lang.Runtime.loadLibrary0(Ljava/lang/Class;Ljava/lang/String;)V+54
    j  java.lang.System.loadLibrary(Ljava/lang/String;)V+7
    j  org.tango.JaVaSTyle.JVSTLibrary.<clinit>()V+10
    v  ~StubRoutines::call_stub
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  java.lang.ClassLoader$NativeLibrary.load(Ljava/lang/String;)V+0
    j  java.lang.ClassLoader.loadLibrary0(Ljava/lang/Class;Ljava/io/File;)Z+300
    j  java.lang.ClassLoader.loadLibrary(Ljava/lang/Class;Ljava/lang/String;Z)V+268
    j  java.lang.Runtime.loadLibrary0(Ljava/lang/Class;Ljava/lang/String;)V+54
    j  java.lang.System.loadLibrary(Ljava/lang/String;)V+7
    j  org.tango.JaVaSTyle.JVSTLibrary.<clinit>()V+10
    v  ~StubRoutines::call_stub
    j  org.tango.JaVaSTyle.Main.main([Ljava/lang/String;)V+3
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x02a6d800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=4752]
      0x02a68c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4472]
      0x02a67800 JavaThread "Attach Listener" daemon [_thread_blocked, id=2016]
      0x02a66c00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4328]
      0x02a62400 JavaThread "Finalizer" daemon [_thread_blocked, id=5072]
      0x02a5dc00 JavaThread "Reference Handler" daemon [_thread_blocked, id=5552]
    =>0x00297000 JavaThread "main" [_thread_in_native, id=6012]
    Other Threads:
      0x02a5cc00 VMThread [id=4660]
      0x02a6f000 WatcherThread [id=3864]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 960K, used 199K [0x22970000, 0x22a70000, 0x22e50000)
      eden space 896K,  22% used [0x22970000, 0x229a1ff0, 0x22a50000)
      from space 64K,   0% used [0x22a50000, 0x22a50000, 0x22a60000)
      to   space 64K,   0% used [0x22a60000, 0x22a60000, 0x22a70000)
    tenured generation   total 4096K, used 0K [0x22e50000, 0x23250000, 0x26970000)
       the space 4096K,   0% used [0x22e50000, 0x22e50000, 0x22e50200, 0x23250000)
    compacting perm gen  total 12288K, used 23K [0x26970000, 0x27570000, 0x2a970000)
       the space 12288K,   0% used [0x26970000, 0x26975c48, 0x26975e00, 0x27570000)
        ro space 8192K,  66% used [0x2a970000, 0x2aebf860, 0x2aebfa00, 0x2b170000)
        rw space 12288K,  52% used [0x2b170000, 0x2b7bf078, 0x2b7bf200, 0x2bd70000)
    Dynamic libraries:
    0x00400000 - 0x00423000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\msvcr71.dll
    0x6d870000 - 0x6daba000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\client\jvm.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x5cd70000 - 0x5cd77000      C:\WINDOWS\system32\serwvdrv.dll
    0x5b0a0000 - 0x5b0a7000      C:\WINDOWS\system32\umdmxfrm.dll
    0x003a0000 - 0x003ad000      C:\WINDOWS\system32\myokent.dll
    0x6d3c0000 - 0x6d3c8000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d820000 - 0x6d82c000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\verify.dll
    0x6d460000 - 0x6d47f000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\java.dll
    0x6d860000 - 0x6d86f000      C:\Program Files\Java\jdk1.6.0_03\jre\bin\zip.dll
    0x10000000 - 0x10018000      D:\NetbeansWorkspace\myJavaStyle\JaVaSTyle.dll
    0x79170000 - 0x79196000      C:\WINDOWS\system32\mscoree.dll
    0x10480000 - 0x1053c000      C:\WINDOWS\system32\MSVCP71D.dll
    0x10200000 - 0x10287000      C:\WINDOWS\system32\MSVCR71D.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x791b0000 - 0x79412000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorwks.dll
    0x79040000 - 0x79085000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\fusion.dll
    0x7c9c0000 - 0x7d1d6000      C:\WINDOWS\system32\SHELL32.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\comctl32.dll
    0x79780000 - 0x79980000      c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x79430000 - 0x7947c000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\MSCORJIT.DLL
    0x51a70000 - 0x51af0000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\diasymreader.dll
    VM Arguments:
    java_command: org.tango.JaVaSTyle.Main
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=.;C:\jdk1.5.0_09\bin;C:\Program Files\Java\jre1.6.0_03\lib\ext\QTJava.zip
    PATH=C:\Program Files\MiKTeX 2.7\miktex\bin;c:\program files\imagemagick-6.3.7-q16;C:\texmf\miktex\bin;C:\Program Files\ActiveState Komodo IDE 4.2\;C:\Program Files\Autodesk\Maya2008\bin;C:\Python25\;C:\Program Files\PC Connectivity Solution\;C:\ORANT\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\GPS Pathfinder Office 3.00;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\Common Files\Motorola\Toolbox;C:\PROGRA~1\COMMON~1\Motorola\Toolbox;C:\Program Files\Novell\ZENworks\;C:\Program Files\Novell\SecureLogin;C:\Program Files\Smart Projects\IsoBuster;C:\Latex\MikTeX\V2.10;C:\PROGRA~1\CA\Common\SCANEN~1;C:\Program Files\CA\Common\ScanEngine;C:\Program Files\CA\SharedComponents\CAUpdate\;C:\Program Files\CA\SharedComponents\ThirdParty\;C:\Program Files\CA\SharedComponents\SubscriptionLicense\;C:\PROGRA~1\CA\ETRUST~1;C:\Program Files\QuickTime\QTSystem\;C:\cygwin\bin;C:\Program Files\Tcl\bin;D:\netbeansWorkspace\myJavaStyle;C:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT;C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;C:\Program Files\Microsoft Visual Studio\Common\Tools;C:\Program Files\Microsoft Visual Studio\VC98\bin;C:\Program Files\Csound\bin;C:\Program Files\CVSNT\
    USERNAME=hectorj
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 6 model 13 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047920k(270244k free), swap 2520456k(1654520k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_03-b05) for windows-x86, built on Sep 24 2007 22:24:33 by "java_re" with unknown MS VC++:1310

    Something is wrong with the library.
    Staring at java code will not help you figure that out.
    Maybe it isn't intended to be loaded in java but instead it loads java itself?
    If not then write a C/C++ basic app that links that dll in and see if you can at least get it to start.

  • A network related or instance specific error when I run VS2005 application

    I am new to programming, I am a system and network engineer so not much understanding in coding. I have an application which has been created in VS2005 .net which has an sql database. The SQL server version is 2000 which is running on Windows 2003 serer.
    This application is running fine on existing Windows XP machines. But I have tried to installed on new Windows XP, 7 and 8 PC's but all the clients getting error "A network related or instance specific error.........error 40 could not open a connection
    to SQL server. I have tried to connect the sql server with an UDL file and I can connect successfully. Also installed VS2005 and able to connect the SQL server successfully but some reason the application cannot connect to the sql server. My exe.config connection
    string as follow (this connection string works fine with the exiting windows XP PC's).
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
      </configSections>
      <connectionStrings>
        <add name="xxx.MySettings.SQLConString" connectionString="server=10.0.0.23;database=XXX;Persist Security Info=True;User ID=sa;Password=password"
          providerName="System.Data.SqlClient" />
        <add name="xxx.MySettings.OLEConString" connectionString="Provider=SQLOLEDB;server=10.0.0.23;Persist Security Info=True;Password=password;User ID=sa;database=XXX"
          providerName="System.Data.OleDb" />
        <add name="xxx.MySettings.ConnectionString" connectionString="Provider=SQLNCLI.1;server=10.0.0.23;Persist Security Info=True;Password=password;User ID=sa;database=XXX"
          providerName="System.Data.OleDb" />
        <add name="xxx.MySettings.WGCConnectionString" connectionString="server=192.0.0.23;database=XXX;Persist Security Info=True;User ID=sa;Password=password"
          providerName="System.Data.SqlClient" />
      </connectionStrings>
      <appSettings>
        <!--   User application and configured property settings go here.-->
        <!--   Example: <add key="settingName" value="settingValue"/> -->
      </appSettings>
    </configuration>
    We have two sites, IP 10 range is the head office and 192 is a sub office and both sites using same application but different databases.
    Please help!
    Thanks
    Kumar

    Debug 
    'MyApps.exe': Loaded 'C:\MySuite\MySuite\bin\MyApps.exe', No native symbols in symbol file.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\mscoree.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\shimeng.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\shimeng.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\advapi32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\rpcrt4.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\secur32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\shlwapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\gdi32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\user32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\imm32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_44262b86\msvcr80.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\shell32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\comctl32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\comctl32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Culture.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Culture.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\mscorlib\dae02331a443fb52216ca83292cb2f21\mscorlib.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\mscorlib.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\ole32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\uxtheme.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msctf.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\Program Files\TeamViewer\Version9\tv_w32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\version.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\MySuite\MySuite\bin\MyApps.exe', Symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System\4b0455ae94e3cecca4bb3ba8c96828c9\System.ni.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Drawing\424bff3295c6e7539cc6df62b9425bd0\System.Drawing.ni.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Windows.Forms\1cdfe1998ad6794db3237006906c6fa2\System.Windows.Forms.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\Microsoft.VisualBas#\aa86b1a0c9a5bd2a973bef106c0461f9\Microsoft.VisualBasic.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualBasic\8.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Data\af8afdcab485e00a04b18ed487981f3d\System.Data.ni.dll', No symbols loaded.
    'MyApps.exe': Loaded 'System.Data.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'System.Data.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\ws2_32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\ws2help.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\crypt32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msasn1.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Configuration\4b6e70acd99dc22e29b7fc8f9ac340c4\System.Configuration.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Xml\7faf645dc46781225cb722edf9e1e738\System.Xml.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\apphelp.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msctfime.ime', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.6002.23084_x-ww_f3f35550\GdiPlus.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\xpsp2res.dll', Binary was not built with debug information.
    'MyApps.exe' (Managed): Loaded 'C:\MySuite\MySuite\bin\en\MyApps.resources.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.Transactions\7e310942e6e9a5d623e003130ec3d9bd\System.Transactions.ni.dll', No symbols loaded.
    'MyApps.exe': Loaded 'System.Transactions.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'System.Transactions.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\GAC_32\System.Transactions\2.0.0.0__b77a5c561934e089\System.Transactions.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_32\System.Transactions\2.0.0.0__b77a5c561934e089\System.Transactions.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\sxs.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\clbcatq.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\comres.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\oleaut32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\Program Files\Common Files\System\Ole DB\oledb32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msdart.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\comdlg32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\Program Files\Common Files\System\Ole DB\oledb32r.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\Program Files\Common Files\System\Ole DB\sqloledb.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\Program Files\Common Files\System\Ole DB\msdatl3.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\netapi32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\comsvcs.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\colbact.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\mtxclu.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\wsock32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\clusapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\resutils.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\userenv.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\dbnetlib.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\security.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msapsspc.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msvcrt40.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\msapsspc.dll'
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\msvcrt40.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\schannel.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\schannel.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\digest.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\digest.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msnsspc.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msvcrt40.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\msnsspc.dll'
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\msvcrt40.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\msv1_0.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\cryptdll.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\iphlpapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\ntdsapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\dnsapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\wldap32.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\mswsock.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\hnetcfg.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\wshtcpip.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\schannel.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\rsaenh.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\dssenh.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.EnterpriseSe#\78e7a4c3acd1a345c4ef1f73ff48a1dd\System.EnterpriseServices.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'ImageAtBase0x10000000', No symbols loaded.
    'MyApps.exe': Unloaded 'ImageAtBase0x10000000'
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\System.EnterpriseSe#\78e7a4c3acd1a345c4ef1f73ff48a1dd\System.EnterpriseServices.Wrapper.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    'MyApps.exe': Loaded 'ImageAtBase0x11000000', No symbols loaded.
    'MyApps.exe': Unloaded 'ImageAtBase0x11000000'
    'MyApps.exe': Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorsec.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\wintrust.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\imagehlp.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\riched20.dll', No symbols loaded.
    'MyApps.exe': Unloaded 'C:\WINDOWS\system32\riched20.dll'
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\cryptnet.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\psapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\sensapi.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\winhttp.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\MySuite\MySuite\bin\C1.Win.C1TrueDBGrid.2.dll', Binary was not built with debug information.
    'MyApps.exe' (Managed): Loaded 'C:\MySuite\MySuite\bin\C1.Win.C1TrueDBGrid.2.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\diasymreader.dll', No symbols loaded.
    'MyApps.exe': Loaded 'C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\Accessibility\06b454361516e65eca55a743cd93cefc\Accessibility.ni.dll', No symbols loaded.
    'MyApps.exe' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_MSIL\Accessibility\2.0.0.0__b03f5f7f11d50a3a\Accessibility.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.
    *** HR originated: -2147024774
    ***   Source File: d:\iso_whid\x86fre\base\isolation\com\copyout.cpp, line 1302
    *** HR propagated: -2147024774
    ***   Source File: d:\iso_whid\x86fre\base\isolation\com\enumidentityattribute.cpp, line 144
    'MyApps.exe': Loaded 'C:\WINDOWS\system32\mslbui.dll', No symbols loaded.
    The thread 'Win32 Thread' (0xc20) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x9b4) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x1464) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x6a8) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0xdf4) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x1110) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0xc04) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x1188) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0xd9c) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x153c) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x10d8) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x914) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x175c) has exited with code 0 (0x0).
    The program '[5412] MyApps.exe: Managed' has exited with code 0 (0x0).
    The program '[5412] MyApps.exe: Native' has exited with code 0 (0x0).
    The program '[5412] MyApps.exe: T-SQL' has exited with code 0 (0x0).

  • A fatal error occurred preventing product use, LaserJet Pro 200 color MFP M276nw

    When trying to install the full printer software suite, as soon as I click the button to install after the .exe is extracted, I get an alert window with, "A fatal error occurred preventing product use." No error code, just an option to close the dialog.  I have read all the related support topics and similar threads and tried all the solutions to no avail.  Pasted below is the detailed error log. Any help at all would be much appreciated, Happy New Year!
    Version=1
    EventType=CLR20r3
    EventTime=130330861946634368
    ReportType=2
    Consent=1
    UploadTime=130330861947102369
    ReportIdentifier=b741489f-732d-11e3-ad06-78e7d1894a6a
    WOW64=1
    Response.BucketId=3240107344
    Response.BucketTable=5
    Response.type=4
    Sig[0].Name=Problem Signature 01
    Sig[0].Value=hpbcsiinstaller.exe
    Sig[1].Name=Problem Signature 02
    Sig[1].Value=5.0.3.8039
    Sig[2].Name=Problem Signature 03
    Sig[2].Value=4fe20fe8
    Sig[3].Name=Problem Signature 04
    Sig[3].Value=hpbcsiInstaller
    Sig[4].Name=Problem Signature 05
    Sig[4].Value=5.0.3.8039
    Sig[5].Name=Problem Signature 06
    Sig[5].Value=4fe20fe8
    Sig[6].Name=Problem Signature 07
    Sig[6].Value=e
    Sig[7].Name=Problem Signature 08
    Sig[7].Value=1e
    Sig[8].Name=Problem Signature 09
    Sig[8].Value=System.TypeInitialization
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.768.3
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    UI[2]=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiInstaller.exe
    UI[3]=HP Installer has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiInstaller.exe
    LoadedModule[1]=C:\Windows\SysWOW64\ntdll.dll
    LoadedModule[2]=C:\Windows\SYSTEM32\MSCOREE.DLL
    LoadedModule[3]=C:\Windows\syswow64\KERNEL32.dll
    LoadedModule[4]=C:\Windows\syswow64\KERNELBASE.dll
    LoadedModule[5]=C:\Windows\system32\apphelp.dll
    LoadedModule[6]=C:\Windows\AppPatch\AcLayers.DLL
    LoadedModule[7]=C:\Windows\syswow64\SspiCli.dll
    LoadedModule[8]=C:\Windows\syswow64\msvcrt.dll
    LoadedModule[9]=C:\Windows\syswow64\RPCRT4.dll
    LoadedModule[10]=C:\Windows\syswow64\CRYPTBASE.dll
    LoadedModule[11]=C:\Windows\SysWOW64\sechost.dll
    LoadedModule[12]=C:\Windows\syswow64\USER32.dll
    LoadedModule[13]=C:\Windows\syswow64\GDI32.dll
    LoadedModule[14]=C:\Windows\syswow64\LPK.dll
    LoadedModule[15]=C:\Windows\syswow64\USP10.dll
    LoadedModule[16]=C:\Windows\syswow64\ADVAPI32.dll
    LoadedModule[17]=C:\Windows\syswow64\SHELL32.dll
    LoadedModule[18]=C:\Windows\syswow64\SHLWAPI.dll
    LoadedModule[19]=C:\Windows\syswow64\ole32.dll
    LoadedModule[20]=C:\Windows\syswow64\OLEAUT32.dll
    LoadedModule[21]=C:\Windows\system32\USERENV.dll
    LoadedModule[22]=C:\Windows\system32\profapi.dll
    LoadedModule[23]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[24]=C:\Windows\system32\MPR.dll
    LoadedModule[25]=C:\Windows\system32\IMM32.DLL
    LoadedModule[26]=C:\Windows\syswow64\MSCTF.dll
    LoadedModule[27]=C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
    LoadedModule[28]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
    LoadedModule[29]=C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll
    LoadedModule[30]=C:\Windows\assembly\NativeImages_v2.0.50727_32\mscorlib\9a6c1b7af18b4d5a91dc7f8d6617522f\mscorlib.ni.dll
    LoadedModule[31]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsec.dll
    LoadedModule[32]=C:\Windows\syswow64\WINTRUST.dll
    LoadedModule[33]=C:\Windows\syswow64\CRYPT32.dll
    LoadedModule[34]=C:\Windows\syswow64\MSASN1.dll
    LoadedModule[35]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\COMCTL32.dll
    LoadedModule[36]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[37]=C:\Windows\system32\rsaenh.dll
    LoadedModule[38]=C:\Windows\syswow64\imagehlp.dll
    LoadedModule[39]=C:\Windows\system32\ncrypt.dll
    LoadedModule[40]=C:\Windows\system32\bcrypt.dll
    LoadedModule[41]=C:\Windows\SysWOW64\bcryptprimitives.dll
    LoadedModule[42]=C:\Windows\system32\GPAPI.dll
    LoadedModule[43]=C:\Windows\system32\cryptnet.dll
    LoadedModule[44]=C:\Windows\syswow64\WLDAP32.dll
    LoadedModule[45]=C:\Windows\system32\SensApi.dll
    LoadedModule[46]=C:\Windows\system32\uxtheme.dll
    LoadedModule[47]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll
    LoadedModule[48]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[49]=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiCommonTools.dll
    LoadedModule[50]=C:\HP_LaserJet_200_color_MFP_M276\Installer\NLog.dll
    LoadedModule[51]=C:\Windows\system32\VERSION.dll
    LoadedModule[52]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System\5d22a30e587e2cac106b81fb351e7c08\System.ni.dll
    LoadedModule[53]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Configuration\29f3ae8d313e62b4daed1107ccd29f9f\System.Configuration.ni.dll
    LoadedModule[54]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Xml\a9852a75edb6ed7cd5271b05519f5b56\System.Xml.ni.dll
    LoadedModule[55]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Drawing\5aa44bce7933e4de09d935848f868a4b\System.Drawing.ni.dll
    LoadedModule[56]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Windows.Forms\ef0a534be135cd8f0d99d938d8b1814a\System.Windows.Forms.ni.dll
    LoadedModule[57]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Data\764054efc88f51b54c8d7e44df26b671\System.Data.ni.dll
    LoadedModule[58]=C:\Windows\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
    LoadedModule[59]=C:\Windows\syswow64\WS2_32.dll
    LoadedModule[60]=C:\Windows\syswow64\NSI.dll
    State[0].Key=Transport.DoneStage1
    State[0].Value=1
    FriendlyEventName=Stopped working
    ConsentKey=CLR20r3
    AppName=HP Installer
    AppPath=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiInstaller.exe
    ReportDescription=Stopped working

    Did you try to uninstall every .NET and then try again? Follow this guide: 
    http://knowledge.autodesk.com/support/autocad/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-...

  • Problem with Jinitiator 1.3.1.9 , Windows 7,  IE 8

    Hi,
    We have a problem running Jinitiator 1.3.1.9 (Forms f60servlet) on Windows 7, IE 8. We can start the application, and run the forms with no problem but when we change to another application (ALT+TAB) and we try to return , the browser (IE 8) that was running the forms (f60servlet) doesn't refresh (dies literally) .
    Previously we were working with Windows XP and everything was correctly, but recently the company decided to migrate to windows 7.
    Do you know what is the problem?. Any advice?
    We know that our versions are very old (forms, Oracle) must be updated , but it is a legacy application and is not easy to migrate ASAP.
    Thanks in advance.
    When the error occurs, a file in the desktop is created with this:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d1d353d, pid=4300, tid=220
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode)
    # Problematic frame:
    # C [fontmanager.dll+0x2353d]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x11d43800): JavaThread "AWT-EventQueue-1" [_thread_in_native, id=220]
    siginfo: ExceptionCode=0xc0000005, writing address 0x00000000
    Registers:
    EAX=0x142fa8e0, EBX=0x142fa69c, ECX=0x00000000, EDX=0x00000000
    ESP=0x049fdb5c, EBP=0x049fdb98, ESI=0x02699df8, EDI=0x00000000
    EIP=0x6d1d353d, EFLAGS=0x00010246
    Top of Stack: (sp=0x049fdb5c)
    0x049fdb5c: 00000000 142fa630 049fdc40 00000000
    0x049fdb6c: 402a0000 00000000 00000000 00000000
    0x049fdb7c: 00000000 00000000 402a0000 02699df8
    0x049fdb8c: 00000000 00000000 142fa630 049fdbdc
    0x049fdb9c: 6d1d2eb9 00000000 0d06d0b0 02699df8
    0x049fdbac: 11d438ec 00000000 00000000 00000000
    0x049fdbbc: 00000000 00000000 00000000 00000000
    0x049fdbcc: 00000000 00000000 00000000 00000004
    Instructions: (pc=0x6d1d353d)
    0x6d1d352d: ff eb 02 33 c0 8b 4d fc 8b 55 f8 85 ff 8b 49 08
    0x6d1d353d: 89 04 11 75 11 8b 45 fc 8b 48 08 8b 09 8b 49 04
    Stack: [0x04900000,0x04a00000), sp=0x049fdb5c, free space=1014k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [fontmanager.dll+0x2353d]
    C [fontmanager.dll+0x22eb9]
    C [fontmanager.dll+0x15cc9]
    j sun.awt.font.NativeFontWrapper.getFontMetrics(Ljava/awt/Font;[DZZ[F)V+0
    j sun.awt.font.FontDesignMetrics.initMatrixAndMetrics(Ljava/awt/font/FontRenderContext;)V+55
    j sun.awt.font.FontDesignMetrics.<init>(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;)V+53
    J sun.java2d.SunGraphics2D.makeFontMetrics(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;)Ljava/awt/FontMetrics;
    J sun.java2d.SunGraphics2D.getFontMetrics(Ljava/awt/Font;)Ljava/awt/FontMetrics;
    J sun.awt.image.BufferedImageGraphics2D.computeFontOptimizations(Ljava/awt/Font;)V
    J sun.awt.image.BufferedImageGraphics2D.drawString(Lsun/java2d/SunGraphics2D;Ljava/lang/String;FFLjava/lang/Object;)Ljava/lang/Object;
    J sun.java2d.SunGraphics2D.drawString(Ljava/lang/String;II)V
    j oracle.ewt.lwAWT.lwText.LWTextField.paintCanvasInterior(Ljava/awt/Graphics;)V+124
    J oracle.ewt.EwtComponent.paintInterior(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter._paintInterior(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;Loracle/ewt/painter/BorderPainter;IILjava/awt/Shape;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    j oracle.ewt.lwAWT.lwWindow.LWWindow.paint(Ljava/awt/Graphics;)V+43
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    j oracle.ewt.lwAWT.SharedPainter.paint(Ljava/awt/Graphics;Loracle/ewt/lwAWT/DoubleBuffer;Loracle/ewt/lwAWT/VirtualComponent;)V+270
    j oracle.ewt.lwAWT.BufferedApplet.paint(Ljava/awt/Graphics;)V+17
    j sun.awt.RepaintArea.paint(Ljava/lang/Object;Z)V+207
    J sun.awt.windows.WComponentPeer.handleEvent(Ljava/awt/AWTEvent;)V
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+504
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(Ljava/awt/Component;)Z
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(Ljava/awt/Conditional;Ljava/awt/Component;)V+12
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.font.NativeFontWrapper.getFontMetrics(Ljava/awt/Font;[DZZ[F)V+0
    j sun.awt.font.FontDesignMetrics.initMatrixAndMetrics(Ljava/awt/font/FontRenderContext;)V+55
    j sun.awt.font.FontDesignMetrics.<init>(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;)V+53
    J sun.java2d.SunGraphics2D.makeFontMetrics(Ljava/awt/Font;Ljava/awt/font/FontRenderContext;)Ljava/awt/FontMetrics;
    J sun.java2d.SunGraphics2D.getFontMetrics(Ljava/awt/Font;)Ljava/awt/FontMetrics;
    J sun.awt.image.BufferedImageGraphics2D.computeFontOptimizations(Ljava/awt/Font;)V
    J sun.awt.image.BufferedImageGraphics2D.drawString(Lsun/java2d/SunGraphics2D;Ljava/lang/String;FFLjava/lang/Object;)Ljava/lang/Object;
    J sun.java2d.SunGraphics2D.drawString(Ljava/lang/String;II)V
    j oracle.ewt.lwAWT.lwText.LWTextField.paintCanvasInterior(Ljava/awt/Graphics;)V+124
    J oracle.ewt.EwtComponent.paintInterior(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter._paintInterior(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;Loracle/ewt/painter/BorderPainter;IILjava/awt/Shape;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    j oracle.ewt.lwAWT.lwWindow.LWWindow.paint(Ljava/awt/Graphics;)V+43
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.EwtComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    J oracle.ewt.lwAWT.LWComponent._paintComponent(Ljava/awt/Graphics;Z)V
    J oracle.ewt.lwAWT.LWComponent.paint(Ljava/awt/Graphics;)V
    J oracle.ewt.lwAWT.SharedPainter.paintExtents(Ljava/awt/Graphics;Loracle/ewt/lwAWT/VirtualComponent;)V
    j oracle.ewt.lwAWT.SharedPainter.paint(Ljava/awt/Graphics;Loracle/ewt/lwAWT/DoubleBuffer;Loracle/ewt/lwAWT/VirtualComponent;)V+270
    j oracle.ewt.lwAWT.BufferedApplet.paint(Ljava/awt/Graphics;)V+17
    j sun.awt.RepaintArea.paint(Ljava/lang/Object;Z)V+207
    J sun.awt.windows.WComponentPeer.handleEvent(Ljava/awt/AWTEvent;)V
    j java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+504
    J java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V
    J java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(Ljava/awt/Component;)Z
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(Ljava/awt/Conditional;Ljava/awt/Component;)V+12
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x11d44400 JavaThread "Keep-Alive-Timer:galileo.nationalesuisse.lan" daemon [_thread_blocked, id=832]
    0x11d45000 JavaThread "TaskScheduler timer" [_thread_blocked, id=4368]
    0x11d46c00 JavaThread "EWT-Timer0" [_thread_blocked, id=1156]
    0x11d47800 JavaThread "Flush Queue" [_thread_blocked, id=572]
    0x11d47000 JavaThread "CursorIdler" [_thread_blocked, id=828]
    0x11d46400 JavaThread "HeartBeat" [_thread_blocked, id=2648]
    0x11d46000 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=1056]
    0x11d45800 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=4828]
    0x11d44800 JavaThread "Screen Updater" [_thread_blocked, id=2144]
    0x11d43000 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=4672]
    0x11d43c00 JavaThread "SunToolkit.PostEventQueue-1" [_thread_blocked, id=4724]
    =>0x11d43800 JavaThread "AWT-EventQueue-1" [_thread_in_native, id=220]
    0x11d42c00 JavaThread "JAR Cache Cleanup Thread" [_thread_blocked, id=4760]
    0x11d42400 JavaThread "Thread-2" [_thread_blocked, id=3784]
    0x11d42000 JavaThread "Thread-1" [_thread_blocked, id=1840]
    0x11d41800 JavaThread "TimerQueue" daemon [_thread_blocked, id=2188]
    0x11d41400 JavaThread "AWT-Windows" [_thread_in_native, id=2496]
    0x11d41000 JavaThread "SunToolkit.PostEventQueue-0" [_thread_blocked, id=4768]
    0x11d40800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=4764]
    0x060b4000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=4720]
    0x060b1400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4588]
    0x060b0c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=2880]
    0x060b0800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=268]
    0x060a9400 JavaThread "Finalizer" daemon [_thread_blocked, id=280]
    0x0609d400 JavaThread "Reference Handler" daemon [_thread_blocked, id=4056]
    0x038d8800 JavaThread "main" [_thread_blocked, id=3892]
    Other Threads:
    0x0609c000 VMThread [id=464]
    0x060cf400 WatcherThread [id=4484]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2560K, used 191K [0x08ec0000, 0x09180000, 0x093a0000)
    eden space 2304K, 8% used [0x08ec0000, 0x08eefd48, 0x09100000)
    from space 256K, 0% used [0x09140000, 0x09140000, 0x09180000)
    to space 256K, 0% used [0x09100000, 0x09100000, 0x09140000)
    tenured generation total 32300K, used 24242K [0x093a0000, 0x0b32b000, 0x0cec0000)
    the space 32300K, 75% used [0x093a0000, 0x0ab4c8f0, 0x0ab4ca00, 0x0b32b000)
    compacting perm gen total 12288K, used 9335K [0x0cec0000, 0x0dac0000, 0x10ec0000)
    the space 12288K, 75% used [0x0cec0000, 0x0d7ddc28, 0x0d7dde00, 0x0dac0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00380000 - 0x00426000      C:\Program Files (x86)\Internet Explorer\iexplore.exe
    0x77720000 - 0x778a0000      C:\Windows\SysWOW64\ntdll.dll
    0x756c0000 - 0x757d0000      C:\Windows\syswow64\kernel32.dll
    0x75b90000 - 0x75bd6000      C:\Windows\syswow64\KERNELBASE.dll
    0x75be0000 - 0x75c80000      C:\Windows\syswow64\ADVAPI32.dll
    0x75f40000 - 0x75fec000      C:\Windows\syswow64\msvcrt.dll
    0x771c0000 - 0x771d9000      C:\Windows\SysWOW64\sechost.dll
    0x76d40000 - 0x76e30000      C:\Windows\syswow64\RPCRT4.dll
    0x75280000 - 0x752e0000      C:\Windows\syswow64\SspiCli.dll
    0x75270000 - 0x7527c000      C:\Windows\syswow64\CRYPTBASE.dll
    0x75ff0000 - 0x760f0000      C:\Windows\syswow64\USER32.dll
    0x76e30000 - 0x76ec0000      C:\Windows\syswow64\GDI32.dll
    0x75b80000 - 0x75b8a000      C:\Windows\syswow64\LPK.dll
    0x75ae0000 - 0x75b7d000      C:\Windows\syswow64\USP10.dll
    0x75c80000 - 0x75cd7000      C:\Windows\syswow64\SHLWAPI.dll
    0x760f0000 - 0x76d3a000      C:\Windows\syswow64\SHELL32.dll
    0x758f0000 - 0x75a4c000      C:\Windows\syswow64\ole32.dll
    0x75480000 - 0x7567e000      C:\Windows\syswow64\iertutil.dll
    0x75ce0000 - 0x75e17000      C:\Windows\syswow64\urlmon.dll
    0x752e0000 - 0x753d5000      C:\Windows\syswow64\WININET.dll
    0x75860000 - 0x758ef000      C:\Windows\syswow64\OLEAUT32.dll
    0x75e20000 - 0x75f3d000      C:\Windows\syswow64\CRYPT32.dll
    0x776f0000 - 0x776fc000      C:\Windows\syswow64\MSASN1.dll
    0x771f0000 - 0x77250000      C:\Windows\system32\IMM32.DLL
    0x77070000 - 0x7713c000      C:\Windows\syswow64\MSCTF.dll
    0x65640000 - 0x660c0000      C:\Windows\system32\IEFRAME.dll
    0x771e0000 - 0x771e5000      C:\Windows\syswow64\PSAPI.DLL
    0x73470000 - 0x734ac000      C:\Windows\system32\OLEACC.dll
    0x72c00000 - 0x72d9e000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    0x77140000 - 0x771bb000      C:\Windows\syswow64\comdlg32.dll
    0x74fa0000 - 0x74fd5000      C:\Program Files (x86)\Internet Explorer\IEShims.dll
    0x72f80000 - 0x73000000      C:\Windows\system32\uxtheme.dll
    0x73000000 - 0x7300e000      C:\Windows\system32\RpcRtRemote.dll
    0x72f60000 - 0x72f73000      C:\Windows\system32\dwmapi.dll
    0x76ec0000 - 0x7705d000      C:\Windows\syswow64\SETUPAPI.dll
    0x75440000 - 0x75467000      C:\Windows\syswow64\CFGMGR32.dll
    0x77250000 - 0x77262000      C:\Windows\syswow64\DEVOBJ.dll
    0x757d0000 - 0x75853000      C:\Windows\syswow64\CLBCatQ.DLL
    0x67d50000 - 0x67e45000      C:\Windows\system32\propsys.dll
    0x71a60000 - 0x71a81000      C:\Windows\system32\ntmarta.dll
    0x772a0000 - 0x772e5000      C:\Windows\syswow64\WLDAP32.dll
    0x730e0000 - 0x730eb000      C:\Windows\system32\profapi.dll
    0x735b0000 - 0x735c6000      C:\Windows\system32\CRYPTSP.dll
    0x75680000 - 0x756b5000      C:\Windows\syswow64\ws2_32.DLL
    0x75470000 - 0x75476000      C:\Windows\syswow64\NSI.dll
    0x73570000 - 0x735ab000      C:\Windows\system32\rsaenh.dll
    0x72e10000 - 0x72e54000      C:\Windows\system32\dnsapi.DLL
    0x74ba0000 - 0x74bbc000      C:\Windows\system32\iphlpapi.DLL
    0x75060000 - 0x75067000      C:\Windows\system32\WINNSI.DLL
    0x67950000 - 0x6797b000      C:\Program Files (x86)\Internet Explorer\ieproxy.dll
    0x73030000 - 0x7307c000      C:\Windows\system32\apphelp.dll
    0x74b90000 - 0x74b99000      C:\Windows\system32\VERSION.dll
    0x74b30000 - 0x74b82000      C:\Windows\system32\RASAPI32.dll
    0x751b0000 - 0x751c5000      C:\Windows\system32\rasman.dll
    0x75040000 - 0x7504d000      C:\Windows\system32\rtutils.dll
    0x75050000 - 0x75056000      C:\Windows\system32\sensapi.dll
    0x72e60000 - 0x72e9c000      C:\Windows\system32\mswsock.dll
    0x72da0000 - 0x72da5000      C:\Windows\System32\wshtcpip.dll
    0x77060000 - 0x77063000      C:\Windows\syswow64\Normaliz.dll
    0x72ed0000 - 0x72ee0000      C:\Windows\system32\NLAapi.dll
    0x72db0000 - 0x72db6000      C:\Windows\system32\rasadhlp.dll
    0x72070000 - 0x7207f000      C:\Windows\system32\wkscli.dll
    0x720a0000 - 0x720a9000      C:\Windows\system32\netutils.dll
    0x67980000 - 0x679ae000      C:\Windows\system32\MLANG.dll
    0x72040000 - 0x72046000      C:\Windows\System32\wship6.dll
    0x74f80000 - 0x74f92000      C:\Program Files (x86)\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelperShim.dll
    0x749f0000 - 0x74a93000      C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll
    0x74930000 - 0x749be000      C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll
    0x734b0000 - 0x73534000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\Comctl32.dll
    0x74f70000 - 0x74f80000      C:\Program Files (x86)\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelper.dll
    0x70490000 - 0x70899000      C:\PROGRA~2\MICROS~2\Office14\GROOVEEX.DLL
    0x70460000 - 0x7048b000      C:\Windows\WinSxS\x86_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.6161_none_51cd0a7abbe4e19b\ATL90.DLL
    0x660c0000 - 0x66940000      C:\PROGRA~2\MICROS~2\Office14\3082\GrooveIntlResource.dll
    0x74ed0000 - 0x74f64000      C:\Windows\system32\MSFTEDIT.DLL
    0x73c60000 - 0x7407a000      C:\PROGRA~2\COMMON~1\MICROS~1\OFFICE14\Cultures\office.odf
    0x6d730000 - 0x6d77e000      C:\Program Files (x86)\Java\jre6\bin\ssv.dll
    0x7c340000 - 0x7c396000      C:\Program Files (x86)\Java\jre6\bin\MSVCR71.dll
    0x72dc0000 - 0x72df8000      C:\Windows\System32\fwpuclnt.dll
    0x74d90000 - 0x74e21000      C:\PROGRA~2\MICROS~2\Office14\URLREDIR.DLL
    0x70450000 - 0x70458000      C:\Windows\system32\Secur32.dll
    0x74eb0000 - 0x74ec4000      C:\PROGRA~2\MICROS~2\Office14\MSOHEV.DLL
    0x6d430000 - 0x6d43c000      C:\Program Files (x86)\Java\jre6\bin\jp2ssv.dll
    0x72ee0000 - 0x72f3f000      C:\Windows\system32\SXS.DLL
    0x745b0000 - 0x746ab000      C:\Windows\system32\WindowsCodecs.dll
    0x06570000 - 0x06b2c000      C:\Windows\SysWOW64\mshtml.dll
    0x74e50000 - 0x74e7a000      C:\Windows\SysWOW64\msls31.dll
    0x74160000 - 0x7416b000      C:\Windows\system32\msimtf.dll
    0x6d320000 - 0x6d32d000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\NPJinit1319.dll
    0x6d670000 - 0x6d697000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\beans.ocx
    0x73010000 - 0x73017000      C:\Windows\system32\wsock32.dll
    0x72ec0000 - 0x72ed0000      C:\Windows\system32\napinsp.dll
    0x72ea0000 - 0x72eb2000      C:\Windows\system32\pnrpnsp.dll
    0x72e00000 - 0x72e08000      C:\Windows\System32\winrnr.dll
    0x6d2d0000 - 0x6d2e6000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\jpishare.dll
    0x6d7c0000 - 0x6da0a000      C:\PROGRA~2\Oracle\JINITI~1.9\bin\hotspot\jvm.dll
    0x732a0000 - 0x732d2000      C:\Windows\system32\WINMM.dll
    0x6d1f0000 - 0x6d1f7000      C:\PROGRA~2\Oracle\JINITI~1.9\bin\hpi.dll
    0x6d350000 - 0x6d35d000      C:\PROGRA~2\Oracle\JINITI~1.9\bin\verify.dll
    0x6d220000 - 0x6d237000      C:\PROGRA~2\Oracle\JINITI~1.9\bin\java.dll
    0x6d360000 - 0x6d36d000      C:\PROGRA~2\Oracle\JINITI~1.9\bin\zip.dll
    0x6d020000 - 0x6d128000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\awt.dll
    0x73410000 - 0x73461000      C:\Windows\system32\WINSPOOL.DRV
    0x6d1b0000 - 0x6d1eb000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\fontmanager.dll
    0x66b00000 - 0x66bc8000      C:\Windows\system32\OPENGL32.DLL
    0x74e80000 - 0x74ea2000      C:\Windows\system32\GLU32.dll
    0x63440000 - 0x63527000      C:\Windows\system32\DDRAW.dll
    0x74e40000 - 0x74e46000      C:\Windows\system32\DCIMAN32.dll
    0x11f20000 - 0x12c80000      C:\Windows\system32\ig4icd32.dll
    0x6d310000 - 0x6d318000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\net.dll
    0x6d290000 - 0x6d2ab000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.9\bin\jpeg.dll
    0x740e0000 - 0x7412a000      C:\Windows\system32\mscoree.dll
    0x71fd0000 - 0x72036000      C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
    0x63f00000 - 0x63f0c000      C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorie.dll
    0x73370000 - 0x7340b000      C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll
    0x63f50000 - 0x63f69000      C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorld.dll
    0x772f0000 - 0x7731d000      C:\Windows\syswow64\WINTRUST.dll
    0x67190000 - 0x67193000      C:\Windows\system32\security.dll
    0x717c0000 - 0x717c8000      C:\Windows\system32\credssp.dll
    0x67ae0000 - 0x67b22000      C:\Windows\SysWOW64\msv1_0.DLL
    0x67ac0000 - 0x67ad1000      C:\Windows\system32\cryptdll.dll
    0x63120000 - 0x631d2000      C:\Windows\SysWOW64\jscript.dll
    0x74e30000 - 0x74e3b000      C:\Windows\system32\ImgUtil.dll
    0x72140000 - 0x722d0000      C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17825_none_72d273598668a06b\gdiplus.dll
    0x74d60000 - 0x74d6e000      C:\Windows\SysWOW64\pngfilt.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.9\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.9\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.9\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.9\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.9\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.9 -Djavaplugin.nodotversion=1319 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.9 -Dsun.java2d.noddraw=true
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~2\Oracle\JINITI~1.9\bin;C:\PROGRA~2\Oracle\JINITI~1.9\jre\bin;C:\Program Files (x86)\Internet Explorer;;C:\orant\bin;c:\oracle_11g\product\11.1.0\client_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\orant\jdk\bin;.
    USERNAME=juan.deponte
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows NT 6.1 Build 7601 Service Pack 1
    CPU:total 4 (8 cores per cpu, 2 threads per core) family 6 model 10 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, ht
    Memory: 4k page, physical 4194303k(4194303k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_03-b05) for windows-x86, built on Sep 24 2007 22:24:33 by "java_re" with unknown MS VC++:1310

    Hi John,
    Can u try the work around mentioned in the below link
    http://notsomany.wordpress.com/2010/03/30/jinitiator-working-on-windows-7/
    Also some times IE8 can block the webutil_file_transfer.
    AS_to_Client if "protected mode" is ON for the security zone your forms url is in (look in the statusbar in IE ->
    internet, trusted site, ... -> protected mode: On/Off)
    Regards
    Fabian

  • What's going on here? -- Frame 11 throws "Internal Error 11004, 8122692..."

    Steps leading to "Internal Error 11004, 8122692..." follow:
    Installation notes re FrameMaker 11 -- September 19, 2012
    HW: Dell Optiplex 990 with 4G of memory
    OS: Windows XP with SP3 and current updates
    The installation proceeded without incident, and Frame 11
    launched as expected. The "Unstructured" option was chosen,
    because that is the mode in which our shop operates.
    Supporting software installed:
      - Adobe Acrobat Pro X, to be used as print driver
        by Frame 11 in order to produce .pdf output files
      - Several fonts (TrueType, PS1, and Open Type) needed
        to meet the needs of our test documents.
    Test document: an unstructured Frame book, consisting of
       one .book file and about 24 subsidiary .fm files.
       This book was prepared under Frame 8 and worked flawlessly
       in that environment.
       All of the constituent files were loaded in Frame 11 and
       saved in their converted form.
       End result: a reproduction of the original Frame 8 book,
       but converted to Frame 11 specs
    Testing procedure:
    1. When launching the .book file, Frame 11 behaved in the manner
       we've come to expect in our Frame 8 environment.
    2. We next opened and closed each .fm file in turn and determined
       that they all opened and closed correctly.
    3. Next, we ran an "Edit | Update Book" procedure, but without
       actually generating tables or lists, and without applying the
       master pages. Again, the behavior of the system was as expected.
    4. Next, we selected one of the constituent .fm files and attempted
       to print it via the "File | Print Selected Files" command on the
       "Adobe PDF" device.
    5. Result: an "Error" popup appeared with the announcement of
       "Internal Error 11004, 8122692, 8122986, 10866389. FrameMaker has
       detected a serious problem and must quit." Please see the attached
       graphic for additional details. "Frame_InternalError_.JPG:
    6. We retrieved that diagnostic file "FrameLog_12.09.19_15.11.18.txt."
       It is attached at the end of this message.
    7. We attempted to print the whole book from the "File | Print Book"
       command and encountered the same popup error message.
    Please advise how to resolve this problem. The procedure described works
    reliably on our Frame 8 installation, and we must be able to achieve this
    same functionality under Frame 11.
    with best regards,
    Radar2012
    ====================================================================
    Start of  "FrameLog_12.09.19_15.11.18.txt."
    ====================
    === Header Begin ===
    Internal Error: 11004, 8122692, 8122986, 10866389
    FrameMaker 11.0.0 for Intel
    Build: 11.0.0.380
    Window System: MSWindows
    Operating System: Windows NT 5.1 (major.minor.build: 5.1.2600 Service Pack 3)
    Generated on: Wednesday, September 19, 2012 3:11:18 PM
    To file: C:\Documents and Settings\Radar\Application Data\Adobe\FrameMaker\11\FrameLog_12.09.19_15.11.18.txt
    === Header End ===
    === Stack Trace Begin ===
    $7bf144
    $7bf26a
    $a5ced5
    === Stack Trace End ===
    === Open Window List Begin ===
    # not implemented
    === Open Window List End ===
    === Recent Commands Begin ===
    === Recent Commands End ===
    === Recent API Calls Begin ===
    # not implemented
    === Recent API Calls End ===
    === Windows Relocation Information Begin ===
    Application: 00400000
    FrameMaker.exe: 00400000 009ac000
    ntdll.dll: 7c900000 000b2000
    kernel32.dll: 7c800000 000f6000
    FMRuntime.dll: 10000000 00050000
    USER32.dll: 7e410000 00091000
    GDI32.dll: 77f10000 00049000
    tbb.dll: 00350000 00025000
    MSVCP100.dll: 78050000 00069000
    MSVCR100.dll: 78aa0000 000bf000
    ADVAPI32.dll: 77dd0000 0009b000
    RPCRT4.dll: 77e70000 00093000
    Secur32.dll: 77fe0000 00011000
    Asn.er.dll: 00380000 0003c000
    OLECLI32.dll: 71e10000 00015000
    MPR.dll: 71b20000 00012000
    AdobePSL.dll: 00db0000 00d8c000
    OLEAUT32.dll: 77120000 0008b000
    msvcrt.dll: 77c10000 00058000
    ole32.dll: 774e0000 0013e000
    FMBMP2Tiff.dll: 003d0000 00006000
    libtiff.dll: 01b40000 00085000
    zlib1.dll: 003e0000 00013000
    MSVCP60.dll: 76080000 00065000
    FMTiff2PS.dll: 01bd0000 0000b000
    COMCTL32.dll: 773d0000 00103000
    SHLWAPI.dll: 77f60000 00076000
    COMDLG32.dll: 763b0000 00049000
    SHELL32.dll: 7c9c0000 00817000
    gdiplus.dll: 4ec50000 001ab000
    USP10.dll: 74d90000 0006b000
    FMDBMS32.dll: 01be0000 0000f000
    oledlg.dll: 7df70000 00022000
    VERSION.dll: 77c00000 00008000
    WININET.dll: 3d930000 000e6000
    Normaliz.dll: 01bf0000 00009000
    urlmon.dll: 78130000 00133000
    iertutil.dll: 3dfd0000 001eb000
    WINSPOOL.DRV: 73000000 00026000
    amtlib.dll: 01c00000 001c2000
    WINHTTP.dll: 4d4f0000 00059000
    SETUPAPI.dll: 77920000 000f3000
    IPHLPAPI.DLL: 76d60000 00019000
    WS2_32.dll: 71ab0000 00017000
    WS2HELP.dll: 71aa0000 00008000
    AIDE.dll: 01de0000 00064000
    MSVCR80.dll: 01e60000 0009b000
    MSVCP80.dll: 7c420000 00087000
    BIB.dll: 01f00000 0004d000
    CoolType.dll: 01f60000 002ec000
    SVGRE.dll: 6f130000 00332000
    icuuc32.dll: 4a800000 00095000
    icudt32.dll: 4ad00000 0095a000
    MSVCR71.dll: 7c340000 00056000
    icuin32.dll: 4a900000 000aa000
    NetLib.dll: 02270000 00023000
    CoreTypes.dll: 30100000 00026000
    NetIO.dll: 30900000 0001c000
    LIBCURL.dll: 30000000 00023000
    WINMM.dll: 76b40000 0002d000
    SSLEAY32.dll: 022e0000 00027000
    LIBEAY32.dll: 02310000 000d1000
    WSOCK32.dll: 71ad0000 00009000
    icuio32.dll: 4ab00000 0000b000
    MSVCP71.dll: 7c3a0000 0007b000
    AdobePDFL.dll: 023f0000 0067f000
    AdobeXMP.dll: 02a80000 0004a000
    JP2KLib.dll: 02ae0000 000a5000
    BIBUtils.dll: 02ba0000 00041000
    AGM.dll: 02c00000 005c2000
    AXE8SharedExpat.dll: 031e0000 0002c000
    XAPToolkitRelease.dll: 03220000 0008b000
    AdobeXMPFiles.dll: 032c0000 000b2000
    AdobeLinguistic.dll: 03390000 001c5000
    PSAPI.DLL: 76bf0000 0000b000
    AdobeOwl.dll: 03570000 00177000
    AdobeOwlCanvas.dll: 03700000 00048000
    MSVCP90.dll: 78480000 0008e000
    MSVCR90.dll: 78520000 000a3000
    LogSession.dll: 03760000 00052000
    adbeape.dll: 037d0000 00009000
    ahclient.dll: 037f0000 00021000
    IMM32.DLL: 76390000 0001d000
    tbbmalloc.dll: 03e70000 00013000
    uxtheme.dll: 5ad70000 00038000
    MSCTF.dll: 74720000 0004c000
    msctfime.ime: 755c0000 0002e000
    fmres.dll: 0b120000 00169000
    fmdlg.dll: 0b290000 0006e000
    fmcustom.dll: 0b300000 00097000
    xpsp2res.dll: 0b6c0000 002c5000
    CLBCATQ.DLL: 76fd0000 0007f000
    COMRes.dll: 77050000 000c5000
    wbemprox.dll: 74ef0000 00008000
    wbemcomn.dll: 75290000 00037000
    wbemsvc.dll: 74ed0000 0000e000
    fastprox.dll: 75690000 00076000
    NTDSAPI.dll: 767a0000 00014000
    DNSAPI.dll: 76f20000 00027000
    NETAPI32.dll: 5b860000 00055000
    WLDAP32.dll: 76f60000 0002c000
    NTMARTA.DLL: 77690000 00021000
    SAMLIB.dll: 71bf0000 00013000
    updaternotifications.dll: 0bcb0000 0007a000
    mstask.dll: 75830000 00045000
    USERENV.dll: 769c0000 000b4000
    owlres.dll: 0b5c0000 000b3000
    NetIODav.dll: 30a00000 0002b000
    xerces-c_2_7.dll: 12000000 0019e000
    rsaenh.dll: 68000000 00036000
    PS5UI.DLL: 32000000 000b5000
    PSCRIPT5.DLL: 2e9c0000 00087000
    mscms.dll: 73b30000 00015000
    ADReGP.DLL: 70000000 0000a000
    ATMLIB.dll: 73c20000 0000b000
    adbeapecore.dll: 0b6a0000 0001e000
    AdobeHunspellPlugin.dll: 0c9b0000 00e43000
    ACE.dll: 0eaa0000 001e4000
    dvaadameve.dll: 0f290000 00354000
    boost_threads.dll: 0e570000 0000e000
    dvacore.dll: 0f5f0000 0018c000
    dvaui.dll: 0f780000 00381000
    OPENGL32.dll: 5ed00000 000cc000
    GLU32.dll: 68b20000 00020000
    DDRAW.dll: 73760000 0004b000
    DCIMAN32.dll: 73bc0000 00006000
    WTSAPI32.dll: 76f50000 00008000
    WINSTA.dll: 76360000 00010000
    clickprt.dll: 0be60000 0003c000
    fmmediaannot.dll: 0fe00000 00064000
    frame2pdf.dll: 0fe70000 00062000
    mailer.dll: 0fee0000 00046000
    MAPI32.DLL: 61e00000 0001f000
    bookerrlog.dll: 0ff30000 00047000
    ditamaperrlog.dll: 0ff80000 00047000
    pdfsize.dll: 10050000 0004b000
    fmpdfreflow.dll: 100a0000 0004e000
    qstart.dll: 0bea0000 0003e000
    cnvschma.dll: 100f0000 000a2000
    u3dfilter.dll: 101a0000 0005e000
    rt3d.dll: 10200000 00817000
    PDFCommentsImport.dll: 10a20000 0008a000
    InitCharMap.dll: 10ab0000 0003e000
    FrameMakerScriptingSupport.dll: 10af0000 00298000
    ExtendScript.dll: 10d90000 000a6000
    ScCore.dll: 10e40000 00091000
    adobe_caps.dll: 10ee0000 0006d000
    RoboHelpPublish.dll: 11350000 00054000
    AdobeCaptivatePlugin.dll: 113b0000 00054000
    AdobeIllustratorPlugin.dll: 11410000 0003e000
    mapper.dll: 11450000 00065000
    masterpages.dll: 114c0000 00045000
    PhotoshopPlugin.dll: 11510000 0003e000
    RHFrameMakerServer11.dll: 11970000 00037000
    mfc100u.dll: 785f0000 0043f000
    MSIMG32.dll: 76380000 00005000
    MFC100ENU.DLL: 5d360000 0000d000
    RoboScreenCapturePlugin.dll: 119b0000 0003e000
    tablesort.dll: 119f0000 00045000
    TextEditorPlugin.dll: 11a40000 0003e000
    FMGridCtrl.dll: 11a80000 0004c000
    mscoree.dll: 79000000 0004a000
    mscoreei.dll: 603b0000 00066000
    adbeapeengine.dll: 1a1a0000 008e4000
    OLEACC.dll: 61880000 0003a000
    CRYPT32.dll: 77a80000 00095000
    MSASN1.dll: 77b20000 00012000
    msi.dll: 7d1e0000 002bc000
    DSOUND.dll: 73f10000 0005c000
    dbghelp.dll: 59a60000 000a1000
    mlang.dll: 75cf0000 00091000
    schannel.dll: 767f0000 00029000
    icm32.dll: 66e90000 00041000
    ieframe.dll: 3e1c0000 00a9c000
    RASAPI32.dll: 76ee0000 0003c000
    rasman.dll: 76e90000 00012000
    TAPI32.dll: 76eb0000 0002f000
    rtutils.dll: 76e80000 0000e000
    msv1_0.dll: 77c70000 00025000
    cryptdll.dll: 76790000 0000c000
    sensapi.dll: 722b0000 00005000
    appHelp.dll: 77b40000 00022000
    mswsock.dll: 71a50000 0003f000
    hnetcfg.dll: 662b0000 00058000
    wshtcpip.dll: 71a90000 00008000
    rasadhlp.dll: 76fc0000 00006000
    winrnr.dll: 76fb0000 00008000
    wdmaud.drv: 72d20000 00009000
    WINTRUST.dll: 76c30000 0002e000
    IMAGEHLP.dll: 76c90000 00028000
    msacm32.drv: 72d10000 00008000
    MSACM32.dll: 77be0000 00015000
    midimap.dll: 77bd0000 00007000
    mshtml.dll: 3cea0000 005be000
    msls31.dll: 1c760000 00029000
    msimtf.dll: 746f0000 0002a000
    jscript.dll: 3d7a0000 000b4000
    Dxtrans.dll: 35c50000 00039000
    ATL.DLL: 76b20000 00011000
    ddrawex.dll: 6d430000 0000a000
    Dxtmsft.dll: 35cb0000 00057000
    SXS.DLL: 7e720000 000b0000
    D3DIM700.DLL: 73940000 000d0000
    ImgUtil.dll: 1e060000 0000c000
    pngfilt.dll: 1e9c0000 0000e000
    GRPHFILT.DLL: 0e600000 00013000
    ADIST.dll: 07480000 00020000
    RichEd20.dll: 74e30000 0006d000
    === Windows Relocation Information End ===
    === Windows Exception Information Begin ===
    [Exception Record]
    0012b210: c0000005 00000000 00000000 008b94d6
    0012b220: 00000002 00000000 00000004 0001003f
    0012b230: 00000000 00000000 00000000 00000000
    0012b240: 00000000 00000000 ffff027f ffff0100
    0012b250: ffffffff 4ec5dfaf 0000001b 0be5dc94
    [Exception Context]
    0012b22c: 0001003f 00000000 00000000 00000000
    0012b23c: 00000000 00000000 00000000 ffff027f
    0012b24c: ffff0100 ffffffff 4ec5dfaf 0000001b
    0012b25c: 0be5dc94 ffff0023 00000000 80000000
    0012b26c: 00003fff a5000000 3ff0d23d 00000000
    0012b27c: 00000000 00000000 ff000000 3ffeffff
    0012b28c: 00000000 ffffff00 00003ffe ff000000
    0012b29c: 3ffeffff 00000000 c8000000 00004004
    0012b2ac: 00000000 00000000 00000000 00000000
    0012b2bc: 0000003b 00000023 00000023 1b05f010
    0012b2cc: 0012b94c 1b05f010 0012b50c 0ddb7870
    0012b2dc: 00000000 0012b4f8 008b94d6 0000001b
    0012b2ec: 00010202 0012b4f8 00000023 0100027f
    0012b2fc: 00000000 4ec5dfaf 0000001b 0be5dc94
    0012b30c: 00000023 00001fa1 0000ffff 00000000
    0012b31c: 80000000 00003fff 00000000 00000000
    0012b32c: d23da500 00003ff0 00000000 00000000
    0012b33c: 00000000 00000000 00000000 00000000
    0012b34c: ffffff00 00003ffe 00000000 00000000
    0012b35c: ffffff00 00003ffe 00000000 00000000
    0012b36c: ffffff00 00003ffe 00000000 00000000
    0012b37c: c8000000 00004004 00000000 00000000
    0012b38c: 00000000 00000000 00000000 00000000
    0012b39c: 00000000 00000000 00000000 00000000
    0012b3ac: 402c0000 00000000 00000000 00000031
    0012b3bc: 00000000 00000433 00000000 00000000
    0012b3cc: 402c0000 00000000 00000000 00000000
    0012b3dc: 0012d980 1a4a3c8a 11cfd740 00000230
    0012b3ec: 0012d9bc 1a4af234 11cfd740 00000200
    0012b3fc: 00000230 00000200 0024f010 00000000
    0012b40c: 402c0000 00000000 00000000 00000000
    0012b41c: 00000000 00000000 00000000 00000000
    0012b42c: 00000000 00000000 00000000 00000000
    0012b43c: 00000000 00000000 00000000 00000000
    0012b44c: 00000000 00000000 00000000 00000000
    0012b45c: 00000000 00000000 00000000 00000000
    0012b46c: 00000000 00000000 00000000 00000000
    0012b47c: 00000000 00000000 00000000 00000000
    0012b48c: 00000000 00000000 00000000 00000000
    0012b49c: 00000000 00000000 00000000 00000000
    0012b4ac: 00000000 00000000 00000000 00000000
    0012b4bc: 00000000 00000000 00000000 00000000
    0012b4cc: 00000000 00000000 00000000 00000000
    0012b4dc: 00000000 00000000 00000000 00000000
    0012b4ec: 00000000 00000000 00000000
    === Windows Exception Information End ===
    === Windows Stack Traceback Begin ===
    [Stack Frame]
    0012b4d8: 00000000 00000000 00000000 00000000
    0012b4e8: 00000000 00000000 00000000 00000000
    0012b4f8: 0012b910 008ed08b 0012b50c 00000000
    0012b508: 00000000 ffffffa4 00790041 ffffffa4
    [Stack Frame]
    0012b8f0: 00000ad7 008fd780 00000000 00720046
    0012b900: 006d0061 004d0065 000020e0 334e074d
    0012b910: 0012b92c 008ef74b 0dd43770 00000001
    0012b920: 0dd43770 1b05f010 00000000 0012da34
    [Stack Frame]
    0012b90c: 334e074d 0012b92c 008ef74b 0dd43770
    0012b91c: 00000001 0dd43770 1b05f010 00000000
    0012b92c: 0012da34 008ec7a5 0012b94c 1b05f010
    0012b93c: 0dd43770 00000001 0dd43770 00000000
    [Stack Frame]
    0012da14: 00000000 00000000 00000000 00000000
    0012da24: 00000000 00000000 00000000 334e6469
    0012da34: 0012da48 008ec8c4 00000001 0dd43770
    0012da44: 0dd43770 0012da60 009095ac 0dd43770
    [Stack Frame]
    0012da28: 00000000 00000000 334e6469 0012da48
    0012da38: 008ec8c4 00000001 0dd43770 0dd43770
    0012da48: 0012da60 009095ac 0dd43770 00000001
    0012da58: 00000000 0dd43770 0012da80 0090a634
    [Stack Frame]
    0012da40: 0dd43770 0dd43770 0012da60 009095ac
    0012da50: 0dd43770 00000001 00000000 0dd43770
    0012da60: 0012da80 0090a634 0dd43770 00000001
    0012da70: 000003ec 00000001 00000001 2324c790
    [Stack Frame]
    0012da60: 0012da80 0090a634 0dd43770 00000001
    0012da70: 000003ec 00000001 00000001 2324c790
    0012da80: 0012da90 0090b22e 00000001 1b05f010
    0012da90: 0012daa4 00909570 0dd43770 1b05f010
    [Stack Frame]
    0012da70: 000003ec 00000001 00000001 2324c790
    0012da80: 0012da90 0090b22e 00000001 1b05f010
    0012da90: 0012daa4 00909570 0dd43770 1b05f010
    0012daa0: 00bec540 0012dab0 005c8900 1b05f010
    [Stack Frame]
    0012da84: 0090b22e 00000001 1b05f010 0012daa4
    0012da94: 00909570 0dd43770 1b05f010 00bec540
    0012daa4: 0012dab0 005c8900 1b05f010 0012dac0
    0012dab4: 008667f0 1b05f010 00bec540 0012dadc
    [Stack Frame]
    0012da90: 0012daa4 00909570 0dd43770 1b05f010
    0012daa0: 00bec540 0012dab0 005c8900 1b05f010
    0012dab0: 0012dac0 008667f0 1b05f010 00bec540
    0012dac0: 0012dadc 00866bcf 0012db00 00000000
    [Stack Frame]
    0012daa0: 00bec540 0012dab0 005c8900 1b05f010
    0012dab0: 0012dac0 008667f0 1b05f010 00bec540
    0012dac0: 0012dadc 00866bcf 0012db00 00000000
    0012dad0: 00000000 26136c98 0dd43770 0012db04
    [Stack Frame]
    0012dabc: 00bec540 0012dadc 00866bcf 0012db00
    0012dacc: 00000000 00000000 26136c98 0dd43770
    0012dadc: 0012db04 0090e283 1b05f010 00bec540
    0012daec: 0012db00 00000000 00000000 00000001
    [Stack Frame]
    0012dae4: 1b05f010 00bec540 0012db00 00000000
    0012daf4: 00000000 00000001 0e3d2504 00000000
    0012db04: 0012db20 0086758f 0dd43770 000003ec
    0012db14: 00000000 00000006 00000000 0012db38
    [Stack Frame]
    0012db00: 00000000 0012db20 0086758f 0dd43770
    0012db10: 000003ec 00000000 00000006 00000000
    0012db20: 0012db38 0086872d 0090e240 0dd43770
    0012db30: 0c853570 00000000 0012db5c 008687d5
    [Stack Frame]
    0012db18: 00000006 00000000 0012db38 0086872d
    0012db28: 0090e240 0dd43770 0c853570 00000000
    0012db38: 0012db5c 008687d5 0090e240 0dd43770
    0012db48: 000003ec 0e3d2504 0dd43770 1b065918
    [Stack Frame]
    0012db3c: 008687d5 0090e240 0dd43770 000003ec
    0012db4c: 0e3d2504 0dd43770 1b065918 00000006
    0012db5c: 0012db80 0090436f 0de47698 0090e240
    0012db6c: 00000000 0dd43770 000003ec 00000000
    [Stack Frame]
    0012db60: 0090436f 0de47698 0090e240 00000000
    0012db70: 0dd43770 000003ec 00000000 00000000
    0012db80: 0012db90 0090467d 000003ec 1b065918
    0012db90: 0012dbc8 00905cee 001d0218 000003ec
    [Stack Frame]
    0012db70: 0dd43770 000003ec 00000000 00000000
    0012db80: 0012db90 0090467d 000003ec 1b065918
    0012db90: 0012dbc8 00905cee 001d0218 000003ec
    0012dba0: 00000000 00000000 1b065918 00000212
    [Stack Frame]
    0012dba8: 1b065918 00000212 00797ad0 0deacbc8
    0012dbb8: 1d17a100 0012dbe0 0073abf9 334e6595
    0012dbc8: 0012dbec 00796aa8 001d0218 1b065918
    0012dbd8: 00000000 001d0218 00000111 000003ec
    [Stack Frame]
    0012dbcc: 00796aa8 001d0218 1b065918 00000000
    0012dbdc: 001d0218 00000111 000003ec 00000000
    0012dbec: 0012dc10 00797b62 001d0218 00000111
    0012dbfc: 000003ec 00000000 0012dc78 00797ad0
    [Stack Frame]
    0012dbf0: 00797b62 001d0218 00000111 000003ec
    0012dc00: 00000000 0012dc78 00797ad0 00000000
    0012dc10: 0012dc3c 7e418734 001d0218 00000111
    0012dc20: 000003ec 00000000 00797ad0 dcbaabcd
    [Stack Frame]
    0012dc1c: 00000111 000003ec 00000000 00797ad0
    0012dc2c: dcbaabcd 00000000 0012dc78 00797ad0
    0012dc3c: 0012dca4 7e418816 00797ad0 001d0218
    0012dc4c: 00000111 000003ec 00000000 00000111
    [Stack Frame]
    0012dc84: 00000000 00000000 0012dc58 0012b11c
    0012dc94: 0012de20 7e44048f 7e418830 00000000
    0012dca4: 0012dce0 7e42927b 00000000 00797ad0
    0012dcb4: 001d0218 00000111 000003ec 00000000
    [Stack Frame]
    0012dcc0: 00000000 03a354c4 00000001 00000000
    0012dcd0: 00000111 00000000 001d0218 00831920
    0012dce0: 0012dd00 7e4292e3 00a354b0 03a29fa8
    0012dcf0: 000003ec 00000000 00000000 000003ec
    [Stack Frame]
    0012dce0: 0012dd00 7e4292e3 00a354b0 03a29fa8
    0012dcf0: 000003ec 00000000 00000000 000003ec
    0012dd00: 0012dd28 00a3d1ad 001d0218 00000111
    0012dd10: 000003ec 00000000 00000000 00000000
    [Stack Frame]
    0012dd08: 001d0218 00000111 000003ec 00000000
    0012dd18: 00000000 00000000 0c883190 0c883190
    0012dd28: 0012dd54 00a3d66e 001e01c4 000003ec
    0012dd38: 00000000 00000000 00000000 0c883190
    [Stack Frame]
    0012dd34: 000003ec 00000000 00000000 00000000
    0012dd44: 0c883190 00000000 0073abf9 0012dda4
    0012dd54: 0012dd78 00796aa8 001e01c4 0c883190
    0012dd64: 00000000 001e01c4 00000111 000003ec
    [Stack Frame]
    0012dd58: 00796aa8 001e01c4 0c883190 00000000
    0012dd68: 001e01c4 00000111 000003ec 00000000
    0012dd78: 0012dd9c 00797b62 001e01c4 00000111
    0012dd88: 000003ec 00000000 0012de04 00797ad0
    [Stack Frame]
    0012dd7c: 00797b62 001e01c4 00000111 000003ec
    0012dd8c: 00000000 0012de04 00797ad0 00000000
    0012dd9c: 0012ddc8 7e418734 001e01c4 00000111
    0012ddac: 000003ec 00000000 00797ad0 dcbaabcd
    [Stack Frame]
    0012dda8: 00000111 000003ec 00000000 00797ad0
    0012ddb8: dcbaabcd 00000000 0012de04 00797ad0
    0012ddc8: 0012de30 7e418816 00797ad0 001e01c4
    0012ddd8: 00000111 000003ec 00000000 00000111
    [Stack Frame]
    0012de10: 00000000 00000000 0012dde4 0012b11c
    0012de20: 0012dfe4 7e44048f 7e418830 00000000
    0012de30: 0012de60 7e42a013 00000000 00797ad0
    0012de40: 001e01c4 00000111 000003ec 00000000
    [Stack Frame]
    0012de40: 001e01c4 00000111 000003ec 00000000
    0012de50: 00000000 00000000 0012e01c 0012e028
    0012de60: 0012de80 7e42a039 00797ad0 001e01c4
    0012de70: 00000111 000003ec 00000000 00000000
    [Stack Frame]
    0012de60: 0012de80 7e42a039 00797ad0 001e01c4
    0012de70: 00000111 000003ec 00000000 00000000
    0012de80: 0012dff0 0358c1e3 00797ad0 001e01c4
    0012de90: 00000111 000003ec 00000000 0358080e
    [Stack Frame]
    0012dfd0: 036672c4 0000002e 7ffdfbf8 334e6d68
    0012dfe0: 00000000 0012e05c 0365cb3c ffffffff
    0012dff0: 0012e068 035f0606 0012e01c 0deda6fc
    0012e000: 0012e024 035a3510 0012e01c 334e53a4
    [Stack Frame]
    0012e048: 00000000 00000000 7e430001 334e53ac
    0012e058: 0000c043 0012e09c 0365285f 00000000
    0012e068: 0012e0a8 035a9222 00000111 000003ec
    0012e078: 00000000 0012e094 334e531c 0012e110
    [Stack Frame]
    0012e088: 035a91a3 00000000 0deda6fc 00000000
    0012e098: 0012e080 0012e12c 0364df5b 00000000
    0012e0a8: 0012e0d4 7e418734 001e01c4 00000111
    0012e0b8: 000003ec 00000000 035a91a3 dcbaabcd
    [Stack Frame]
    0012e0b4: 00000111 000003ec 00000000 035a91a3
    0012e0c4: dcbaabcd 00000000 0012e110 035a91a3
    0012e0d4: 0012e13c 7e418816 035a91a3 001e01c4
    0012e0e4: 00000111 000003ec 00000000 00000111
    [Stack Frame]
    0012e11c: 00000000 00000000 0012e0f0 0012b11c
    0012e12c: 0012e244 7e44048f 7e418830 00000000
    0012e13c: 0012e16c 7e42a013 00000000 035a91a3
    0012e14c: 001e01c4 00000111 000003ec 00000000
    [Stack Frame]
    0012e14c: 001e01c4 00000111 000003ec 00000000
    0012e15c: 00000000 00000000 000003ec 0e330e98
    0012e16c: 0012e18c 7e42a039 035a91a3 001e01c4
    0012e17c: 00000111 000003ec 00000000 00000000
    [Stack Frame]
    0012e16c: 0012e18c 7e42a039 035a91a3 001e01c4
    0012e17c: 00000111 000003ec 00000000 00000000
    0012e18c: 0012e1ac 008a776c 035a91a3 001e01c4
    0012e19c: 00000111 000003ec 00000000 00000000
    [Stack Frame]
    0012e18c: 0012e1ac 008a776c 035a91a3 001e01c4
    0012e19c: 00000111 000003ec 00000000 00000000
    0012e1ac: 0012e1f8 00880238 001e01c4 00000111
    0012e1bc: 000003ec 00000000 00000111 0e330e98
    [Stack Frame]
    0012e1d8: 0012e1c8 00000000 0000c04b 00000000
    0012e1e8: 7e42947c 0000c04b 0000c04b 0e330e98
    0012e1f8: 0012e218 0088053d 001e01c4 000003ec
    0012e208: 00000000 00000000 001e01c4 00000000
    [Stack Frame]
    0012e1f8: 0012e218 0088053d 001e01c4 000003ec
    0012e208: 00000000 00000000 001e01c4 00000000
    0012e218: 0012e250 008a766e 001e01c4 00000111
    0012e228: 000003ec 00000000 334e5c0d 0012e2b8
    [Stack Frame]
    0012e230: 334e5c0d 0012e2b8 008a7610 00000000
    0012e240: 0012e230 0012e2d4 00a9b970 00000000
    0012e250: 0012e27c 7e418734 001e01c4 00000111
    0012e260: 000003ec 00000000 008a7610 dcbaabcd
    [Stack Frame]
    0012e25c: 00000111 000003ec 00000000 008a7610
    0012e26c: dcbaabcd 00000000 0012e2b8 008a7610
    0012e27c: 0012e2e4 7e418816 008a7610 001e01c4
    0012e28c: 00000111 000003ec 00000000 00000111
    [Stack Frame]
    0012e2c4: 00000000 00000000 0012e298 0012b11c
    0012e2d4: 0012e3c4 7e44048f 7e418830 00000000
    0012e2e4: 0012e320 7e42927b 00000000 008a7610
    0012e2f4: 001e01c4 00000111 000003ec 00000000
    [Stack Frame]
    0012e300: 00000000 03a2a67c 00000001 000003ec
    0012e310: 00000111 00000000 001e01c4 00831530
    0012e320: 0012e340 7e4292e3 00a2a668 03a29be8
    0012e330: 000003ec 00000000 00000000 0de0f9f0
    [Stack Frame]
    0012e320: 0012e340 7e4292e3 00a2a668 03a29be8
    0012e330: 000003ec 00000000 00000000 0de0f9f0
    0012e340: 0012e3a0 035f3492 001e01c4 00000111
    0012e350: 000003ec 00000000 0012e3f8 0de0fa28
    [Stack Frame]
    0012e380: 00000000 00000000 420c0000 41980000
    0012e390: 42240000 41100000 420c0000 41880000
    0012e3a0: 0012e3d0 035f24fc 334e5064 0de0fa34
    0012e3b0: 0012e3f4 0de0fa34 00000000 03580482
    [Stack Frame]
    0012e3b0: 0012e3f4 0de0fa34 00000000 03580482
    0012e3c0: 0de0fa34 0012e42c 0365ca17 ffffffff
    0012e3d0: 0012e43c 035a3510 0012e3ec 334e5054
    0012e3e0: 0012e4e4 00000000 7ffdf000 0012e3f4
    [Stack Frame]
    0012e41c: 00000000 0012e400 334e505c 03a308d8
    0012e42c: 0012e470 0365285f 00000000 0012e47c
    0012e43c: 0012e47c 035a9222 0000c277 00000000
    0012e44c: 00000000 0012e468 334e57c8 0012e4e4
    [Stack Frame]
    0012e45c: 035a91a3 00000000 0de0fa34 00000000
    0012e46c: 0012e454 0012e500 0364df5b 00000000
    0012e47c: 0012e4a8 7e418734 00120196 0000c277
    0012e48c: 00000000 00000000 035a91a3 dcbaabcd
    [Stack Frame]
    0012e488: 0000c277 00000000 00000000 035a91a3
    0012e498: dcbaabcd 00000000 0012e4e4 035a91a3
    0012e4a8: 0012e510 7e418816 035a91a3 00120196
    0012e4b8: 0000c277 00000000 00000000 0012e5d0
    [Stack Frame]
    0012e4f0: 00000000 00000000 0012e4c4 0012b11c
    0012e500: 0012e560 7e44048f 7e418830 00000000
    0012e510: 0012e570 7e4189cd 00000000 035a91a3
    0012e520: 00120196 0000c277 00000000 00000000
    [Stack Frame]
    0012e550: 00000000 00000000 0012e538 0012b11c
    0012e560: 0012fa84 7e44048f 7e4189f0 ffffffff
    0012e570: 0012e580 7e418a10 0012e5c8 00000000
    0012e580: 0012e5b0 006474c9 0012e5c8 7e41929b
    [Stack Frame]
    0012e560: 0012fa84 7e44048f 7e4189f0 ffffffff
    0012e570: 0012e580 7e418a10 0012e5c8 00000000
    0012e580: 0012e5b0 006474c9 0012e5c8 7e41929b
    0012e590: 00000000 7e41929b 00000000 7e42a340
    [Stack Frame]
    0012e590: 00000000 7e41929b 00000000 7e42a340
    0012e5a0: 0012e5e4 00647640 0012e5c8 00000000
    0012e5b0: 0012e5e4 00647625 0012e5c8 7c834d71
    0012e5c0: 70617468 78afed9a 00120196 0000c277
    [Stack Frame]
    0012e5c4: 78afed9a 00120196 0000c277 00000000
    0012e5d4: 00000000 8b53ba6a 00000035 00000012
    0012e5e4: 0012fa90 007bd441 334e44cd 00000010
    0012e5f4: 00000000 7c80b917 80000000 3f7fffff
    [Stack Frame]
    0012fa70: 00b1d570 0c6cfb84 00000001 335cbf01
    0012fa80: 334e44cd 0012fed8 00a9685b ffffffff
    0012fa90: 0012feb4 007bde5d 00020754 04cdb07a
    0012faa0: 00000065 ffffffff 00000000 00000000
    [Stack Frame]
    0012fe94: 7e418e20 7e41af58 0012fea0 00180016
    0012fea4: 774efb44 0012fea0 00000000 334e40e9
    0012feb4: 0012fee8 007bee56 334e40b5 00020754
    0012fec4: 04cdb07a 00000065 ffffffff 0012febc
    [Stack Frame]
    0012fec8: 00000065 ffffffff 0012febc 0012b0ec
    0012fed8: 0012fefc 00a5ca7f 33e79ed5 00000000
    0012fee8: 0012ff08 007bf144 334e4155 04cdb041
    0012fef8: 04cdcc78 0012ffb0 00a969a6 ffffffff
    === Windows Stack Traceback End ==
    ====================
    End of  "FrameLog_12.09.19_15.11.18.txt."
    ====================================================================

    Hi TesteurFou91,
    I have ever encoutner the error when I create an PDF via "Print Book" -> Adobe PDF. The error occurred right after I install TC Suite 4.0 from 2.5. I solve the error by running the update to FM 11.
    Hope this can be of any help.
    Belinda

  • Remote Desktop Connection Stopped Working when Disconnecting

    Hi I have a fresh clean install of Windows 8.1. Whenever I RDP into another Windows 8 machine... upong disconnecting I get the error: "Remote Desktop Connection Stopped Working"
    I have tried not mapping to remote printers, or drives (smart cards etc.) and it still persists. When I remote to Windows Server or Win 7, it does not happen. 
    Anyone have any ideas?
    Thank you
    mi

    FYI, same issue here, Windows 8.1 on ThinkPad W520 (upgraded from Windows 8).
    Even without Fingerprint Manager, and having uninstalled ThinkVantage Password Manager as well, still crashes.  I also tried the:
    Dism /Online /Cleanup-Image /RestoreHealth
    but no luck, my mstsc.exe is still crashing when the remote session window is closed.
    Any ideas?  Happy to upload/provide more details, here's the Report.wer contents from
    C:\Users\myusername\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_mstsc.exe_fe9be6b453d387663f457b9f305ac5e3ae6f5fc2_00000000_2fb47393\Report.wer
    Version=1
    EventType=CLR20r3
    EventTime=130332895175356766
    ReportType=2
    Consent=1
    UploadTime=130332895176424161
    ReportIdentifier=1d23a02d-7507-11e3-81f8-f0def1f95c65
    Response.BucketId=c93f173301a697688e31de36235ffda6
    Response.BucketTable=5
    Response.LegacyBucketId=-439202015
    Response.type=4
    Sig[0].Name=Problem Signature 01
    Sig[0].Value=mstsc.exe
    Sig[1].Name=Problem Signature 02
    Sig[1].Value=6.3.9600.16384
    Sig[2].Name=Problem Signature 03
    Sig[2].Value=5215e2b5
    Sig[3].Name=Problem Signature 04
    Sig[3].Value=WHSOLConnector
    Sig[4].Name=Problem Signature 05
    Sig[4].Value=2.5.7.7
    Sig[5].Name=Problem Signature 06
    Sig[5].Value=4beac4d4
    Sig[6].Name=Problem Signature 07
    Sig[6].Value=70
    Sig[7].Name=Problem Signature 08
    Sig[7].Value=71
    Sig[8].Name=Problem Signature 09
    Sig[8].Value=System.NullReferenceException
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.3.9600.2.0.0.256.48
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    UI[2]=C:\WINDOWS\system32\mstsc.exe
    UI[3]=Remote Desktop Connection has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\WINDOWS\system32\mstsc.exe
    LoadedModule[1]=C:\WINDOWS\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\WINDOWS\system32\KERNEL32.DLL
    LoadedModule[3]=C:\WINDOWS\system32\KERNELBASE.dll
    LoadedModule[4]=C:\WINDOWS\system32\ADVAPI32.dll
    LoadedModule[5]=C:\WINDOWS\system32\GDI32.dll
    LoadedModule[6]=C:\WINDOWS\system32\USER32.dll
    LoadedModule[7]=C:\WINDOWS\system32\msvcrt.dll
    LoadedModule[8]=C:\WINDOWS\system32\ole32.dll
    LoadedModule[9]=C:\WINDOWS\system32\OLEAUT32.dll
    LoadedModule[10]=C:\WINDOWS\system32\SHELL32.dll
    LoadedModule[11]=C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.16384_none_62475f7becb72503\COMCTL32.dll
    LoadedModule[12]=C:\WINDOWS\system32\COMDLG32.dll
    LoadedModule[13]=C:\WINDOWS\system32\SHLWAPI.dll
    LoadedModule[14]=C:\WINDOWS\system32\CRYPT32.dll
    LoadedModule[15]=C:\WINDOWS\system32\WINHTTP.dll
    LoadedModule[16]=C:\WINDOWS\system32\credui.dll
    LoadedModule[17]=C:\WINDOWS\system32\Secur32.dll
    LoadedModule[18]=C:\WINDOWS\system32\CRYPTUI.dll
    LoadedModule[19]=C:\WINDOWS\system32\CFGMGR32.dll
    LoadedModule[20]=C:\WINDOWS\system32\WS2_32.dll
    LoadedModule[21]=C:\WINDOWS\system32\NETAPI32.dll
    LoadedModule[22]=C:\WINDOWS\system32\RPCRT4.dll
    LoadedModule[23]=C:\WINDOWS\system32\WINMM.dll
    LoadedModule[24]=C:\WINDOWS\system32\IPHLPAPI.DLL
    LoadedModule[25]=C:\WINDOWS\SYSTEM32\sechost.dll
    LoadedModule[26]=C:\WINDOWS\SYSTEM32\combase.dll
    LoadedModule[27]=C:\WINDOWS\system32\MSASN1.dll
    LoadedModule[28]=C:\WINDOWS\system32\NSI.dll
    LoadedModule[29]=C:\WINDOWS\system32\netutils.dll
    LoadedModule[30]=C:\WINDOWS\system32\srvcli.dll
    LoadedModule[31]=C:\WINDOWS\system32\wkscli.dll
    LoadedModule[32]=C:\WINDOWS\system32\WINMMBASE.dll
    LoadedModule[33]=C:\WINDOWS\system32\WINNSI.DLL
    LoadedModule[34]=C:\WINDOWS\system32\SHCORE.DLL
    LoadedModule[35]=C:\WINDOWS\system32\DEVOBJ.dll
    LoadedModule[36]=C:\WINDOWS\system32\SSPICLI.DLL
    LoadedModule[37]=C:\WINDOWS\system32\IMM32.DLL
    LoadedModule[38]=C:\WINDOWS\system32\MSCTF.dll
    LoadedModule[39]=C:\Windows\system32\nvinitx.dll
    LoadedModule[40]=C:\WINDOWS\SYSTEM32\kernel.appcore.dll
    LoadedModule[41]=C:\WINDOWS\system32\CRYPTBASE.dll
    LoadedModule[42]=C:\WINDOWS\system32\bcryptPrimitives.dll
    LoadedModule[43]=C:\WINDOWS\system32\uxtheme.dll
    LoadedModule[44]=C:\WINDOWS\system32\credssp.dll
    LoadedModule[45]=C:\WINDOWS\system32\NTASN1.dll
    LoadedModule[46]=C:\WINDOWS\SYSTEM32\clbcatq.dll
    LoadedModule[47]=C:\WINDOWS\system32\PROPSYS.dll
    LoadedModule[48]=C:\WINDOWS\system32\dwmapi.dll
    LoadedModule[49]=C:\WINDOWS\system32\mstscax.dll
    LoadedModule[50]=C:\WINDOWS\system32\PSAPI.DLL
    LoadedModule[51]=C:\WINDOWS\system32\d2d1.dll
    LoadedModule[52]=C:\WINDOWS\system32\d3d11.dll
    LoadedModule[53]=C:\WINDOWS\system32\MSACM32.dll
    LoadedModule[54]=C:\WINDOWS\system32\VERSION.dll
    LoadedModule[55]=C:\WINDOWS\system32\SETUPAPI.dll
    LoadedModule[56]=C:\WINDOWS\system32\DWrite.dll
    LoadedModule[57]=C:\WINDOWS\system32\bcrypt.dll
    LoadedModule[58]=C:\WINDOWS\system32\ncrypt.dll
    LoadedModule[59]=C:\WINDOWS\system32\pdh.dll
    LoadedModule[60]=C:\WINDOWS\system32\dxgi.dll
    LoadedModule[61]=C:\WINDOWS\system32\explorerframe.dll
    LoadedModule[62]=C:\WINDOWS\system32\DUser.dll
    LoadedModule[63]=C:\WINDOWS\system32\DUI70.dll
    LoadedModule[64]=C:\WINDOWS\system32\WINTRUST.dll
    LoadedModule[65]=C:\Windows\system32\WHSOLConnector.dll
    LoadedModule[66]=C:\WINDOWS\system32\mscoree.dll
    LoadedModule[67]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
    LoadedModule[68]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
    LoadedModule[69]=C:\WINDOWS\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.8428_none_88dcdb0b2fb19957\MSVCR80.dll
    LoadedModule[70]=C:\WINDOWS\system32\profapi.dll
    LoadedModule[71]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\mscorlib\97d2eb053ee241db571311577790ae43\mscorlib.ni.dll
    LoadedModule[72]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorjit.dll
    LoadedModule[73]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System\8b12c5fec7e8912da325ee73b380e652\System.ni.dll
    LoadedModule[74]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Drawing\3eac16e6688dfec78565e3e71a26266f\System.Drawing.ni.dll
    LoadedModule[75]=C:\WINDOWS\assembly\NativeImages_v2.0.50727_64\System.Windows.Forms\d78d7a76a56319e4bc1cbffa3a90a0e1\System.Windows.Forms.ni.dll
    LoadedModule[76]=C:\WINDOWS\System32\Essentials\VCListener.dll
    LoadedModule[77]=C:\WINDOWS\system32\MF.dll
    LoadedModule[78]=C:\WINDOWS\system32\MFCORE.DLL
    LoadedModule[79]=C:\WINDOWS\system32\ksuser.dll
    LoadedModule[80]=C:\WINDOWS\system32\MFPlat.dll
    LoadedModule[81]=C:\WINDOWS\system32\RTWorkQ.DLL
    LoadedModule[82]=C:\WINDOWS\system32\AVRT.dll
    LoadedModule[83]=C:\Windows\System32\MSAudDecMFT.dll
    LoadedModule[84]=C:\WINDOWS\System32\MMDevApi.dll
    LoadedModule[85]=C:\WINDOWS\System32\perfos.dll
    LoadedModule[86]=C:\Windows\System32\msxml6.dll
    LoadedModule[87]=C:\WINDOWS\system32\NLAapi.dll
    LoadedModule[88]=C:\Windows\System32\rasadhlp.dll
    LoadedModule[89]=C:\WINDOWS\system32\WTSAPI32.dll
    LoadedModule[90]=C:\WINDOWS\system32\WINSTA.dll
    LoadedModule[91]=C:\WINDOWS\system32\mswsock.dll
    LoadedModule[92]=C:\WINDOWS\system32\DNSAPI.dll
    LoadedModule[93]=C:\Program Files\Bonjour\mdnsNSP.dll
    LoadedModule[94]=C:\WINDOWS\System32\fwpuclnt.dll
    LoadedModule[95]=C:\WINDOWS\system32\DPAPI.DLL
    LoadedModule[96]=C:\WINDOWS\system32\CRYPTSP.dll
    LoadedModule[97]=C:\WINDOWS\system32\rsaenh.dll
    LoadedModule[98]=C:\WINDOWS\system32\schannel.DLL
    LoadedModule[99]=C:\WINDOWS\system32\tspkg.DLL
    LoadedModule[100]=C:\WINDOWS\system32\ncryptsslp.dll
    LoadedModule[101]=C:\WINDOWS\SYSTEM32\gpapi.dll
    LoadedModule[102]=C:\WINDOWS\system32\wdmaud.drv
    LoadedModule[103]=C:\WINDOWS\system32\AUDIOSES.DLL
    LoadedModule[104]=C:\WINDOWS\SYSTEM32\powrprof.dll
    LoadedModule[105]=C:\WINDOWS\system32\msacm32.drv
    LoadedModule[106]=C:\WINDOWS\system32\midimap.dll
    LoadedModule[107]=C:\Windows\System32\msmpeg2vdec.dll
    LoadedModule[108]=C:\WINDOWS\System32\msvproc.dll
    LoadedModule[109]=C:\WINDOWS\system32\LINKINFO.dll
    LoadedModule[110]=C:\WINDOWS\system32\ntshrui.dll
    LoadedModule[111]=C:\WINDOWS\system32\cscapi.dll
    State[0].Key=Transport.DoneStage1
    State[0].Value=1
    FriendlyEventName=Stopped working
    ConsentKey=CLR20r3
    AppName=Remote Desktop Connection
    AppPath=C:\Windows\System32\mstsc.exe
    ReportDescription=Stopped working
    ApplicationIdentity=00000000000000000000000000000000

  • Fault Module Name:StackHash_0a9e

    Hi,
    while running an exe i just built alienrain_dbg. I got this information shown
    up. Everything is fine until the application was run. I was wondering if
    anybody
    could help me detect why there is such problem. i am currently using visual studio 2013 to build this application. Thank you!
    Problem signature:
    Problem Event Name: BEX
    Application Name: alienrain_dbg.exe
    Application
    Version: 0.0.0.0
    Application Timestamp: 5261e4d4
    Fault Module
    Name: StackHash_0a9e
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp:00000000
    Exception Offset: 00000000
    Exception Code: c0000005
    Exception Data: 00000008
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    (I just formatted the OS from win7 home premium to professional, if this information helps)

    Receiving the same error running Microsoft Flight Simulator, which can't be removed from DEP (according to the software). Here is the error details:
    Version=1
    EventType=BEX
    EventTime=130646394063348955
    ReportType=2
    Consent=1
    UploadTime=130646394064319010
    ReportIdentifier=42b978d7-9227-11e4-b4bc-94de80a8824c
    IntegratorReportIdentifier=42b978d6-9227-11e4-b4bc-94de80a8824c
    WOW64=1
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=fsx.exe
    Sig[1].Name=Application Version
    Sig[1].Value=10.0.61472.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=475e17d3
    Sig[3].Name=Fault Module Name
    Sig[3].Value=StackHash_0a9e
    Sig[4].Name=Fault Module Version
    Sig[4].Value=0.0.0.0
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=00000000
    Sig[6].Name=Exception Offset
    Sig[6].Value=04246c81
    Sig[7].Name=Exception Code
    Sig[7].Value=c0000005
    Sig[8].Name=Exception Data
    Sig[8].Value=00000008
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.768.3
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=0a9e
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=0a9e372d3b4ad19135b953a78882e789
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=0a9e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=0a9e372d3b4ad19135b953a78882e789
    UI[2]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fsx.exe
    UI[3]=Microsoft Flight Simulator® has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fsx.exe
    LoadedModule[1]=C:\Windows\SysWOW64\ntdll.dll
    LoadedModule[2]=C:\Windows\syswow64\kernel32.dll
    LoadedModule[3]=C:\Windows\syswow64\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\WinSxS\x86_microsoft.vc80.mfc_1fc8b3b9a1e18e3b_8.0.50727.6195_none_cbf5e994470a1a8f\MFC80.DLL
    LoadedModule[5]=C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll
    LoadedModule[6]=C:\Windows\syswow64\msvcrt.dll
    LoadedModule[7]=C:\Windows\syswow64\GDI32.dll
    LoadedModule[8]=C:\Windows\syswow64\USER32.dll
    LoadedModule[9]=C:\Windows\syswow64\ADVAPI32.dll
    LoadedModule[10]=C:\Windows\SysWOW64\sechost.dll
    LoadedModule[11]=C:\Windows\syswow64\RPCRT4.dll
    LoadedModule[12]=C:\Windows\syswow64\SspiCli.dll
    LoadedModule[13]=C:\Windows\syswow64\CRYPTBASE.dll
    LoadedModule[14]=C:\Windows\syswow64\LPK.dll
    LoadedModule[15]=C:\Windows\syswow64\USP10.dll
    LoadedModule[16]=C:\Windows\syswow64\SHLWAPI.dll
    LoadedModule[17]=C:\Windows\syswow64\ole32.dll
    LoadedModule[18]=C:\Windows\system32\apphelp.dll
    LoadedModule[19]=C:\Windows\AppPatch\AcGenral.DLL
    LoadedModule[20]=C:\Windows\system32\UxTheme.dll
    LoadedModule[21]=C:\Windows\system32\WINMM.dll
    LoadedModule[22]=C:\Windows\system32\samcli.dll
    LoadedModule[23]=C:\Windows\syswow64\OLEAUT32.dll
    LoadedModule[24]=C:\Windows\system32\MSACM32.dll
    LoadedModule[25]=C:\Windows\system32\VERSION.dll
    LoadedModule[26]=C:\Windows\syswow64\SHELL32.dll
    LoadedModule[27]=C:\Windows\system32\sfc.dll
    LoadedModule[28]=C:\Windows\system32\sfc_os.DLL
    LoadedModule[29]=C:\Windows\syswow64\USERENV.dll
    LoadedModule[30]=C:\Windows\syswow64\profapi.dll
    LoadedModule[31]=C:\Windows\system32\dwmapi.dll
    LoadedModule[32]=C:\Windows\syswow64\SETUPAPI.dll
    LoadedModule[33]=C:\Windows\syswow64\CFGMGR32.dll
    LoadedModule[34]=C:\Windows\syswow64\DEVOBJ.dll
    LoadedModule[35]=C:\Windows\syswow64\urlmon.dll
    LoadedModule[36]=C:\Windows\syswow64\api-ms-win-downlevel-ole32-l1-1-0.dll
    LoadedModule[37]=C:\Windows\syswow64\api-ms-win-downlevel-shlwapi-l1-1-0.dll
    LoadedModule[38]=C:\Windows\syswow64\api-ms-win-downlevel-advapi32-l1-1-0.dll
    LoadedModule[39]=C:\Windows\syswow64\api-ms-win-downlevel-user32-l1-1-0.dll
    LoadedModule[40]=C:\Windows\syswow64\api-ms-win-downlevel-version-l1-1-0.dll
    LoadedModule[41]=C:\Windows\syswow64\api-ms-win-downlevel-normaliz-l1-1-0.dll
    LoadedModule[42]=C:\Windows\syswow64\normaliz.DLL
    LoadedModule[43]=C:\Windows\syswow64\iertutil.dll
    LoadedModule[44]=C:\Windows\syswow64\WININET.dll
    LoadedModule[45]=C:\Windows\system32\MPR.dll
    LoadedModule[46]=C:\Windows\AppPatch\AcLayers.DLL
    LoadedModule[47]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[48]=C:\Windows\AppPatch\AcSpecfc.DLL
    LoadedModule[49]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\COMCTL32.dll
    LoadedModule[50]=C:\Windows\system32\mscms.dll
    LoadedModule[51]=C:\Windows\system32\DDRAW.dll
    LoadedModule[52]=C:\Windows\system32\DCIMAN32.dll
    LoadedModule[53]=C:\Windows\syswow64\COMDLG32.dll
    LoadedModule[54]=C:\Windows\syswow64\IMM32.dll
    LoadedModule[55]=C:\Windows\syswow64\MSCTF.dll
    LoadedModule[56]=C:\Windows\syswow64\WS2_32.dll
    LoadedModule[57]=C:\Windows\syswow64\NSI.dll
    LoadedModule[58]=C:\Windows\system32\msi.dll
    LoadedModule[59]=C:\Windows\SysWOW64\nvinit.dll
    LoadedModule[60]=C:\Windows\WinSxS\x86_microsoft.vc80.mfcloc_1fc8b3b9a1e18e3b_8.0.50727.6195_none_03ce2c72205943d3\MFC80ENU.DLL
    LoadedModule[61]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\language.dll
    LoadedModule[62]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\API.DLL
    LoadedModule[63]=C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCP80.dll
    LoadedModule[64]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\ablscpt.dll
    LoadedModule[65]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\flight.dll
    LoadedModule[66]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\ai_player.dll
    LoadedModule[67]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\acontain.dll
    LoadedModule[68]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\controls.dll
    LoadedModule[69]=C:\Windows\system32\DINPUT8.dll
    LoadedModule[70]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fsui.dll
    LoadedModule[71]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\atc.dll
    LoadedModule[72]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\facilities.dll
    LoadedModule[73]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\demo.dll
    LoadedModule[74]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\main.dll
    LoadedModule[75]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fe.dll
    LoadedModule[76]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\util.dll
    LoadedModule[77]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\simprop.dll
    LoadedModule[78]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\g2d.dll
    LoadedModule[79]=C:\Windows\system32\d3dx9_34.dll
    LoadedModule[80]=C:\Windows\system32\d3dx10_34.dll
    LoadedModule[81]=C:\Windows\system32\d3d9.dll
    LoadedModule[82]=C:\Windows\system32\d3d8thk.dll
    LoadedModule[83]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\g3d.dll
    LoadedModule[84]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\panels.dll
    LoadedModule[85]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\multiplayer.dll
    LoadedModule[86]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\ui.dll
    LoadedModule[87]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\sound.dll
    LoadedModule[88]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\sim1.dll
    LoadedModule[89]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\simscheduler.dll
    LoadedModule[90]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\visualfx.dll
    LoadedModule[91]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\window.dll
    LoadedModule[92]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\terrain.dll
    LoadedModule[93]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\weather.dll
    LoadedModule[94]=C:\Windows\system32\DSOUND.dll
    LoadedModule[95]=C:\Windows\system32\POWRPROF.dll
    LoadedModule[96]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\symmap.dll
    LoadedModule[97]=C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.18455_none_72d576ad8665e853\gdiplus.dll
    LoadedModule[98]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[99]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\xuipc.dll
    LoadedModule[100]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\livingwater.dll
    LoadedModule[101]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fs-traffic.dll
    LoadedModule[102]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\gps.dll
    LoadedModule[103]=C:\Windows\system32\MSWSOCK.dll
    LoadedModule[104]=C:\Windows\system32\SHFOLDER.dll
    LoadedModule[105]=C:\Program Files\NVIDIA Corporation\Display\NvSmartMax.dll
    LoadedModule[106]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[107]=C:\Windows\system32\ntmarta.dll
    LoadedModule[108]=C:\Windows\syswow64\WLDAP32.dll
    LoadedModule[109]=C:\Windows\system32\RICHED20.DLL
    LoadedModule[110]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[111]=C:\Windows\system32\rsaenh.dll
    LoadedModule[112]=C:\Windows\syswow64\WINTRUST.dll
    LoadedModule[113]=C:\Windows\syswow64\CRYPT32.dll
    LoadedModule[114]=C:\Windows\syswow64\MSASN1.dll
    LoadedModule[115]=C:\Windows\syswow64\CLBCatQ.DLL
    LoadedModule[116]=C:\Windows\system32\wbem\wbemprox.dll
    LoadedModule[117]=C:\Windows\system32\wbemcomn.dll
    LoadedModule[118]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[119]=C:\Windows\system32\wbem\wbemsvc.dll
    LoadedModule[120]=C:\Windows\system32\wbem\fastprox.dll
    LoadedModule[121]=C:\Windows\system32\NTDSAPI.dll
    LoadedModule[122]=C:\Windows\WinSxS\x86_microsoft.msxml2_6bd6b9abf345378f_4.20.9876.0_none_b7e610287b2b4ea5\MSXML4.DLL
    LoadedModule[123]=C:\Windows\system32\dxgi.dll
    LoadedModule[124]=C:\Windows\system32\d3d11.dll
    LoadedModule[125]=C:\Windows\syswow64\PSAPI.DLL
    LoadedModule[126]=C:\Windows\system32\nvspcap.dll
    LoadedModule[127]=C:\Windows\system32\bcrypt.dll
    LoadedModule[128]=C:\Windows\system32\D3DCompiler_34.dll
    LoadedModule[129]=C:\Windows\SysWOW64\bcryptprimitives.dll
    LoadedModule[130]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[131]=C:\Windows\system32\d3d10_1.dll
    LoadedModule[132]=C:\Windows\system32\d3d10_1core.dll
    LoadedModule[133]=C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvSCPAPI.dll
    LoadedModule[134]=C:\Windows\system32\winbrand.dll
    LoadedModule[135]=C:\Windows\system32\nvapi.dll
    LoadedModule[136]=C:\Windows\system32\WINSTA.dll
    LoadedModule[137]=C:\Windows\SysWOW64\gameux.dll
    LoadedModule[138]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll
    LoadedModule[139]=C:\Windows\SysWOW64\XmlLite.dll
    LoadedModule[140]=C:\Windows\SysWOW64\wer.dll
    LoadedModule[141]=C:\Windows\System32\Wpc.dll
    LoadedModule[142]=C:\Windows\System32\wevtapi.dll
    LoadedModule[143]=C:\Windows\System32\msxml6.dll
    LoadedModule[144]=C:\Windows\system32\SAMLIB.dll
    LoadedModule[145]=C:\Windows\system32\netutils.dll
    LoadedModule[146]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\uiautomationcore.dll
    LoadedModule[147]=C:\Windows\system32\OLEACC.dll
    LoadedModule[148]=C:\Windows\System32\MMDevApi.dll
    LoadedModule[149]=C:\Windows\System32\PROPSYS.dll
    LoadedModule[150]=C:\Windows\system32\AUDIOSES.DLL
    LoadedModule[151]=C:\Windows\system32\HID.DLL
    LoadedModule[152]=C:\Windows\system32\wdmaud.drv
    LoadedModule[153]=C:\Windows\system32\ksuser.dll
    LoadedModule[154]=C:\Windows\system32\AVRT.dll
    LoadedModule[155]=C:\Windows\system32\msacm32.drv
    LoadedModule[156]=C:\Windows\system32\midimap.dll
    LoadedModule[157]=C:\Windows\system32\dinput.DLL
    LoadedModule[158]=C:\Windows\System32\wship6.dll
    LoadedModule[159]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[160]=C:\Windows\WinSxS\x86_microsoft.flightsimulator.simconnect_67c7c14424d61b5b_10.0.61259.0_none_55f5ecdc14f60568\SimConnect.dll
    LoadedModule[161]=C:\Windows\WinSxS\x86_microsoft.flightsimulator.simconnect_67c7c14424d61b5b_10.0.60905.0_none_dd92b94d8a196297\SimConnect.dll
    LoadedModule[162]=C:\Windows\system32\MSDART.DLL
    LoadedModule[163]=C:\Program Files (x86)\Common Files\System\Ole DB\oledb32.dll
    LoadedModule[164]=C:\Program Files (x86)\Common Files\System\Ole DB\OLEDB32R.DLL
    LoadedModule[165]=C:\Windows\system32\comsvcs.dll
    LoadedModule[166]=C:\Windows\system32\ATL.DLL
    LoadedModule[167]=C:\Windows\SysWOW64\msjetoledb40.dll
    LoadedModule[168]=C:\Windows\SysWOW64\msjet40.dll
    LoadedModule[169]=C:\Windows\SysWOW64\mswstr10.dll
    LoadedModule[170]=C:\Windows\SysWOW64\msjter40.dll
    LoadedModule[171]=C:\Windows\SysWOW64\MSJINT40.DLL
    LoadedModule[172]=C:\Windows\system32\mlang.dll
    LoadedModule[173]=C:\Windows\system32\RAASAUDIO32.DLL
    LoadedModule[174]=C:\Windows\system32\X3DAudio1_6.dll
    LoadedModule[175]=C:\Windows\SysWow64\xactengine3_4.dll
    LoadedModule[176]=C:\Windows\SysWow64\XAudio2_4.dll
    LoadedModule[177]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[178]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[179]=C:\Windows\system32\dhcpcsvc.DLL
    LoadedModule[180]=C:\Windows\WinSxS\x86_microsoft.flightsimulator.simconnect_67c7c14424d61b5b_10.0.61242.0_none_e079b46b85043c20\SIMCONNECT.DLL
    LoadedModule[181]=C:\Windows\system32\mscoree.dll
    LoadedModule[182]=C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
    LoadedModule[183]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
    LoadedModule[184]=C:\Windows\assembly\NativeImages_v2.0.50727_32\mscorlib\38bf604432e1a30c954b2ee40d6a2d1c\mscorlib.ni.dll
    LoadedModule[185]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsec.dll
    LoadedModule[186]=C:\Windows\syswow64\imagehlp.dll
    LoadedModule[187]=C:\Windows\system32\ncrypt.dll
    LoadedModule[188]=C:\Windows\system32\GPAPI.dll
    LoadedModule[189]=C:\Windows\system32\cryptnet.dll
    LoadedModule[190]=C:\Windows\system32\SensApi.dll
    LoadedModule[191]=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\as_srv\as_connect.dll
    LoadedModule[192]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll
    LoadedModule[193]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System\908ba9e296e92b4e14bdc2437edac603\System.ni.dll
    LoadedModule[194]=C:\Windows\system32\Secur32.dll
    LoadedModule[195]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
    LoadedModule[196]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Drawing\836e10dfd0811b303553216f5cb092ef\System.Drawing.ni.dll
    LoadedModule[197]=C:\Windows\system32\msadp32.acm
    LoadedModule[198]=C:\Windows\SysWOW64\ieframe.dll
    LoadedModule[199]=C:\Windows\SysWOW64\api-ms-win-downlevel-shell32-l1-1-0.dll
    LoadedModule[200]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll
    LoadedModule[201]=C:\Windows\SysWOW64\mshtml.dll
    LoadedModule[202]=C:\Windows\system32\msimtf.dll
    LoadedModule[203]=C:\Windows\system32\msls31.dll
    LoadedModule[204]=C:\Windows\system32\d2d1.dll
    LoadedModule[205]=C:\Windows\system32\DWrite.dll
    LoadedModule[206]=C:\Windows\SysWOW64\uiautomationcore.dll
    LoadedModule[207]=C:\Windows\system32\MSVBVM60.DLL
    LoadedModule[208]=C:\Windows\system32\SXS.DLL
    LoadedModule[209]=C:\PROGRA~2\FSFDT\FSCOPI~1\FSCOPI~1.OCX
    LoadedModule[210]=C:\Program Files (x86)\FSFDT\FSCopilot\FSCopTuner.ocx
    LoadedModule[211]=C:\Windows\system32\msiltcfg.dll
    LoadedModule[212]=C:\Windows\SysWOW64\MSCOMCTL.OCX
    LoadedModule[213]=C:\Windows\system32\wmp.dll
    LoadedModule[214]=C:\Windows\system32\wmploc.dll
    LoadedModule[215]=C:\Windows\system32\MFPlat.DLL
    LoadedModule[216]=C:\Windows\SysWOW64\jscript.dll
    FriendlyEventName=Stopped working
    ConsentKey=BEX
    AppName=Microsoft Flight Simulator®
    AppPath=C:\Program Files (x86)\Microsoft Games\Microsoft Flight Simulator X\fsx.exe
    Several users reporting this problem only when flying to or from the Denver International Aiport (KDEN). Any help you can provide would greatly be appreciated.
    Dave

Maybe you are looking for

  • HT3819 how can i share itunes with users on the same computer?

    My husband and I both have separate user profiles on our Mac.  Is there a way we can access all the music files from our itunes between the two profiles?

  • SOAP error when publishing Infopath form to Sharepoint

    Hi - this is my 1st post and I hope someone can help with a problem I have. From Sharepoint, I took the list option to "Customize Form". I then customized the form in infopath 2010 and tried to publish but it comes up with the error: "The publish ope

  • Configurable Material

    Dear SAP Gurus, I have created one finished material and checked on "Material is configurable" in basic data 2. And maintain all other characterstics (depending on the various attributes of material like voltage consumption,manufacturer etc etc) , cl

  • Unlock phone by EMEI mobile bought overseas

    I bought my iPhone 4 in Spain but I moved to here a few months ago. I cant use it with an American carrier since I updated to the to IOS 5. I cant activate it so it is totally useless. My carrier in Spain told me I was eligeble to unlock by emei so I

  • Best service for backup online

    Hi all, I'm looking at services to backup my iMac, Drobo and Lightroom library to. All in all it's getting on for 10TB of stuff at the moment. I'm looking for a solution that's unlimited, doesn't cost me a bomb, and has a decent upload speed (I'm on