9.0.5.1: missing cabo.war

In 9.0.3.3 there was a cabo.war (<home>\bc4j\redist) that could be deployed for shared usage of the UIX runtime stuff.
Where is it located in 9.0.5.1?
Thanks, Markus

Hi Markus -
The cabo.war in UIX 2.1.21 was 450 kB. Using it in a
shared resource decreased the size of my war files
and lead to faster compile and deployment times (when
deploying it to Tomcat).
Of course i can understand why you where changing
that (enough posts around in the forum with
incompatible UIX components).
I need to check again how much it slows me down.I'd be interested to hear results.
Seems so that migrating from 9.0.3.3 to 9.0.5.1 leads
to some additional effort at unexpected places.
Perhaps there is a list around, where all changes and
migration issues are mentioned?I don't believe that there is a single source which covers all of the migration issues, but check out the Appendix of the UIX Developer's Guide for UIX changes between JDeveloper versions.
The JDeveloper release notes also document some migration issues:
http://otn.oracle.com/products/jdev/htdocs/9.0.5.1/readme.html
Of course, if you run into other issues that aren't covered in either of these places, please let post them to the JDev forum.
Andy

Similar Messages

  • Class file missing from war file deployment

    I have a web application that is being deployed to a war file. I have deployed several times successfully. Then with the latest changes, there is a class file that does not get included into the war file. It does get compiled and does exist in the project directory.
    The class file is in a seperate project from the project where the war file deployment profile is; however both projects are in the same workspace.
    There are several other classes in the project that contains the missing class file that does get included in the war file. I don't see anywhere in the profile where these files are selected individually.
    I'm at a loss as to how to fix this problem other than add the file after deployment.
    Appreciate any help or ideas...
    Keith...

    Hi Keith,
    You may want to follow this thread....
    class object missing from ear file
    Brigette

  • Start Weblogic Server gives missing module b2b.war error

    I am getting the following error when I downloaded the BEA Workshop and platform
    8.1 and tried starting the WLS domain under evalguide. Any clues on how I can
    fix this missing b2b.war error is highly appreciated
    Thanks
    Raman
    <Mar 24, 2004 10:49:14 AM PST> <Notice> <WebLogicServer> <BEA-000327> <Starting
    WebLogic Admin Server "cgServer" for domain "evalguide">
    <Mar 24, 2004 10:49:16 AM PST> <Warning> <Management> <BEA-149317> <Application
    WLI-B2B is configured with a deprecated deployment protocol and will be deployed
    as such.>
    <Mar 24, 2004 10:49:19 AM PST> <Error> <Management> <BEA-141049> <An error occur
    red while initializing module b2b.war of application evalguide:Name=WLI-B2B,Type
    =Application from path C:\bea81\weblogic81\integration\lib: b2b.war does not exi
    st. Other modules in this application targeted to the same server will not be
    de
    ployed.>
    <Mar 24, 2004 10:49:19 AM PST> <Error> <Management> <BEA-141000> <Error occurred
    while initializing module b2b.war of application evalguide:Name=WLI-B2B,Type=Ap
    plication from path C:\bea81\weblogic81\integration\lib: weblogic.management.Dep
    loymentException: Missing module: b2b.war.>

    The file b2b.war is missing from the build 8.1 sp2.
    Go back to the original build 8.1 as found in the orange box "BEA WebLogic Workshop and Platform 8.1 - Evaluation and Resource Kit" Once you install this version you will have the file b2b.war

  • WMF format equations available/missing fonts not displayed/alerted

    WMF format equations fonts are not displayed in the applications, If any fonts used on that equations is missing in the system the indesign will not show/alert any missing font warring to the user and the substitute fonts replaced automatically for the missing fonts, Because of this the output PDF comes with wrong fonts. How to fix the equation font missing issue in Indesign.
    Your suggestions are welcome.
    Required Details
    Indesign CS5.5
    OC - Windows XMP
    Equation Software : Math type
    Format: WMF

    Best practice would be not to use WMF at all in InDesign.
    WMF cannot embedd fonts, so the second best practice would be to use a WMF without live text.
    Best would be to use ai or pdf files.
    What other format can Math Type export?
    // I did have a look on Softonic's web site. They write that Math Type can export EPS. Use that!
    /// If you have also font embedding problems with EPS take care that you use fonts which allow embedding (not every font does) and put the EPS in the Distiller with some kind of setting without color conversion and make a PDF of it, then use this PDF. The PDF should be dcreated on a computer with the same fonts available which you have used with Math Type.

  • HOW TO: Set up your application server to run BC4J

    How To set up your application server to run BC4J.
    INTRODUCTION
    A running BC4J application is actually the combination of:
    * Your own application files
    * BC4J runtime libraries
    In order to successfully run your BC4J application in local mode, the first requirement is
    that your application server contains the necessary BC4J libraries.
    This How To describes the steps required to ensure that you have a functional
    BC4J runtime environment installed on your application server.
    Oracle IAS 1.0.2 and Tomcat 3.1 will be used as examples.
    THE BC4J RUNTIME LIBRARIES
    Whatever application server you deploy to, the following libraries
    are required in the following order to be in the classpath.
    BC4J Libraries:
    xmlparserv2.jar
    jdev-rt.zip
    jbojdbcpatch.zip
    connectionmanager.zip
    jbohtml.zip
    jboimdomains.zip
    ordim817.zip
    ordvir817.zip
    ordhttp.zip
    jbomt.zip
    jbodomorcl.zip
    jboremote.zip
    jndi.jar
    jbodatum12.zip
    These libraries can be found in <JDEV_HOME>/lib/
    INSTALLING THE LIBRARIES ON IAS:
    Installing the libraries is simply a matter of copying them to the
    application server's filesystem and adding them to the classpath.
    IAS's classpath can be modified by editing the file:
    <IAS_HOME>\Apache\Jserv\conf\jserv.properties
    In this file you'll find the existing pre-installed BC4J libraries which
    looks like this:
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\lib\ordvir817.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\lib\ordim817.zip
    etc.
    Note! These BC4J libraries correspond to JDeveloper 3.1.1.
    In order to run JDev 3.2 based applications you will have to update these libraries
    to JDeveloper 3.2 production.
    Steps:
    1. Copy (or FTP) the JDev 3.2 BC4J libraries from <JDEV_HOME>\lib to a NEW directory on the
    appserver's filesystem called:
    <IAS_HOME>\Apache\BC4J\newlib
    2. Modify the classpath by editing <IAS_HOME>\Apache\Jserv\conf\jserv.properties.
    Example: (modified classpath entries)
    # New 3.2 BC4J Runtime libraries
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\xmlparserv2.jar
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jdev-rt.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jbojdbcpatch.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\connectionmanager.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jbohtml.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jboimdomains.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\ordim817.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\ordvir817.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\ordhttp.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jbomt.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jbodomorcl.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jboremote.zip
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jndi.jar
    wrapper.classpath=<IAS_HOME>\Apache\BC4J\newlib\jbodatum12.zip
    Note: Make sure to remove or comment out the existing 3.1.1 BC4J library entries!
    To see the changes, you must restart IAS and that's it, your IAS will be updated with
    the JDev 3.2 BC4J libraries which allow you to run BC4J Data Tags among other
    things!
    INSTALLING THE LIBRARIES ON TOMCAT
    As before, this process involves both the copying of the libraries
    and modifying the classpath.
    After copying the BC4J libraries to a path accessible from Tomcat,
    you can modify Tomcat's classpath by editing it's startup script:
    <TOMCAT_HOME>\bin\tomcat.bat (NT)
    <TOMCAT_HOME>\bin\tomcat.sh (Unix)
    Here is a portion of a modified tomcat.bat (on NT)
    rem Add BC4J libraries
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\xmlparserv2.jar
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jdev-rt.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jbojdbcpatch.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\connectionmanager.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jbohtml.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jboimdomains.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\or dim817.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\ordvir817.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\ordhttp.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jbomt.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jbodomorcl.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jboremote.zip
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jndi.jar
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\jbodatum12.zip
    rem Add Oracle JDBC library
    set CLASSPATH=%CLASSPATH%;D:\bc4j_lib\classes12.zip
    Note: I also added the Oracle JDBC library since Tomcat does not have it.
    It is found at:
    <JDEV_HOME>\jdbc\lib\oracle8.1.7\classes12.zip
    And That's It!
    When Tomcat is restarted using this script, the necessary BC4J libraries
    will be in the classpath..
    A follow up How To:"How To Deploy a BC4J JSP Application on IAS and Tomcat"
    will be posted shortly!

    I copied the following files in jserv classpath
    bc4jct.jar
    bc4jctejb.jar
    bc4jdomorcl.jar
    bc4jhtml.jar
    bc4jimdomains.jar
    bc4jmt.jar
    bc4jmtejb.jar
    bc4juixtags.jar
    collections.jar
    datatags.jar
    jdev-cm.jar
    regexp.jar
    share.jar
    uix2.jar
    cabo.war
    classes12.jar
    nls_charset12.jar
    ordim.jar
    ordhttp.jar
    runtime12.jar
    jdev-rt.jar
    xmlparserv2.jar
    bc4j_jclient_common.jar
    webapp.war
    I got this list from Jdev 9031 on-line help
    I also copied the new DataTags.tld file to /webapp directory
    When i run my jsp page i get this error..
    java.lang.NoClassDefFoundError: java/util/TimerTask
         at oracle.jbo.http.HttpContainer.findSessionCookie(HttpContainer.java:693)
         at oracle.jbo.html.jsp.datatags.ApplicationModuleTag.doStartTag(ApplicationModuleTag.java:148)
         at jspapp.odrjsp__html._menu._jspService(Compiled Code)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(Compiled Code)
         at oracle.jsp.JspServlet.doDispatch(Compiled Code)
         at oracle.jsp.JspServlet.internalService(Compiled Code)
         at oracle.jsp.JspServlet.service(Compiled Code)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at oracle.portal.provider.v1.http.JspRenderer.renderBody(JspRenderer.java:116)
         at oracle.portal.provider.v1.RenderManager.render(RenderManager.java:164)
         at oracle.portal.provider.v1.http.ServletProviderResponse.showPortlet(Compiled Code)
         at oracle.portal.provider.v1.http.HttpProvider.dispatchProviderAction(Compiled Code)
         at oracle.portal.provider.v1.http.HttpProvider.service(Compiled Code)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at org.apache.jserv.JServConnection.processRequest(Compiled Code)
         at org.apache.jserv.JServConnection.run(Compiled Code)
         at java.lang.Thread.run(Compiled Code)
    In the JDK 1.3 APi docs, i found that TimerTask was introduced only in JDK 1.3
    Does this mean that BC4J (in jdev 9031) will only work
    with JDK 1.3 or later?
    Thanks for your time.
    Harish

  • Hi Error while running project

    Good day all,
    When running from testpg.xml under my project workspace from my oracle jdeveloper enviroment i get this error:
    Kindly help out on steps to resolve this error
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\Jdeveloper\OAF\jdevbin\jdk\bin\javaw.exe -client -classpath C:\Jdeveloper\OAF\jdevbin\j2ee\home\oc4j.jar;C:\Jdeveloper\OAF\jdevbin\jdev\lib\jdev-oc4j.jar -Xbootclasspath/p:C:\Jdeveloper\OAF\jdevbin\jdev\appslibrt\ojdbc14.jar;C:\Jdeveloper\OAF\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -Dhttp.proxyHost=10.0.20.28 -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=10.0.4.20|10.0.1.47|crm* -Xverify:none -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 com.evermind.server.OC4JServer -config C:\Jdeveloper\OAF\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Auto-unpacking C:\Jdeveloper\OAF\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\soap.ear... done.
    Auto-unpacking C:\Jdeveloper\OAF\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\soap\soap.war... done.
    Auto-deploying soap (New server version detected)...
    Auto-unpacking C:\Jdeveloper\OAF\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\bc4j.ear... done.
    Auto-unpacking C:\Jdeveloper\OAF\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\bc4j\webapp.war... done.
    Auto-unpacking C:\Jdeveloper\OAF\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\bc4j\cabo.war... done.
    Auto-deploying bc4j (New server version detected)...
    Auto-deploying file:/C:/Jdeveloper/OAF/jdevhome/jdev/system9.0.3.5.1437/oc4j-config/default-web-app/ (New server version detected)...
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 27343 ms.
    Auto-deploying file:/C:/Jdeveloper/OAF/jdevhome/jdev/system9.0.3.5.1437/oc4j-config/applications/soap/soap/ (New server version detected)...
    Auto-deploying file:/C:/Jdeveloper/OAF/jdevhome/jdev/system9.0.3.5.1437/oc4j-config/applications/bc4j/cabo/ (New server version detected)...
    Auto-deploying file:/C:/Jdeveloper/OAF/jdevhome/jdev/system9.0.3.5.1437/oc4j-config/applications/bc4j/webapp/ (New server version detected)...
    Auto-deploying OA Framework images (New server version detected)...
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    Oracle9iAS (9.0.3.1.0) Containers for J2EE initialized
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    ApplicationServer: appName = APPS_OA
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    ApplicationServer: appName = soap
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 1781 ms.
    Error creating the ORB :
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 3500 ms.
    ApplicationServer: appName = APPS_OA
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    ApplicationServer: appName = soap
    Error creating the ORB :

    This is an OA Framework question and should be posted on the OA Framework forum.

  • Dvt:map issue

    Following the official tutorial
    http://www.oracle.com/technology/obe/obe11jdev/ps1/dvt_graph/gant_chart_pivot_table.htm#tv
    I create a simple ADF map DEMO application and run it OK directly in Jdeveloper 11g IDE.
    However, when I deploy it to war file in external weblogic server and run, an exception "DVT-26000: unable to find connection in 'mapConfig1' " thrown out from page.
    I found “<Project Root>/.adf/Meta-INF/connections.xml“(this file is created only for design time use) is missing in war file, therefore the ADF component dvt:map can’t find available connection.
    How can I get the URL connection when deploying app in WLS?

    Instead of creating a WAR, try creating an EAR from the Application->Deploy menu. The EAR file will contain the connecting mapping file to the map server.

  • Green video error

    I just installed the newest version of quicktime for windows xp, and I'm having a problem with trying to play video for more than a few seconds. When I first play the the videos will automatically start the problem and a flat green color shows up, showing no video. The sound locks up also for a few seconds at a time and then plays again for a few seconds. The cursor also freezes while the sounds does. Any idea what this is, and how to fix it? or any other player that plays mov files? its very annoying

    heres my dxdiag report if it helps any
    System Information
    Time of this report: 12/2/2005, 16:40:40
    Machine name: BIGO
    Operating System: Windows XP Home Edition (5.1, Build 2600) Service Pack 2 (2600.xpspsp2gdr.050301-1519)
    Language: English (Regional Setting: English)
    System Manufacturer: Compaq Presario 061
    System Model: DF260A-ABA S4030NX NA210
    BIOS: Phoenix - AwardBIOS v6.00PG
    Processor: AMD Athlon(tm) XP 2400+, MMX, 3DNow, ~2.0GHz
    Memory: 1024MB RAM
    Page File: 356MB used, 1570MB available
    Windows Dir: C:\WINDOWS
    DirectX Version: DirectX 9.0c (4.09.0000.0904)
    DX Setup Parameters: Not found
    DxDiag Version: 5.03.2600.2180 32bit Unicode
    DxDiag Notes
    DirectX Files Tab: No problems found.
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Music Tab: No problems found.
    Input Tab: No problems found.
    Network Tab: No problems found.
    DirectX Debug Levels
    Direct3D: 0/4 (n/a)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (n/a)
    DirectMusic: 0/5 (n/a)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)
    Display Devices
    Card name: NVIDIA GeForce FX 5200
    Manufacturer: NVIDIA
    Chip type: GeForce FX 5200
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN10DE&DEV_0322&SUBSYS_00000000&REVA1
    Display Memory: 128.0 MB
    Current Mode: 1024 x 768 (32 bit) (60Hz)
    Monitor: Plug and Play Monitor
    Monitor Max Res: 1600,1200
    Driver Name: nv4_disp.dll
    Driver Version: 6.14.0010.8195 (English)
    DDI Version: 9 (or higher)
    Driver Attributes: Final Retail
    Driver Date/Size: 11/11/2005 13:47:00, 3924992 bytes
    WHQL Logo'd: Yes
    WHQL Date Stamp: n/a
    VDD: n/a
    Mini VDD: nv4_mini.sys
    Mini VDD Date: 11/11/2005 13:47:00, 3532928 bytes
    Device Identifier: {D7B71E3E-4062-11CF-B343-0A2000C2CB35}
    Vendor ID: 0x10DE
    Device ID: 0x0322
    SubSys ID: 0x00000000
    Revision ID: 0x00A1
    Revision ID: 0x00A1
    Video Accel: ModeMPEG2_A ModeMPEG2_B ModeMPEG2_C ModeMPEG2_D
    Deinterlace Caps: {212DC722-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {212DC722-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {212DC722-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {212DC722-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {212DC723-3235-44A4-BD29-E1652BBCC71C}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_MedianFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    Registry: OK
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled
    DDraw Test Result: Not run
    D3D7 Test Result: Not run
    D3D8 Test Result: Not run
    D3D9 Test Result: Not run
    Sound Devices
    Description: Realtek AC97 Audio
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: PCI\VEN1106&DEV_3059&SUBSYS_90121509&REV50
    Manufacturer ID: 65535
    Product ID: 65535
    Type: WDM
    Driver Name: ALCXWDM.SYS
    Driver Version: 5.10.0000.5730 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 10/1/2004 10:24:02, 2279424 bytes
    Other Files:
    Driver Provider: Realtek Semiconductor Corp.
    HW Accel Level: Full
    Cap Flags: 0xF5F
    Min/Max Sample Rate: 100, 192000
    Static/Strm HW Mix Bufs: 33, 32
    Static/Strm HW 3D Bufs: 33, 32
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: Yes, Yes
    I3DL2(tm) Listen/Src: Yes, Yes
    Sensaura(tm) ZoomFX(tm): No
    Registry: OK
    Sound Test Result: Not run
    Sound Capture Devices
    Description: Realtek AC97 Audio
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: ALCXWDM.SYS
    Driver Version: 5.10.0000.5730 (English)
    Driver Attributes: Final Retail
    Date and Size: 10/1/2004 10:24:02, 2279424 bytes
    Cap Flags: 0x41
    Format Flags: 0xFFF
    DirectMusic
    DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS
    DLS Version: 1.00.0016.0002
    Acceleration: n/a
    Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port
    Realtek AC97 Audio, Software (Kernel Mode), Output, DLS, Internal
    Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
    Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
    Registry: OK
    Test Result: Not run
    DirectInput Devices
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a
    Device Name: Logitech USB Keyboard
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC309
    FF Driver: n/a
    Device Name: Logitech USB Keyboard
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC309
    FF Driver: n/a
    Poll w/ Interrupt: No
    Registry: OK
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x1106, 0x3038
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 8/4/2004 04:00:00, 57600 bytes
    | Driver: usbd.sys, 8/4/2004 04:00:00, 4736 bytes
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC309
    | Matching Device ID: hiddevice_systemkeyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 8/4/2004 04:00:00, 14848 bytes
    | Driver: kbdclass.sys, 8/4/2004 04:00:00, 24576 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: termdd.sys, 8/4/2004 01:01:08, 40840 bytes
    | Driver: kbdclass.sys, 8/4/2004 04:00:00, 24576 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC012
    | Matching Device ID: hiddevice_systemmouse
    | Service: mouhid
    | Driver: mouclass.sys, 8/4/2004 04:00:00, 23040 bytes
    | Driver: mouhid.sys, 8/4/2004 04:00:00, 12160 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC309
    | Matching Device ID: hiddevice_systemmouse
    | Service: mouhid
    | Driver: mouclass.sys, 8/4/2004 04:00:00, 23040 bytes
    | Driver: mouhid.sys, 8/4/2004 04:00:00, 12160 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 8/4/2004 01:01:08, 40840 bytes
    | Driver: mouclass.sys, 8/4/2004 04:00:00, 23040 bytes
    DirectPlay Service Providers
    DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.2180)
    DirectPlay8 Serial Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.2180)
    DirectPlay8 IPX Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.2180)
    DirectPlay8 TCP/IP Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.2180)
    Internet TCP/IP Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.2180)
    IPX Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.2180)
    Modem Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.2180)
    Serial Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.2180)
    DirectPlay Voice Wizard Tests: Full Duplex: Not run, Half Duplex: Not run, Mic: Not run
    DirectPlay Test Result: Not run
    Registry: OK
    DirectPlay Adapters
    DirectPlay8 Modem Service Provider: Lucent Win Modem #2
    DirectPlay8 Serial Service Provider: COM1
    DirectPlay8 Serial Service Provider: COM4
    DirectPlay8 TCP/IP Service Provider: Local Area Connection - IPv4 -
    DirectPlay Voice Codecs
    Voxware VR12 1.4kbit/s
    Voxware SC06 6.4kbit/s
    Voxware SC03 3.2kbit/s
    MS-PCM 64 kbit/s
    MS-ADPCM 32.8 kbit/s
    Microsoft GSM 6.10 13 kbit/s
    TrueSpeech(TM) 8.6 kbit/s
    DirectPlay Lobbyable Apps
    Dungeon Siege II Demo (DX7) - Registry: OK, ExeFile: DS2.icd (<File Missing>)
    Star Wars Galactic Battlegrounds (DX7) - Registry: OK, ExeFile: battlegrounds.exe (1.00.0000.0000)
    Star Wars Galactic Battlegrounds: Clone Campaigns (DX7) - Registry: OK, ExeFile: battlegrounds_x1.exe (1.01.0000.0000)
    Disk & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 6.0 GB
    Total Space: 78.2 GB
    File System: NTFS
    Model: Maxtor 4R080J0
    Drive: E:
    Model: JLMS XJ-HD166S
    Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 49536 bytes
    Drive: F:
    Model: SAMSUNG CD-R/RW SW-248F
    Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 49536 bytes
    System Devices
    Name: Lucent Win Modem #2
    Device ID: PCI\VEN11C1&DEV_044C&SUBSYS_044C11C1&REV02\3&61AAA01&0&50
    Driver: C:\WINDOWS\system32\DRIVERS\ltmdmnt.sys, 8.28.0000.0000 (English), 8/3/2004 14:41:36, 606684 bytes
    Name: VIA CPU to AGP Controller
    Device ID: PCI\VEN1106&DEV_B091&SUBSYS_00000000&REV00\3&61AAA01&0&08
    Driver: C:\WINDOWS\system32\DRIVERS\VIAAGP.SYS, 5.01.2600.2180 (English), 8/3/2004 15:07:44, 42240 bytes
    Name: PCI standard ISA bridge
    Device ID: PCI\VEN1106&DEV_3177&SUBSYS_00000000&REV00\3&61AAA01&0&88
    Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.0000 (English), 8/4/2004 04:00:00, 35840 bytes
    Name: PCI standard host CPU bridge
    Device ID: PCI\VEN1106&DEV_3116&SUBSYS_00000000&REV00\3&61AAA01&0&00
    Driver: n/a
    Name: VIA USB Enhanced Host Controller
    Device ID: PCI\VEN1106&DEV_3104&SUBSYS_90121509&REV82\3&61AAA01&0&83
    Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 26624 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/3/2004 16:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 57600 bytes
    Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 7168 bytes
    Name: Realtek AC'97 Audio for VIA (R) Audio Controller
    Device ID: PCI\VEN1106&DEV_3059&SUBSYS_90121509&REV50\3&61AAA01&0&8D
    Driver: C:\WINDOWS\system32\ksuser.dll, 5.03.2600.2180 (English), 8/3/2004 23:56:44, 4096 bytes
    Driver: C:\WINDOWS\system32\ksproxy.ax, 5.03.2600.2180 (English), 8/3/2004 23:56:58, 130048 bytes
    Driver: C:\WINDOWS\system32\drivers\ks.sys, 5.03.2600.2180 (English), 8/3/2004 22:15:22, 140928 bytes
    Driver: C:\WINDOWS\system32\drivers\drmk.sys, 5.01.2600.2180 (English), 8/3/2004 23:08:00, 60288 bytes
    Driver: C:\WINDOWS\system32\drivers\portcls.sys, 5.01.2600.2180 (English), 8/3/2004 23:15:50, 145792 bytes
    Driver: C:\WINDOWS\system32\drivers\stream.sys, 5.03.2600.2180 (English), 8/3/2004 23:08:04, 48640 bytes
    Driver: C:\WINDOWS\system32\wdmaud.drv, 5.01.2600.2180 (English), 8/4/2004 00:56:58, 23552 bytes
    Driver: C:\WINDOWS\system32\drivers\ALCXWDM.SYS, 5.10.0000.5730 (English), 10/1/2004 10:24:02, 2279424 bytes
    Driver: C:\WINDOWS\system32\ALSNDMGR.CPL, 2.02.0000.0034 (English), 9/20/2004 15:20:44, 16121856 bytes
    Driver: C:\WINDOWS\ALCXMNTR.EXE, 1.05.0000.0000 (English), 9/7/2004 13:47:52, 57344 bytes
    Name: VIA Rev 5 or later USB Universal Host Controller
    Device ID: PCI\VEN1106&DEV_3038&SUBSYS_90121509&REV80\3&61AAA01&0&82
    Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 20480 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/3/2004 16:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 57600 bytes
    Name: VIA Rev 5 or later USB Universal Host Controller
    Device ID: PCI\VEN1106&DEV_3038&SUBSYS_90121509&REV80\3&61AAA01&0&81
    Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 20480 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/3/2004 16:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 57600 bytes
    Name: VIA Rev 5 or later USB Universal Host Controller
    Device ID: PCI\VEN1106&DEV_3038&SUBSYS_90121509&REV80\3&61AAA01&0&80
    Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 20480 bytes
    Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 142976 bytes
    Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.2180 (English), 8/3/2004 16:56:48, 74240 bytes
    Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 57600 bytes
    Name: VIA Bus Master IDE Controller
    Device ID: PCI\VEN1106&DEV_0571&SUBSYS_90121509&REV06\3&61AAA01&0&89
    Driver: C:\WINDOWS\system32\DRIVERS\viaide.sys, 1.00.0001.0001 (English), 8/4/2004 04:00:00, 5376 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 25088 bytes
    Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.2180 (English), 8/4/2004 04:00:00, 95360 bytes
    Name: Realtek RTL8139 Family PCI Fast Ethernet NIC
    Device ID: PCI\VEN10EC&DEV_8139&SUBSYS_90121509&REV10\3&61AAA01&0&58
    Driver: C:\WINDOWS\system32\DRIVERS\RTL8139.sys, 5.398.0613.2003 (English), 8/3/2004 14:31:34, 20992 bytes
    Name: NVIDIA GeForce FX 5200
    Device ID: PCI\VEN10DE&DEV_0322&SUBSYS_00000000&REVA1\4&26E5833C&0&0008
    Driver: C:\WINDOWS\system32\DRIVERS\nv4_mini.sys, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 3532928 bytes
    Driver: C:\WINDOWS\system32\nv4_disp.dll, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 3924992 bytes
    Driver: C:\WINDOWS\system32\nvsvc32.exe, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 131139 bytes
    Driver: C:\WINDOWS\system32\nvhwvid.dll, 6.14.0010.8195 (), 11/11/2005 13:47:00, 573440 bytes
    Driver: C:\WINDOWS\system32\nvapi.dll, 6.14.0010.8195 (), 11/11/2005 13:47:00, 86016 bytes
    Driver: C:\WINDOWS\system32\nvoglnt.dll, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 5394432 bytes
    Driver: C:\WINDOWS\system32\nvcpl.dll, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 7311360 bytes
    Driver: C:\WINDOWS\system32\nvmctray.dll, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 86016 bytes
    Driver: C:\WINDOWS\system32\nvwddi.dll, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 81920 bytes
    Driver: C:\WINDOWS\system32\nvnt4cpl.dll, 6.14.0010.11010 (English), 11/11/2005 13:47:00, 286720 bytes
    Driver: C:\WINDOWS\system32\nvmccs.dll, 6.14.0010.8195 (English), 11/11/2005 13:47:00, 229376 bytes
    Driver: C:\WINDOWS\help\nvcpl.hlp, 11/11/2005 13:47:00, 169507 bytes
    Driver: C:\WINDOWS\help\nvwcplen.hlp, 11/11/2005 13:47:00, 55444 bytes
    Driver: C:\WINDOWS\system32\nvcod.dll, 1.00.0000.0034 (English), 11/11/2005 13:47:00, 35328 bytes
    Driver: C:\WINDOWS\system32\nvcodins.dll, 1.00.0000.0034 (English), 11/11/2005 13:47:00, 35328 bytes
    DirectX Components
    ddraw.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 266240 bytes
    ddrawex.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 27136 bytes
    dxapi.sys: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 10496 bytes
    d3d8.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 1179648 bytes
    d3d8thk.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 8192 bytes
    d3d9.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 1689088 bytes
    d3dim.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 436224 bytes
    d3dim700.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 825344 bytes
    d3dramp.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 590336 bytes
    d3drm.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 350208 bytes
    d3dxof.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 47616 bytes
    d3dpmesh.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 34816 bytes
    dplay.dll: 5.00.2134.0001 English Final Retail 8/4/2004 04:00:00 33040 bytes
    dplayx.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 229888 bytes
    dpmodemx.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 23552 bytes
    dpwsock.dll: 5.00.2134.0001 English Final Retail 8/4/2004 04:00:00 42768 bytes
    dpwsockx.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 57344 bytes
    dplaysvr.exe: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 30208 bytes
    dpnsvr.exe: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 18432 bytes
    dpnet.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 375296 bytes
    dpnlobby.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 3584 bytes
    dpnaddr.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 3584 bytes
    dpvoice.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 212480 bytes
    dpvsetup.exe: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 83456 bytes
    dpvvox.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 116736 bytes
    dpvacm.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 21504 bytes
    dpnhpast.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 35328 bytes
    dpnhupnp.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 60928 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 8/4/2004 04:00:00 53520 bytes
    dinput.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 159232 bytes
    dinput8.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 181760 bytes
    dimap.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 44032 bytes
    diactfrm.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 394240 bytes
    joy.cpl: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 68608 bytes
    gcdef.dll: 5.01.2600.0000 English Final Retail 8/4/2004 04:00:00 76800 bytes
    pid.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 35328 bytes
    dsound.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 367616 bytes
    dsound3d.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 1294336 bytes
    dswave.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 19456 bytes
    dsdmo.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 181760 bytes
    dsdmoprp.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 71680 bytes
    dmusic.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 104448 bytes
    dmband.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 28672 bytes
    dmcompos.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 61440 bytes
    dmime.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 181248 bytes
    dmloader.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 35840 bytes
    dmstyle.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 105984 bytes
    dmsynth.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 103424 bytes
    dmscript.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 82432 bytes
    dx7vb.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 619008 bytes
    dx8vb.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 1227264 bytes
    dxdiagn.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 2113536 bytes
    directx.cpl: 5.04.0000.3900 English Final Retail 9/30/2004 07:17:14 135168 bytes
    mfc40.dll: 4.01.0000.6140 English Final Retail 8/4/2004 04:00:00 924432 bytes
    mfc42.dll: 6.02.4131.0000 English Final Retail 8/4/2004 04:00:00 1028096 bytes
    wsock32.dll: 5.01.2600.2180 English Final Retail 8/4/2004 04:00:00 22528 bytes
    amstream.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 70656 bytes
    devenum.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 59904 bytes
    dxmasf.dll: 6.04.0009.1125 English Final Retail 8/4/2004 04:00:00 498205 bytes
    mciqtz32.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 35328 bytes
    mpg2splt.ax: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 148992 bytes
    msdmo.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 14336 bytes
    encapi.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 20480 bytes
    qasf.dll: 10.00.0000.3802 English Final Retail 1/28/2005 12:44:28 221184 bytes
    qcap.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 192512 bytes
    qdv.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 279040 bytes
    qdvd.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 385024 bytes
    qedit.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 562176 bytes
    qedwipes.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 733696 bytes
    quartz.dll: 6.05.2600.2749 English Final Retail 8/29/2005 19:54:26 1287168 bytes
    strmdll.dll: 4.01.0000.3928 English Final Retail 8/4/2004 04:00:00 246302 bytes
    iac25_32.ax: 2.00.0005.0054 English Final Retail 6/23/2000 13:06:08 192000 bytes
    ir41_32.ax: 4.51.0016.0003 English Final Retail 6/22/2000 12:49:24 842240 bytes
    ir41_qc.dll: 4.30.0062.0002 English Final Retail 8/4/2004 04:00:00 120320 bytes
    ir41_qcx.dll: 4.30.0064.0001 English Final Retail 8/4/2004 04:00:00 338432 bytes
    ir50_32.dll: 5.2819.0015.0056 English Final Retail 6/23/2000 09:36:48 745984 bytes
    ir50_qc.dll: 5.00.0063.0048 English Final Retail 12/20/2002 10:40:58 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English Final Retail 12/20/2002 10:40:58 183808 bytes
    ivfsrc.ax: 5.11.0015.0056 English Final Retail 6/22/2000 17:11:56 145408 bytes
    mswebdvd.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 204288 bytes
    ks.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:15:22 140928 bytes
    ksproxy.ax: 5.03.2600.2180 English Final Retail 8/3/2004 23:56:58 130048 bytes
    ksuser.dll: 5.03.2600.2180 English Final Retail 8/3/2004 23:56:44 4096 bytes
    stream.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:08:04 48640 bytes
    mspclock.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:40 5376 bytes
    mspqm.sys: 5.01.2600.2180 English Final Retail 8/3/2004 22:58:42 4992 bytes
    mskssrv.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:42 7552 bytes
    swenum.sys: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 4352 bytes
    mstee.sys: 5.03.2600.2180 English Final Retail 8/3/2004 22:58:40 5504 bytes
    ipsink.ax: 5.03.2600.2180 English Final Retail 8/4/2004 00:56:58 16384 bytes
    mpeg2data.ax: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 118272 bytes
    ndisip.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:14 10880 bytes
    streamip.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:14 15360 bytes
    msvidctl.dll: 6.05.2600.2180 English Final Retail 8/4/2004 04:00:00 1428480 bytes
    slip.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:18 11136 bytes
    nabtsfec.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:30 85376 bytes
    ccdecode.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:18 17024 bytes
    vbisurf.ax: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 30720 bytes
    msyuv.dll: 5.03.2600.2180 English Final Retail 8/3/2004 23:56:46 17408 bytes
    kstvtune.ax: 5.03.2600.2180 English Final Retail 8/3/2004 23:56:58 61952 bytes
    ksxbar.ax: 5.03.2600.2180 English Final Retail 8/3/2004 23:56:58 43008 bytes
    kswdmcap.ax: 5.03.2600.2180 English Final Retail 8/3/2004 23:56:58 90624 bytes
    vfwwdm32.dll: 5.01.2600.2180 English Final Retail 8/3/2004 23:56:48 53760 bytes
    wstcodec.sys: 5.03.2600.2180 English Final Retail 8/3/2004 23:10:22 19328 bytes
    wstdecod.dll: 5.03.2600.2180 English Final Retail 8/4/2004 04:00:00 50688 bytes
    DirectShow Filters
    WDM Streaming VBI Codecs:
    NABTS/FEC VBI Codec,0x00200000,2,1,,5.03.2600.2180
    CC Decoder,0x00200000,2,1,,5.03.2600.2180
    WST Codec,0x00200000,1,1,,5.03.2600.2180
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,,
    WMAPro over S/PDIF DMO,0x00600800,1,1,,
    DMO DolbyDecoder (AdobeEncorePrivate),0x00000000,1,1,,
    WMSpeech Decoder DMO,0x00600800,1,1,,
    WMVideo Advanced Decoder DMO,0x00800001,1,1,,
    WMVideo 8 Decoder DMO,0x00800001,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00800001,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    Mpeg43 Decoder DMO,0x00800001,1,1,,
    Mpeg4 Decoder DMO,0x00800001,1,1,,
    DivX Decoder Filter,0x00800000,1,1,divxdec.ax,5.02.0001.1335
    WMT MuxDeMux Filter,0x00200000,0,0,wmm2filt.dll,2.01.4026.0000
    Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.2600.2749
    ATI MPEG Audio Decoder,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.2180
    MainConcept (AdobeEncore) DV Video Decoder,0x005fffff,1,1,admcdsdv.ax,2.02.0000.0003
    MainConcept (AdobeEncore) DV Video Encoder,0x00200000,1,1,admcdsdv.ax,2.02.0000.0003
    DVD Express Audio Decoder,0x00600000,1,2,DVD Express AV Decoder.dll,5.01.0056.0000
    DVD Express Video Decoder,0x00600000,2,1,DVD Express AV Decoder.dll,5.01.0056.0000
    Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.2749
    WM ASF Reader,0x00400000,0,0,qasf.dll,10.00.0000.3802
    Audio Source,0x00200000,0,1,wmprevu.dll,9.00.0000.2980
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,10.00.0000.3802
    AVI Splitter,0x00600000,1,1,quartz.dll,6.05.2600.2749
    WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.2749
    Indeo® Video 5.11 Compression Filter,0x00200000,1,1,IR50_32.DLL,5.2819.0015.0056
    Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,8.00.0000.4487
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.2600.2180
    MainConcept (Adobe-0) MPEG Splitter,0x00000000,1,2,admcspmpeg.ax,1.00.0000.0052
    MainConcept (Adobe-0) MPEG Audio Decoder,0x00000000,1,1,admcdsmpeg.ax,1.00.0000.0056
    MainConcept (Adobe-0) MPEG Video Decoder,0x00000000,1,1,admcdsmpeg.ax,1.00.0000.0056
    WMT Format Conversion,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.05.2600.2180
    WMT Black Frame Generator,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.2749
    Indeo® Video 5.11 Decompression Filter,0x00640000,1,1,IR50_32.DLL,5.2819.0015.0056
    WMT Screen Capture filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    Microsoft Screen Video Decompressor,0x00800000,1,1,msscds32.ax,8.00.0000.4487
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.2600.2749
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.2749
    ATI Time Shift Splitter,0x00600000,1,3,atidvcr.dll,8.05.0000.30613
    ATI Time Shift Reader,0x00600000,0,1,atidvcr.dll,8.05.0000.30613
    ATI Time Shift Writer,0x00200000,1,0,atidvcr.dll,8.05.0000.30613
    ATI MPEG Video Decoder,0x00600000,1,1,atidvcr.dll,8.05.0000.30613
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.05.0000.0050
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.2600.2180
    WAV Dest,0x00200000,0,0,wavdest.ax,
    ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
    ATI Video Capture Surface Allocator,0x003fffff,1,0,ativvpxx.ax,4.13.0001.5085
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.2600.2749
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.2600.2749
    File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,10.00.0000.3802
    ATI VBI Surface Allocator,0x00200000,1,0,AVBISurf.ax,8.00.0000.0001
    ATI Video Format Converter,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    WMT Import Filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    DV Splitter,0x00600000,1,2,qdv.dll,6.05.2600.2180
    Bitmap Generate,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,8.00.0000.4487
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.05.2600.2749
    Windows Media Video Decoder,0x00800000,1,1,wmv8ds32.ax,8.00.0000.4000
    ATI Line21 CC Decoder/Renderer,0x00200000,1,0,aticcap.ax,8.00.0000.0001
    WMT VIH2 Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Record Queue,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Disk Record Queue,0x00200000,1,1,wmedque.dll,9.00.0000.2980
    Color Converter,0x00200000,1,1,declrds.ax,9.00.0000.2980
    ATI Capture Transform Filter,0x00200000,1,3,ativxfxx.ax,6.14.0001.6178
    Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASX file Parser,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,10.00.0000.3802
    NSC file Parser,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ATI MPEG Audio Encoder,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.2600.2749
    Windows Media source filter,0x00600000,0,2,wmpasf.dll,10.00.0000.3802
    Video Renderer,0x00800001,1,0,quartz.dll,6.05.2600.2749
    Frame Eater,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.05.2600.2180
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.2600.2180
    Video Port Manager,0x00600000,2,1,quartz.dll,6.05.2600.2749
    WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.2600.2180
    Video Renderer,0x00400000,1,0,quartz.dll,6.05.2600.2749
    Microsoft MPEG-4 Video Decompressor,0x00800000,1,1,mp4sds32.ax,8.00.0000.0344
    ATI MPEG Video Encoder,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    DivX Decoder Filter,0xff800000,1,1,divxdec.ax,5.02.0001.1335
    ATI MPEG Multiplexer,0x00200000,3,1,atidvcr.dll,8.05.0000.30613
    ATI Audio Delay Filter,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    WM ASF Writer,0x00400000,0,0,qasf.dll,10.00.0000.3802
    WMT Sample Information Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.03.2600.2180
    Microsoft MPEG-4 Video Decompressor,0x00800000,1,1,mpg4ds32.ax,8.00.0000.4487
    File writer,0x00200000,1,0,qcap.dll,6.05.2600.2180
    WMT Log Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Virtual Renderer,0x00200000,1,0,wmm2filt.dll,2.01.4026.0000
    ATI MPEG Archiver,0x00200000,0,0,atidvcr.dll,8.05.0000.30613
    DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.2600.2180
    ATI Closed Caption Database,0x00200000,1,0,aticcdb.ax,8.00.0000.0004
    Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.2600.2180
    AVI Draw,0x00600064,9,1,quartz.dll,6.05.2600.2749
    .RAM file Parser,0x00600000,1,0,wmpasf.dll,10.00.0000.3802
    ATI Still Capture,0x00200000,1,0,atistill.ax,8.00.0000.0004
    WMT DirectX Transform Wrapper,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    G.711 Codec,0x00200000,1,1,g711codc.ax,5.01.2600.0000
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.2600.2180
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.2600.2180
    DC-DSP Filter,0x00600000,1,1,DCDSPFilter.ax,0.09.0002.0000
    Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0054
    Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,10.00.0000.3802
    Screen Capture filter,0x00200000,0,1,wmesrcwp.dll,9.00.0000.2980
    ASF DIB Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASF ACM Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASF ICM Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASF URL Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,10.00.0000.3802
    9x8Resize,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    ATI Noise Reduction Filter,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    WIA Stream Snapshot Filter,0x00200000,1,1,wiasf.ax,1.00.0000.0000
    Allocator Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    SampleGrabber,0x00200000,1,1,qedit.dll,6.05.2600.2180
    Null Renderer,0x00200000,1,0,qedit.dll,6.05.2600.2180
    WMT Virtual Source,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
    WMT Interlacer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.05.2600.2180
    ATI Audio Pitch Correction Filter,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    AXWavRender,0x00200000,1,0,axwavrender.ax,4.01.0000.0000
    Smart Tee,0x00200000,1,2,qcap.dll,6.05.2600.2180
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.2600.2180
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.2749
    Uncompressed Domain Shot Detection Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.2600.2749
    QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.2600.2749
    Wave Parser,0x00400000,1,1,quartz.dll,6.05.2600.2749
    MIDI Parser,0x00400000,1,1,quartz.dll,6.05.2600.2749
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.2600.2749
    File stream renderer,0x00400000,1,1,quartz.dll,6.05.2600.2749
    XML Playlist,0x00400000,1,0,wmpasf.dll,10.00.0000.3802
    Video Source,0x00200000,0,1,wmprevu.dll,9.00.0000.2980
    DVDExpress 3D (QSurround),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DVDExpress 3D (N-2-2),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DVDExpress 3D (VMAx),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DVDExpress 3D (Aureal),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DVDExpress 3D (Sample),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DVDExpress 3D (NSC),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DVDExpress 3D (Dolby Headphone),0x00800000,1,1,DVD Express 3D Sound.dll,5.01.0000.0010
    DC-DSP Filter (autoloading),0x00800002,1,1,DCDSPFilter.ax,0.09.0002.0000
    AVI Mux,0x00200000,1,0,qcap.dll,6.05.2600.2180
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.2600.2749
    File Source (Async.),0x00400000,0,1,quartz.dll,6.05.2600.2749
    File Source (URL),0x00400000,0,1,quartz.dll,6.05.2600.2749
    WMT DV Extract,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    TimeSkew,0x00200000,1,1,TimeSkew2.dll,1.05.0000.41808
    WMplug,0x009001f4,1,1,wtwmplug.ax,
    WMT Switch Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    WMT Volume,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Stretch Video,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.2600.2180
    BitmapSource,0x00200000,0,1,BitmapSource.dll,1.05.0000.41808
    DirectDVD Equalizer,0x00200000,1,1,DDVDEq.ax,
    QT Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.2749
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.2600.2749
    Indeo® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003
    Indeo® video 4.4 Compression Filter,0x00200000,1,1,ir41_32.ax,4.51.0016.0003
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.2600.2180
    WDM Streaming Data Transforms:
    Microsoft Kernel Acoustic Echo Canceller,0x00000000,0,0,,
    Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.2600.2180
    Microsoft Kernel DLS Synthesizer,0x00200000,1,1,,5.03.2600.2180
    Microsoft Kernel DRM Audio Descrambler,0x00200000,1,1,,5.03.2600.2180
    Video Compressors:
    MSScreen encoder DMO,0x00600800,1,1,,
    WMVideo9 Encoder DMO,0x00600800,1,1,,
    WMVideo Advanced Encoder DMO,0x00600800,1,1,,
    MSScreen 9 encoder DMO,0x00600800,1,1,,
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.2600.2180
    Indeo® video 5.10 Compression Filter,0x00100000,1,1,IR50_32.DLL,5.2819.0015.0056
    Indeo® Video 5.11 Compression Filter,0x00100000,1,1,IR50_32.DLL,5.2819.0015.0056
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.2600.2749
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.2600.2180
    DivX® 5.2.1 Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Ligos Indeo® Video 3.2,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Ligos Indeo® Video 4.5,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Ligos Indeo® Video 5.11,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft MPEG-4 Video Codec V2,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft MPEG-4 Video Codec V1,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Sunplus 32-bit Compressor,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Sunplus 32-bit Compressor,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Sunplus 32-bit Compressor,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Sunplus 32-bit Compressor,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Sunplus 32-bit Compressor,0x00200000,1,1,qcap.dll,6.05.2600.2180
    TechSmith Screen Capture Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    ATI YUV12 Format Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    ATI YUV12 Format Codec,0x00200000,1,1,qcap.dll,6.05.2600.2180
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,,
    WMAudio Encoder DMO,0x00600800,1,1,,
    ATI MPEG Audio Encoder,0x00200000,1,1,atidvcr.dll,8.05.0000.30613
    IAC2,0x00200000,1,1,quartz.dll,6.05.2600.2749
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.2749
    PCM,0x00200000,1,1,quartz.dll,6.05.2600.2749
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.2749
    ACELP.net,0x00200000,1,1,quartz.dll,6.05.2600.2749
    DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.2600.2749
    Windows Media Audio V1,0x00200000,1,1,quartz.dll,6.05.2600.2749
    Windows Media Audio V2,0x00200000,1,1,quartz.dll,6.05.2600.2749
    GSM 6.10,0x00200000,1,1,quartz.dll,6.05.2600.2749
    Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.2600.2749
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.2600.2749
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.2600.2749
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.2600.2749
    Audio Capture Sources:
    Realtek AC97 Audio,0x00200000,0,0,qcap.dll,6.05.2600.2180
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.2600.2749
    Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.2600.2749
    WDM Streaming Capture Devices:
    Realtek AC97 Audio,0x00200000,2,2,,5.03.2600.2180
    WDM Streaming Rendering Devices:
    Realtek AC97 Audio,0x00200000,2,2,,5.03.2600.2180
    BDA Rendering Filters:
    BDA IP Sink,0x00200000,1,1,,5.03.2600.2180
    WDM Streaming Mixer Devices:
    Microsoft Kernel Wave Audio Mixer,0x00000000,0,0,,
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,0,encdec.dll,6.05.2600.2180
    Encrypt/Tag,0x00200000,0,0,encdec.dll,6.05.2600.2180
    XDS Codec,0x00200000,0,0,encdec.dll,6.05.2600.2180
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.2600.2180
    Audio Renderers:
    Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.2600.2749
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.2600.2749
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.2600.2749
    DirectSound: Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.2600.2749
    WDM Streaming System Devices:
    Realtek AC97 Audio,0x00200000,12,2,,5.03.2600.2180
    BDA Receiver Component:
    BDA Slip De-Framer,0x00600000,1,1,,5.03.2600.2180

  • Error running uix jsp application

    Hi All
    I have created a bc4j/UIX JSP application. When i try to run the main.jsp file on the local host the application doesn't launch. I see the following message
    in the OC4J window
    Please help
    Regards
    Preet y Agarwal
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\oracle\ora91\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\ora91\j2ee\home\oc4j.jar -Dhttp.proxyHost=proxy.monash.edu.au -Dhttp.proxyPort=8080 com.evermind.server.OC4JServer -config C:\oracle\ora91\jdev\system\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Auto-unpacking C:\oracle\ora91\jdev\system\oc4j-config\applications\bc4j.ear... done.
    Auto-unpacking C:\oracle\ora91\jdev\system\oc4j-config\applications\bc4j\webapp.war... done.
    Auto-unpacking C:\oracle\ora91\jdev\system\oc4j-config\applications\bc4j\cabo.war... done.
    Auto-deploying bc4j (New server version detected)...
    Auto-deploying file:/C:/oracle/ora91/jdev/system/oc4j-config/default-web-app/ (New server version detected)...
    Auto-deploying file:/C:/oracle/ora91/jdev/system/oc4j-config/applications/bc4j/cabo/ (New server version detected)...
    Auto-deploying file:/C:/oracle/ora91/jdev/system/oc4j-config/applications/bc4j/webapp/ (New server version detected)...
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    Process exited.
    C:\oracle\ora91\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\ora91\j2ee\home\oc4j.jar -Dhttp.proxyHost=proxy.monash.edu.au -Dhttp.proxyPort=8080 com.evermind.server.OC4JServer -config C:\oracle\ora91\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    Process exited.
    C:\oracle\ora91\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\ora91\j2ee\home\oc4j.jar -Dhttp.proxyHost=proxy.monash.edu.au -Dhttp.proxyPort=8080 com.evermind.server.OC4JServer -config C:\oracle\ora91\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    Process exited.
    C:\oracle\ora91\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\ora91\j2ee\home\oc4j.jar -Dhttp.proxyHost=proxy.monash.edu.au -Dhttp.proxyPort=8080 com.evermind.server.OC4JServer -config C:\oracle\ora91\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    Process exited.
    C:\oracle\ora91\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\ora91\j2ee\home\oc4j.jar -Dhttp.proxyHost=proxy.monash.edu.au -Dhttp.proxyPort=8080 com.evermind.server.OC4JServer -config C:\oracle\ora91\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    Process exited.
    C:\oracle\ora91\jdk\bin\javaw.exe -ojvm -classpath C:\oracle\ora91\j2ee\home\oc4j.jar -Dhttp.proxyHost=proxy.monash.edu.au -Dhttp.proxyPort=8080 com.evermind.server.OC4JServer -config C:\oracle\ora91\jdev\system\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized

    It may be caused by that your browser lauched before the OC4J server initialized.
    You can wait a moment till the OC4J server initialized then lauch your browser again.
    James Li

  • OA Framework, JDeveloper error in OC4J

    Hi All,
    I am trying to build the HelloWorld example in OA framework.
    I have downloaded the concerning patch and configure JDeveloper accordingly.
    My problem is, when I try to execute Run, I am getting following error messages.
    =====================================================
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    D:\OAFrame\jdevbin\jdk\bin\javaw.exe -client -classpath D:\OAFrame\jdevbin\j2ee\home\oc4j.jar;D:\OAFrame\jdevbin\jdev\lib\jdev-oc4j.jar -Xbootclasspath/p:D:\OAFrame\jdevbin\jdev\appslibrt\ojdbc14.jar;D:\OAFrame\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -Xverify:none -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 com.evermind.server.OC4JServer -config D:\OAFrame\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Auto-unpacking D:\OAFrame\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\soap.ear... done.
    Auto-unpacking D:\OAFrame\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\soap\soap.war... done.
    Auto-deploying soap (New server version detected)...
    Auto-unpacking D:\OAFrame\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\bc4j.ear... done.
    Auto-unpacking D:\OAFrame\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\bc4j\webapp.war... done.
    Auto-unpacking D:\OAFrame\jdevhome\jdev\system9.0.3.5.1437\oc4j-config\applications\bc4j\cabo.war... done.
    Auto-deploying bc4j (New server version detected)...
    java.lang.InternalError: jzentry == 0,
    jzfile = 50198656,
    total = 284,
    name = D:\OAFrame\jdevbin\jdev\appslibrt\xmlparserv2.jar,
    i = 1,
    message = invalid LOC header (bad signature)
         at java.util.zip.ZipFile$2.nextElement(ZipFile.java:321)
         at com.evermind.naming.archive.ArchiveContext.containsDirectory(ArchiveContext.java:651)
         at com.evermind.naming.archive.ArchiveContext.lookup(ArchiveContext.java:552)
         at com.evermind.naming.archive.ArchiveContext.lookup(ArchiveContext.java:529)
         at com.evermind.naming.ContextLocation.getManifestData(ContextLocation.java:52)
         at com.evermind.naming.ContextLocation.getManifest(ContextLocation.java:79)
         at com.evermind.naming.ContextLocation.getManifestAttribute(ContextLocation.java:58)
         at com.evermind.naming.ContextClassLoader.initManifestClasspath(ContextClassLoader.java:242)
         at com.evermind.naming.ContextClassLoader.addContext(ContextClassLoader.java:111)
         at com.evermind.server.ejb.EJBContainer.initLibraries(EJBContainer.java:211)
         at com.evermind.server.Application.preInit(Application.java:380)
         at com.evermind.server.Application.setConfig(Application.java:135)
         at com.evermind.server.Application.setConfig(Application.java:115)
         at com.evermind.server.ApplicationServer.initializeApplications(ApplicationServer.java:1478)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1243)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:93)
         at java.lang.Thread.run(Thread.java:534)
    ================================================================
    So, kindly suggest.
    Thanks in advance
    sachin.

    OA Framework Forum.....try it
    John

  • Commerce Reference Store setup help

    Hi All,
    I want to setup CRS on my machine.
    ATG: 10.0.3
    JDK: 1.6 latest update
    Database: Mysql
    App Server : jboss 5.1 EAP
    I followed the CRS instllation guide provided by ATG...and was able to create but failed to get CRS running, fr the following reason. I think the steps that i followed was wrong or dont know wat extra setup is needed to set CRs..Pls guide me.
    1) I want steps to run my crs store on my machine. I used CIM to do the set up, but it failed to deploy the store.war in the "C:\Softwares\jboss-eap-5.1.0\jboss-eap-5.1\jboss-as\server\atg_production_lockserver\deploy\atg_production_lockserver.ear" . Wat has gone wrong..
    i have only, the following folders created in the atg_production_lockserver.ear. store.war is missing.
    atg_admin.war
    atg_bootstrap.war
    atg_bootstrap_ejb.jar
    atglib
    META-INF
    2)can any body give a correct steps to follow to get the CRS upp and running in my machine.
    3) how can i deleted the things that i have already created using CIM, how can i undo it and start a new instllation..????

    Hi,
    Is you Jboss running before you deploy ?
    DO FOLLOW EXACT STEP BY STEP for installation .
    also you may consider shifting to ORACLE XE .ATG has problems with transactional DB's.
    One of the post in this forum tells how to tweak MYSQL.(search it )
    Make sure that you created 4 different schemas for PROD, PUB , A and B.
    Undoing CRS installations : Before creating new schemas first drop them , using CIM itself .
    rest will be overwritten during re-installation :)
    ~ Praveer

  • Help: manifest class path attribute - OC4J 9.0.3

    I have tried everything I can think of. I have even downloaded the developers version of JRun to ensure my code does deploy under the J2EE spec.
    Per compleating deployment under JRun, I have migrated back to OC4J and made the approperate modifications to orion-web.xml to include the following entry:
    <web-app-class-laoder include-manifest-class-path="true" />
    Even with this entry I get the same class not found statements. I am out of ideas.
    Anyone got some sugestions?
    Info: Ear deployment, static pages deploy under all wars...
    Thanks.
    Andrew
    [email protected]

    I have tried everything I can think of. I have even downloaded the developers version of JRun to ensure my code does deploy under the J2EE spec.
    Per compleating deployment under JRun, I have migrated back to OC4J and made the approperate modifications to orion-web.xml to include the following entry:
    <web-app-class-laoder include-manifest-class-path="true" />
    Even with this entry I get the same class not found statements. I am out of ideas.
    Anyone got some sugestions?
    Info: Ear deployment, static pages deploy under all wars...
    Thanks.
    Andrew
    [email protected]
    Hi Andy -
    Can you check the attribute and make sure it's the following:
    <web web-app-class-loader include-war-manifest-class-path="true"/>
    ^^^
    You have have just typed it in quickly, but I noticed there's a typo in the entry you have above and you are missing the WAR piece of the attribute name.
    There's a how-to document on OTN which has an example of this.
    http://otn.oracle.com/tech/java/oc4j/htdocs/how-to-servlet-warmanifest.html
    cheers
    -steve- Hi Steve
    Where can I find the zip file I went through the link but doesn't have any link to zip file
    Thanks
    Ritesh

  • Mafia Wars can not load completely because you are missing a plugin, pop up is too small to see the missing pluging, how do I find out what it is?

    Yesterday, while playing Mafia Wars, I kept getting a bar notification that "The game can not load completely because you are missing a plugin? When I clicked on the box I got an 1/2" popup, which probably contains the information I need but it is too small to find out what it is. You can not maximize it. The is nothing visible to click on. Flash and Java are all up to date, as well as all other plugins. No plugins are disabled. How can I find what I am missing?

    Try a program such as Disk Inventory X or OmniDiskSweeper.
    (50778)

  • Txt file missing after deploying war

    All,
    i've encountered weird problem when i'm deploy new war to the server. i want my class read the txt file. so that i've put the txt file at the same path as class as well at src/javapackage. here is the path..
    F:/myapp/voip/src/clientpkg
    so that i assumed when i deploy the war file to the server all classess & txt file will be kept at the ...
    webapps/voip/WEB-INF/classes/clientpkg/
    but when i checked at the clientpkg directory, the txt file is missing. what shud i do now?
    here is my code to read the txt file..
    private boolean migration25Cpes() throws Exception {
    boolean status = false;
    try {
    System.out.println(System.getProperty("user.dir"));
    System.out.println("read the file again/");
    InputStream in = this.getClass().getResourceAsStream("list25cpe.txt");
    Reader rin = new InputStreamReader(in);
    BufferedReader inputFile = new BufferedReader(rin);
    String readSource = "";
    while ( (readSource = inputFile.readLine()) != null) {
    System.out.println(readSource);
    System.out.println("the input now : " +inputFile.read());
    inputFile.close();
    catch (FileNotFoundException e) {
    e.printStackTrace();
    return status;
    }

    Then you have to find a way to tell JBuilder to include the text file in the jar. I don't know JBuilder, but I'm guessing that right now it is probably building the jar from the compiler output directory, which contains only class files.
    There may be a setting to copy non-java files to the compiler output directory, or you may need to put stuff you want to appear in WEB-INF/classes in some other location for it to be picked up by the JBuilder war-creator.

  • Missing data-sources.xml deploying war with jdeveloper 9i RC

    When deploying a war file to an OC4J 1.0.2.2.1 server and error reports during the deployment that data-sources.xml is missing in the application-deployments/xxxx directory. Only the orion-application.xml file is present - which references a data-sources.xml file in the same directory. The problem is : it isn't there.
    When I copy the xml files from the applications/xxxx directory to the application-deployments/xxxx directory and redeploy the war file everything works fine.
    Is this a configuration issue or a bug ? Anyway, can somebody tell me how I can work around this problem ?
    Thanks !

    this is a bug and you have already found the workaround.

Maybe you are looking for