Jawt.h?

what is this? I installed inkscape on my mac and decided I didn't like it. When I tried to get rid of something called jawt.h, it wouldn't do it because of "error code ~43". what is this and how can I get rid of it? do I need it?

That would be a C language header file. It is used for Java programming. See this article. I have no idea why you cannot delete it, but you might try doing this:
Open the Terminal application in your Utilities folder. At the prompt enter:
sudo rm -rf
Put a space after "-rf" and drag the file into the Terminal window. Press RETURN.
You will be prompted to enter your admin password which will not be echoed.

Similar Messages

  • Advices required for a JAWT implementation for Windows Mobile 5 and 6

    Hi,
    I want to create a jni bridge in order to open a player in a java Frame. This player works fine in a mobile native application.
    I want to know if somebody tried already to create such a bridge keeping in mind that this is for mobile environment. If yes, is there some specific problems which I should be aware of?
    Specifically I have 2 problems.
    1. My jni getHWND method always return 0.
    JNIEXPORT jint JNICALL Java_JavaRMEngineInterface_getHWND
    (JNIEnv *env, jobject obj, jobject component){
         HWND hWnd = 0;
    //try {
    typedef jboolean (JNICALL PJAWT_GETAWT)(JNIEnv, JAWT*);
    JAWT awt;
    JAWT_DrawingSurface* ds;
    JAWT_DrawingSurfaceInfo* dsi;
    JAWT_Win32DrawingSurfaceInfo* dsi_win;
    jboolean result;
    jint lock;
    bstrt jawtPath = "\\Windows"; // Put Path String from jrePath to jawtPath
    //Load AWT Library
    if(!_hAWT)
    //for Java 1.4
    hAWT = LoadLibrary(jawtPath + bstr_t("\\jawt.dll"));
    //if(!_hAWT)
    //for Java 1.3
    //_hAWT = LoadLibrary(jawtPath + bstrt("\\awt.dll"));
    if(_hAWT)
    PJAWT_GETAWT JAWT_GetAWT = (PJAWT_GETAWT)GetProcAddress(_hAWT, L"_JAWT_GetAWT@8");
    if(JAWT_GetAWT)
    awt.version = JAWT_VERSION_1_3; // Init here with JAWT_VERSION_1_3 or JAWT_VERSION_1_4
    //Get AWT API Interface
    result = JAWT_GetAWT(env, &awt);
    if(result != JNI_FALSE)
    ds = awt.GetDrawingSurface(env, component);
    if(ds != NULL)
    lock = ds->Lock(ds);
    if((lock & JAWT_LOCK_ERROR) == 0)
    dsi = ds->GetDrawingSurfaceInfo(ds);
    if(dsi)
    dsi_win = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo;
    if(dsi_win)
    hWnd = dsi_win->hwnd;
    ds->FreeDrawingSurfaceInfo(dsi);
    ds->Unlock(ds);
    awt.FreeDrawingSurface(ds);
    return (jint)hWnd;
    //}catch()
    return (jint)hWnd;
    2. this second method throw an "error C2100 illegal indirection" at the last line on g_hwndMain.
    JNIEXPORT jboolean JNICALL Java_JavaRMEngineInterface_construct
    (JNIEnv *env, jobject obj, jlong peer, jint hwnd, jlong top, jlong left, jlong bottom, jlong right, jstring lpszSystemLanguage, jint nCacheSize){
         CRMEngineInterface cpp_obj = (CRMEngineInterface)peer;
         HWND g_hwndMain = (HWND)hwnd;
         HDC hDC = ::GetDC(g_hwndMain);
         SIZE size;
    size.cx = (LONG) right - (LONG) left;
    size.cy = (LONG) bottom - (LONG) top;
         TCHAR sInstallDir[MAX_PATH];
         ::GetModuleFileName(NULL, sInstallDir, MAX_PATH);
         TCHAR* pEndPath = _tcsrchr(sInstallDir, L'\\');
         if (pEndPath != NULL)
              *(pEndPath + 1) = 0;
         TCHAR sContentDir[MAX_PATH];
         memcpy(sContentDir, sInstallDir, MAX_PATH);
         UINT nCacheSizeCPP = (UINT) nCacheSize;
         return *cpp_obj->construct( hDC, g_hwndMain, size, sInstallDir, sContentDir, 0);
    Any advice will be very helpful.

    Hello Brian,
    the client technology is based on web dynpro, but it runs in an own Mobile Client. Therefore you do not need the internet browser for the application.
    During the client development you can use the web dynpro tools to design the layout and the screen flow of your application. In the last step you can deploy the application to your mobile client and run it without a browser.
    The mobile client includes a web dynpro runtime to display the data. Therefore you do not need a J2EE server in order to run an application.
    The mobile occasionally connected scenario provides a api to access the local database. NetWeaver Mobile 7.1 for PDA supports two different databases:
    1. MinDB ( from SAP, included no additionals license fee required )
    2. DB2E
    NetWeaver Mobile includes a complete queing mechanism.
    You can also take a look into two eLearnings which provide a good technical overview:
    Link:  [Architecture and Runtime|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e048e20c-7246-2a10-e8a5-8b2b78b5b994]
    Link: [Development Cycle and Tools|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/204fc387-6646-2a10-99b7-bba030bc3f68]
    Unfortunetly there is no fixed timeline for WM6.But I guess this will be available soon.
    I'm afraid but also don't know of any fixed timeline regarding Adobe Interactive forms.
    The architecture of NetWeaver Mobile 7.1 is pretty new and full of great new functionalites. The User Interface for NetWeaver Mobile 7.1 uses eSWT to render the UI elements.
    Best Regards,
    Stefan

  • JAWT in Mobile

    Hi,
    Is there anybody who tried to use jawt in a mobile environment?
    if yes, can he provide me some information concerning this aspect?
    Is a lib file platform dependent?
    how can I generate a lib file for ARM platform if I only have the lib file for the win32 platform?
    Thank you

    Hi,
    Is there anybody who tried to use jawt in a mobile environment?
    if yes, can he provide me some information concerning this aspect?
    Is a lib file platform dependent?
    how can I generate a lib file for ARM platform if I only have the lib file for the win32 platform?
    Thank you

  • JAWT, JNI, OpenGL...Multiple Windows

    Hi.
    I'm new here so forgive me if this is in the wrong place.
    I am working on an app which uses JNI/Jawt to call through from java to native c++ calls to use OpenGL. Currently this works fine when only one window is open.
    I'm having problems when trying to create multiple windows. I can't seem to render to the new window. Both windows are running on the same thread and for each window created I initialise its own DC and RC. Then whenever a drawing method is called I make sure the correct DC/RC is made active/wglMakeCurrent.
    Any thoughts on what I might be missing out here?
    Any help or sugestions greatly appreciated

    Hi, MadSpringy,
    I have the same problem? How did you fix it?
    Harry
    [email protected]

  • JAWT incompatibility between 1.3 and 1.4

    We are currently developing an application for SOLARIS 8 which uses JNI to render from a native library into a Java AWT Canvas. We originally developed under JDK 1.3.1_01, and everything worked fine! I was even amazed that I was easily able to get my Swing dialogs to work as well. The only trade-off was that I had to use AWT pop-up menus and menubars instead of the Swing conterparts, or the VM would freeze.
    Now, our target system has upgraded to JDK 1.4.1(-b21) and now anytime I try to open one of my dialogs (Swing OR AWT), the VM freezes. The ONLY modification was upgrading to 1.4.1. I've checked the documented changes to AWT in 1.4 [http://java.sun.com/j2se/1.4/jcp/j2se-1_4-mr_docs-spec/awt.html], but have not been able to find anything that is affecting what I am trying to do. If I do not bring up any dialogs, everything work nomally (I am able to navigate our 3D environment just fine). Only when I bring up one of the dialogs does the "freeze" happen -- the borders and background of the dialog are rendered, but the VM seems to freeze when rendering the individual components. None of this happens on Win32 (which I have been developing in parallel on using 1.4x for some time now), only on the Solaris platform. It seems to me that SOMETHING must have changed between 1.3 and 1.4 in the JAWT arena that has affected my application. Does anyone have any suggestions on how to track down or fix this problem??? Any similiar experiences???

    Hi,
    I have a similar problem but on windows.
    --Shyam                                                                                                                                                                                                   

  • Linking to jawt.lib under windows

    I've got a bit of native code that links to jawt.lib under Win32. However when deploying my application it asks for jawt.dll and crashes out. I have to either make sure the jre BIN path is in the path or copy the jawt.dll into my application directory. This doesn't seem quite right; can anybody give me a better solution? I was hoping that linking to the .lib gave me a static link :)
    Cas :)

    I would love an answer to this too. I have an applet that uses the JMF to connect to a webcam and I get this error from the Java console:
    Could not load library jmutil native module
    java.lang.UnsatisfiedLinkError: JMFSecurityManager: java.lang.UnsatisfiedLinkError: JMFSecurityManager: Permission to load library jawt denied
         at com.sun.media.JMFSecurityManager.loadLibrary(JMFSecurityManager.java:169)
         at com.sun.media.util.WindowUtil.<clinit>(WindowUtil.java:62)
         at com.sun.media.renderer.video.GDIRenderer.doProcess(GDIRenderer.java:279)
         at com.sun.media.renderer.video.GDIRenderer.doProcess(GDIRenderer.java:272)
         at com.sun.media.renderer.video.BasicVideoRenderer.process(BasicVideoRenderer.java:142)
         at com.sun.media.BasicRendererModule.processBuffer(BasicRendererModule.java:751)
         at com.sun.media.BasicRendererModule.scheduleBuffer(BasicRendererModule.java:523)
         at com.sun.media.BasicRendererModule.doProcess(BasicRendererModule.java:424)
         at com.sun.media.RenderThread.process(BasicRendererModule.java:1138)
         at com.sun.media.util.LoopThread.run(LoopThread.java:159)

  • JAWT example

    Hi,
    I try to run an example with JAWT (the example from the jawt.h file), but with no luck.
    I have created the C++ part in Visual Studio 2005. I linked the jawt.lib file in the project properties. Everything seems to work fine and even it shows that "Build suceeded", but the dll is not created.
    Where would the error be?
    Is there a tutorial about setting the visual studio or other ide in order to create jni-jawt-enabled dlls?
    Any advice would be very helpfull.

    Hi,
    I solved the problem.
    The dll was generated in the Solution folder and not in the project folder. I change it in the project properties.
    Thank you for your advice.

  • What is the meaning? jawt.lib : LNK1125: Conflicting subsystem

    Dag Together, has anyone ( except jschell ) an idear what's wrong with?
    Deleting output files for rebuild.
    Compiling...
    C:\AWTNativeInterfaceDll\MyFile.cpp
    Incrementally linking...
    LINK : performing full link
    c:\programme\java\j2sdk1.4.2_12\lib\jawt.lib : error LNK1125: Conflicting subsystem
    Error executing link.exe.
    Creating browse info file...
    MyFile.dll - 1 error(s), 0 warning(s)
    Vriendelijke groet, FolkertM
    Edited by: FolkertM1 on Aug 22, 2009 10:19 AM

    Try putting the jar files in the WEB-INF/lib directory in the iAS classpath. Open kregedit-> iAS-> 6.0 -> java ->classpath add this jar file location. Restart the kjs or iAS. And run. I think this will work.
    Should you have any queries please get back to the web forum.
    Thanks for visiting our web forum.
    Rakesh.

  • Borland BCC5.5 and the jawt.lib

    Hi guys, sorry if this has been posted before, but I couldn't find anything in the archives. I'm trying to get the Borland 5.5 compiler tools to work with the jawt.lib and it doesn't like the jawt.lib because it doesn't recoginise the format of the file. It thinks it might be a COFF format.
    JNI works fine as long as I don't try and link with the jawt.lib file. I can get native dialogs, native window calls, whatever going just fine. But I want to be able to get it working with the borland compiler.
    It works fine with MS VC++ 6.0.
    Is there a command line switch that I'm missing for the linker to have it recoginise the library as a certain type. If there is then I cannot find it.
    Thanks for your time.
    Steve Toth

    I am also trying to use Borland C++ 5.5 but I am stumped at compiling my .c (or .cpp) files into a .dll.
    I have been working with the code in the tutorial:
    http://java.sun.com/docs/books/tutorial/native1.1/stepbystep/index.html
    Can you please tell me what command line arguments (and source code) you used to create the .dll.
    Sorry about cross posting (I just created a thread to ask these questions).
    DeltaCoder

  • How to add support for JAWT to weblogic?

    Hello!
    My Weblogic use JRockit is a JVM.
    I need to do some image drawing on the server that requires support for native JAWT Interface.
    It seems like JRockit does not support JAWT default.
    Is there a way to add JAWT support?
    Best regards
    Fredrik

    Hello!
    I upgraded my JRockit and then the problem was solved!
    Best regards
    Fredrik

  • Gdi32.Lib, User32.Lib and jawt.lib Files

    I want to run this command:
    cl -Ic:\Program Files\j2sdk_nb\j2sdk1.4.2\include -Ic:\Program Files\j2sdk_nb\j2sdk1.4.2\include\win32 -LD HelloWorldImp.c -FeHelloWorld.dll c:\Program Files\j2sdk_nb\j2sdk1.4.2\lib\jawt.lib c:\Program Files\j2sdk_nb\j2sdk1.4.2\lib\User32.Lib c:\Program Files\j2sdk_nb\j2sdk1.4.2\lib\Gdi32.Lib
    I have j2sdk_nb\j2sdk1.4.2\lib and it does not have gdi32.lib, user32.lib and jawt.lib files. I want you to send me these files. You can send this address. [email protected]
    thank you
    Abdurrahim Kaplan

    user32.lib, gdi32.lib are libraries that you can get in the Microsoft Visual C++ compiler installation. (I believe that you're using the full Microsoft Visual Studio package, not the free package that you can download with the Platform SDK and that does not include the optimizing compiler). If your LIB environment variable was correctly set by the vcvars32.bat batch file, the compiler will find the user32.lib and gdi32.lib files.
    Simply mention "user32.lib" instead of using the full path, and "cl" (the Microsoft Visual C++ compiler driver) will find automatically the correct library.
    jawt.lib is already present in your J2DK installation in the LIB directory. The following files can be found in the LIB directory:
    dt.jar
    htmlconverter.jar
    ir.idl
    jawt.lib
    jvm.lib
    orb.idl
    tools.jar

  • "Can't find dependent libraries" Query

    I created a sample.dll using VC++ which inturn uses java libraries. I
    was getting 'file.obj : error LNK2001: unresolved external symbol
    __imp__JAWT_GetAWT@8' link error while creating sample.dll even after
    providing jawt.dll path. So used jre/lib/jawt.lib to create the
    sample.dll. I am using this sample.dll to run a java program. While
    running the java program, I am getting the error 'Exception in thread
    "main" ava.lang.UnsatisfiedLinkError: sample.dll: Can't find dependent
    libraries'. If I don't use jawt.lib (by commenting relevant code) to
    create sample.dll, my java program runs fine.
    But I need to use the code relevant to jawt.lib. Any idea how to over
    come Can't find dependent libraries error?

    You need to link against "jawt.lib"
    E.g.
    In VC++ goto
    Projects -> Settings ->Link Tab
    Add jawt.lib to the Object/Library modules and Project Options.

  • 10g istalltion problem on windows XP prof.

    when im installing 10.2.0 express edition in windows xp professional... after the database name and password given im getting this message like " please wait this will take a moment" after that the installation got disappeared.
    i disabled my anti virus even though im getting the same problem.....provide me the solution plz.
    this the error in the log file :
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8079055
    Function=[Unknown.]
    Library=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_01-50-32PM\jre\1.4.2\bin\client\jvm.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.

    sorry r suggetion could not help me...
    i tried to install in another computer the same problem occuring....!!!
    this was the complete error in the logfile hs_err_pid2320
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8079055
    Function=[Unknown.]
    Library=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\client\jvm.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(Native Method)
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:516)
         at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.RegSetValue(OiipwWin32NativeCalls.java:473)
         at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.setInstallerKey(OiipgBootstrap.java:511)
         at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(OiipgBootstrap.java:418)
         at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(OiicSessionInterfaceManager.java:401)
         at oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(OiicInvSetupWCCE.java:217)
         at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
         at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
         at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
         at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:547)
         at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:935)
         at oracle.sysman.oio.oioc.OiocOneClickInstaller.runInstaller(OiocOneClickInstaller.java:1016)
         at oracle.sysman.oio.oioc.OiocOneClickInstaller.startRun(OiocOneClickInstaller.java:1108)
         at oracle.sysman.oio.oioc.OiocOneClickDB.nextClicked(OiocOneClickDB.java:1084)
         at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:1318)
    Dynamic libraries:
    0x00400000 - 0x0040B000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\javaw.exe
    0x7C900000 - 0x7C9B2000      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
    0x77D40000 - 0x77DD0000      C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F58000      C:\WINDOWS\system32\GDI32.dll
    0x77C10000 - 0x77C68000      C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08138000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\client\jvm.dll
    0x76B40000 - 0x76B6D000      C:\WINDOWS\system32\WINMM.dll
    0x10000000 - 0x10007000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\hpi.dll
    0x00830000 - 0x0083E000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\verify.dll
    0x00840000 - 0x00859000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\java.dll
    0x00860000 - 0x0086E000      C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\zip.dll
    0x03290000 - 0x033A2000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763AD000      C:\WINDOWS\system32\IMM32.dll
    0x774E0000 - 0x7761C000      C:\WINDOWS\system32\ole32.dll
    0x5AD70000 - 0x5ADA8000      C:\WINDOWS\system32\uxtheme.dll
    0x03400000 - 0x03451000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\fontmanager.dll
    0x73760000 - 0x737A9000      C:\WINDOWS\system32\ddraw.dll
    0x73BC0000 - 0x73BC6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73A10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x74720000 - 0x7476B000      C:\WINDOWS\system32\MSCTF.dll
    0x03530000 - 0x03553000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\JavaAccessBridge.dll
    0x03670000 - 0x03675000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\jawt.dll
    0x03680000 - 0x03687000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\JAWTAccessBridge.dll
    0x03860000 - 0x0387E000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\jre\1.4.2\bin\jpeg.dll
    0x038C0000 - 0x038D9000      C:\Documents and Settings\Administrator\Local Settings\Temp\OraInstall2010-02-03_03-37-54PM\oui\lib\win32\oraInstaller.dll
    0x77C00000 - 0x77C08000      C:\WINDOWS\system32\VERSION.dll
    0x77120000 - 0x771AC000      C:\WINDOWS\system32\OLEAUT32.DLL
    0x76C90000 - 0x76CB8000      C:\WINDOWS\system32\imagehlp.dll
    0x59A60000 - 0x59B01000      C:\WINDOWS\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\system32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 544K [0x10010000, 0x100b0000, 0x10770000)
    eden space 512K, 99% used [0x10010000, 0x1008ff38, 0x10090000)
    from space 64K, 50% used [0x10090000, 0x10098130, 0x100a0000)
    to space 64K, 0% used [0x100a0000, 0x100a0000, 0x100b0000)
    tenured generation total 7088K, used 4988K [0x10770000, 0x10e5c000, 0x16010000)
    the space 7088K, 70% used [0x10770000, 0x10c4f250, 0x10c4f400, 0x10e5c000)
    compacting perm gen total 12032K, used 11999K [0x16010000, 0x16bd0000, 0x1a010000)
    the space 12032K, 99% used [0x16010000, 0x16bc7e38, 0x16bc8000, 0x16bd0000)
    Local Time = Wed Feb 03 15:38:24 2010
    Elapsed Time = 21
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    #

  • Problem with streaming video

    Hi!
    I have a problem with my project. Please help me!
    I tried to send a video streaming between 2 computers. I used socket connection and AVReceive2, AVTransmit. When received computer display 59 seconds, it stop the connection, socket is closed and program send a error report.
    I list here:
    =========================================================================
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x070b17ff, pid=1180, tid=2176
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_13-b05 mixed mode, sharing)
    # Problematic frame:
    # C [jmmpegv.dll+0x17ff]
    --------------- T H R E A D ---------------
    Current thread (0x02cdf930): JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@27391d" daemon [_thread_in_native, id=2176]
    siginfo: ExceptionCode=0xc0000005, reading address 0x0d2451f8
    Registers:
    EAX=0x0000008e, EBX=0xfffffffd, ECX=0x070c2a68, EDX=0x0000ffff
    ESP=0x078ff8a4, EBP=0x0000000d, ESI=0x016c0000, EDI=0x077451f8
    EIP=0x070b17ff, EFLAGS=0x00010202
    Top of Stack: (sp=0x078ff8a4)
    0x078ff8a4: 00000001 00000164 07110650 00000000
    0x078ff8b4: 00000005 0000010f 070c2a34 00000003
    0x078ff8c4: 00000003 070b65c8 070c250f 070c2b3c
    0x078ff8d4: 07740048 00000002 00000000 00000000
    0x078ff8e4: 00000000 00000000 070b66c0 07740048
    0x078ff8f4: 07740048 070b6c3b 00000001 07740048
    0x078ff904: 071101a0 07740048 078ff990 00000000
    0x078ff914: 00000000 070b74b5 07740048 078ff97c
    Instructions: (pc=0x070b17ff)
    0x070b17ef: fc 01 0c 07 0b d7 8b 3d c0 2d 0c 07 c1 fe 03 45
    0x070b17ff: d9 04 b7 8b 35 44 36 0c 07 8b f9 d8 0c 86 d9 1c
    Stack: [0x078c0000,0x07900000), sp=0x078ff8a4, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [jmmpegv.dll+0x17ff]
    [error occurred during error reporting, step 120, id 0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.ibm.media.codec.video.mpeg.MpegVideo.videoDecode(J[BIIILjava/lang/Object;JII[I[I[I[I[I[I)I+0
    j com.ibm.media.codec.video.mpeg.MpegVideo.process(Ljavax/media/Buffer;Ljavax/media/Buffer;)I+574
    J com.sun.media.BasicFilterModule.process()V
    J com.sun.media.BasicOutputConnector.writeReport()V
    J com.sun.media.BasicFilterModule.process()V
    J com.sun.media.BasicOutputConnector.writeReport()V
    J com.sun.media.SourceThread.process()Z
    j com.sun.media.util.LoopThread.run()V+14
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x02cdd008 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@cec0c5" daemon [_thread_blocked, id=3104]
    0x02d1df88 JavaThread "Loop thread: com.sun.media.renderer.audio.DirectAudioRenderer@2ce908" daemon [_thread_blocked, id=1176]
    =>0x02cdf930 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@27391d" daemon [_thread_in_native, id=2176]
    0x02ce0890 JavaThread "Loop thread: com.sun.media.renderer.video.DDRenderer@14a8cd1" daemon [_thread_blocked, id=2296]
    0x02c5e920 JavaThread "Progress Slider thread" daemon [_thread_blocked, id=3172]
    0x02d18c58 JavaThread "Loop thread" daemon [_thread_blocked, id=2920]
    0x00ab5a50 JavaThread "DirectSound Request Thread" daemon [_thread_blocked, id=3984]
    0x00a80480 JavaThread "Progress Slider thread" daemon [_thread_blocked, id=3180]
    0x02c89d18 JavaThread "Loop thread" daemon [_thread_blocked, id=788]
    0x02d37098 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=3328]
    0x02c8bc28 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=2916]
    0x02c78720 JavaThread "RTPStream" daemon [_thread_blocked, id=3400]
    0x02db1d90 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=3032]
    0x02c73c10 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=1440]
    0x02c7d930 JavaThread "RTPStream" daemon [_thread_blocked, id=2664]
    0x02d195e0 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=2416]
    0x02d19008 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=592]
    0x02d24a30 JavaThread "RTP Forwarder for address 192.168.1.34 port 1627" daemon [_thread_in_native, id=376]
    0x02c5fa30 JavaThread "RTCP Forwarder for address192.168.1.34 port 1628" daemon [_thread_in_native, id=3840]
    0x02c5f008 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=2516]
    0x02c60440 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=2820]
    0x02c602b8 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=3816]
    0x02d403d0 JavaThread "RTP Forwarder for address 192.168.1.34 port 1625" daemon [_thread_in_native, id=2272]
    0x02d0de20 JavaThread "RTCP Forwarder for address192.168.1.34 port 1626" daemon [_thread_in_native, id=1500]
    0x00a64e30 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=3852]
    0x02c9d6e8 JavaThread "TimerQueue" daemon [_thread_blocked, id=2472]
    0x00035c78 JavaThread "DestroyJavaVM" [_thread_blocked, id=2776]
    0x02cbbb10 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=364]
    0x02c58478 JavaThread "AWT-Shutdown" [_thread_blocked, id=1008]
    0x02c58898 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3548]
    0x00aabf08 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2440]
    0x00a716d0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3644]
    0x00a702b0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3348]
    0x00a6f598 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1184]
    0x00a6a300 JavaThread "Finalizer" daemon [_thread_blocked, id=2556]
    0x00a68e78 JavaThread "Reference Handler" daemon [_thread_blocked, id=1296]
    Other Threads:
    0x00a67c38 VMThread [id=1956]
    0x00a6f440 WatcherThread [id=3560]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 640K, used 501K [0x22a70000, 0x22b20000, 0x22f50000)
    eden space 576K, 76% used [0x22a70000, 0x22adde88, 0x22b00000)
    from space 64K, 96% used [0x22b10000, 0x22b1f758, 0x22b20000)
    to space 64K, 0% used [0x22b00000, 0x22b00000, 0x22b10000)
    tenured generation total 8172K, used 6973K [0x22f50000, 0x2374b000, 0x26a70000)
    the space 8172K, 85% used [0x22f50000, 0x2361f4e0, 0x2361f600, 0x2374b000)
    compacting perm gen total 8192K, used 2098K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 25% used [0x26a70000, 0x26c7ca90, 0x26c7cc00, 0x27270000)
    ro space 8192K, 67% used [0x2aa70000, 0x2afd23e0, 0x2afd2400, 0x2b270000)
    rw space 12288K, 47% used [0x2b270000, 0x2b81f450, 0x2b81f600, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\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
    0x6d740000 - 0x6d8dd000      C:\Program Files\Java\jdk1.5.0_13\jre\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
    0x6d300000 - 0x6d308000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d710000 - 0x6d71c000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\zip.dll
    0x6d070000 - 0x6d1da000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.dll
    0x774e0000 - 0x7761c000      C:\WINDOWS\system32\ole32.dll
    0x305e0000 - 0x305f6000      C:\Program Files\Kaspersky Lab\Kaspersky Anti-Virus 7.0\miscr3.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x30480000 - 0x3048e000      C:\Program Files\Kaspersky Lab\Kaspersky Anti-Virus 7.0\fssync.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\MSVCR80.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x6d2b0000 - 0x6d300000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\fontmanager.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
    0x6d540000 - 0x6d553000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d560000 - 0x6d569000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\nio.dll
    0x60300000 - 0x60307000      C:\PROGRA~1\Yahoo!\MESSEN~1\idle.dll
    0x7c340000 - 0x7c396000      C:\PROGRA~1\Yahoo!\MESSEN~1\MSVCR71.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x10000000 - 0x10015000      C:\WINDOWS\system32\jmutil.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x30460000 - 0x3047b000      C:\Program Files\Kaspersky Lab\Kaspersky Anti-Virus 7.0\dnsq.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x05540000 - 0x0554d000      C:\WINDOWS\system32\jmacm.dll
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x58420000 - 0x58427000      C:\WINDOWS\system32\imaadp32.acm
    0x72cf0000 - 0x72cf7000      C:\WINDOWS\system32\msadp32.acm
    0x58330000 - 0x58335000      C:\WINDOWS\system32\msg711.acm
    0x58300000 - 0x58308000      C:\WINDOWS\system32\msgsm32.acm
    0x582d0000 - 0x582d4000      C:\WINDOWS\system32\tssoft32.acm
    0x73b70000 - 0x73b77000      C:\WINDOWS\system32\tsd32.dll
    0x58310000 - 0x5832d000      C:\WINDOWS\system32\msg723.acm
    0x58340000 - 0x5838d000      C:\WINDOWS\system32\msaud32.acm
    0x582e0000 - 0x582fe000      C:\WINDOWS\system32\sl_anet.acm
    0x581a0000 - 0x581d9000      C:\WINDOWS\system32\iac25_32.ax
    0x58390000 - 0x5841a000      C:\WINDOWS\system32\l3codeca.acm
    0x056d0000 - 0x056dc000      C:\WINDOWS\system32\jmdaud.dll
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\DSOUND.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x06d50000 - 0x06dae000      C:\WINDOWS\system32\jmmpa.dll
    0x06c20000 - 0x06c2b000      C:\WINDOWS\system32\jmvcm.dll
    0x75a70000 - 0x75a91000      C:\WINDOWS\system32\MSVFW32.dll
    0x070b0000 - 0x070c6000      C:\WINDOWS\system32\jmmpegv.dll
    0x07210000 - 0x07218000      C:\WINDOWS\system32\jmddraw.dll
    0x073e0000 - 0x0748c000      C:\WINDOWS\system32\jmvh263.dll
    0x6d3e0000 - 0x6d3e6000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\jawt.dll
    0x07340000 - 0x07349000      C:\WINDOWS\system32\jmfjawt.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x73ee0000 - 0x73ee4000      C:\WINDOWS\system32\KsUser.dll
    VM Arguments:
    java_command: FrameLogin
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=.;.;C:\PROGRA~1\JMF21~1.1E\lib\sound.jar;C:\PROGRA~1\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~1\JMF21~1.1E\lib;
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    USERNAME=Tung
    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 245280k(6040k free), swap 2279684k(1755548k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_13-b05) for windows-x86, built on Sep 25 2007 19:11:52 by "java_re" with MS VC++ 6.0
    ==============================================================================
    Is it a problem with jre or a problem with socket connection?
    Please help me! Thanks!

    rohitmadiwal, don't post on old threads. If you have a problem, post a new thread.
    The above error was caused by a bug in the JNI code inside of JMF. The best solution to such problems is to reboot your system, and if that doesn't work, reinstall JMF.
    If neither of those 2 things fix it, it cannot be fixed.

  • Streaming video stop after 59 seconds and report EXCEPTION_ACCESS_VIOLATION

    Hi!
    I have a problem with my project. Please help me!
    I tried to send a video streaming between 2 computers. I used socket connection and JMF. When received computer display 59 seconds, it stop the connection and program send a error report. I've read many topics about this problem but i haven't seen the answer. Please help me! Thanks!
    And this is error report:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x04eb17ff, pid=6084, tid=5872
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_13-b05 mixed mode, sharing)
    # Problematic frame:
    # C [jmmpegv.dll+0x17ff]
    --------------- T H R E A D ---------------
    Current thread (0x03847fd0): JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@1808199" daemon [_thread_in_native, id=5872]
    siginfo: ExceptionCode=0xc0000005, reading address 0x093651f8
    Registers:
    EAX=0x0000006d, EBX=0x00000003, ECX=0x04ec2854, EDX=0x0000fd7f
    ESP=0x0914f884, EBP=0x0000000a, ESI=0xffffc000, EDI=0x093751f8
    EIP=0x04eb17ff, EFLAGS=0x00010206
    Top of Stack: (sp=0x0914f884)
    0x0914f884: 00000001 00000181 063c0590 00000000
    0x0914f894: 00000003 000001ff 04ec282c 00000007
    0x0914f8a4: 00000004 04eb65c8 04ec251f 04ec2b3c
    0x0914f8b4: 09370048 00000000 00000000 00000000
    0x0914f8c4: 00000000 00000000 04eb66c0 09370048
    0x0914f8d4: 09370048 04eb6c3b 00000001 09370048
    0x0914f8e4: 063c00e0 09370048 0914f970 00000000
    0x0914f8f4: 00000000 04eb74b5 09370048 0914f95c
    Instructions: (pc=0x04eb17ff)
    0x04eb17ef: fc 01 ec 04 0b d7 8b 3d c0 2d ec 04 c1 fe 03 45
    0x04eb17ff: d9 04 b7 8b 35 44 36 ec 04 8b f9 d8 0c 86 d9 1c
    Stack: [0x09110000,0x09150000), sp=0x0914f884, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [jmmpegv.dll+0x17ff]
    [error occurred during error reporting, step 120, id 0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.ibm.media.codec.video.mpeg.MpegVideo.videoDecode(J[BIIILjava/lang/Object;JII[I[I[I[I[I[I)I+0
    j com.ibm.media.codec.video.mpeg.MpegVideo.process(Ljavax/media/Buffer;Ljavax/media/Buffer;)I+574
    J com.sun.media.BasicFilterModule.process()V
    J com.sun.media.BasicOutputConnector.writeReport()V
    J com.sun.media.BasicFilterModule.process()V
    J com.sun.media.BasicOutputConnector.writeReport()V
    J com.sun.media.SourceThread.process()Z
    j com.sun.media.util.LoopThread.run()V+14
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x03847fd0 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@1808199" daemon [_thread_in_native, id=5872]
    0x03848158 JavaThread "Loop thread: com.sun.media.renderer.video.DDRenderer@1e8a1f6" daemon [_thread_blocked, id=5528]
    0x038476a0 JavaThread "Progress Slider thread" daemon [_thread_blocked, id=2716]
    0x038479b0 JavaThread "Loop thread" daemon [_thread_blocked, id=156]
    0x03847828 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@edc3a2" daemon [_thread_in_native, id=4760]
    0x03847b38 JavaThread "Loop thread: com.sun.media.renderer.audio.DirectAudioRenderer@1434234" daemon [_thread_blocked, id=4612]
    0x03847518 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=3708]
    0x03847390 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=4696]
    0x03847080 JavaThread "RTPStream" daemon [_thread_blocked, id=4504]
    0x03847208 JavaThread "DirectSound Request Thread" daemon [_thread_blocked, id=4284]
    0x03735ee0 JavaThread "Progress Slider thread" daemon [_thread_blocked, id=3796]
    0x03736068 JavaThread "Loop thread" daemon [_thread_blocked, id=1528]
    0x03735bd0 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=5488]
    0x03735a48 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=4892]
    0x037358c0 JavaThread "RTPStream" daemon [_thread_blocked, id=2324]
    0x03735738 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=5644]
    0x037355b0 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=4684]
    0x036f6b10 JavaThread "RTP Forwarder for address 192.168.1.40 port 50476" daemon [_thread_in_native, id=5144]
    0x036f6988 JavaThread "RTCP Forwarder for address192.168.1.40 port 50477" daemon [_thread_in_native, id=3284]
    0x036f6800 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=5640]
    0x036f6430 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=2792]
    0x036f62a8 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=5908]
    0x036f6120 JavaThread "RTP Forwarder for address 192.168.1.40 port 50474" daemon [_thread_in_native, id=5508]
    0x036f5f98 JavaThread "RTCP Forwarder for address192.168.1.40 port 50475" daemon [_thread_in_native, id=3848]
    0x037488e8 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=4652]
    0x0374b9b8 JavaThread "TimerQueue" daemon [_thread_blocked, id=1880]
    0x008e7990 JavaThread "DestroyJavaVM" [_thread_blocked, id=4488]
    0x03729e18 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=5424]
    0x036bc568 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2592]
    0x036bc3e0 JavaThread "AWT-Shutdown" [_thread_blocked, id=4716]
    0x036bbf60 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5892]
    0x0156eee0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5320]
    0x0156cd18 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5888]
    0x0156c240 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5296]
    0x01539d98 JavaThread "Finalizer" daemon [_thread_blocked, id=3616]
    0x015392e0 JavaThread "Reference Handler" daemon [_thread_blocked, id=4492]
    Other Threads:
    0x015364d0 VMThread [id=5880]
    0x01529b58 WatcherThread [id=5692]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 282K [0x24010000, 0x240b0000, 0x244f0000)
    eden space 512K, 51% used [0x24010000, 0x24052078, 0x24090000)
    from space 64K, 28% used [0x24090000, 0x24094800, 0x240a0000)
    to space 64K, 0% used [0x240a0000, 0x240a0000, 0x240b0000)
    tenured generation total 6664K, used 6279K [0x244f0000, 0x24b72000, 0x28010000)
    the space 6664K, 94% used [0x244f0000, 0x24b11c30, 0x24b11e00, 0x24b72000)
    compacting perm gen total 8192K, used 2112K [0x28010000, 0x28810000, 0x2c010000)
    the space 8192K, 25% used [0x28010000, 0x28220310, 0x28220400, 0x28810000)
    ro space 8192K, 67% used [0x2c010000, 0x2c5723e0, 0x2c572400, 0x2c810000)
    rw space 12288K, 47% used [0x2c810000, 0x2cdbf450, 0x2cdbf600, 0x2d410000)
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\java.exe
    0x77650000 - 0x7776e000      C:\Windows\system32\ntdll.dll
    0x76010000 - 0x760e8000      C:\Windows\system32\kernel32.dll
    0x768a0000 - 0x7695f000      C:\Windows\system32\ADVAPI32.dll
    0x76530000 - 0x765f3000      C:\Windows\system32\RPCRT4.dll
    0x75f10000 - 0x75fba000      C:\Windows\system32\MSVCRT.dll
    0x6d740000 - 0x6d8dd000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\client\jvm.dll
    0x76600000 - 0x7669e000      C:\Windows\system32\USER32.dll
    0x760f0000 - 0x7613b000      C:\Windows\system32\GDI32.dll
    0x747a0000 - 0x747d3000      C:\Windows\system32\WINMM.dll
    0x763e0000 - 0x76524000      C:\Windows\system32\ole32.dll
    0x762f0000 - 0x7637c000      C:\Windows\system32\OLEAUT32.dll
    0x74760000 - 0x74798000      C:\Windows\system32\OLEACC.dll
    0x77840000 - 0x7785e000      C:\Windows\system32\IMM32.DLL
    0x76220000 - 0x762e7000      C:\Windows\system32\MSCTF.dll
    0x75d20000 - 0x75d4c000      C:\Windows\system32\apphelp.dll
    0x77770000 - 0x77779000      C:\Windows\system32\LPK.DLL
    0x76140000 - 0x761bd000      C:\Windows\system32\USP10.dll
    0x77810000 - 0x7783d000      C:\Windows\system32\WS2_32.dll
    0x76210000 - 0x76216000      C:\Windows\system32\NSI.dll
    0x75d70000 - 0x75d91000      C:\Windows\system32\NTMARTA.DLL
    0x75fc0000 - 0x76009000      C:\Windows\system32\WLDAP32.dll
    0x75f00000 - 0x75f07000      C:\Windows\system32\PSAPI.DLL
    0x75d50000 - 0x75d61000      C:\Windows\system32\SAMLIB.dll
    0x76380000 - 0x763d5000      C:\Windows\system32\SHLWAPI.dll
    0x75950000 - 0x75ae4000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6000.16386_none_5d07289e07e1d100\comctl32.dll
    0x10000000 - 0x10010000      C:\PROGRA~1\KASPER~1\KASPER~1.0\r3hook.dll
    0x6d300000 - 0x6d308000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\hpi.dll
    0x6d710000 - 0x6d71c000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\zip.dll
    0x6d070000 - 0x6d1da000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\awt.dll
    0x72430000 - 0x72471000      C:\Windows\system32\WINSPOOL.DRV
    0x74e30000 - 0x74e6f000      C:\Windows\system32\uxtheme.dll
    0x6d2b0000 - 0x6d300000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\fontmanager.dll
    0x769f0000 - 0x774be000      C:\Windows\system32\shell32.dll
    0x6d540000 - 0x6d553000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\net.dll
    0x75410000 - 0x7544b000      C:\Windows\system32\mswsock.dll
    0x75400000 - 0x75406000      C:\Windows\System32\wship6.dll
    0x6d560000 - 0x6d569000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\nio.dll
    0x60300000 - 0x60307000      C:\PROGRA~1\Yahoo!\MESSEN~1\idle.dll
    0x7c340000 - 0x7c396000      C:\PROGRA~1\Yahoo!\MESSEN~1\MSVCR71.dll
    0x03f10000 - 0x03f3f000      C:\Program Files\Common Files\PC Tools\LSP\PCTLsp.dll
    0x750f0000 - 0x750f6000      C:\Windows\System32\wshtcpip.dll
    0x03910000 - 0x03925000      C:\Windows\System32\jmutil.dll
    0x74410000 - 0x7441f000      C:\Windows\system32\NLAapi.dll
    0x75690000 - 0x756a9000      C:\Windows\system32\IPHLPAPI.DLL
    0x75650000 - 0x75685000      C:\Windows\system32\dhcpcsvc.DLL
    0x75b30000 - 0x75b5b000      C:\Windows\system32\DNSAPI.dll
    0x75da0000 - 0x75db4000      C:\Windows\system32\Secur32.dll
    0x75640000 - 0x75647000      C:\Windows\system32\WINNSI.DLL
    0x75620000 - 0x75640000      C:\Windows\system32\dhcpcsvc6.DLL
    0x71f70000 - 0x71f78000      C:\Windows\System32\winrnr.dll
    0x71f60000 - 0x71f6f000      C:\Windows\system32\napinsp.dll
    0x71f40000 - 0x71f52000      C:\Windows\system32\pnrpnsp.dll
    0x72810000 - 0x72816000      C:\Windows\system32\rasadhlp.dll
    0x04030000 - 0x0403d000      C:\Windows\System32\jmacm.dll
    0x74180000 - 0x74195000      C:\Windows\system32\MSACM32.dll
    0x70750000 - 0x70758000      C:\Windows\system32\imaadp32.acm
    0x6cfb0000 - 0x6cfb7000      C:\Windows\system32\msg711.acm
    0x6c4f0000 - 0x6c4f9000      C:\Windows\system32\msgsm32.acm
    0x6c0d0000 - 0x6c0d8000      C:\Windows\system32\msadp32.acm
    0x69890000 - 0x698a2000      C:\Windows\System32\l3codeca.acm
    0x04130000 - 0x0413c000      C:\Windows\System32\jmdaud.dll
    0x74ab0000 - 0x74b21000      C:\Windows\system32\DSOUND.dll
    0x75110000 - 0x7512a000      C:\Windows\system32\POWRPROF.dll
    0x04e30000 - 0x04e8e000      C:\Windows\System32\jmmpa.dll
    0x76960000 - 0x769e4000      C:\Windows\system32\CLBCatQ.DLL
    0x746d0000 - 0x746f7000      C:\Windows\System32\MMDevApi.dll
    0x774c0000 - 0x77649000      C:\Windows\system32\SETUPAPI.dll
    0x75080000 - 0x750ad000      C:\Windows\system32\WINTRUST.dll
    0x75740000 - 0x75831000      C:\Windows\system32\CRYPT32.dll
    0x75b10000 - 0x75b22000      C:\Windows\system32\MSASN1.dll
    0x75dc0000 - 0x75dde000      C:\Windows\system32\USERENV.dll
    0x77860000 - 0x77889000      C:\Windows\system32\imagehlp.dll
    0x742b0000 - 0x742d1000      C:\Windows\System32\audioses.dll
    0x74240000 - 0x742a6000      C:\Windows\System32\audioeng.dll
    0x745a0000 - 0x745a7000      C:\Windows\System32\AVRT.dll
    0x05ab0000 - 0x05abb000      C:\Windows\System32\jmvcm.dll
    0x6e280000 - 0x6e2a3000      C:\Windows\system32\MSVFW32.dll
    0x73270000 - 0x732f6000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.6000.16386_none_87e0cb09378714f1\COMCTL32.dll
    0x06ba0000 - 0x06e59000      C:\Program Files\K-Lite Codec Pack\ffdshow\ffdshow.ax
    0x77790000 - 0x77804000      C:\Windows\system32\comdlg32.dll
    0x698b0000 - 0x698d4000      C:\Windows\system32\DINPUT.dll
    0x04eb0000 - 0x04ec6000      C:\Windows\System32\jmmpegv.dll
    0x04e90000 - 0x04e98000      C:\Windows\System32\jmddraw.dll
    0x064c0000 - 0x065a6000      C:\Windows\system32\DDRAW.dll
    0x6dca0000 - 0x6dca6000      C:\Windows\system32\DCIMAN32.dll
    0x72ca0000 - 0x72cac000      C:\Windows\system32\dwmapi.dll
    0x06ff0000 - 0x074dc000      C:\Windows\system32\nvd3dum.dll
    0x08fe0000 - 0x0908c000      C:\Windows\System32\jmvh263.dll
    0x6d3e0000 - 0x6d3e6000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\jawt.dll
    0x05ad0000 - 0x05ad9000      C:\Windows\System32\jmfjawt.dll
    VM Arguments:
    java_command: FrameLogin
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=.;.;C:\PROGRA~1\JMF21~1.1E\lib\sound.jar;C:\PROGRA~1\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~1\JMF21~1.1E\lib;C:\Windows\java\classes;.
    PATH=C:\Windows\system32;C:\Windows;C:\Windows\system32\wbem;C:\Program Files\MATLAB\R2007a\bin;C:\Program Files\MATLAB\R2007a\bin\win32;
    USERNAME=tungdt
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Vista Build 6000
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 13, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1046088k(253228k free), swap 2344676k(842416k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_13-b05) for windows-x86, built on Sep 25 2007 19:11:52 by "java_re" with MS VC++ 6.0

    Hi!
    I have a problem with my project. Please help me!
    I tried to send a video streaming between 2 computers. I used socket connection and JMF. When received computer display 59 seconds, it stop the connection and program send a error report. I've read many topics about this problem but i haven't seen the answer. Please help me! Thanks!
    And this is error report:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x04eb17ff, pid=6084, tid=5872
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_13-b05 mixed mode, sharing)
    # Problematic frame:
    # C [jmmpegv.dll+0x17ff]
    --------------- T H R E A D ---------------
    Current thread (0x03847fd0): JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@1808199" daemon [_thread_in_native, id=5872]
    siginfo: ExceptionCode=0xc0000005, reading address 0x093651f8
    Registers:
    EAX=0x0000006d, EBX=0x00000003, ECX=0x04ec2854, EDX=0x0000fd7f
    ESP=0x0914f884, EBP=0x0000000a, ESI=0xffffc000, EDI=0x093751f8
    EIP=0x04eb17ff, EFLAGS=0x00010206
    Top of Stack: (sp=0x0914f884)
    0x0914f884: 00000001 00000181 063c0590 00000000
    0x0914f894: 00000003 000001ff 04ec282c 00000007
    0x0914f8a4: 00000004 04eb65c8 04ec251f 04ec2b3c
    0x0914f8b4: 09370048 00000000 00000000 00000000
    0x0914f8c4: 00000000 00000000 04eb66c0 09370048
    0x0914f8d4: 09370048 04eb6c3b 00000001 09370048
    0x0914f8e4: 063c00e0 09370048 0914f970 00000000
    0x0914f8f4: 00000000 04eb74b5 09370048 0914f95c
    Instructions: (pc=0x04eb17ff)
    0x04eb17ef: fc 01 ec 04 0b d7 8b 3d c0 2d ec 04 c1 fe 03 45
    0x04eb17ff: d9 04 b7 8b 35 44 36 ec 04 8b f9 d8 0c 86 d9 1c
    Stack: [0x09110000,0x09150000), sp=0x0914f884, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [jmmpegv.dll+0x17ff]
    [error occurred during error reporting, step 120, id 0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.ibm.media.codec.video.mpeg.MpegVideo.videoDecode(J[BIIILjava/lang/Object;JII[I[I[I[I[I[I)I+0
    j com.ibm.media.codec.video.mpeg.MpegVideo.process(Ljavax/media/Buffer;Ljavax/media/Buffer;)I+574
    J com.sun.media.BasicFilterModule.process()V
    J com.sun.media.BasicOutputConnector.writeReport()V
    J com.sun.media.BasicFilterModule.process()V
    J com.sun.media.BasicOutputConnector.writeReport()V
    J com.sun.media.SourceThread.process()Z
    j com.sun.media.util.LoopThread.run()V+14
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x03847fd0 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@1808199" daemon [_thread_in_native, id=5872]
    0x03848158 JavaThread "Loop thread: com.sun.media.renderer.video.DDRenderer@1e8a1f6" daemon [_thread_blocked, id=5528]
    0x038476a0 JavaThread "Progress Slider thread" daemon [_thread_blocked, id=2716]
    0x038479b0 JavaThread "Loop thread" daemon [_thread_blocked, id=156]
    0x03847828 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@edc3a2" daemon [_thread_in_native, id=4760]
    0x03847b38 JavaThread "Loop thread: com.sun.media.renderer.audio.DirectAudioRenderer@1434234" daemon [_thread_blocked, id=4612]
    0x03847518 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=3708]
    0x03847390 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=4696]
    0x03847080 JavaThread "RTPStream" daemon [_thread_blocked, id=4504]
    0x03847208 JavaThread "DirectSound Request Thread" daemon [_thread_blocked, id=4284]
    0x03735ee0 JavaThread "Progress Slider thread" daemon [_thread_blocked, id=3796]
    0x03736068 JavaThread "Loop thread" daemon [_thread_blocked, id=1528]
    0x03735bd0 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=5488]
    0x03735a48 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=4892]
    0x037358c0 JavaThread "RTPStream" daemon [_thread_blocked, id=2324]
    0x03735738 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=5644]
    0x037355b0 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=4684]
    0x036f6b10 JavaThread "RTP Forwarder for address 192.168.1.40 port 50476" daemon [_thread_in_native, id=5144]
    0x036f6988 JavaThread "RTCP Forwarder for address192.168.1.40 port 50477" daemon [_thread_in_native, id=3284]
    0x036f6800 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=5640]
    0x036f6430 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=2792]
    0x036f62a8 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=5908]
    0x036f6120 JavaThread "RTP Forwarder for address 192.168.1.40 port 50474" daemon [_thread_in_native, id=5508]
    0x036f5f98 JavaThread "RTCP Forwarder for address192.168.1.40 port 50475" daemon [_thread_in_native, id=3848]
    0x037488e8 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=4652]
    0x0374b9b8 JavaThread "TimerQueue" daemon [_thread_blocked, id=1880]
    0x008e7990 JavaThread "DestroyJavaVM" [_thread_blocked, id=4488]
    0x03729e18 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=5424]
    0x036bc568 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2592]
    0x036bc3e0 JavaThread "AWT-Shutdown" [_thread_blocked, id=4716]
    0x036bbf60 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5892]
    0x0156eee0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5320]
    0x0156cd18 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5888]
    0x0156c240 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5296]
    0x01539d98 JavaThread "Finalizer" daemon [_thread_blocked, id=3616]
    0x015392e0 JavaThread "Reference Handler" daemon [_thread_blocked, id=4492]
    Other Threads:
    0x015364d0 VMThread [id=5880]
    0x01529b58 WatcherThread [id=5692]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 282K [0x24010000, 0x240b0000, 0x244f0000)
    eden space 512K, 51% used [0x24010000, 0x24052078, 0x24090000)
    from space 64K, 28% used [0x24090000, 0x24094800, 0x240a0000)
    to space 64K, 0% used [0x240a0000, 0x240a0000, 0x240b0000)
    tenured generation total 6664K, used 6279K [0x244f0000, 0x24b72000, 0x28010000)
    the space 6664K, 94% used [0x244f0000, 0x24b11c30, 0x24b11e00, 0x24b72000)
    compacting perm gen total 8192K, used 2112K [0x28010000, 0x28810000, 0x2c010000)
    the space 8192K, 25% used [0x28010000, 0x28220310, 0x28220400, 0x28810000)
    ro space 8192K, 67% used [0x2c010000, 0x2c5723e0, 0x2c572400, 0x2c810000)
    rw space 12288K, 47% used [0x2c810000, 0x2cdbf450, 0x2cdbf600, 0x2d410000)
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\java.exe
    0x77650000 - 0x7776e000      C:\Windows\system32\ntdll.dll
    0x76010000 - 0x760e8000      C:\Windows\system32\kernel32.dll
    0x768a0000 - 0x7695f000      C:\Windows\system32\ADVAPI32.dll
    0x76530000 - 0x765f3000      C:\Windows\system32\RPCRT4.dll
    0x75f10000 - 0x75fba000      C:\Windows\system32\MSVCRT.dll
    0x6d740000 - 0x6d8dd000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\client\jvm.dll
    0x76600000 - 0x7669e000      C:\Windows\system32\USER32.dll
    0x760f0000 - 0x7613b000      C:\Windows\system32\GDI32.dll
    0x747a0000 - 0x747d3000      C:\Windows\system32\WINMM.dll
    0x763e0000 - 0x76524000      C:\Windows\system32\ole32.dll
    0x762f0000 - 0x7637c000      C:\Windows\system32\OLEAUT32.dll
    0x74760000 - 0x74798000      C:\Windows\system32\OLEACC.dll
    0x77840000 - 0x7785e000      C:\Windows\system32\IMM32.DLL
    0x76220000 - 0x762e7000      C:\Windows\system32\MSCTF.dll
    0x75d20000 - 0x75d4c000      C:\Windows\system32\apphelp.dll
    0x77770000 - 0x77779000      C:\Windows\system32\LPK.DLL
    0x76140000 - 0x761bd000      C:\Windows\system32\USP10.dll
    0x77810000 - 0x7783d000      C:\Windows\system32\WS2_32.dll
    0x76210000 - 0x76216000      C:\Windows\system32\NSI.dll
    0x75d70000 - 0x75d91000      C:\Windows\system32\NTMARTA.DLL
    0x75fc0000 - 0x76009000      C:\Windows\system32\WLDAP32.dll
    0x75f00000 - 0x75f07000      C:\Windows\system32\PSAPI.DLL
    0x75d50000 - 0x75d61000      C:\Windows\system32\SAMLIB.dll
    0x76380000 - 0x763d5000      C:\Windows\system32\SHLWAPI.dll
    0x75950000 - 0x75ae4000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6000.16386_none_5d07289e07e1d100\comctl32.dll
    0x10000000 - 0x10010000      C:\PROGRA~1\KASPER~1\KASPER~1.0\r3hook.dll
    0x6d300000 - 0x6d308000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\hpi.dll
    0x6d710000 - 0x6d71c000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\zip.dll
    0x6d070000 - 0x6d1da000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\awt.dll
    0x72430000 - 0x72471000      C:\Windows\system32\WINSPOOL.DRV
    0x74e30000 - 0x74e6f000      C:\Windows\system32\uxtheme.dll
    0x6d2b0000 - 0x6d300000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\fontmanager.dll
    0x769f0000 - 0x774be000      C:\Windows\system32\shell32.dll
    0x6d540000 - 0x6d553000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\net.dll
    0x75410000 - 0x7544b000      C:\Windows\system32\mswsock.dll
    0x75400000 - 0x75406000      C:\Windows\System32\wship6.dll
    0x6d560000 - 0x6d569000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\nio.dll
    0x60300000 - 0x60307000      C:\PROGRA~1\Yahoo!\MESSEN~1\idle.dll
    0x7c340000 - 0x7c396000      C:\PROGRA~1\Yahoo!\MESSEN~1\MSVCR71.dll
    0x03f10000 - 0x03f3f000      C:\Program Files\Common Files\PC Tools\LSP\PCTLsp.dll
    0x750f0000 - 0x750f6000      C:\Windows\System32\wshtcpip.dll
    0x03910000 - 0x03925000      C:\Windows\System32\jmutil.dll
    0x74410000 - 0x7441f000      C:\Windows\system32\NLAapi.dll
    0x75690000 - 0x756a9000      C:\Windows\system32\IPHLPAPI.DLL
    0x75650000 - 0x75685000      C:\Windows\system32\dhcpcsvc.DLL
    0x75b30000 - 0x75b5b000      C:\Windows\system32\DNSAPI.dll
    0x75da0000 - 0x75db4000      C:\Windows\system32\Secur32.dll
    0x75640000 - 0x75647000      C:\Windows\system32\WINNSI.DLL
    0x75620000 - 0x75640000      C:\Windows\system32\dhcpcsvc6.DLL
    0x71f70000 - 0x71f78000      C:\Windows\System32\winrnr.dll
    0x71f60000 - 0x71f6f000      C:\Windows\system32\napinsp.dll
    0x71f40000 - 0x71f52000      C:\Windows\system32\pnrpnsp.dll
    0x72810000 - 0x72816000      C:\Windows\system32\rasadhlp.dll
    0x04030000 - 0x0403d000      C:\Windows\System32\jmacm.dll
    0x74180000 - 0x74195000      C:\Windows\system32\MSACM32.dll
    0x70750000 - 0x70758000      C:\Windows\system32\imaadp32.acm
    0x6cfb0000 - 0x6cfb7000      C:\Windows\system32\msg711.acm
    0x6c4f0000 - 0x6c4f9000      C:\Windows\system32\msgsm32.acm
    0x6c0d0000 - 0x6c0d8000      C:\Windows\system32\msadp32.acm
    0x69890000 - 0x698a2000      C:\Windows\System32\l3codeca.acm
    0x04130000 - 0x0413c000      C:\Windows\System32\jmdaud.dll
    0x74ab0000 - 0x74b21000      C:\Windows\system32\DSOUND.dll
    0x75110000 - 0x7512a000      C:\Windows\system32\POWRPROF.dll
    0x04e30000 - 0x04e8e000      C:\Windows\System32\jmmpa.dll
    0x76960000 - 0x769e4000      C:\Windows\system32\CLBCatQ.DLL
    0x746d0000 - 0x746f7000      C:\Windows\System32\MMDevApi.dll
    0x774c0000 - 0x77649000      C:\Windows\system32\SETUPAPI.dll
    0x75080000 - 0x750ad000      C:\Windows\system32\WINTRUST.dll
    0x75740000 - 0x75831000      C:\Windows\system32\CRYPT32.dll
    0x75b10000 - 0x75b22000      C:\Windows\system32\MSASN1.dll
    0x75dc0000 - 0x75dde000      C:\Windows\system32\USERENV.dll
    0x77860000 - 0x77889000      C:\Windows\system32\imagehlp.dll
    0x742b0000 - 0x742d1000      C:\Windows\System32\audioses.dll
    0x74240000 - 0x742a6000      C:\Windows\System32\audioeng.dll
    0x745a0000 - 0x745a7000      C:\Windows\System32\AVRT.dll
    0x05ab0000 - 0x05abb000      C:\Windows\System32\jmvcm.dll
    0x6e280000 - 0x6e2a3000      C:\Windows\system32\MSVFW32.dll
    0x73270000 - 0x732f6000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.6000.16386_none_87e0cb09378714f1\COMCTL32.dll
    0x06ba0000 - 0x06e59000      C:\Program Files\K-Lite Codec Pack\ffdshow\ffdshow.ax
    0x77790000 - 0x77804000      C:\Windows\system32\comdlg32.dll
    0x698b0000 - 0x698d4000      C:\Windows\system32\DINPUT.dll
    0x04eb0000 - 0x04ec6000      C:\Windows\System32\jmmpegv.dll
    0x04e90000 - 0x04e98000      C:\Windows\System32\jmddraw.dll
    0x064c0000 - 0x065a6000      C:\Windows\system32\DDRAW.dll
    0x6dca0000 - 0x6dca6000      C:\Windows\system32\DCIMAN32.dll
    0x72ca0000 - 0x72cac000      C:\Windows\system32\dwmapi.dll
    0x06ff0000 - 0x074dc000      C:\Windows\system32\nvd3dum.dll
    0x08fe0000 - 0x0908c000      C:\Windows\System32\jmvh263.dll
    0x6d3e0000 - 0x6d3e6000      C:\Program Files\Java\jdk1.5.0_13\jre\bin\jawt.dll
    0x05ad0000 - 0x05ad9000      C:\Windows\System32\jmfjawt.dll
    VM Arguments:
    java_command: FrameLogin
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=.;.;C:\PROGRA~1\JMF21~1.1E\lib\sound.jar;C:\PROGRA~1\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~1\JMF21~1.1E\lib;C:\Windows\java\classes;.
    PATH=C:\Windows\system32;C:\Windows;C:\Windows\system32\wbem;C:\Program Files\MATLAB\R2007a\bin;C:\Program Files\MATLAB\R2007a\bin\win32;
    USERNAME=tungdt
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Vista Build 6000
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 13, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1046088k(253228k free), swap 2344676k(842416k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_13-b05) for windows-x86, built on Sep 25 2007 19:11:52 by "java_re" with MS VC++ 6.0

Maybe you are looking for

  • Pdf files wil not open under Windows Live Mail

    PDF Files will not open in WIndows Live Mail. I deinstalled Adobe Reader and reinstalled a more recent version but to no avail. It will open very well using WIndows explorer or when opening the reader. Any clues someone?

  • I  Need SQL query

    Hi experts,   One of our Client asking in Aging Reports along with Customer state and  Country and  District. Please Help me out this issue .. I need this Query. Thanks Dineshkumar kannan

  • Ad Hoc query - Hit list count

    Hello, Currently we are experiencing issues in few Ad hoc queries. Issue: When pressed "HIT LIST" button we get count as 21. But in the lower pen(output) we are getting count of 6. Evenif pressed "REFRESH" button the output remains same ie. only 6 en

  • Enhancement in FB03

    Hi, I need to add bank information in payment document to one of the header or reference field in transaction FB03. Help needed. Thanks, Esha

  • F1 Help for Data elements

    Hi All,, i want to add F1 help for data elements.How can i do this.Kindly suggest me the steps to perform this.