NiSwitch_I​nit error

When calling the function niSwitch_Init from Visual C++, I recieve an error of BFFC0011 for PXI-2567.  In MAX the self-test passes and I'm using the correct alias setup in MAX in my function call.
My Computer information:
Vista
NI-Switch 3.8
MAX 4.5.1
NI-DAQmx 8.8
NI-VISA 4.4.1
Solved!
Go to Solution.

You mentioned that you have two switches that are not working.  Do you have any NI Switches that are working in Visual C++?
No.  I have two switch devices and they both are not working.  
Can we get a screen shot of the Switch Devices in MAX?   
Which version of Visual C++ are we using?
Microsoft Visual C++ 2008 Version 9.0.21022.8 
Did this work in the past, or are we just getting started on this application?
No.  We are just getting started. 
Do the text based switch examples work?  They are located here:• (Windows 2000/XP) Documents and Settings\All Users\Shared Documents\National Instruments\NI-SWITCH\Examples
• (Windows Vista/7) Users\Public\Documents\National Instruments\NI-SWITCH\Examples Background….the person working on this before me said they might have tried this and couldn’t get it to work.  However my program simply calls niSwitch_Init very similarly to the example program.  I will go and try this out meanwhile.  I however did not use the function niSwitchCheckErr function so I am using the viStatusDesc function to return the error code of BFFC0011.
Message Edited by Guy04 on 03-02-2010 03:24 PM

Similar Messages

  • My iPod doesn't work. The screen is black but it has a ticking circle in the middle. Its been stuck like that for more than an hour. My iTunes doesnt recognize the iPod Touch and says 'iTunes could nit connect to this iPhone-unknown error

    Its been stuck like that for more than an hour. My iTunes doesnt recognize the iPod Touch and says 'iTunes could nit connect to this iPhone-unknown error

    I'm soooo sorry to bump this but MAYBE someone will know what to do?! I've just tried EVERYTHING. I need help. Please, anyone?!
    *last chance and I'm backing away sloooowly*
    thanks to ANYONE who will suggest ANYTHING at all!!!

  • Error while doing PO

    Hello,
    Please find below error while creating a PO
    Check Quantity in Purchasing Unit is matching with that in PO.
    Message no. M8215
    MMR base nit is EA and Purchasing unit also the same EA.
    Thanks & Regards
    Abhinay....

    Hello Thanks for your reply,
    But i am not taking any ref for PO.
    Abhinay..

  • Getting error message in tomcat server

    Have a look at the following programs:
    AuthenticationFilter_
    import javax.servlet.*;
    import java.io.*;
    import java.sql.*;
    public class AuthenticationFilter implements Filter
         ServletContext sc;
         Connection con;
    public void init(FilterConfig f) throws ServletException
    System.out.println(f.getFilterName() + "Filter Initialized");
    String d = f.getInitParameter("driver");
    String url = f.getInitParameter("url");
    String user = f.getInitParameter("user");
    String pwd = f.getInitParameter("password");
    try
         Class.forName(d);
         con = DriverManager.getConnection(url,user,pwd);
         System.out.println("Connection Established");
    catch (Exception e)
         e.printStackTrace();
    sc = f.getServletContext();
    public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain)throws ServletException,IOException
    Statement st = null;
    ResultSet rs = null;
    String user = request.getParameter("user");
    String pwd = request.getParameter("password");
    try
         st = con.createStatement();
         String sql = "SELECT * FROM OURUSERS WHERE usr = " + user + " and password = " + pwd + " ";
         rs = st.executeQuery(sql);
         if(rs.next())
              chain.doFilter(request,response);
         else
              sc.getRequestDispatcher("/error.html").forward(request,response);
    catch (Exception e)
         e.printStackTrace();
    finally
    try
         if(rs!=null)
              rs.close();
         if(st!=null)
              st.close();
    catch (Exception e)
         e.printStackTrace();
    }//doFilter()
    public void destroy()
    try
         if(con!=null)
              con.close();
    catch (Exception e)
         e.printStackTrace();
    *2)_HitCounterFilter__
    import javax.servlet.*;
    import java.io.*;
    public class HitCounterFilter implements Filter
         ServletContext sc;
         int count;
    public void init(FilterConfig f)throws ServletException
    System.out.println(f.getFilterName() + "Filter Initialized");
    sc = f.getServletContext();
    public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain)throws ServletException,IOException
    chain.doFilter(request,response);
    count++;
    sc.log("Number of times request came to LoginServlet is " + count);
    public void destroy()
    *3) LoginServlet*
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class LoginServlet extends HttpServlet
         public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException
    response.setContentType("text/html");
    PrintWriter pw = response.getWriter();
    pw.println("<HTML> <BODY BGCOLOR=yellow>");
    pw.println("<H1> WELCOME TO OUR WEBSITE</H1>");
    pw.println("</BODY>");
    pw.println("</HTML>");
    pw.close();
    web.xml
    <web-app>
    <filter>
    <filter-name>authenticate</filter-name>
    <filter-class>AuthenticationFilter</filter-class>
    <init-param>
    <param-name>driver</param-name>
    <param-value>oracle.jdbc.driver.OracleDriver</param-value>
    </init-param>
    <init-param>
    <param-name>url</param-name>
    <param-value>jdbc:oracle:thin:@localhost:1521:orcl</param-value>
    </init-param>
    <init-param>
    <param-name>user</param-name>
    <param-value>scott</param-value>
    </init-param>
    <init-param>
    <param-name>password</param-name>
    <param-value>tiger</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>hitcount</filter-name>
    <filter-class>HitCounterFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>authenticate</filter-name>
    <url-pattern>/nit</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Login</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Login</servlet-name>
    <url-pattern>/nit</url-pattern>
    </servlet-mapping>
    </web-app>
    Error_
    java.sql.SQLException: ORA-00904: "SANDY": invalid identifier
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteDescribe(TTC7Protocol.java:
    677)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.jav
    a:2371)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStateme
    nt.java:2660)
    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:
    777)
    at AuthenticationFilter.doFilter(AuthenticationFilter.java:37)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:233)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
    a:298)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :857)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ss(Http11Protocol.java:588)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:48
    9)
    at java.lang.Thread.run(Thread.java:619)
    The above error message i am getting in Tomcat server,i am having Oracle 11g V1..My SQL prompt is open and i have a table named "ourusers"...Can anyone kindly gimme the solution for this problem+*
    Edited by: sandy on Nov 9, 2010 8:59 AM

    java.sql.SQLException: ORA-00904: "SANDY": invalid identifier
    Looks like the sql you are submitting is invalid.
    Print out a copy of the sql you are trying to run and you will probably get:
    SELECT * FROM OURUSERS WHERE usr = Sandy and password = secretThat isn't valid sql. It is missing quotes around the values you are checking.
    This is the corrected sql query:
    SELECT * FROM OURUSERS WHERE usr = 'Sandy' and password = 'secret'so one solution would be:
    String sql = "SELECT * FROM OURUSERS WHERE usr = '" + user + "' and password = '" + pwd + "' ";However that is not optimal. It exposes your code to sql injection attack.
    The better way is to use a prepared statement:
    String sql = "SELECT * FROM OURUSERS WHERE usr = ? and password =?";
    st = con.prepareStatement(sql);
    st.setString(1, user);
    st.setString(2, password);
    rs = st.executeQuery();cheers,
    evnafets

  • Error while starting the Weblogic Server in SOA Suite

    Hi All,
    I installed SOA Suite 11.1.1.4.0 (weblogic server and SOA managaed server) couple of days back.The same machine has two more weblogic servers which contain different applications.(Means there total three Weblogic admin servers and one SOA manage server).
    I used to start all the servers successfully .I also used to start SOA server successfully .
    But today when I am trying to start Weblogic Admin server(SOA related),I am getting below error:
    Error Log:
    ***C:\Oracle\Middleware\user_projects\domains\mdm_soadomain\bin>startWebLogic***
    ***The system cannot find the path specified.***
    -------------------------- --------------------------- some error log content here -------------------------------------
    ***ib\DemoTrust.jks -Dem.oracle.home=C:\Oracle\Middleware\oracle_common -Djava.awt.headless=true -Dums.oracle.home=C:\Oracle\Middleware\Oracle_SOA1 -Dweblogic.management.discover=true -Dwlw.iterativeDev***
    ***= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= weblogic.Server***
    ***Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/Server***
    ***Caused by: java.lang.ClassNotFoundException: weblogic.Server***
    ***at java.net.URLClassLoader$1.run(URLClassLoader.java:202)***
    ***at java.security.AccessController.doPrivileged(Native Method)***
    ***at java.net.URLClassLoader.findClass(URLClassLoader.java:190)***
    ***at java.lang.ClassLoader.loadClass(ClassLoader.java:306)***
    ***at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)***
    ***at java.lang.ClassLoader.loadClass(ClassLoader.java:247)***
    ***Could not find the main class: weblogic.Server. Program will exit.***
    ***C:\Oracle\Middleware\user_projects\domains\mdm_soadomain\bin>***
    I saw setDomainEnv.cmd file and all other files.I did not change anything recently.But I am nit getting any idea why that exception is coming.
    PLease give me guidance for this.
    Thanks in advance
    Edited by: 899283 on Jun 7, 2013 5:06 AM

    Hi,
    Is the message "The system cannot find the path specified." reported as a direct response on the "C:\Oracle\Middleware\user_projects\domains\mdm_soadomain\bin>startWebLogic" command, by Windows? Or do you see that this command really is executing but is the message reported later in the logs? Is it also reported on the command window output?
    From your questioning I take it that the command initially really is executing and that the path not found message is reported later in the process. In that case it you should debug the start process. My method in these cases is adding recognizable echo statements in the weblogic start scripts. Firstly to see how far the process comes, which statements are executed. Basically to narrow down at what specific statement/command the scripts fails.
    Secondly to echo the specific environment variables used. These things don't happen "magically" somehow, somewhere, something is changed. Although you might not find out when it was and who was responsible.
    What might help is to know that the startWeblogic script is calling the setDomainEnv script in the same folder and also does a call to a weblogic settings script in the weblogic binaries folder from the weblogic home. (I don't know the scripts name by heart and I haven't have a VM started with a WLS env right now.
    Then after these two scripts and doing some Environment variable checking to build up the arguments (java vendor, memory-args, etc.) for the java-process, it in the end calls the java-process from the choosen JVM-home. So it might be interesting to look up the place where it actually calls java. And right before that put echo's to display the JAVA_HOME and the complete java-command that it plans to execute. It might be that you installed another JVM/JDK, maybe you updated the default JVM on windows? And that it just can't find the correct JVM.
    In setDomainEnv you can set up the paths to the different JVM's. Using the JAVA_VENDOR environment variable you can switch between them.
    For instance, if you want to use JRockit, look voor the BEA_JAVA_HOME. The variable for Sun Hotspot should be around there as well. Validate those.
    Hope this helps.
    Regards,
    Martien

  • Error while starting manage server

    Hi,
    I get the following error while starting the managed server. But there is no
    fatal error and the startup is successful. The domain has an admin and a managed
    instance. The admin server starts without any trouble. Please help resolve this
    problem.
    regards
    vignesh
    <Mar 15, 2004 6:07:07 PM EST> <Info> <Security> <090142> <The weblogic keystore
    provider DefaultKeyStore in realm myrealm cannot be
    used for trusted (root) CAs because its trusted (root) CA keystore was not configured.>
    <Mar 15, 2004 6:07:07 PM EST> <Notice> <Security> <090082> <Security initializing
    using realm myrealm.>
    <Mar 15, 2004 6:07:08 PM EST> <Notice> <WebLogicServer> <000328> <Starting WebLogic
    Managed Server "vignesh" for domain "a201516">
    <Mar 15, 2004 6:07:08 PM EST> <Info> <WebLogicServer> <000214> <WebLogic Server
    "vignesh" version:
    WebLogic Server 7.0 SP1 Mon Sep 9 22:46:58 PDT 2002 206753
    WebLogic XMLX Module 7.0 SP1 Mon Sep 9 22:54:41 PDT 2002 206753
    (c) 1995, 1996, 1997, 1998 WebLogic, Inc.
    (c) 1999, 2000, 2001 BEA Systems, Inc.>
    <Mar 15, 2004 6:07:08 PM EST> <Info> <WebLogicServer> <000215> <Loaded License
    : /apps/bea/license.bea>
    <Mar 15, 2004 6:07:08 PM EST> <Info> <RJVM> <000520> <Network Configuration
    Cluster Participant: false
    Native Socket IO Enabled: true
    Reverse DNS Allowed: false
    Network Channel: Default
    Listen Address: 167.19.244.65
    Listen Port: 6100
    SSL Listen Port: 6101
    External DNS Name: not configured
    Cluster Address: not configured
    Protocol(s): T3,T3S,HTTP,HTTPS
    Tunneling Enabled: false
    Outgoing Enabled: true
    Admin Traffic Only: false
    Admin Traffic OK: true
    Channel Weight: 50
    Accept Backlog: 50
    Login Timeout: 5000 ms
    Login Timeout SSL: 25000 ms
    Message Timeout HTTP: 60000 ms
    Message Timeout T3: 60000 ms
    Max Message Size HTTP: 10000000
    Max Message Size T3: 10000000
    >
    <Mar 15, 2004 6:07:11 PM EST> <Error> <rmi> <080007> <RMI runtime disabled because
    an initial reference could not be bound
    java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception
    is:
    java.lang.ClassCastException: weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel
    java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception
    is:
    java.lang.ClassCastException: weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel
    java.lang.ClassCastException: weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel
    at weblogic.rmi.internal.BasicRuntimeDescriptor.createSkeleton(BasicRuntimeDescriptor.java:217)
    at weblogic.rmi.internal.BasicRuntimeDescriptor.<init>(BasicRuntimeDescriptor.java:135)
    at weblogic.rmi.internal.DescriptorManager.getBasicRuntimeDescriptor(DescriptorManager.java:85)
    at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:48)
    at weblogic.rmi.internal.BasicServerRef.initializeDGCPolicy(BasicServerRef.java:164)
    at weblogic.rmi.internal.BasicServerRef.<init>(BasicServerRef.java:141)
    at weblogic.rmi.internal.OIDManager.initializeServer(OIDManager.java:263)
    at weblogic.rmi.internal.OIDManager.initialize(OIDManager.java:241)
    at weblogic.rmi.internal.RMIServerService.initialize(RMIServerService.java:19)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:756)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
    at weblogic.Server.main(Server.java:32)
    >
    <Mar 15, 2004 6:07:12 PM EST> <Info> <XML> <130036> <Initializing XMLRegistry.>
    <Mar 15, 2004 6:07:14 PM EST> <Info> <JDBC> <001007> <INITIALIZING DONE issued.>
    <Mar 15, 2004 6:07:14 PM EST> <Info> <Connector> <190000> <Initializing J2EE Connector
    Service>
    <Mar 15, 2004 6:07:14 PM EST> <Info> <Connector> <190001> <J2EE Connector Service
    initialized successfully>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <JMS> <040090> <Deployed 4 default connection
    factories.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <JMS> <040305> <JMS service is initialized
    and in the standby mode.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <IIOP> <002014> <IIOP subsystem enabled.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <HTTP> <101128> <Initializing HTTP services.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <HTTP> <101133> <Initializing WEB server
    vignesh>
    <Mar 15, 2004 6:07:16 PM EST> <Info> <HTTP> <101052> <[HTTP vignesh] Initialized>
    <Mar 15, 2004 6:07:16 PM EST> <Info> <HTTP> <101135> <vignesh is the default web
    server>
    <Mar 15, 2004 6:07:16 PM EST> <Info> <J2EE> <160037> <J2EE service initializing>
    <Mar 15, 2004 6:07:19 PM EST> <Info> <Deployer> <149207> <The Deployment Slave
    is initializing>
    <Mar 15, 2004 6:07:22 PM EST> <Info> <HTTP> <101201> <uddi:uddi loading descriptor>
    <Mar 15, 2004 6:07:22 PM EST> <Info> <HTTP> <101059> <[HTTP] Loading uddi from
    WAR file: ./vignesh/.internal/uddi.war>
    <Mar 15, 2004 6:07:23 PM EST> <Info> <HTTP> <101202> <uddi:uddi preparing>
    <Mar 15, 2004 6:07:27 PM EST> <Info> <HTTP> <101201> <uddiexplorer:uddiexplorer
    loading descriptor>
    <Mar 15, 2004 6:07:27 PM EST> <Info> <HTTP> <101059> <[HTTP] Loading uddiexplorer
    from WAR file: ./vignesh/.internal/uddiexplorer.wa
    r>
    <Mar 15, 2004 6:07:27 PM EST> <Info> <HTTP> <101202> <uddiexplorer:uddiexplorer
    preparing>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <HTTP> <101201> <wl_management_internal1:wl_management_internal1
    loading descriptor>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <HTTP> <101059> <[HTTP] Loading wl_management_internal1
    from WAR file: ./vignesh/.internal/wl_m
    anagement_internal1.war>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <HTTP> <101202> <wl_management_internal1:wl_management_internal1
    preparing>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <DRS> <002504> <Slave for DataIdentifier
    DataIdentifierID: 1 registered with DRS with version 0
    >
    <Mar 15, 2004 6:07:30 PM EST> <Info> <Deployer> <149215> <The Slave Deployer did
    not receive an initial update after 2,000 milliseco
    nds.>
    <Mar 15, 2004 6:07:31 PM EST> <Info> <HTTP> <101206> <uddi:uddi activating>
    <Mar 15, 2004 6:07:34 PM EST> <Info> <HTTP> <101209> <uddi:uddi ready>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101208> <uddi:uddi starting>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101206> <uddiexplorer:uddiexplorer
    activating>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101209> <uddiexplorer:uddiexplorer
    ready>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101208> <uddiexplorer:uddiexplorer
    starting>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101206> <wl_management_internal1:wl_management_internal1
    activating>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101209> <wl_management_internal1:wl_management_internal1
    ready>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101208> <wl_management_internal1:wl_management_internal1
    starting>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <Deployer> <149208> <The Deployment Slave
    is initialized>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JTA> <110441> <Opening transaction log with
    driver version "j1.0" and synchronous write policy
    "Cache-Flush". For information on synchronous write policies, refer to the weblogic.management.configuration.ServerMBean
    javadoc or
    console on-line help.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JDBC> <001007> <RESUMING ... issued.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JDBC> <001007> <RESUMING DONE issued.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "MessageDrivenBeanConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "QueueConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "TopicConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "DefaultConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040306> <JMS service is active now.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <HTTP> <101129> <Initializing Web services.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <HTTP> <101238> <HTTP log rotation is size
    based for the webserver: vignesh>
    <Mar 15, 2004 6:07:37 PM EST> <Info> <HTTP> <101051> <[HTTP vignesh] started>
    <Mar 15, 2004 6:07:37 PM EST> <Info> <Deployer> <149209> <The Deployment Slave
    is resuming>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <J2EE> <160003> <Deployed : DefaultWebApp>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <HTTP> <101133> <Initializing WEB server
    vignesh>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Deployer> <149210> <The Deployment Slave
    is resumed>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.specification.vendor = Sun Microsystems>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.runtime.name = Java(TM) 2 Runtime Environment
    , Standard Edition>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.protocol.handler.pkgs = weblogic.utils|weblog
    ic.utils|weblogic.net|weblogic.management>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.boot.library.path = /apps/bea/jdk131_03/jre/li
    b/sparc>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.version = 1.3.1_03-b03>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.xml.rpc.ServiceFactory = weblogic.webservice
    .core.rpc.ServiceFactoryImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryPar
    ser>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.vendor = Sun Microsystems Inc.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vendor.url = http://java.sun.com/>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    path.separator = :>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.name = Java HotSpot(TM) Server VM>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    file.encoding.pkg = sun.io>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    org.xml.sax.driver = weblogic.apache.xerces.parser
    s.SAXParser>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.specification.name = Java Virtual Machine
    Specification>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.dir = /apps/bea/user_projects/a201516>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.xml.soap.MessageFactory = weblogic.webservic
    e.core.soap.MessageFactoryImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.runtime.version = 1.3.1_03-b03>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.management.server = http://167.19.244.65:
    6102>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    vde.home = ./vignesh/ldap>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDele
    gateImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.awt.graphicsenv = sun.awt.X11GraphicsEnvironm
    ent>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    os.arch = sparc>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.io.tmpdir = /var/tmp/>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    line.separator =
    >
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.Name = vignesh>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.specification.vendor = Sun Microsystems In
    c.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.naming.factory.url.pkgs = weblogic.jndi.facto
    ries>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.awt.fonts = >
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    os.name = SunOS>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.library.path = /apps/bea/jdk131_03/bin/../jre
    /lib/sparc/server:/apps/bea/jdk131_03/bin/../jre/lib/sparc::/apps/bea/jdk131_03/bin/../jre/../lib/sparc:/apps/bea/weblogic700/server
    /lib/solaris:/apps/bea/weblogic700/server/lib/solaris/oci817_8:/usr/lib>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.implementation.version = 1.0>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.specification.name = Java Platform API Specif
    ication>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.class.version = 47.0>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.ProductionModeEnabled = false>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    os.version = 5.8>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.home = /users/a201516>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.rmi.CORBA.PortableRemoteObjectClass = weblog
    ic.iiop.PortableRemoteObjectDelegateImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.security.policy = /apps/bea/weblogic700/serve
    r/lib/weblogic.policy>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.timezone = America/New_York>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.awt.printerjob = sun.awt.motif.PSPrinterJob>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    bea.home = /apps/bea>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    file.encoding = 646>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.specification.version = 1.3>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.class.path = /apps/bea/jdk131_03/lib/tools.ja
    r:/apps/bea/weblogic700/server:/apps/bea/weblogic700/server/lib/weblogic_sp.jar:/apps/bea/weblogic700/server/lib/weblogic.jar:/users
    /a201516:/users/a201516/weblogic/myserver/serverclasses/xerces.jar:/users/a201516/weblogic/myserver/serverclasses/xalan.jar:/apps/we
    blogic/javaclasses/xml4j_2_0_15/xml4j.jar:/apps/weblogic/javaclasses/xmlbeans/lib/xml_swing11.jar:/apps/weblogic/javaclasses/javamai
    l-1.1.3/mail.jar:/users/a201516/weblogic/lib/weblogic510sp12.jar:/users/a201516/weblogic/lib/weblogicaux.jar:/users/a201516/weblogic
    /classes:/apps/weblogic/javaclasses/jgl3.1.0/lib/jgl3.1.0.jar:/users/a201516/tips/oracle_thin_driver.jar:/apps/weblogic/javaclasses/
    jce1.2/lib/jce1_2-do.jar:/apps/weblogic/javaclasses/javamail-1.1.3/mail.jar:/apps/weblogic/javaclasses/jaf-1.0.1/activation.jar:/app
    s/weblogic/javaclasses/junit3.5/junit.jar:/users/a201516/weblogic/lib/vp4jb_o.jar:/users/a201516/weblogic/lib/LDAPSimpleAuth.jar:/ap
    ps/warranty/weblogic/javaclasses/lib/uwc/javaftpapi.jar:/apps/motorclub2/weblogic/lib/log4j.jar:/apps/motorclub2/weblogic/lib/log4j_
    core.jar:/apps/motorclub2/weblogic/lib/sunjce_provider.jar:/apps/motorclub2/weblogic/lib/iText.jar:/apps/motorclub2/weblogic/lib/US_
    export_policy.jar:/apps/motorclub2/weblogic/lib/Verisign.jar:/apps/warranty/weblogic/javaclasses/lib/uwc/ldapjdk.jar:/users/a201516/
    weblogic/myserver/workdir/uwc/serverclasses:/users/a201516/weblogic/myserver/workdir/uwc/servletclasses:/users/a201516/weblogic/myse
    rver/workdir/dm/serverclasses:/users/a201516/weblogic/myserver/workdir/dm/servletclasses:/users/a201516/weblogic/myserver/servletcla
    sses:/users/a201516/weblogic/myserver/serverclasses:/apps/direct/weblogic/myserver/dmejb/CustomerSessionBean.jar:/apps/direct/weblog
    ic/myserver/dmejb/SalesEntityJar.jar:/apps/direct/weblogic/myserver/dmejb/CheckSalesEntityJar.jar:/apps/direct/weblogic/myserver/dme
    jb/SalesSessionJar.jar:/apps/direct/weblogic/myserver/dmejb/PlanSessionBean.jar:/apps/direct/weblogic/myserver/dmejb/SearchSession.j
    ar:/apps/direct/weblogic/myserver/dmejb/DSUSearchJar.jar:/apps/direct/weblogic/myserver/dmejb/LoginSession.jar:/users/a201516/weblog
    ic/myserver/uwcejb/OutClaimEntityDeployed.jar:/users/a201516/weblogic/myserver/uwcejb/OutClaimSessionDeployed.jar:/users/a201516/web
    logic/myserver/uwcejb/OutContractEntityDeployed.jar:/users/a201516/weblogic/myserver/uwcejb/OutContractSessionDeployed.jar:/users/a2
    01516/weblogic/myserver/uwcejb/OutProfileSessionDeployed.jar:/users/a201516/weblogic/myserver/gmmcejb/memberentitybeanjar.jar:/users
    /a201516/weblogic/myserver/gmmcejb/policyentitybeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/paymententitybeanjar.jar:/users/
    a201516/weblogic/myserver/gmmcejb/historyentitybeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/enrollsessionbeanjar.jar:/users/
    a201516/weblogic/myserver/gmmcejb/loginsessionbeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/memberaccsessionbeanjar.jar:/user
    s/a201516/weblogic/myserver/gmmcejb/historysessionbeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/updatesessionbeanjar.jar:/app
    s/gmppDirect2004/weblogic/myserver/dmejb/PriceSessionBean.jar:/users/a201516/weblogic/myserver/workdir/gmmc2/:/users/a201516/weblogi
    c/myserver/workdir/gmmc2/com/mic/gmmc/constants/>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.name = a201516>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.naming.factory.initial = weblogic.jndi.WLInit
    ialContextFactory>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.specification.version = 1.0>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.home = /apps/bea/jdk131_03/jre>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.specification.name = Java Management Extension
    s>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.language = en>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.specification.vendor = Sun Microsystems Inc.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.implementation.name = JMX RI>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.info = mixed mode>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.security.SSL.trustedCAKeyStore = /apps/be
    a/weblogic700/server/lib/cacerts>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.version = 1.3.1_03>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.ext.dirs = /apps/bea/jdk131_03/jre/lib/ext>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.boot.class.path = /apps/bea/jdk131_03/jre/lib/
    rt.jar:/apps/bea/jdk131_03/jre/lib/i18n.jar:/apps/bea/jdk131_03/jre/lib/sunrsasign.jar:/apps/bea/jdk131_03/jre/classes>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vendor = Sun Microsystems Inc.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    file.separator = />
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vendor.url.bug = http://java.sun.com/cgi-bin/
    bugreport.cgi>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.io.unicode.encoding = UnicodeBig>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.cpu.endian = big>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.implementation.vendor = Sun Microsystems>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.specification.version = 1.0 Final Release>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.cpu.isalist = sparcv9+vis sparcv9 sparcv8plus+
    vis sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 sparc>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=5803151,name=DefaultWebApp,context-path=/DefaultWebApp)]
    We
    bServiceServlet: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=2746710,name=uddi,context-path=/uddi)]
    WebServiceServlet: i
    nit>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=2746710,name=uddi,context-path=/uddi)]
    uddilistener: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=5823496,name=uddiexplorer,context-path=/uddiexplorer)]
    WebS
    erviceServlet: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=2121551,name=wl_management_internal1,context-path=/wl_manag
    ement_internal1)] WebServiceServlet: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <WebLogicServer> <000325> <License allows
    low strength (export) SSL.>
    <Mar 15, 2004 6:07:47 PM EST> <Info> <Security> <090116> <The Server vignesh is
    using the private key it retrieved from keystore ali
    ased by demokey.>
    <Mar 15, 2004 6:07:48 PM EST> <Info> <Security> <090125> <Loaded 14 trusted certificates
    from keystore file specified on the command
    line: /apps/bea/weblogic700/server/lib/cacerts>
    <Mar 15, 2004 6:07:48 PM EST> <Info> <WebLogicServer> <000307> <Exportable key
    maximum lifespan set to 500 uses.>
    <Mar 15, 2004 6:07:48 PM EST> <Info> <WebLogicServer> <000300> <Certificate contents:
    1 certificate(s):
    fingerprint = 56b7dfac29e39c21027973c248d8c1bb, not before = Tue May 30 17:38:01
    EDT 2000, not after = Thu May 13 17:38:01 EDT 200
    4, holder = C=US SP=California L=San Francisco O=BEA WebLogic CN=weblogic.bea.com
    [email protected] , issuer = C=US SP=Californi
    a L=San Francisco O=BEA WebLogic OU=Security CN=Demo Certificate Authority [email protected]
    , key = modulus length=65 exponent
    length=3
    >
    <Mar 15, 2004 6:07:48 PM EST> <Info> <WebLogicServer> <000310> <Using low strength
    (exportable) SSL.>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000355> <Thread "ListenThread.Default"
    listening on port 6100, ip address 1
    67.19.244.65>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000355> <Thread "SSLListenThread.Default"
    listening on port 6101, ip addres
    s 167.19.244.65>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000332> <Started WebLogic
    Managed Server "vignesh" for domain "a201516" run
    ning in Development Mode>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000365> <Server state
    changed to RUNNING>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000360> <Server started
    in RUNNING mode>

    "Vignesh" <[email protected]> writes:
    It looks like a bug. We are on 7.0sp4 with sp5 soon to be released. I
    suggest you try a more up-to-date version.
    andy
    Hi,
    I get the following error while starting the managed server. But there is no
    fatal error and the startup is successful. The domain has an admin and a managed
    instance. The admin server starts without any trouble. Please help resolve this
    problem.
    regards
    vignesh
    <Mar 15, 2004 6:07:07 PM EST> <Info> <Security> <090142> <The weblogic keystore
    provider DefaultKeyStore in realm myrealm cannot be
    used for trusted (root) CAs because its trusted (root) CA keystore was not configured.>
    <Mar 15, 2004 6:07:07 PM EST> <Notice> <Security> <090082> <Security initializing
    using realm myrealm.>
    <Mar 15, 2004 6:07:08 PM EST> <Notice> <WebLogicServer> <000328> <Starting WebLogic
    Managed Server "vignesh" for domain "a201516">
    <Mar 15, 2004 6:07:08 PM EST> <Info> <WebLogicServer> <000214> <WebLogic Server
    "vignesh" version:
    WebLogic Server 7.0 SP1 Mon Sep 9 22:46:58 PDT 2002 206753
    WebLogic XMLX Module 7.0 SP1 Mon Sep 9 22:54:41 PDT 2002 206753
    (c) 1995, 1996, 1997, 1998 WebLogic, Inc.
    (c) 1999, 2000, 2001 BEA Systems, Inc.>
    <Mar 15, 2004 6:07:08 PM EST> <Info> <WebLogicServer> <000215> <Loaded License
    : /apps/bea/license.bea>
    <Mar 15, 2004 6:07:08 PM EST> <Info> <RJVM> <000520> <Network Configuration
    Cluster Participant: false
    Native Socket IO Enabled: true
    Reverse DNS Allowed: false
    Network Channel: Default
    Listen Address: 167.19.244.65
    Listen Port: 6100
    SSL Listen Port: 6101
    External DNS Name: not configured
    Cluster Address: not configured
    Protocol(s): T3,T3S,HTTP,HTTPS
    Tunneling Enabled: false
    Outgoing Enabled: true
    Admin Traffic Only: false
    Admin Traffic OK: true
    Channel Weight: 50
    Accept Backlog: 50
    Login Timeout: 5000 ms
    Login Timeout SSL: 25000 ms
    Message Timeout HTTP: 60000 ms
    Message Timeout T3: 60000 ms
    Max Message Size HTTP: 10000000
    Max Message Size T3: 10000000
    >
    <Mar 15, 2004 6:07:11 PM EST> <Error> <rmi> <080007> <RMI runtime disabled because
    an initial reference could not be bound
    java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception
    is:
    java.lang.ClassCastException: weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel
    java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception
    is:
    java.lang.ClassCastException: weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel
    java.lang.ClassCastException: weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel
    at weblogic.rmi.internal.BasicRuntimeDescriptor.createSkeleton(BasicRuntimeDescriptor.java:217)
    at weblogic.rmi.internal.BasicRuntimeDescriptor.<init>(BasicRuntimeDescriptor.java:135)
    at weblogic.rmi.internal.DescriptorManager.getBasicRuntimeDescriptor(DescriptorManager.java:85)
    at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:48)
    at weblogic.rmi.internal.BasicServerRef.initializeDGCPolicy(BasicServerRef.java:164)
    at weblogic.rmi.internal.BasicServerRef.<init>(BasicServerRef.java:141)
    at weblogic.rmi.internal.OIDManager.initializeServer(OIDManager.java:263)
    at weblogic.rmi.internal.OIDManager.initialize(OIDManager.java:241)
    at weblogic.rmi.internal.RMIServerService.initialize(RMIServerService.java:19)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:756)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
    at weblogic.Server.main(Server.java:32)
    >
    <Mar 15, 2004 6:07:12 PM EST> <Info> <XML> <130036> <Initializing XMLRegistry.>
    <Mar 15, 2004 6:07:14 PM EST> <Info> <JDBC> <001007> <INITIALIZING DONE issued.>
    <Mar 15, 2004 6:07:14 PM EST> <Info> <Connector> <190000> <Initializing J2EE Connector
    Service>
    <Mar 15, 2004 6:07:14 PM EST> <Info> <Connector> <190001> <J2EE Connector Service
    initialized successfully>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <JMS> <040090> <Deployed 4 default connection
    factories.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <JMS> <040305> <JMS service is initialized
    and in the standby mode.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <IIOP> <002014> <IIOP subsystem enabled.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <HTTP> <101128> <Initializing HTTP services.>
    <Mar 15, 2004 6:07:15 PM EST> <Info> <HTTP> <101133> <Initializing WEB server
    vignesh>
    <Mar 15, 2004 6:07:16 PM EST> <Info> <HTTP> <101052> <[HTTP vignesh] Initialized>
    <Mar 15, 2004 6:07:16 PM EST> <Info> <HTTP> <101135> <vignesh is the default web
    server>
    <Mar 15, 2004 6:07:16 PM EST> <Info> <J2EE> <160037> <J2EE service initializing>
    <Mar 15, 2004 6:07:19 PM EST> <Info> <Deployer> <149207> <The Deployment Slave
    is initializing>
    <Mar 15, 2004 6:07:22 PM EST> <Info> <HTTP> <101201> <uddi:uddi loading descriptor>
    <Mar 15, 2004 6:07:22 PM EST> <Info> <HTTP> <101059> <[HTTP] Loading uddi from
    WAR file: ./vignesh/.internal/uddi.war>
    <Mar 15, 2004 6:07:23 PM EST> <Info> <HTTP> <101202> <uddi:uddi preparing>
    <Mar 15, 2004 6:07:27 PM EST> <Info> <HTTP> <101201> <uddiexplorer:uddiexplorer
    loading descriptor>
    <Mar 15, 2004 6:07:27 PM EST> <Info> <HTTP> <101059> <[HTTP] Loading uddiexplorer
    from WAR file: ./vignesh/.internal/uddiexplorer.wa
    r>
    <Mar 15, 2004 6:07:27 PM EST> <Info> <HTTP> <101202> <uddiexplorer:uddiexplorer
    preparing>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <HTTP> <101201> <wl_management_internal1:wl_management_internal1
    loading descriptor>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <HTTP> <101059> <[HTTP] Loading wl_management_internal1
    from WAR file: ./vignesh/.internal/wl_m
    anagement_internal1.war>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <HTTP> <101202> <wl_management_internal1:wl_management_internal1
    preparing>
    <Mar 15, 2004 6:07:28 PM EST> <Info> <DRS> <002504> <Slave for DataIdentifier
    DataIdentifierID: 1 registered with DRS with version 0
    >
    <Mar 15, 2004 6:07:30 PM EST> <Info> <Deployer> <149215> <The Slave Deployer did
    not receive an initial update after 2,000 milliseco
    nds.>
    <Mar 15, 2004 6:07:31 PM EST> <Info> <HTTP> <101206> <uddi:uddi activating>
    <Mar 15, 2004 6:07:34 PM EST> <Info> <HTTP> <101209> <uddi:uddi ready>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101208> <uddi:uddi starting>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101206> <uddiexplorer:uddiexplorer
    activating>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101209> <uddiexplorer:uddiexplorer
    ready>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101208> <uddiexplorer:uddiexplorer
    starting>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101206> <wl_management_internal1:wl_management_internal1
    activating>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101209> <wl_management_internal1:wl_management_internal1
    ready>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <HTTP> <101208> <wl_management_internal1:wl_management_internal1
    starting>
    <Mar 15, 2004 6:07:35 PM EST> <Info> <Deployer> <149208> <The Deployment Slave
    is initialized>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JTA> <110441> <Opening transaction log with
    driver version "j1.0" and synchronous write policy
    "Cache-Flush". For information on synchronous write policies, refer to the weblogic.management.configuration.ServerMBean
    javadoc or
    console on-line help.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JDBC> <001007> <RESUMING ... issued.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JDBC> <001007> <RESUMING DONE issued.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "MessageDrivenBeanConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "QueueConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "TopicConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040108> <User connection factory "DefaultConnectionFactory"
    is started.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <JMS> <040306> <JMS service is active now.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <HTTP> <101129> <Initializing Web services.>
    <Mar 15, 2004 6:07:36 PM EST> <Info> <HTTP> <101238> <HTTP log rotation is size
    based for the webserver: vignesh>
    <Mar 15, 2004 6:07:37 PM EST> <Info> <HTTP> <101051> <[HTTP vignesh] started>
    <Mar 15, 2004 6:07:37 PM EST> <Info> <Deployer> <149209> <The Deployment Slave
    is resuming>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <J2EE> <160003> <Deployed : DefaultWebApp>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <HTTP> <101133> <Initializing WEB server
    vignesh>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Deployer> <149210> <The Deployment Slave
    is resumed>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.specification.vendor = Sun Microsystems>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.runtime.name = Java(TM) 2 Runtime Environment
    , Standard Edition>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.protocol.handler.pkgs = weblogic.utils|weblog
    ic.utils|weblogic.net|weblogic.management>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.boot.library.path = /apps/bea/jdk131_03/jre/li
    b/sparc>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.version = 1.3.1_03-b03>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.xml.rpc.ServiceFactory = weblogic.webservice
    .core.rpc.ServiceFactoryImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryPar
    ser>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.vendor = Sun Microsystems Inc.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vendor.url = http://java.sun.com/>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    path.separator = :>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.name = Java HotSpot(TM) Server VM>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    file.encoding.pkg = sun.io>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    org.xml.sax.driver = weblogic.apache.xerces.parser
    s.SAXParser>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.specification.name = Java Virtual Machine
    Specification>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.dir = /apps/bea/user_projects/a201516>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.xml.soap.MessageFactory = weblogic.webservic
    e.core.soap.MessageFactoryImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.runtime.version = 1.3.1_03-b03>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.management.server = http://167.19.244.65:
    6102>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    vde.home = ./vignesh/ldap>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDele
    gateImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.awt.graphicsenv = sun.awt.X11GraphicsEnvironm
    ent>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    os.arch = sparc>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.io.tmpdir = /var/tmp/>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    line.separator =
    >
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.Name = vignesh>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.specification.vendor = Sun Microsystems In
    c.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.naming.factory.url.pkgs = weblogic.jndi.facto
    ries>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.awt.fonts = >
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    os.name = SunOS>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.library.path = /apps/bea/jdk131_03/bin/../jre
    /lib/sparc/server:/apps/bea/jdk131_03/bin/../jre/lib/sparc::/apps/bea/jdk131_03/bin/../jre/../lib/sparc:/apps/bea/weblogic700/server
    /lib/solaris:/apps/bea/weblogic700/server/lib/solaris/oci817_8:/usr/lib>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.implementation.version = 1.0>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.specification.name = Java Platform API Specif
    ication>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.class.version = 47.0>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.ProductionModeEnabled = false>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    os.version = 5.8>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.home = /users/a201516>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    javax.rmi.CORBA.PortableRemoteObjectClass = weblog
    ic.iiop.PortableRemoteObjectDelegateImpl>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.security.policy = /apps/bea/weblogic700/serve
    r/lib/weblogic.policy>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.timezone = America/New_York>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.awt.printerjob = sun.awt.motif.PSPrinterJob>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    bea.home = /apps/bea>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    file.encoding = 646>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.specification.version = 1.3>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.class.path = /apps/bea/jdk131_03/lib/tools.ja
    r:/apps/bea/weblogic700/server:/apps/bea/weblogic700/server/lib/weblogic_sp.jar:/apps/bea/weblogic700/server/lib/weblogic.jar:/users
    /a201516:/users/a201516/weblogic/myserver/serverclasses/xerces.jar:/users/a201516/weblogic/myserver/serverclasses/xalan.jar:/apps/we
    blogic/javaclasses/xml4j_2_0_15/xml4j.jar:/apps/weblogic/javaclasses/xmlbeans/lib/xml_swing11.jar:/apps/weblogic/javaclasses/javamai
    l-1.1.3/mail.jar:/users/a201516/weblogic/lib/weblogic510sp12.jar:/users/a201516/weblogic/lib/weblogicaux.jar:/users/a201516/weblogic
    /classes:/apps/weblogic/javaclasses/jgl3.1.0/lib/jgl3.1.0.jar:/users/a201516/tips/oracle_thin_driver.jar:/apps/weblogic/javaclasses/
    jce1.2/lib/jce1_2-do.jar:/apps/weblogic/javaclasses/javamail-1.1.3/mail.jar:/apps/weblogic/javaclasses/jaf-1.0.1/activation.jar:/app
    s/weblogic/javaclasses/junit3.5/junit.jar:/users/a201516/weblogic/lib/vp4jb_o.jar:/users/a201516/weblogic/lib/LDAPSimpleAuth.jar:/ap
    ps/warranty/weblogic/javaclasses/lib/uwc/javaftpapi.jar:/apps/motorclub2/weblogic/lib/log4j.jar:/apps/motorclub2/weblogic/lib/log4j_
    core.jar:/apps/motorclub2/weblogic/lib/sunjce_provider.jar:/apps/motorclub2/weblogic/lib/iText.jar:/apps/motorclub2/weblogic/lib/US_
    export_policy.jar:/apps/motorclub2/weblogic/lib/Verisign.jar:/apps/warranty/weblogic/javaclasses/lib/uwc/ldapjdk.jar:/users/a201516/
    weblogic/myserver/workdir/uwc/serverclasses:/users/a201516/weblogic/myserver/workdir/uwc/servletclasses:/users/a201516/weblogic/myse
    rver/workdir/dm/serverclasses:/users/a201516/weblogic/myserver/workdir/dm/servletclasses:/users/a201516/weblogic/myserver/servletcla
    sses:/users/a201516/weblogic/myserver/serverclasses:/apps/direct/weblogic/myserver/dmejb/CustomerSessionBean.jar:/apps/direct/weblog
    ic/myserver/dmejb/SalesEntityJar.jar:/apps/direct/weblogic/myserver/dmejb/CheckSalesEntityJar.jar:/apps/direct/weblogic/myserver/dme
    jb/SalesSessionJar.jar:/apps/direct/weblogic/myserver/dmejb/PlanSessionBean.jar:/apps/direct/weblogic/myserver/dmejb/SearchSession.j
    ar:/apps/direct/weblogic/myserver/dmejb/DSUSearchJar.jar:/apps/direct/weblogic/myserver/dmejb/LoginSession.jar:/users/a201516/weblog
    ic/myserver/uwcejb/OutClaimEntityDeployed.jar:/users/a201516/weblogic/myserver/uwcejb/OutClaimSessionDeployed.jar:/users/a201516/web
    logic/myserver/uwcejb/OutContractEntityDeployed.jar:/users/a201516/weblogic/myserver/uwcejb/OutContractSessionDeployed.jar:/users/a2
    01516/weblogic/myserver/uwcejb/OutProfileSessionDeployed.jar:/users/a201516/weblogic/myserver/gmmcejb/memberentitybeanjar.jar:/users
    /a201516/weblogic/myserver/gmmcejb/policyentitybeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/paymententitybeanjar.jar:/users/
    a201516/weblogic/myserver/gmmcejb/historyentitybeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/enrollsessionbeanjar.jar:/users/
    a201516/weblogic/myserver/gmmcejb/loginsessionbeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/memberaccsessionbeanjar.jar:/user
    s/a201516/weblogic/myserver/gmmcejb/historysessionbeanjar.jar:/users/a201516/weblogic/myserver/gmmcejb/updatesessionbeanjar.jar:/app
    s/gmppDirect2004/weblogic/myserver/dmejb/PriceSessionBean.jar:/users/a201516/weblogic/myserver/workdir/gmmc2/:/users/a201516/weblogi
    c/myserver/workdir/gmmc2/com/mic/gmmc/constants/>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.name = a201516>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.naming.factory.initial = weblogic.jndi.WLInit
    ialContextFactory>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.specification.version = 1.0>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.home = /apps/bea/jdk131_03/jre>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.specification.name = Java Management Extension
    s>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    user.language = en>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.specification.vendor = Sun Microsystems Inc.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.implementation.name = JMX RI>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vm.info = mixed mode>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    weblogic.security.SSL.trustedCAKeyStore = /apps/be
    a/weblogic700/server/lib/cacerts>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.version = 1.3.1_03>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.ext.dirs = /apps/bea/jdk131_03/jre/lib/ext>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.boot.class.path = /apps/bea/jdk131_03/jre/lib/
    rt.jar:/apps/bea/jdk131_03/jre/lib/i18n.jar:/apps/bea/jdk131_03/jre/lib/sunrsasign.jar:/apps/bea/jdk131_03/jre/classes>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vendor = Sun Microsystems Inc.>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    file.separator = />
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    java.vendor.url.bug = http://java.sun.com/cgi-bin/
    bugreport.cgi>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.io.unicode.encoding = UnicodeBig>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.cpu.endian = big>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.implementation.vendor = Sun Microsystems>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    jmx.specification.version = 1.0 Final Release>
    <Mar 15, 2004 6:07:38 PM EST> <Info> <Management> <141034> <Java system property:
    sun.cpu.isalist = sparcv9+vis sparcv9 sparcv8plus+
    vis sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 sparc>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=5803151,name=DefaultWebApp,context-path=/DefaultWebApp)]
    We
    bServiceServlet: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=2746710,name=uddi,context-path=/uddi)]
    WebServiceServlet: i
    nit>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=2746710,name=uddi,context-path=/uddi)]
    uddilistener: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=5823496,name=uddiexplorer,context-path=/uddiexplorer)]
    WebS
    erviceServlet: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <HTTP> <101047> <[ServletContext(id=2121551,name=wl_management_internal1,context-path=/wl_manag
    ement_internal1)] WebServiceServlet: init>
    <Mar 15, 2004 6:07:40 PM EST> <Info> <WebLogicServer> <000325> <License allows
    low strength (export) SSL.>
    <Mar 15, 2004 6:07:47 PM EST> <Info> <Security> <090116> <The Server vignesh is
    using the private key it retrieved from keystore ali
    ased by demokey.>
    <Mar 15, 2004 6:07:48 PM EST> <Info> <Security> <090125> <Loaded 14 trusted certificates
    from keystore file specified on the command
    line: /apps/bea/weblogic700/server/lib/cacerts>
    <Mar 15, 2004 6:07:48 PM EST> <Info> <WebLogicServer> <000307> <Exportable key
    maximum lifespan set to 500 uses.>
    <Mar 15, 2004 6:07:48 PM EST> <Info> <WebLogicServer> <000300> <Certificate contents:
    1 certificate(s):
    fingerprint = 56b7dfac29e39c21027973c248d8c1bb, not before = Tue May 30 17:38:01
    EDT 2000, not after = Thu May 13 17:38:01 EDT 200
    4, holder = C=US SP=California L=San Francisco O=BEA WebLogic CN=weblogic.bea.com
    [email protected] , issuer = C=US SP=Californi
    a L=San Francisco O=BEA WebLogic OU=Security CN=Demo Certificate Authority [email protected]
    , key = modulus length=65 exponent
    length=3
    >
    <Mar 15, 2004 6:07:48 PM EST> <Info> <WebLogicServer> <000310> <Using low strength
    (exportable) SSL.>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000355> <Thread "ListenThread.Default"
    listening on port 6100, ip address 1
    67.19.244.65>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000355> <Thread "SSLListenThread.Default"
    listening on port 6101, ip addres
    s 167.19.244.65>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000332> <Started WebLogic
    Managed Server "vignesh" for domain "a201516" run
    ning in Development Mode>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000365> <Server state
    changed to RUNNING>
    <Mar 15, 2004 6:07:48 PM EST> <Notice> <WebLogicServer> <000360> <Server started
    in RUNNING mode>

  • Windows update error code 800B0100

    I received updates last nite, and all installed except for "Update for Windows junk e-mail filter for X-64 based systems (December 2007) KB905866"
    I downloaded it from the MS site, and tried to install it manually, but it too failed.
    The error code translates into " No signature was present in the subject"
    Does this mean that the download is corrupted?

    Hi,
    I just would like to confirm if you are using X64 bit version of Windows Vista? There are two versions x86 and x64 for this update, please visit the following website to clarify.
    Description of the definition updates for Windows Mail
    http://support.microsoft.com/kb/905866
    If your Windows Vista is a X64 based system and this update is indeed has not been completely installed, I would like to provide you with the following steps to manually download and install it.
    Step 1: Download this update directly from the Download center manually but temporarily do not install it.
    Please choose the correct version and download the KB905866 update to your local disk but temporarily do not install it, try Step 2:
    Step 2: Log onto the computer in Safe Mode. 
    Restart the computer. Keep pressing the F8 key until the Windows Startup menu appears. Choose Safe Mode, and press Enter. 
    After booting into Safe Mode, please locate to the downloaded installation file and install them manually one by one.
    If it still cannot be installed, please let me know the detailed error message.
    Thanks and hope this helps.
    Sincerely,
    Robbin Meng
    Microsoft Online Community Support

  • WARNING! Server MOM has experienced a critical error.

    Good Afternoon,
    I work for a non-profit with a single Novell server that is mainly used for Faxpress and File Shares. Today before I was about to leave I was hit with
    WARNING! Server MOM has experienced a critical error. It is going down in 2 minutes. Save your files and logout.
    I went and got the error logs and the apend log showing the errors that took place. I am only copying and pasting the errors I received today. Not a history of errors.
    First up Error Log
    10-25-2011 10:51:29 am: SERVER-5.70-4
    Severity = 4 Locus = 18 Class = 6
    WARNING! Server MOM has experienced a critical error. It is going down in 2 minutes. Save your files and logout.
    10-25-2011 11:11:21 am: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [TCP 192.168.10.47:0524] has been registered as an NCP Service Address.
    10-25-2011 11:11:21 am: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [UDP 192.168.10.47:0524] has been registered as an NCP Service Address.
    10-25-2011 11:11:21 am: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [TCP 192.168.10.46:0524] has been registered as an NCP Service Address.
    10-25-2011 11:11:21 am: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [UDP 192.168.10.46:0524] has been registered as an NCP Service Address.
    10-25-2011 11:11:23 am: DS-10551.13-264
    Severity = 1 Locus = 17 Class = 19
    Bindery open requested by the SERVER
    10-25-2011 11:11:23 am: CE1000-7.34-0
    Severity = 0 Locus = 4 Class = 5 ID = 0x1070000
    CE1000-NW-000-Adapter 1-Board 1:
    Link is up. 100 Mbs Full Duplex
    10-25-2011 11:11:23 am: CE1000-7.34-0
    Severity = 0 Locus = 4 Class = 5 ID = 0x1070000
    CE1000-NW-000-Adapter 2-Board 5:
    Link is up. 100 Mbs Full Duplex
    10-25-2011 11:11:25 am: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [IPX 38DE5076:000001:451] has been registered as an NCP Service Address.
    10-25-2011 11:11:41 am: AFPTCP-2.1-259
    Severity = 1 Locus = 17 Class = 0
    Desktop on volume _ADMIN is unavailable to AFP clients.
    10-25-2011 11:11:55 am: DS-10551.13-262
    Severity = 1 Locus = 17 Class = 19
    Directory Services: Local database is open
    10-25-2011 11:45:30 am: SERVER-5.70-4
    Severity = 4 Locus = 18 Class = 6
    WARNING! Server MOM has experienced a critical error. It is going down in 2 minutes. Save your files and logout.
    10-25-2011 12:05:55 pm: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [TCP 192.168.10.47:0524] has been registered as an NCP Service Address.
    10-25-2011 12:05:55 pm: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [UDP 192.168.10.47:0524] has been registered as an NCP Service Address.
    10-25-2011 12:05:55 pm: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [TCP 192.168.10.46:0524] has been registered as an NCP Service Address.
    10-25-2011 12:05:55 pm: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [UDP 192.168.10.46:0524] has been registered as an NCP Service Address.
    10-25-2011 12:05:56 pm: DS-10551.13-264
    Severity = 1 Locus = 17 Class = 19
    Bindery open requested by the SERVER
    10-25-2011 12:05:57 pm: CE1000-7.34-0
    Severity = 0 Locus = 4 Class = 5 ID = 0x1070000
    CE1000-NW-000-Adapter 1-Board 1:
    Link is up. 100 Mbs Full Duplex
    10-25-2011 12:05:57 pm: CE1000-7.34-0
    Severity = 0 Locus = 4 Class = 5 ID = 0x1070000
    CE1000-NW-000-Adapter 2-Board 5:
    Link is up. 100 Mbs Full Duplex
    10-25-2011 12:06:00 pm: NCP-5.60-66
    Severity = 0 Locus = 14 Class = 19
    The Network Address [IPX 38DE5076:000001:451] has been registered as an NCP Service Address.
    10-25-2011 12:06:16 pm: AFPTCP-2.1-259
    Severity = 1 Locus = 17 Class = 0
    Desktop on volume _ADMIN is unavailable to AFP clients.
    10-25-2011 12:06:29 pm: DS-10551.13-262
    Severity = 1 Locus = 17 Class = 19
    Directory Services: Local database is open
    Next up Apend Log with the 2 instances.
    Tuesday, October 25, 2011 10:51:28.877 am
    Abend 1 on P00: Server-5.70.02-0: NCPIP: ReplyDisgard overflowed reply buffer!!
    Registers:
    CS = 0060 DS = 007B ES = 007B FS = 007B GS = 007B SS = 0068
    EAX = 00000002 EBX = 000005F0 ECX = 000005E8 EDX = 863BC980
    ESI = 000005F0 EDI = 00000001 EBP = 00000008 ESP = 186BDF4C
    EIP = 85026318 FLAGS = 00000216
    85026318 83C404 ADD ESP, 00000004
    EIP in NCPIP.NLM at code start +00003318h
    The violation occurred while processing the following instruction:
    85026318 83C404 ADD ESP, 00000004
    8502631B 8B44240C MOV EAX, [ESP+0C]
    8502631F 6AFE PUSH FE
    85026321 83C00C ADD EAX, 0000000C
    85026324 50 PUSH EAX
    85026325 E826250E7B CALL SERVER.NLM|atomic_and
    8502632A 83C408 ADD ESP, 00000008
    8502632D 8B44240C MOV EAX, [ESP+0C]
    85026331 F6400D TEST byte ptr [EAX+0D]
    85026334 0174518B ADD [ECX+EDX*2-75], ESI
    Running process: Server 00:87 Process
    Thread Owned by NLM: SERVER.NLM
    Stack pointer: 186BDA98
    OS Stack limit: 186B7020
    Scheduling priority: 67371008
    Wait state: 5050090 Wait for interrupt
    Stack: -8503BBDC (NCPIP.NLM|(Data Start)+BDC)
    --863BCA0E ?
    --863BCA0E ?
    --863BCA5C ?
    --863BC980 ?
    --186BEF00 ?
    --863BCA5C ?
    --863BCA34 ?
    --863BD044 ?
    80162219 (NWSA.NSS|NSSCase89+459)
    --863BCA34 ?
    --00000000 ?
    --00000001 ?
    --863BCA5C ?
    --000005E8 ?
    B7C834EF (NSS.NLM|NSSMPK_UnlockNss+1F)
    -B7F18C68 (NSS.NLM|NSSMPK_spinlock+0)
    --00000000 ?
    --186BE054 ?
    8026BAE5 (COMN.NSS|zGetInfo+A5)
    --00000000 ?
    --186BE0B4 ?
    --00000000 ?
    --00000000 ?
    --5060C960 ?
    --3DEABEC0 ?
    --00000001 ?
    --186BE798 ?
    --000004BC ?
    --00000000 ?
    --00000001 ?
    --186BE0B4 ?
    --00000000 ?
    --00000000 ?
    --00000050 ?
    --00000000 ?
    --00000001 ?
    --00000000 ?
    --B00771A0 ?
    --00000001 ?
    --186BE0B4 ?
    --00000001 ?
    --00000000 ?
    --186BE028 ?
    B633BB16 (LIBC.NLM|VerifyPathInfo+216)
    --00000001 ?
    --FFFFFFFF (LOADER.NLM|KernelTempAliasesEnd+FFF)
    --186BE0B4 ?
    --186BE750 ?
    --186BE080 ?
    --186BE54A ?
    --00000000 ?
    -82E11BC8 (WS2_32.NLM|ProtocolPath+0)
    --B007B700 ?
    -82E11BC8 (WS2_32.NLM|ProtocolPath+0)
    --186BE054 ?
    --B007B700 ?
    --87A36585 ?
    --B0075AC0 ?
    B633C721 (LIBC.NLM|BuildUnicodePath+161)
    --FFFFFFFF (LOADER.NLM|KernelTempAliasesEnd+FFF)
    --B0075AD2 ?
    --87A36585 ?
    --00000001 ?
    --00000000 ?
    --186BE768 ?
    --186BEC70 ?
    B634DFA7 (LIBC.NLM|kgFileOpenEx+517)
    --E31625E9 ?
    --186BEC70 ?
    --00000001 ?
    --00000000 ?
    --E2C7444E ?
    B634E89C (LIBC.NLM|kgFileOpenEx+E0C)
    --B0075AC0 ?
    --87A362C0 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    -00535953 (SERVER.NLM|RDebugPollTimeoutTimer+E11F)
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --5C435445 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    Additional Information:
    The NetWare OS detected a problem with the system while executing a process owned by NCPIP.NLM. It may be the source of the problem or there may have been a memory corruption.
    Loaded Modules:
    MONITOR.NLM NetWare Console Monitor
    Version 12.01.09 May 5, 2004
    Code Address: 21288000h Length: 00022AAFh
    Data Address: 20FC6000h Length: 00005ED1h
    NWSNUT.NLM NetWare NLM Utility User Interface
    Version 7.00 June 22, 2004
    Code Address: 21274000h Length: 00013417h
    Data Address: 0F4FA000h Length: 000006F8h
    CPWDPLSM.NLM Change Password PLSM
    Version 1.02 March 31, 2004
    Code Address: 92372000h Length: 0000DEBBh
    Data Address: 92381000h Length: 000013D0h
    LCMCIFS2.NLM Windows Native File Access Login Methods (Build 70 SP)
    Version 2.00.05 May 10, 2004
    Code Address: 92314000h Length: 0000E011h
    Data Address: 92324000h Length: 000016B0h
    LSMCIFS2.NLM Windows Native File Access Login Methods (Build 81 SP)
    Version 2.00.07 May 10, 2004
    Code Address: 922BE000h Length: 0000F011h
    Data Address: 922CF000h Length: 000017B0h
    LSMAFP3.NLM Macintosh Native File Access Login Methods (Build 103 SP)
    Version 2.00.11 May 10, 2004
    Code Address: 9224D000h Length: 0000F24Eh
    Data Address: 9225E000h Length: 000013C0h
    SASL.NLM Simple Authentication and Security Layer
    Version 1.02 June 17, 2004
    Code Address: 8DDB0000h Length: 0000053Eh
    Data Address: 8DDB2000h Length: 00000034h
    NMASLDAP.NLM NMAS LDAP Extension
    Version 1.20 March 31, 2004
    Code Address: 8D7A3000h Length: 00001F93h
    Data Address: 8D7A6000h Length: 000005D0h
    LDAPXS.NLM (Clib version)
    Version 3.01 November 13, 2003
    Code Address: 8D79C000h Length: 00003B05h
    Data Address: 8D7A1000h Length: 00000770h
    LBURP.NLM LDAP Bulkload Update/Replication Protocol service extension for Novell eDirectory 8.7.
    Version 10552.36 December 2, 2003
    Code Address: 8D786000h Length: 000010ECh
    Data Address: 8D789000h Length: 00000444h
    VOLSMS.NLM NSS Distributed Volume Manager (Build 207 MP)
    Version 3.22 May 14, 2004
    Code Address: 8DCF8000h Length: 00017211h
    Data Address: 8DCE8000h Length: 00001770h
    VMRPC.NLM DFS Volume Manager RPC interface (Build 349 MP)
    Version 3.22 May 14, 2004
    Code Address: 8DCEF000h Length: 00003623h
    Data Address: 8DCF4000h Length: 000002FDh
    NLSTRAP.NLM NetWare License Server Trap
    Version 5.02 February 19, 2004
    Code Address: 8DC03000h Length: 0000298Ah
    Data Address: 8DC07000h Length: 00000695h
    NDMPD.NLM Backup Exec NDMP Server Module
    Version 9.20 November 29, 2006
    Code Address: 8D937000h Length: 0005E633h
    Data Address: 8D8D8000h Length: 000192F0h
    AD_ASPI.NLM Backup Exec ASPI Device Driver for NetWare
    Version 7.50 September 25, 2006
    Code Address: 8D916000h Length: 000141B8h
    Data Address: 8D92C000h Length: 0000910Fh
    NRLTLI.NLM Backup Exec - Remote Workstation Backup Software
    Version 9.20 November 29, 2006
    Code Address: 8D6E8000h Length: 0000240Fh
    Data Address: 8D6EC000h Length: 00000BE0h
    TSANDS.NLM TSA for Novell eDirectory 7.x, 8.x
    Version 10551.61 December 2, 2003
    Code Address: 8D7B5000h Length: 0001254Ch
    Data Address: 8D6FC000h Length: 00001410h
    JNET.NLM Java jnet (based on 1.4.2_04)
    Version 1.42.03 June 15, 2004
    Code Address: 8D70A000h Length: 0000640Eh
    Data Address: 8D712000h Length: 00001110h
    DBNET6.NLM Debug Network IO Support
    Version 1.43.07 December 2, 2003
    Code Address: 8D3F8000h Length: 0001B5C8h
    Data Address: 8D39F000h Length: 000124B8h
    IPMCFG.NLM Web Interface for IP Address Management
    Version 1.01.14 October 14, 2003
    Code Address: 8D230000h Length: 0000A479h
    Data Address: 8D23C000h Length: 0000B610h
    NIRMAN.NLM TCPIP - NetWare Internetworking Remote Manager
    Version 1.04.02 January 27, 2004
    Code Address: 8D2E0000h Length: 0005F160h
    Data Address: 8D341000h Length: 00018E0Ah
    TCPSTATS.NLM Web Interface for Protocol Monitoring
    Version 6.50.10 June 20, 2003
    Code Address: 8D1C8000h Length: 0000E5ECh
    Data Address: 8D1D8000h Length: 00005460h
    NLSADPT2.NLM NLS and Metering adapter for iManager 2.0 plugin
    Version 2.00 September 9, 2003
    Code Address: 8D0CD000h Length: 0000665Dh
    Data Address: 8D0D5000h Length: 00000E7Dh
    NLSLRUP.NLM NLS - Usage Metering
    Version 4.01.06 March 16, 2004
    Code Address: 8D128000h Length: 0003BA0Ah
    Data Address: 8D165000h Length: 00010AE0h
    HWDETECT.NLM Novell Hardware Insertion/Removal Detection
    Version 1.19.05 February 20, 2003
    Code Address: 8CFEF000h Length: 00002B33h
    Data Address: 8CFF3000h Length: 00000D3Ch
    BKUPEXEC.NLM Backup Exec SureStart
    Version 9.20 November 29, 2006
    Code Address: 8D033000h Length: 0001D57Ch
    Data Address: 8D052000h Length: 00013040h
    RSYNCNRM.NLM Novell(R) Nterprise(TM) Branch Office(TM) RSYNC NRM interface
    Version 2.00 March 30, 2004
    Code Address: 8CD90000h Length: 0000821Ch
    Data Address: 8CD9A000h Length: 00003ED0h
    XNFS.NLM NetWare NFS - NFS Server for NetWare 6.5
    Version 1.01.11 May 10, 2004
    Code Address: 8CA45000h Length: 0001D6F2h
    Data Address: 8C8E2000h Length: 0000515Ch
    BTCPCOM.NLM BTCPCOM.NLM v7.90.000, Build 253
    Version 7.90 July 9, 2003
    Code Address: 8C8D2000h Length: 00004450h
    Data Address: 8C8D8000h Length: 00000CECh
    NISSWDD.NLM NetWare NFS - NIS Password Management Support Module
    Version 15.00.25 November 5, 2003
    Code Address: 8CA82000h Length: 00002E49h
    Data Address: 8CA86000h Length: 00002390h
    NDSILIB.NLM NetWare NFS - eDirectory Interface Library
    Version 15.02.24 June 15, 2004
    Code Address: 8CAE3000h Length: 0000D62Eh
    Data Address: 8CAF2000h Length: 0000BD50h
    NISBIND.NLM NetWare NFS - NIS Client Module
    Version 15.01.06 November 5, 2003
    Code Address: 8CA9A000h Length: 00007E69h
    Data Address: 8CA69000h Length: 00003870h
    UNICRYPT.NLM TCP/IP Encryption NLM
    Version 9.11 December 15, 1998
    Code Address: 8BDA8000h Length: 000004D9h
    Data Address: 8BDAA000h Length: 000007C8h
    NFSADMIN.NLM NetWare NFS - ConsoleOne Administration Support Module
    Version 15.01.02 October 27, 2003
    Code Address: 8C6F9000h Length: 00003ED1h
    Data Address: 8C6FE000h Length: 000008E0h
    PKERNEL.NLM NetWare NFS - Portmapper and RPC Module
    Version 15.01.19 May 10, 2004
    Code Address: 8C9A5000h Length: 00016E57h
    Data Address: 8C9BE000h Length: 0000F700h
    RPCBSTUB.NLM NetWare NFS - Portmapper & Rpcbind co-existance Support Module
    Version 15.00.14 November 17, 2003
    Code Address: 8C8CE000h Length: 00000041h
    Data Address: 8C8D0000h Length: 00000008h
    TSAFS.NLM SMS - File System Agent for NetWare 6.X
    Version 6.50.09 June 7, 2004
    Code Address: 8C4F3000h Length: 000557C2h
    Data Address: 8C54A000h Length: 0000C450h
    SPXS.MPM spxs Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8C4EF000h Length: 0000002Ah
    Data Address: 8C4F1000h Length: 00000018h
    SPXS.NLM NetWare SPX/SPXII Protocol (PTF)
    Version 5.14 January 18, 2000
    Code Address: 8C274000h Length: 0000A021h
    Data Address: 8C280000h Length: 00000FD8h
    Global Code Address: 8C282000h Length: 00001000h
    SMDR.NLM SMS - Storage Data Requestor
    Version 6.54.01 June 11, 2004
    Code Address: 8C15E000h Length: 0002F3F7h
    Data Address: 8C18F000h Length: 0000456Ch
    BSPXCOM.NLM BSPXCOM.NLM v7.90.000, Build 253
    Version 7.90 April 15, 2003
    Code Address: 8BF52000h Length: 0000530Ah
    Data Address: 8BF59000h Length: 00000BB0h
    NDSIMON.NLM NDS iMonitor 2.3
    Version 20210.61 June 2, 2004
    Code Address: 8C2C7000h Length: 0010BF39h
    Data Address: 8B9A7000h Length: 0008A640h
    NWBSRVCM.NLM NWBSRVCM.NLM v7.90.000, Build 230
    Version 7.90 March 20, 2001
    Code Address: 8BD5A000h Length: 00006776h
    Data Address: 8BD62000h Length: 00000AD0h
    MONDATA.NLM NetWare 5.x/6.x Monitor MIB
    Version 6.00 July 18, 2003
    Code Address: 8BD3A000h Length: 00008C9Fh
    Data Address: 8BD44000h Length: 00004DD1h
    SERVINST.NLM NetWare 5.x/6.x Instrumentation
    Version 5.00.10 September 26, 2003
    Code Address: 8BBDA000h Length: 00010C0Ch
    Data Address: 8BC99000h Length: 000074D4h
    NWTRAP.NLM NetWare 5.x/6.x Trap Monitor
    Version 6.00.01 October 10, 2003
    Code Address: 8BA49000h Length: 000065F3h
    Data Address: 8BB0E000h Length: 0000A2D0h
    HOSTMIB.NLM NetWare 5.x/6.x Host Resources MIB
    Version 5.00.13 April 27, 2004
    Code Address: 8BA53000h Length: 0000B560h
    Data Address: 8BA8E000h Length: 00003CE8h
    SERVICTL.NLM eDirectory Management Tool Box DSService eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8B859000h Length: 0000B932h
    Data Address: 8B866000h Length: 00004210h
    LSL.MPM lsl Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8B758000h Length: 000001C2h
    Data Address: 8B851000h Length: 00000138h
    SCHEMACR.NLM eDirectory Management Tool Box Schema eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8B7EB000h Length: 00012861h
    Data Address: 8B7FF000h Length: 0000FF1Ch
    SLP.MPM slp Memory Protection Module
    Version 5.70 March 26, 2003
    Code Address: 8B754000h Length: 000002E9h
    Data Address: 8B756000h Length: 00000090h
    STREAMS.MPM streams Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8B748000h Length: 000006E9h
    Data Address: 8B74A000h Length: 00000188h
    IPXSPX.MPM ipxspx Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8B75E000h Length: 00000C33h
    Data Address: 8B760000h Length: 000004B8h
    SCHEMATL.NLM eDirectory Management Tool Box Schema eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8B768000h Length: 00009CB2h
    Data Address: 8B773000h Length: 00005EDCh
    TLI.MPM tli Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8A5B1000h Length: 00001276h
    Data Address: 8A5B4000h Length: 00000344h
    REPAIRCR.NLM eDirectory Management Tool Box DSRepair eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8A78A000h Length: 0003D871h
    Data Address: 8B70D000h Length: 0001F980h
    SNMP.MPM snmp Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8A63D000h Length: 000009F7h
    Data Address: 8A63F000h Length: 000000FCh
    IPXS.MPM ipxs Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8A511000h Length: 0000002Ah
    Data Address: 8A513000h Length: 00000018h
    REPAIRTL.NLM eDirectory Management Tool Box DSRepair eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8A4E0000h Length: 00010562h
    Data Address: 8A4F2000h Length: 0001DCBCh
    TCPIP.MPM tcpip Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8A3ED000h Length: 00001EC3h
    Data Address: 8A3B3000h Length: 00000918h
    NETDB.MPM netdb Memory Protection Module
    Version 5.70 April 1, 2004
    Code Address: 8A38D000h Length: 00000AC5h
    Data Address: 8A38F000h Length: 000001C4h
    MERGECR.NLM eDirectory Management Tool Box DSMerge eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8A705000h Length: 0001B231h
    Data Address: 8A722000h Length: 00016BF4h
    SYSCALLS.NLM NetWare Operating System Call and Marshalling Library
    Version 5.60 April 29, 2004
    Code Address: 8A347000h Length: 0000ED18h
    Data Address: 8A357000h Length: 0000AEECh
    MERGETL.NLM eDirectory Management Tool Box DSMerge eMTool
    Version 10553.18 June 7, 2004
    Code Address: 8A29C000h Length: 0000B812h
    Data Address: 8A2A9000h Length: 0000F88Dh
    PMPORTAL.NLM NetWare License Information Portal
    Version 2.16 November 21, 2003
    Code Address: 8A210000h Length: 000071C9h
    Data Address: 8A219000h Length: 00004360h
    LANGMANI.NLM Novell Cross-Platform Language Manager
    Version 10210.40 November 10, 2003
    Code Address: 8A1E8000h Length: 000040F2h
    Data Address: 8A05F000h Length: 00001084h
    APRLIB.NLM Apache Portability Runtime Library 0.9.5
    Version 0.09.05 March 29, 2004
    Code Address: 8A0D1000h Length: 0002E098h
    Data Address: 8A101000h Length: 00008160h
    BACKUPCR.NLM eDirectory Management Tool Box DSBackup eMTool
    Version 10553.18 June 7, 2004
    Code Address: 89D88000h Length: 00009F21h
    Data Address: 8878B000h Length: 00002E48h
    BACKUPTL.NLM eDirectory Management Tool Box DSBackup eMTool
    Version 10553.18 June 7, 2004
    Code Address: 89DA2000h Length: 0000AF72h
    Data Address: 89DAE000h Length: 000052C8h
    NCPL.NLM Novell XTier Base Services
    Version 2.06 June 7, 2004
    Code Address: 89D78000h Length: 0000B48Ch
    Data Address: 89D85000h Length: 00001170h
    MYSQLD.NLM MySQL Database Server
    Version 4.00.18 May 25, 2004
    Code Address: 88D47000h Length: 001685ADh
    Data Address: 88EB1000h Length: 000B6F01h
    LOGGER.NLM eDirectory Management Tool Box Logger
    Version 10553.18 June 7, 2004
    Code Address: 88BA0000h Length: 0000DF82h
    Data Address: 88BAF000h Length: 0000664Ch
    STATUSLG.NLM Report and Notification Service
    Version 1.00 August 8, 2003
    Code Address: 88CED000h Length: 00058A5Eh
    Data Address: 88AF0000h Length: 000187E0h
    LLDAPSSL.NLM NetWare SSL Library for LDAP SDK (LibC version)
    Version 3.01 November 13, 2003
    Code Address: 88B3F000h Length: 0005F156h
    Data Address: 88A33000h Length: 0001882Dh
    EMSECURE.NLM eDirectory Management Tool Box Security Service
    Version 10553.18 June 7, 2004
    Code Address: 889F0000h Length: 00009852h
    Data Address: 889FB000h Length: 000033B0h
    LLDAPX.NLM NetWare Extension APIs for LDAP SDK (LibC version)
    Version 3.01 November 13, 2003
    Code Address: 889E9000h Length: 000057C5h
    Data Address: 88611000h Length: 00000DC0h
    RSS.NLM eDirectory Management Tool Box Remote Subscription Service
    Version 10553.18 June 7, 2004
    Code Address: 885FA000h Length: 00009932h
    Data Address: 88605000h Length: 0000261Ch
    ISCSILIB.NLM NetWare iSCSI Library
    Version 1.02 June 4, 2004
    Code Address: 8868F000h Length: 0001AAABh
    Data Address: 886AB000h Length: 00005D60h
    EMBOXMGR.NLM eDirectory Management Tool Box Manager
    Version 10553.18 June 7, 2004
    Code Address: 8866D000h Length: 00018D92h
    Data Address: 8898E000h Length: 0000790Ah
    EMBOXMSG.NLM eDirectory Management Tool Box Message API
    Version 10553.18 June 7, 2004
    Code Address: 88659000h Length: 0000B2F2h
    Data Address: 885D3000h Length: 0000273Dh
    IOCTL.NLM NetWare IoCtl Library
    Version 1.02 June 4, 2004
    Code Address: 885EB000h Length: 00001181h
    Data Address: 88637000h Length: 00002400h
    HT2SOAP.NLM eDirectory Management Tool Box HTTP to SOAP shim
    Version 10553.18 June 7, 2004
    Code Address: 88614000h Length: 00009B02h
    Data Address: 885C1000h Length: 00003408h
    DLOG.NLM Debug Memory Log Functions
    Version 6.05 November 18, 2003
    Code Address: 885C9000h Length: 00001FCDh
    Data Address: 885CC000h Length: 00003BB8h
    MYSQLD_SAFE. MySQL Database Server Monitor
    Version 4.00.18 May 25, 2004
    Code Address: 884EA000h Length: 000012CDh
    Data Address: 884ED000h Length: 00002264h
    LANGMAN.NLM Novell Cross-Platform Language Manager
    Version 10210.40 November 10, 2003
    Code Address: 88541000h Length: 0000E6A0h
    Data Address: 885AE000h Length: 0000B4A1h
    XI18N.NLM Novell Cross-Platform Internationalization Package
    Version 10210.40 November 10, 2003
    Code Address: 8855A000h Length: 0001CA12h
    Data Address: 88578000h Length: 00007EC8h
    EMBOX.NLM eDirectory Management Tool Box Engine
    Version 10553.18 June 7, 2004
    Code Address: 880E6000h Length: 00007B02h
    Data Address: 880EF000h Length: 00004F20h
    XIS11.NLM XML Integration Service
    Version 1.00.01 November 7, 2003
    Code Address: 881CE000h Length: 0009937Ch
    Data Address: 87F0D000h Length: 0004400Eh
    NLDAP.NLM LDAP Agent for Novell eDirectory 8.7.3
    Version 10552.88 May 21, 2004
    Code Address: 87F9E000h Length: 000739B8h
    Data Address: 88013000h Length: 00044AB4h
    CIFSPROX.NLM NMAS Proxy for CIFS (Build 130 MP)
    Version 3.22 May 24, 2004
    Code Address: 8787A000h Length: 0001300Eh
    Data Address: 878AA000h Length: 00005940h
    LDAPX.NLM NetWare Extension APIs for LDAP SDK (Clib version)
    Version 3.01 November 13, 2003
    Code Address: 87857000h Length: 000057D5h
    Data Address: 8785E000h Length: 00000DC0h
    CIFS.NLM CIFS Semantic Agent (Build 451 MP)
    Version 3.22 June 11, 2004
    Code Address: 87AB0000h Length: 00061751h
    Data Address: 879AE000h Length: 00011320h
    VLRPC.NLM DFS Volume Location Database (VLDB) RPC interface (Build 480 MP)
    Version 3.22 May 14, 2004
    Code Address: 87994000h Length: 00002FB3h
    Data Address: 87999000h Length: 000002FDh
    JSTCP.NLM Jetstream TCP Transport Layer (Build 537 MP)
    Version 3.22 May 14, 2004
    Code Address: 87933000h Length: 00004E90h
    Data Address: 87939000h Length: 000001E0h
    JSMSG.NLM Jetstream Message Layer (Build 557 MP)
    Version 3.22 May 14, 2004
    Code Address: 87940000h Length: 00006370h
    Data Address: 87948000h Length: 00000220h
    DFSLIB.NLM DFS Common Library (Build 450 MP)
    Version 3.22 May 14, 2004
    Code Address: 8789A000h Length: 000005C3h
    Data Address: 8789C000h Length: 00000080h
    AFPTCP.NLM AFPTCP (Build 288 SP)
    Version 2.01.13 May 14, 2004
    Code Address: 8776C000h Length: 0002D35Dh
    Data Address: 87404000h Length: 00009DF0h
    WSPDSI.NLM NetWare Winsock Service 1.0 NLM for Data Stream Interface
    Version 6.21 March 22, 2004
    Code Address: 873FE000h Length: 00002E80h
    Data Address: 87402000h Length: 000006D4h
    NFAP4NRM.NLM NFAP Simple Password Management NLM
    Version 1.04 December 8, 2003
    Code Address: 876E4000h Length: 000080A2h
    Data Address: 87704000h Length: 00017CA0h
    PORTAL.NLM NetWare Remote Manager NLM
    Version 3.00 June 11, 2004
    Code Address: 87598000h Length: 000E2889h
    Data Address: 874C4000h Length: 00060E90h
    NWIDK.NLM CDWare Volume Module
    Version 3.01.01 September 19, 2003
    Code Address: 874BC000h Length: 00004640h
    Data Address: 874C2000h Length: 00000730h
    SETMD4.NLM Windows Native File Access CIFS Library (Build 91 SP)
    Version 2.00.01 May 10, 2004
    Code Address: 87464000h Length: 0000125Ch
    Data Address: 87467000h Length: 00000130h
    NMASGPXY.NLM NMAS Generic Proxy
    Version 1.04 June 17, 2004
    Code Address: 873D4000h Length: 00000BC8h
    Data Address: 873D6000h Length: 00000098h
    ACPISBD.NLM System Bus Driver for ACPI compliant systems
    Version 1.04 June 1, 2004
    Code Address: 86D08000h Length: 00002590h
    Data Address: 86D0C000h Length: 00000461h
    NCM.NLM Novell Configuration Manager
    Version 1.14.03 March 27, 2003
    Code Address: 86D11000h Length: 0000484Ch
    Data Address: 86D17000h Length: 00000F00h
    WSPSSL.NLM NetWare Winsock Service 1.0 NLM for SSL
    Version 6.21 March 22, 2004
    Code Address: 872BA000h Length: 000062CBh
    Data Address: 872C2000h Length: 000108BFh
    HTTPSTK.NLM Novell Small Http Interface
    Version 3.00 April 20, 2004
    Code Address: 86EFB000h Length: 000206C7h
    Data Address: 86F1D000h Length: 000179C8h
    NILE.NLM Novell Secure Socket Services NLM
    Version 6.04.02 November 21, 2003
    Code Address: 871C6000h Length: 0005467Bh
    Data Address: 8704C000h Length: 0001F620h
    NPKIAPI.NLM Public Key Infrastructure Services
    Version 2.73 May 19, 2004
    Code Address: 86E75000h Length: 0002D797h
    Data Address: 87018000h Length: 0001751Fh
    NPKIT.NLM Public Key Infrastructure Services
    Version 2.73 June 1, 2004
    Code Address: 86F3B000h Length: 000268D0h
    Data Address: 86F63000h Length: 00013E93h
    NTLS.NLM Novell TLS Library
    Version 10810.04 March 25, 2004
    Code Address: 8714E000h Length: 00076F16h
    Data Address: 86F78000h Length: 0002DEE7h
    LLDAPSDK.NLM LDAP SDK Library (LibC version)
    Version 3.01 November 13, 2003
    Code Address: 86A52000h Length: 0001CEBBh
    Data Address: 86A70000h Length: 0000611Ch
    PKI.NLM Novell Certificate Server
    Version 2.73 May 19, 2004
    Code Address: 86DB1000h Length: 00084305h
    Data Address: 86D34000h Length: 0003E860h
    PKIAPI.NLM Public Key Infrastructure Services
    Version 2.23.08 April 1, 2004
    Code Address: 86D78000h Length: 00037141h
    Data Address: 8653A000h Length: 00006454h
    LDAPSDK.NLM LDAP SDK Library (Clib version)
    Version 3.01 November 13, 2003
    Code Address: 86679000h Length: 0001CE0Bh
    Data Address: 86530000h Length: 000066D9h
    NWUTIL.NLM Novell Utility Library NLM ()
    Version 1.03.05 November 21, 2003
    Code Address: 8647D000h Length: 000128D8h
    Data Address: 86491000h Length: 00019D14h
    CWD.NLM Perl 5.8.0 - Cwd Extension XS_VERSION: 2.06
    Version 3.20.02 January 14, 2004
    Code Address: 865D6000h Length: 000011FAh
    Data Address: 865D9000h Length: 0000066Ch
    ZIP.NLM Java zip (based on 1.4.2_04)
    Version 1.42.03 June 15, 2004
    Code Address: 86352000h Length: 0000AD8Ch
    Data Address: 8635E000h Length: 00001B90h
    JVMLIB.NLM Java jvmlib (based on 1.4.2_04)
    Version 1.42.03 June 15, 2004
    Code Address: 86371000h Length: 000170D4h
    Data Address: 8638A000h Length: 00008670h
    VERIFY.NLM Java verify (based on 1.4.2_04)
    Version 1.42.03 June 15, 2004
    Code Address: 862F1000h Length: 00008774h
    Data Address: 862FB000h Length: 00001BC0h
    JVM.NLM Java Hotspot 1.4.2_04 Interpreter
    Version 1.42.03 June 15, 2004
    Code Address: 866BE000h Length: 00214CCFh
    Data Address: 868D4000h Length: 00060590h
    IPMGMT.NLM TCPIP - NetWare IP Address Management
    Version 1.02.01 February 25, 2004
    Code Address: 861A0000h Length: 0002B97Dh
    Data Address: 861CD000h Length: 00005BF8h
    JSOCK6X.NLM NetWare 6.x Support For Java Sockets (JDK 1.4.2)
    Version 1.42.03 June 15, 2004
    Code Address: 85E11000h Length: 0000DCD8h
    Data Address: 85E20000h Length: 000027E4h
    JAVA.NLM java.nlm (based on 1.4.2_04) Build 04061513
    Version 1.42.03 June 15, 2004
    Code Address: 85E86000h Length: 00033925h
    Data Address: 85EBB000h Length: 0000C508h
    JSOCK.NLM Support For Java Sockets (loader)
    Version 1.42.03 June 15, 2004
    Code Address: 85E71000h Length: 00000086h
    Data Address: 85E73000h Length: 00000064h
    PERL.NLM Perl 5.8.0 - Script interpreter for NetWare
    Version 3.20.02 March 19, 2004
    Code Address: 86006000h Length: 000F0408h
    Data Address: 860F8000h Length: 0001FF3Ch
    NWSEC.NLM Scripting - Security Library
    Version 1.00.02 January 13, 2004
    Code Address: 85FB7000h Length: 00003B69h
    Data Address: 85FBC000h Length: 00000ADCh
    NETDB.NLM Network Database Access Module
    Version 4.10.26 June 27, 2003
    Code Address: 85F3A000h Length: 00013933h
    Data Address: 85F4F000h Length: 000025FCh
    ODINEB.NLM Novell ODI to Novell Event Bus Interface Module
    Version 1.10 August 13, 1999
    Code Address: 85CD0000h Length: 000012E9h
    Data Address: 85CD3000h Length: 0000077Ch
    SPMDCLNT.NLM Novell SPM Client for DClient
    Version 1.02 May 13, 2004
    Code Address: 85C4B000h Length: 00012DD8h
    Data Address: 85BAD000h Length: 00001380h
    IPXRTRNM.NLM IPX Router Network Management
    Version 6.60 June 24, 1998
    Code Address: 85B7F000h Length: 0000C223h
    Data Address: 85B8D000h Length: 000043C0h
    NMAS.NLM Novell Modular Authentication Service
    Version 2.68 June 17, 2004
    Code Address: 85B17000h Length: 000333C8h
    Data Address: 85B4C000h Length: 00007AD0h
    SPMNWCC.NLM Novell SPM Client for NWCC
    Version 1.01 May 13, 2004
    Code Address: 85B02000h Length: 00010B58h
    Data Address: 85B14000h Length: 00001340h
    IPXRTR.NLM IPX NLSP Router Production_02Dec2001
    Version 6.70.01 December 3, 2001
    Code Address: 85BB5000h Length: 00047B7Eh
    Data Address: 85BFE000h Length: 00017B10h
    GAMS.NLM Graded Authentication Management Service
    Version 1.03 April 28, 2004
    Code Address: 85AF3000h Length: 0000D867h
    Data Address: 85080000h Length: 000012B8h
    NSPDNS.NLM NetWare Winsock 2.0 NSPDNS.NLM Name Service Providers
    Version 6.20.03 September 8, 2003
    Code Address: 84529000h Length: 00002527h
    Data Address: 85884000h Length: 000004E4h
    SLPTCP.NLM SERVICE LOCATION TCP/UDP INTERFACE (RFC2165/RFC2608)
    Version 2.09 April 15, 2004
    Code Address: 85076000h Length: 0000385Ah
    Data Address: 8507B000h Length: 0000108Ch
    WSPIP.NLM NetWare Winsock Service 1.0 NLM for TCP and UDP
    Version 6.21.04 June 4, 2004
    Code Address: 85497000h Length: 0000F024h
    Data Address: 854A8000h Length: 0000226Ch
    NCPIP.NLM NetWare NCP Services over IP
    Version 6.01 June 8, 2004
    Code Address: 85023000h Length: 00016289h
    Data Address: 8503B000h Length: 000032C0h
    BSDSOCK.NLM Novell BSDSOCK Module
    Version 6.57.04 June 18, 2004
    Code Address: 857E1000h Length: 00010C59h
    Data Address: 857F3000h Length: 0000C0E0h
    TCPIP.NLM Novell TCP/IP Stack - Network module (NULL encryption)
    Version 6.57.06 June 1, 2004
    Code Address: 85108000h Length: 0004D8DCh
    Data Address: 85157000h Length: 00038160h
    TCP.NLM Novell TCP/IP Stack - Transport module (NULL encryption)
    Version 6.57.03 March 23, 2004
    Code Address: 851BA000h Length: 00024C3Bh
    Data Address: 852C5000h Length: 0007DDF0h
    NETLIB.NLM Novell TCPIP NETLIB Module
    Version 6.50.22 February 12, 2003
    Code Address: 851E2000h Length: 00005AACh
    Data Address: 851E9000h Length: 000D0710h
    CSLIND.NLM TCPIP CSL INDEPENDENCE MODULE 7Dec99 7Dec99
    Version 4.21 December 7, 1999
    Code Address: 850BF000h Length: 000003CCh
    Data Address: 850C1000h Length: 000024E0h
    LSAPI.NLM NLS LSAPI Library
    Version 5.02 January 7, 2003
    Code Address: 85004000h Length: 0000A51Bh
    Data Address: 85010000h Length: 00001B00h
    NLSAPI.NLM NLSAPI
    Version 5.02 August 7, 2003
    Code Address: 84F81000h Length: 000124DBh
    Data Address: 84F95000h Length: 000022A4h
    CE1000.LAN Intel(R) PRO/1000 Network Connections Driver
    Version 7.34 March 12, 2004
    Code Address: 84F19000h Length: 00012913h
    Data Address: 0066F000h Length: 00007491h
    ETHERTSM.NLM Novell Ethernet Topology Specific Module
    Version 3.89 January 27, 2003
    Code Address: 8400F000h Length: 000024D7h
    Data Address: 839D9000h Length: 000002BCh
    MSM.NLM Novell Multi-Processor Media Support Module
    Version 4.10 January 24, 2003
    Code Address: 84F09000h Length: 0000E5B3h
    Data Address: 83FEC000h Length: 00003DCCh
    CONNAUD.NLM NLS - Connection Metering
    Version 3.15 May 12, 2004
    Code Address: 84B1C000h Length: 00003453h
    Data Address: 84B21000h Length: 00000A9Ch
    NLSMETER.NLM NLS - Software Usage Metering Database
    Version 3.41 February 19, 2004
    Code Address: 84AF4000h Length: 0000E4D7h
    Data Address: 84B04000h Length: 0000759Ch
    NLSLSP.NLM NLS - License Service Provider
    Version 5.02 March 16, 2004
    Code Address: 84E77000h Length: 0006A5A7h
    Data Address: 84EE3000h Length: 0001F75Ch
    IPXS.NLM NetWare STREAMS IPX Protocol
    Version 4.10.01 February 12, 1998
    Code Address: 84E2B000h Length: 00001C95h
    Data Address: 84E2E000h Length: 000000ECh
    Global Code Address: 84E30000h Length: 00001000h
    CSL.NLM NetWare Call Support Layer For NetWare
    Version 2.06.02 January 13, 2000
    Code Address: 83FB4000h Length: 0000CB32h
    Data Address: 83FC2000h Length: 000028F4h
    BTRIEVE.NLM BTRIEVE.NLM v7.90.000
    Version 7.90 March 21, 2001
    Code Address: 83FA7000h Length: 000013BFh
    Data Address: 83FAA000h Length: 00000980h
    NWMKDE.NLM NWMKDE.NLM v7.94.251.000
    Version 7.94 December 11, 2001
    Code Address: 84403000h Length: 00053D55h
    Data Address: 84458000h Length: 0000F784h
    NWENC103.NLM NWENC103.NLM v7.90.000 (Text Encoding Conversion Library)
    Version 7.90 February 24, 2001
    Code Address: 846AC000h Length: 0004D0F5h
    Data Address: 846FB000h Length: 001B0208h
    NWAIF103.NLM nwaif103.nlm v7.94, Build 251 ()
    Version 7.94 November 30, 2001
    Code Address: 843B3000h Length: 00010E51h
    Data Address: 842ED000h Length: 00006828h
    PSVCS.NLM Portability Services
    Version 251.00 November 30, 2001
    Code Address: 8435D000h Length: 0001270Fh
    Data Address: 84371000h Length: 00009464h
    NWUCMGR.NLM NWUCMGR.NLM v1.5 Build 230
    Version 1.05 March 14, 2001
    Code Address: 84013000h Length: 0000D920h
    Data Address: 84022000h Length: 000078D4h
    SNMP.NLM Netware 4.x/5.x/6.x SNMP Service
    Version 4.17 January 23, 2004
    Code Address: 83E6C000h Length: 00014070h
    Data Address: 83E82000h Length: 000031E0h
    TLI.NLM NetWare Transport Level Interface Library
    Version 4.30.02 December 19, 2000
    Code Address: 83E50000h Length: 00003859h
    Data Address: 83E55000h Length: 00000164h
    Global Code Address: 83E57000h Length: 00001000h
    Global Data Address: 83E59000h Length: 00002000h
    NSPSAP.NLM NetWare Winsock 2.0 NLM NSPSAP.NLM Name Service Provider
    Version 6.20.02 September 8, 2003
    Code Address: 83DC8000h Length: 00001EE7h
    Data Address: 83DCB000h Length: 00000610h
    CONLOG.NLM System Console Logger
    Version 3.00.02 November 26, 2002
    Code Address: 83DB7000h Length: 000020DCh
    Data Address: 83DBB000h Length: 00001CC0h
    NCPIPX.NLM Novell NCP/IPX Stack NLM
    Version 5.60 January 22, 2004
    Code Address: 83D71000h Length: 000056BFh
    Data Address: 83D78000h Length: 00001308h
    WSPIPX.NLM NetWare Winsock Service 1.0 NLM for IPX and SPX
    Version 6.21 March 22, 2004
    Code Address: 83D86000h Length: 0000DB09h
    Data Address: 83D95000h Length: 00001762h
    IPXSPX.NLM NetWare IPX/SPX Protocol Stack NLM
    Version 5.60 November 21, 2001
    Code Address: 83D50000h Length: 0000FC52h
    Data Address: 83D62000h Length: 00009A3Ah
    DHOST.NLM Novell DHost Portability Interface 1.0.0 SMP
    Version 10010.94 November 3, 2003
    Code Address: 83CAD000h Length: 00006631h
    Data Address: 839FF000h Length: 0000234Ch
    NSPNDS.NLM NetWare Winsock 2.0 NSPNDS.NLM Name Service Provider
    Version 6.20 November 12, 2001
    Code Address: 83CB7000h Length: 00006547h
    Data Address: 839FD000h Length: 00000518h
    CALNLM32.NLM NetWare NWCalls Runtime Library
    Version 6.00 June 3, 2004
    Code Address: 83CEA000h Length: 0001B649h
    Data Address: 83462000h Length: 00000510h
    DS.NLM Novell eDirectory Version 8.7.3.2 SMP
    Version 10551.13 May 26, 2004
    Code Address: 84041000h Length: 00258D34h
    Data Address: 83913000h Length: 0007697Ch
    ROLLCALL.NLM RollCall NLM (101, API 1.0)
    Version 5.00 July 27, 1998
    Code Address: 8390F000h Length: 0000055Dh
    Data Address: 83911000h Length: 000002D4h
    SAL.NLM Novell System Abstraction Layer Version 2.2.0
    Version 20210.73 November 10, 2003
    Code Address: 8388F000h Length: 00007946h
    Data Address: 8368F000h Length: 00001230h
    NDSAUDIT.NLM Directory Services Audit
    Version 2.09 May 22, 2003
    Code Address: 83677000h Length: 00010844h
    Data Address: 83689000h Length: 00002ED0h
    POLIMGR.NLM NetWare License Policy Manager
    Version 6.22 February 27, 2004
    Code Address: 838EE000h Length: 00013C2Ch
    Data Address: 83885000h Length: 00008D68h
    TIMESYNC.NLM NetWare Time Synchronization Services
    Version 6.60.11 May 13, 2004
    Code Address: 83832000h Length: 0000DE1Ch
    Data Address: 83714000h Length: 00004200h
    CLXNLM32.NLM NetWare NWCLX Runtime Library
    Version 6.00 June 3, 2004
    Code Address: 836DC000h Length: 00001213h
    Data Address: 83707000h Length: 000001B0h
    DSAPI.NLM NetWare NWNet Runtime Library
    Version 5.05.08 March 9, 2004
    Code Address: 836D8000h Length: 00000043h
    Data Address: 836DA000h Length: 00000024h
    DSEVENT.NLM NetWare DSEvent Runtime Library
    Version 5.05.08 March 1, 2004
    Code Address: 836D4000h Length: 00000633h
    Data Address: 836D6000h Length: 00000034h
    NETNLM32.NLM NetWare NWNet Runtime Library
    Version 5.05.08 March 9, 2004
    Code Address: 838B8000h Length: 00034ED7h
    Data Address: 836CE000h Length: 00004D45h
    NCPNLM32.NLM NetWare NWNCP Runtime Library
    Version 6.00 June 3, 2004
    Code Address: 83898000h Length: 0001E1C3h
    Data Address: 00000000h Length: 00000000h
    CLNNLM32.NLM NetWare NWClient Runtime Library
    Version 6.00 June 3, 2004
    Code Address: 836C9000h Length: 00001C72h
    Data Address: 836CC000h Length: 00000130h
    CLIB.NLM (Legacy) Standard C Runtime Library for NLMs
    Version 5.90.10 February 24, 2004
    Code Address: 836E9000h Length: 0001898Eh
    Data Address: 83703000h Length: 00002FB0h
    NIT.NLM NetWare Interface Tools Library for NLMs
    Version 5.90.10 February 24, 2004
    Code Address: 83814000h Length: 0001C694h
    Data Address: 83710000h Length: 00000690h
    NLMLIB.NLM Novell NLM Runtime Library
    Version 5.90.10 February 24, 2004
    Code Address: 837E7000h Length: 0002630Dh
    Data Address: 8380F000h Length: 000038C0h
    STREAMS.NLM NetWare STREAMS PTF
    Version 6.00.04 October 25, 2002
    Code Address: 837D3000h Length: 000120CDh
    Data Address: 8373D000h Length: 000010A0h
    Global Code Address: 83740000h Length: 00001000h
    REQUESTR.NLM Novell NCP Requestor for NLMs
    Version 5.90.10 February 24, 2004
    Code Address: 8375F000h Length: 00020BF3h
    Data Address: 83781000h Length: 000010B0h
    THREADS.NLM Novell Threads Package for NLMs
    Version 5.90.10 February 24, 2004
    Code Address: 837A6000h Length: 00018BD8h
    Data Address: 837C0000h Length: 00011660h
    LIB0.NLM Novell Ring 0 Library for NLMs
    Version 5.90.10 February 24, 2004
    Code Address: 83A0D000h Length: 0002527Ah
    Data Address: 83A34000h Length: 00228050h
    MASV.NLM Mandatory Access Control Service
    Version 1.39.01 March 13, 2002
    Code Address: 83695000h Length: 0000EE86h
    Data Address: 8365E000h Length: 00002390h
    NSPSLP.NLM NetWare Winsock 2.0 NSPSLP.NLM Name Service Provider
    Version 6.20.02 September 8, 2003
    Code Address: 83668000h Length: 00005ED3h
    Data Address: 8366F000h Length: 00000B30h
    PMLODR.NLM PMLodr for NW65
    Version 1.25 May 30, 2003
    Code Address: 8364B000h Length: 0000E54Ah
    Data Address: 8365B000h Length: 00001630h
    SLP.NLM SERVICE LOCATION PROTOCOL (RFC2165/RFC2608)
    Version 2.09 April 15, 2004
    Code Address: 83628000h Length: 0001A368h
    Data Address: 834B1000h Length: 00005354h
    DSLOADER.NLM Novell eDirectory Version 8.7.3 Loader SMP
    Version 10551.13 May 26, 2004
    Code Address: 83418000h Length: 0000C76Ch
    Data Address: 83426000h Length: 00001224h
    XIM.XLM Novell NICI Signed Loader
    Version 26410.07 June 15, 2004
    Code Address: 82F90000h Length: 00020790h
    Data Address: 0009A000h Length: 000039B8h
    WS2_32.NLM NetWare Winsock 2.0 NLM
    Version 6.21.06 June 15, 2004
    Code Address: 82DD3000h Length: 00036C68h
    Data Address: 82E0B000h Length: 00011654h
    NCP.NLM NetWare Core Protocol (NCP) Engine
    Version 5.60 June 15, 2004
    Code Address: 82E24000h Length: 00026B2Fh
    Data Address: 82E4C000h Length: 00018B24h
    QUEUE.NLM NetWare Queue Services NLM
    Version 5.60 May 24, 2001
    Code Address: 82DC7000h Length: 00006D8Dh
    Data Address: 82DCF000h Length: 00000473h
    MALHLP.NLM NSS Configure help messages (Build 417 MP)
    Version 3.22 May 10, 2004
    Code Address: 8019F000h Length: 000000BAh
    Data Address: 801A1000h Length: 0000002Ah
    CDDVD.NSS NSS Loadable Storage System (LSS) for CD/UDF (Build 254 MP)
    Version 3.22 June 11, 2004
    Code Address: 801BA000h Length: 00013160h
    Data Address: 800CF000h Length: 00001060h
    NSSIDK.NSS NSS Pool Configuration Manager (Build 432 MP)
    Version 3.22 May 14, 2004
    Code Address: 800F8000h Length: 00003725h
    Data Address: 800FD000h Length: 00000090h
    PARTAPI.NLM Partition APIs for NetWare 6.1
    Version 2.00 April 17, 2002
    Code Address: 800AF000h Length: 00000007h
    Data Address: 00000000h Length: 00000000h
    VOLMN.NSS NSS Distributed Volume Manager (Build 394 MP)
    Version 3.22 May 14, 2004
    Code Address: 800E0000h Length: 00009FE3h
    Data Address: 800AD000h Length: 000005B0h
    NWSA.NSS NSS NetWare Semantic Agent (NWSA) (Build 1301 MP)
    Version 3.22 June 16, 2004
    Code Address: 80155000h Length: 00048A4Eh
    Data Address: 80487000h Length: 0009D310h
    ZLSS.NSS NSS Journaled Storage System (ZLSS) (Build 1798 MP)
    Version 3.22 June 7, 2004
    Code Address: 803C4000h Length: 000C1DE6h
    Data Address: 800B9000h Length: 0000BC30h
    MAL.NSS NSS Media Access Layer (MAL) (Build 599 MP)
    Version 3.22 May 14, 2004
    Code Address: 800B1000h Length: 00002F76h
    Data Address: 800B5000h Length: 00000170h
    MANAGE.NSS NSS Management Functions (Build 617 MP)
    Version 3.22 June 4, 2004
    Code Address: 80106000h Length: 00049605h
    Data Address: 80151000h Length: 00000C00h
    COMN.NSS NSS Common Support Layer (COMN) (Build 2756 MP)
    Version 3.22 May 28, 2004
    Code Address: 801D1000h Length: 000D5ADBh
    Data Address: 802A8000h Length: 00015B10h
    NSS.NLM NSS (Novell Storage Services) (Build 977 MP)
    Version 3.22 May 14, 2004
    Code Address: B7C74000h Length: 0002C820h
    Data Address: B7EEA000h Length: 00091480h
    SYSLOG.NLM NetWare Logfile Daemon
    Version 6.05.02 November 3, 2003
    Code Address: B7CA8000h Length: 00005E6Ah
    Data Address: B7CAF000h Length: 000260E4h
    LIBNSS.NLM Generic Library used by NSS (Build 187 MP)
    Version 3.22 May 10, 2004
    Code Address: B7C6C000h Length: 000042DCh
    Data Address: B7C72000h Length: 000003D0h
    NSSWIN.NLM NSS ASCI Window API Library (Build 204 MP)
    Version 3.22 May 10, 2004
    Code Address: B7C62000h Length: 000047DCh
    Data Address: B7C68000h Length: 000000FCh
    LOCNLM32.NLM NetWare NWLocale Runtime Library
    Version 6.00 June 3, 2004
    Code Address: B7C52000h Length: 0000458Bh
    Data Address: B7C58000h Length: 00000B80h
    UNICODE.NLM NetWare Unicode Runtime Library (UniLib-based) [optimized]
    Version 7.00 June 3, 2004
    Code Address: B7C47000h Length: 000016D5h
    Data Address: B7C4A000h Length: 00000504h
    FILESYS.NLM NetWare File System NLM
    Version 5.13 April 2, 2004
    Code Address: B7D18000h Length: 0008DEB7h
    Data Address: B7C21000h Length: 00012C80h
    LFS.NLM NetWare Logical File System NLM
    Version 5.12 January 23, 2004
    Code Address: B7BDF000h Length: 000094EDh
    Data Address: B7BEA000h Length: 000084BCh
    CONNMGR.NLM NetWare Connection Manager NLM
    Version 5.60 June 16, 2004
    Code Address: B7BF6000h Length: 00011475h
    Data Address: B7C09000h Length: 00003C78h
    ACPIPWR.NLM ACPI Power Management Driver for ACPI compliant systems
    Version 1.04 June 1, 2004
    Code Address: B7A31000h Length: 00000C18h
    Data Address: B7BD3000h Length: 0000091Ch
    ACPICMGR.NLM ACPI Component Manager for ACPI compliant systems
    Version 1.04 June 1, 2004
    Code Address: B7A41000h Length: 00000AFCh
    Data Address: B7A43000h Length: 00000344h
    ADPT160M.HAM Adaptec Ultra160 Host Adapter Module
    Version 18.31.13 November 19, 2003
    Code Address: B7B9B000h Length: 0002001Fh
    Data Address: 7A39A000h Length: 00003860h
    PEDGE3.HAM PERC 3/SC/DC(L)/QC, 4/SC/DC/Di, 4e/SC/DC/Di/Si & CERC HAM Driver.
    Version 7.01.24 April 13, 2004
    Code Address: B7B78000h Length: 00008612h
    Data Address: 7A3C5000h Length: 00004744h
    IDEATA.HAM Novell ATA/IDE/ATAPI Host Adapter Module
    Version 4.15 June 4, 2004
    Code Address: B7B58000h Length: 0000C911h
    Data Address: 7A3ED000h Length: 0000429Ch
    QLCSFTE.CDM QLogic SCSI Enclosure SAF-TE Processor CDM
    Version 1.00.01 May 24, 2000
    Code Address: B7B55000h Length: 000010DEh
    Data Address: 7A415000h Length: 00000034h
    SCSIHD.CDM Novell NetWare SCSI Fixed Disk Custom Device Module
    Version 3.02.06 April 21, 2004
    Code Address: B7B4F000h Length: 00004A4Eh
    Data Address: 7A454000h Length: 00000DB0h
    IDECD.CDM Novell ATAPI CD-ROM/DVD-ROM Custom Device Module
    Version 4.00 April 24, 2004
    Code Address: B7AC2000h Length: 00003978h
    Data Address: 7A4D6000h Length: 00000AECh
    ACPIDRV.PSM ACPI Platform Support Module for ACPI compliant systems
    Version 1.04 June 1, 2004
    Code Address: B7A49000h Length: 0000A8C2h
    Data Address: 7A4DD000h Length: 0000BD34h
    ACPICA.NLM ACPI Component Architecture for ACPI compliant systems
    Version 1.04 June 1, 2004
    Code Address: B79B7000h Length: 0002D17Ah
    Data Address: B79E6000h Length: 0001158Ah
    ACPIASL.NLM ACPI Architecture Services Layer for ACPI compliant systems
    Version 1.04 June 1, 2004
    Code Address: B7985000h Length: 00000F9Bh
    Data Address: B7987000h Length: 000001DCh
    UMSSHIM.NLM Novell USB Mouse Shim
    Version 1.03 November 19, 2003
    Code Address: B78FE000h Length: 00000B59h
    Data Address: 7A4EB000h Length: 00000428h
    UKBDSHIM.NLM Novell USB Keyboard Shim
    Version 1.03 November 19, 2003
    Code Address: B78EA000h Length: 00000FD1h
    Data Address: 7A4EC000h Length: 000005C4h
    EHCIDRV.CAD Novell Universal Serial Bus EHCI driver
    Version 1.02 May 10, 2004
    Code Address: B7026000h Length: 00005B6Fh
    Data Address: 7A500000h Length: 00001B58h
    UHCIDRV.CAD Novell Universal Serial Bus UHCI driver
    Version 1.04 May 10, 2004
    Code Address: B7038000h Length: 00004B99h
    Data Address: 7A520000h Length: 000006CCh
    CIOSMLID.CLS Novell CIOS MLID Driver
    Version 1.00 May 28, 2003
    Code Address: B7031000h Length: 0000539Ah
    Data Address: 7A521000h Length: 0000143Ch
    LSL.NLM Novell NetWare Link Support Layer
    Version 4.81 May 7, 2004
    Code Address: B7051000h Length: 0000A617h
    Data Address: B705D000h Length: 00009EC8h
    CIOS.NLM Consolidated IO System
    Version 1.21 May 10, 2004
    Code Address: B6FB8000h Length: 0004D6C2h
    Data Address: 3DF7C000h Length: 0001BC5Ah
    NWPALOAD.NLM NetWare 5 NWPA Load Utility
    Version 3.00 July 10, 2000
    Code Address: B6E1F000h Length: 00000007h
    Data Address: 00000000h Length: 00000000h
    NWPA.NLM NetWare 6.5 NetWare Peripheral Architecture NLM
    Version 3.20.04 May 7, 2004
    Code Address: B6F04000h Length: 00016906h
    Data Address: B6E44000h Length: 000029B0h
    MM.NLM NetWare 6.5 Media Manager
    Version 3.20.10 June 15, 2004
    Code Address: B6E57000h Length: 00047E22h
    Data Address: B6DF6000h Length: 0000B378h
    SGUID.NLM NetWare GUID Services
    Version 6.01 September 27, 2002
    Code Address: B6D80000h Length: 00000E04h
    Data Address: B6DF4000h Length: 0000018Ah
    NBI.NLM NetWare Bus Interface
    Version 3.00.04 June 9, 2004
    Code Address: B6E0B000h Length: 0000D16Dh
    Data Address: B6D78000h Length: 00003C9Dh
    NEB.NLM Novell Event Bus
    Version 5.60 December 11, 2002
    Code Address: B6D82000h Length: 00005843h
    Data Address: B6D89000h Length: 0000097Ch
    DIAG500.NLM Diagnostic/coredump utility for NetWare 5.x/6.x
    Version 3.00 May 11, 2004
    Code Address: B6D5D000h Length: 00006CF0h
    Data Address: B6DA0000h Length: 0001D90Ch
    CPUCHECK.NLM NetWare Processor Checking Utility
    Version 5.60.01 October 21, 2003
    Code Address: B6D6F000h Length: 00001A04h
    Data Address: B6D72000h Length: 00004B0Ch
    NWKCFG.NLM NetWare Kernel Config NLM
    Version 2.16 April 7, 2004
    Code Address: B6D53000h Length: 00003EEFh
    Data Address: B6D58000h Length: 00003CA4h
    CDBE.NLM NetWare Configuration DB Engine
    Version 6.01 May 10, 2004
    Code Address: B6AC1000h Length: 00011466h
    Data Address: B6AD4000h Length: 000160A2h
    FATFS.NLM FAT Filesystem Module for NetWare
    Version 1.13 June 2, 2004
    Code Address: B627F000h Length: 00023CCEh
    Data Address: B62A4000h Length: 0002F68Fh
    CIOSSHIM.NLM Novell CIOS Platform Shim
    Version 1.11 March 26, 2004
    Code Address: B6213000h Length: 000033E7h
    Data Address: B6218000h Length: 000058ECh
    LIBC.NLM Standard C Runtime Library for NLMs [optimized, 5]
    Version 7.05 June 23, 2004
    Code Address: B6323000h Length: 000B35B6h
    Data Address: B0179000h Length: 0003D816h
    PVER500.NLM NetWare 6.XX Version Library
    Version 3.00 February 25, 2003
    Code Address: B016B000h Length: 0000068Fh
    Data Address: B016D000h Length: 00000360h
    SERVER.NLM NetWare Server Operating System
    Version 5.70.02 June 11, 2004
    Code Address: 002047E0h Length: 0015610Ah
    Data Address: 004047E0h Length: 001C7820h
    Server MOM halted Tuesday, October 25, 2011 11:45:30.404 am
    Abend 1 on P00: Server-5.70.02-0: NCPIP: ReplyDisgard overflowed reply buffer!!
    Registers:
    CS = 0008 DS = 0068 ES = 0068 FS = 0068 GS = 007B SS = 0068
    EAX = 00000002 EBX = 000005EF ECX = 000005E7 EDX = 90247000
    ESI = 000005EF EDI = 00000001 EBP = 00000008 ESP = B706AF4C
    EIP = 85070318 FLAGS = 00200206
    85070318 83C404 ADD ESP, 00000004
    EIP in NCPIP.NLM at code start +00003318h
    The violation occurred while processing the following instruction:
    85070318 83C404 ADD ESP, 00000004
    8507031B 8B44240C MOV EAX, [ESP+0C]
    8507031F 6AFE PUSH FE
    85070321 83C00C ADD EAX, 0000000C
    85070324 50 PUSH EAX
    85070325 E846D3097B CALL SERVER.NLM|atomic_and
    8507032A 83C408 ADD ESP, 00000008
    8507032D 8B44240C MOV EAX, [ESP+0C]
    85070331 F6400D TEST byte ptr [EAX+0D]
    85070334 0174518B ADD [ECX+EDX*2-75], ESI
    Running process: Server 00:3 Process
    Thread Owned by NLM: SERVER.NLM
    Stack pointer: B706BF60
    OS Stack limit: B7064020
    Scheduling priority: 67371008
    Wait state: 50500F0 Waiting for work
    Stack: -85085BDC (NCPIP.NLM|(Data Start)+BDC)
    --9024708E ?
    --9024708E ?
    --902470DC ?
    --90247000 ?
    --B706BF00 (EHCIDRV.CAD|EHCIDebugDumpRegs+9550)
    --902470DC ?
    --902470B4 ?
    --902476C3 ?
    80184219 (NWSA.NSS|NSSCase89+459)
    --902470B4 ?
    --00000000 ?
    --00000001 ?
    --902470DC ?
    --000005E7 ?
    B7C9E4EF (NSS.NLM|NSSMPK_UnlockNss+1F)
    -B7F35C68 (NSS.NLM|NSSMPK_spinlock+0)
    --00000000 ?
    --B706B054 (EHCIDRV.CAD|EHCIDebugDumpRegs+86A4)
    8028DAE5 (COMN.NSS|zGetInfo+A5)
    --00000000 ?
    --B706B0B4 (EHCIDRV.CAD|EHCIDebugDumpRegs+8704)
    --00000000 ?
    --00000000 ?
    --2CEC1D20 ?
    --3DEABEC0 ?
    --00000001 ?
    --B706B798 (EHCIDRV.CAD|EHCIDebugDumpRegs+8DE8)
    --000004BC ?
    --00000000 ?
    --00000001 ?
    --B706B0B4 (EHCIDRV.CAD|EHCIDebugDumpRegs+8704)
    --00000000 ?
    --00000000 ?
    --00000050 ?
    --00000000 ?
    --00000001 ?
    --00000000 ?
    --B00771A0 ?
    --00000001 ?
    --B706B0B4 (EHCIDRV.CAD|EHCIDebugDumpRegs+8704)
    --00000001 ?
    --00000000 ?
    --B706B028 (EHCIDRV.CAD|EHCIDebugDumpRegs+8678)
    B633BB16 (LIBC.NLM|VerifyPathInfo+216)
    --00000001 ?
    --FFFFFFFF (LOADER.NLM|KernelTempAliasesEnd+FFF)
    --B706B0B4 (EHCIDRV.CAD|EHCIDebugDumpRegs+8704)
    --B706B750 (EHCIDRV.CAD|EHCIDebugDumpRegs+8DA0)
    --B706B080 (EHCIDRV.CAD|EHCIDebugDumpRegs+86D0)
    --B706B54A (EHCIDRV.CAD|EHCIDebugDumpRegs+8B9A)
    --00000000 ?
    -82E3EBC8 (WS2_32.NLM|ProtocolPath+0)
    --B007B8C0 ?
    -82E3EBC8 (WS2_32.NLM|ProtocolPath+0)
    --B706B054 (EHCIDRV.CAD|EHCIDebugDumpRegs+86A4)
    --B007B8C0 ?
    --87D8C9A5 ?
    --B0075AC0 ?
    B633C721 (LIBC.NLM|BuildUnicodePath+161)
    --FFFFFFFF (LOADER.NLM|KernelTempAliasesEnd+FFF)
    --B0075AD2 ?
    --87D8C9A5 ?
    --00000001 ?
    --00000000 ?
    --B706B768 (EHCIDRV.CAD|EHCIDebugDumpRegs+8DB8)
    --B706BC70 (EHCIDRV.CAD|EHCIDebugDumpRegs+92C0)
    B634DFA7 (LIBC.NLM|kgFileOpenEx+517)
    --82F03B9F ?
    --B706BC70 (EHCIDRV.CAD|EHCIDebugDumpRegs+92C0)
    --00000001 ?
    --00000000 ?
    --ECF04369 ?
    B634E89C (LIBC.NLM|kgFileOpenEx+E0C)
    --B0075AC0 ?
    --87D8C6E0 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    -00535953 (SERVER.NLM|RDebugPollTimeoutTimer+D77F)
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --5C435445 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    --00000000 ?
    Additional Information:
    The NetWare OS detected a problem with the system while executing a process owned by NCPIP.NLM. It may be the source of the problem or there may have been a memory corruption.
    There was another long list that I omitted to save space and actually be able to post this. I can post that if need be.

    SERVER.NLM NetWare Server Operating System
    Version 5.70.02 June 11, 2004
    Your server appears to be on SP2. Please apply the current SP, nw65sp8.

  • KGCore plug-in error trying to open Final Cut Pro 6

    I posted this same question under the Final Cut Pro X forum but it was suggested that I post it here instead.  Please forgive the double posting.
    I recently had to replace the power supply in my MacPro G5 PPC (Os X 10.5.4). Since doing so, I keep getting the following error when I try to open FCP 6:
    The application Final Cut Pro quit unexpectedly. The problem may have been caused by the KGCore plug-in. When I click Ignore, the same error occurs.
    I've uninstalled and reinstalled the FCP 6 Suite of applications at least 10 times, manually and using the FCS Remover on the digitalrebellion site. I appreciate your suggestions. I've pasted the log file below.  Thank you in advance for your help.
    Process:            [220]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCutPro
    Version:         6.0 (6.0)
    Build Info:      FCPApp-705022005~2
    Code Type:       PPC (Native)
    Parent Process:  launchd [122]
    Date/Time:       2015-01-26 17:15:17.034 -0500
    OS Version:      Mac OS X 10.5.4 (9E25)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000c0000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   libSystem.B.dylib             0xffff8a98 __memcpy + 760
    1   KGCore                         0x00af489c KGMemoryCopy + 32
    2                                  0x002896c0 StreamGetBytesInner(KGStreamRecord*, unsigned char, void*, long*) + 448
    3                                  0x00289980 pKGStreamGetInt32(KGStreamRecord*, long*) + 44
    Thread 1:
    0   libSystem.B.dylib             0x92fc6e4c __semwait_signal + 12
    1   libSystem.B.dylib             0x93003a00 _pthread_cond_wait + 1580
    2   libGLProgrammability.dylib     0x939bc298 glvmDoWork + 120
    3   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 2:
    0   libSystem.B.dylib             0x92fc0498 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib             0x9300390c _pthread_cond_wait + 1336
    2                                  0x0044fe2c Synchronizable::Wait() + 44
    3                                  0x0043b9ac DisplayQueue::Run() + 720
    4                                  0x00479920 Thread::RunHelper(void*) + 28
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 3:
    0   libSystem.B.dylib             0x92fc0498 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib             0x9300390c _pthread_cond_wait + 1336
    2                                  0x0044fe2c Synchronizable::Wait() + 44
    3                                  0x004f2a68 WorkUnitPerformer::Run() + 68
    4                                  0x00479920 Thread::RunHelper(void*) + 28
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 4:
    0   libSystem.B.dylib             0x92fc0438 mach_msg_trap + 8
    1   libSystem.B.dylib             0x92fc735c mach_msg + 56
    2   com.apple.CoreFoundation       0x90e12568 CFRunLoopRunSpecific + 1812
    3   com.apple.CoreFoundation       0x90e12df0 CFRunLoopRun + 60
    4   com.apple.AVCVideoServices     0x00d95f78 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 164
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 5:
    0   libSystem.B.dylib             0x92fc0438 mach_msg_trap + 8
    1   libSystem.B.dylib             0x92fc735c mach_msg + 56
    2   com.apple.CoreFoundation       0x90e12568 CFRunLoopRunSpecific + 1812
    3   com.apple.audio.CoreAudio     0x90633e3c HALRunLoop::OwnThread(void*) + 212
    4   com.apple.audio.CoreAudio     0x90633c80 CAPThread::Entry(CAPThread*) + 104
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 0 crashed with PPC Thread State 32:
      srr0: 0xffff8a98  srr1: 0x0200d030   dar: 0xc0000000 dsisr: 0x02200000
        r0: 0x00000007    r1: 0xbfffc230    r2: 0x00004000    r3: 0xbfffc33f
        r4: 0x0ff42d21    r5: 0x00003fff    r6: 0x00000010    r7: 0x00000020
        r8: 0x00000030    r9: 0xc0000000   r10: 0x00000000   r11: 0x00af8090
       r12: 0xc0000040   r13: 0x00000000   r14: 0x00000000   r15: 0x00000000
       r16: 0x00000000   r17: 0x1323e9d0   r18: 0x00795780   r19: 0x00000000
       r20: 0x00614994   r21: 0x006149a0   r22: 0x00745598   r23: 0x00000000
       r24: 0x00000001   r25: 0xbfffc33f   r26: 0x00000001   r27: 0x00087ffd
       r28: 0xbfffc338   r29: 0x00000016   r30: 0x00004000   r31: 0x1323e9d0
        cr: 0x4804244f   xer: 0x20000000    lr: 0x00af48a0   ctr: 0x00000006
    vrsave: 0xfff80000
    Binary Images:
        0x1000 -   0x742fff +   ??? (???)
      0xaf2000 -   0xaf7ff7 +KGCore ??? (???) /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
      0xafd000 -   0xafefff  com.apple.iokit.dvcomponentglue 1.9.5 (1.9.5) <143d5a0b230245035fb6364b29f6b76b> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
      0xb02000 -   0xb12fef  com.apple.AERegistration 1.2 (68) /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
      0xb24000 -   0xb2cfd7  com.apple.AEProfiling 1.2 (18) /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
      0xb34000 -   0xcadfff  com.apple.prokit 4.5 (722) <b40ef07866b6ecc8843a10f6d2440037> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      0xd83000 -   0xdb6fcb  com.apple.AVCVideoServices 1.0 (38) /Applications/Final Cut Pro.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServi ces
      0xdd7000 -   0xdeaff7  com.apple.framework.promedia.ProMediaIOUnit 1.0.0 (1) /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIOUnit.framework/Versions/A/ProMediaIOUnit
      0xdf7000 -   0xe01fe3  com.apple.framework.promediaio 1.0.0 (1) /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIO.framework/Versions/A/ProMediaIO
      0xe07000 -   0xe7bfdb  com.apple.ProFX 1.2 (1.2) /Library/Frameworks/ProFX.framework/Versions/A/ProFX
      0xea6000 -   0xfa8ffd  com.apple.DiskImagesFramework 10.5.3 (195) <f3ea8095643e26cb666f3ee0e5a204b1> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x100b000 -  0x1061ff7  com.apple.proapps.MIO 1.0 (1.0) /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x109d000 -  0x10a9fc3  com.apple.finalcutstudio.prometadatasupport 0.5 (1.0) /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0x10b3000 -  0x10d4ff1  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x10dc000 -  0x110fffb  com.apple.MediaKit 9.1 (396) <848fe31d13f65a08215960eebd9cf163> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x111f000 -  0x11edff5  com.apple.DiscRecording 4.0.1 (4010.4.5) <9efa7b74a943c19af985e96e74fab558> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1254000 -  0x1281ffb  libcurl.4.dylib ??? (???) <bd94f6417b93e0174fa282255dd6d6d1> /usr/lib/libcurl.4.dylib
    0x12ab000 -  0x12acfdb +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x1500000 -  0x1544fff  com.apple.vmutils 4.1 (104) <16b044379a7172567dae7a54ded38ffb> /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x17e3000 -  0x17eafc7  com.apple.proapps.mrcheckpro 1.4 (179) /Applications/Final Cut Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x3cef000 -  0x3de8ff3  com.apple.RawCamera.bundle 2.0.7 (2.0.7) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x3e2f000 -  0x3e4bfff  GLRendererFloat ??? (???) <a16b151dfe35dd65da0ec9a149f5cdba> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x3e98000 -  0x3ec5fcb  com.apple.FinalCutPro.Plugins.AfterEffects 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0x3ecc000 -  0x3ed0fd3  com.apple.FinalCutPro.Plugins.AudioGroupsExport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0x3ed3000 -  0x3eecfef  com.apple.FinalCutPro.Plugins.AudioMixer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0x3ef8000 -  0x3efbfc3  com.apple.FinalCutPro.Plugins.FinalTouchExport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FinalTouchExport.bundle/Contents/MacOS/FinalTouc hExport
    0x8ea6000 -  0x901cffb  GLEngine ??? (???) <e546c359794d516a4ec464c774b1300a> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x904e000 -  0x92a4ff5  com.apple.ATIRadeon9700GLDriver 1.5.28 (5.2.8) <a5b23527a4689e76f7860770d3820d0d> /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0xa3a5000 -  0xa3c1ffb  com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xa3d7000 -  0xa3f8fff  libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0xa3ff000 -  0xa4acff3  com.apple.FinalCutPro.Plugins.Browser 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0xa4c4000 -  0xa4cafdb  com.apple.FinalCutPro.Plugins.Cache Manager 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0xa4cd000 -  0xa4e2fff  com.apple.FinalCutPro.CinemaTools 4.0 (4.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0xa4eb000 -  0xa4f6fe1  com.apple.FinalCutPro.Plugins.CTHelper 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0xa4fb000 -  0xa521fff  com.apple.FinalCutPro.Plugins.EditTape 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0xa52e000 -  0xa578ff0  com.apple.FinalCutPro.Plugins.EDL Export 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0xa58c000 -  0xa594ff3  com.apple.FinalCutPro.Plugins.Effect Builder 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0xa597000 -  0xa5a3fe7  com.apple.FinalCutPro.Plugins.FCPExtPluginSupport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0xa5a9000 -  0xa5dbfda  com.apple.FinalCutPro.Plugins.FCS Engine 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0xa5e2000 -  0xa5f3fe3  com.apple.FinalCutPro.Plugins.FilterCustomEd 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0xa5f6000 -  0xa60bfef  com.apple.FinalCutPro.Plugins.FilterViewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0xa60e000 -  0xa62efcb  com.apple.FinalCutPro.Plugins.Flash 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0xa63d000 -  0xa64aff3  com.apple.FinalCutPro.Plugins.GenViewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0xa64d000 -  0xa652ff7  com.apple.FinalCutPro.Plugins.LayerFileReader 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0xa655000 -  0xa6a1ff3  com.apple.FinalCutPro.Plugins.Media Manager 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0xa6ac000 -  0xa6c0fd3  com.apple.FinalCutPro.Plugins.MolokiniSupport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0xa6cd000 -  0xa6e0fff  com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 (1.0) /Applications/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0xa6ec000 -  0xa700fe7  com.apple.FinalCutPro.Plugins.Motion Viewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0xa703000 -  0xa721ff7  com.apple.FinalCutPro.Plugins.Movie Analyzer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0xa72f000 -  0xa747ff3  com.apple.FinalCutPro.Plugins.Movie Viewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0xa751000 -  0xa756ffb  com.apple.FinalCutPro.Plugins.NuggetExport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0xa759000 -  0xa801ffb  com.apple.FinalCutPro.Plugins.OMF Audio Export 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0xa81d000 -  0xa827027  com.apple.FinalCutPro.Plugins.Perf Analyzer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0xa82a000 -  0xa842fe1  com.apple.FinalCutPro.Plugins.ProAppsIntegration 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0xa850000 -  0xa85efe3  com.apple.FinalCutPro.Plugins.Pulldown Support 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0xa864000 -  0xa8a1fd7  com.apple.FinalCutPro.Plugins.QTM Reader 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0xa8ad000 -  0xa8b6feb  com.apple.FinalCutPro.Plugins.QuickView 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0xa8b9000 -  0xa8c7fdb  com.apple.FinalCutPro.Plugins.Relink Media 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0xa8cb000 -  0xa8cdfd7  com.apple.FinalCutPro.Plugins.Text Window 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0xa8d0000 -  0xa947fc5  com.apple.FinalCutPro.Plugins.Timeline Editor 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0xa94f000 -  0xa957fef  com.apple.FinalCutPro.Plugins.Transcoder 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0xa95b000 -  0xa96dfcb  com.apple.FinalCutPro.Plugins.Transition Viewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0xa970000 -  0xa986ff3  com.apple.FinalCutPro.Plugins.Trimming 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0xa989000 -  0xa990fff  com.apple.FinalCutPro.Plugins.VDUSupport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0xa994000 -  0xa9d6fef  com.apple.FinalCutPro.Plugins.Vector Accelerator 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xa9da000 -  0xa9ecfeb  com.apple.FinalCutPro.Plugins.VideoLog 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0xa9ef000 -  0xaa08fc3  com.apple.FinalCutPro.Plugins.VoiceOver 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0xaa0c000 -  0xaa6dfdf  com.apple.FinalCutPro.Plugins.XML Support 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0xb290000 -  0xb2a5fd0  com.apple.FCP Uncompressed 422.component 1.5 (1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb30e000 -  0xb313fd3  com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xb317000 -  0xb37cfd7  com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0xb39e000 -  0xb3f3ff3 +com.DivXInc.DivXDecoder 6.0.0 (6.0.0) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0xb401000 -  0xb449feb  com.apple.motion.component 1.0 (1.0) <c583833a51b64485b8d90db92a0a0b3a> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xb44d000 -  0xb451fe7 +Motion ??? (???) <253e1acd37ff4609bd23acddfd3d7ce9> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb455000 -  0xb46cfe3  com.apple.fcp.DVOutputUnit 1.3 (1.3) /Applications/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xb61d000 -  0xb66ffab  com.apple.AppleProRes422 1.0 (36) /Library/QuickTime/AppleProRes422.component/Contents/MacOS/AppleProRes422
    0xb674000 -  0xb7a5ffb  QuickTimeH264.altivec ??? (???) <bfb7e7a6b6b996de5a4cfcafb49fdf35> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0xb7b8000 -  0xb7eafef  com.apple.DVCPROHDCodec 1.4 (231) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xb7ef000 -  0xb83afff  com.apple.viceroy.codec 32.1 (32.1) /System/Library/Components/VCH263Codec.component/VCH263Codec
    0xb843000 -  0xb897fee  com.apple.AppleHDVCodec 1.3 (211) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xb8a2000 -  0xb8c2ff7  com.apple.AppleVAFramework 4.0.20 (4.0.20) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xb8c8000 -  0xb8e5ff7  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xb8ea000 -  0xb8feffb  com.apple.IMXCodec 1.3 (143) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xb902000 -  0xb942feb  com.apple.applepixletvideo 1.2.18 (1.2d18) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xb945000 -  0xb983ff7  com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xba0f000 -  0xba3cff3  com.apple.motion.MotionBundle 3.0 (3.0) <3ea7bd691f994e44b18dfb3ef14f359f> /Library/Application Support/ProApps/Bundles/Motion.bundle/Contents/MacOS/Motion
    0xbb24000 -  0xbb76fdb  com.apple.soundtrackpro.integration 2.0.0 () <026ec6e58e354539be36902112be637c> /Library/Application Support/ProApps/Bundles/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0xc000000 -  0xc779fe3 +com.borisfx.TextScrambler ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0xd1cc000 -  0xd943feb +com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0xe54c000 -  0xe55bfeb  com.apple.QuartzComposer.FxPlugWrapper 1.1 (1.1) /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/FxPlugWrapper.plugin/Contents/MacOS/FxPlugWrapper
    0xe564000 -  0xe56ffdf  com.apple.PluginManager 1.7 (28) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xe57a000 -  0xe58bff3  com.apple.fxplugframework 1.2 (1.2) /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0xe59e000 -  0xe5a8fff  com.apple.QuartzComposer.QCMotionPatch 1.0 (1.0) <34c6118f0c454f26b660ec3a2ee68e88> /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/QCMotionPatch.plugin/Contents/MacOS/QCMotionPatch
    0xe5bc000 -  0xe6cfff6  com.apple.motion.filters 3.0.2 (3.0.2) /Library/Application Support/ProApps/Internal Plug-Ins/FxPlug/Filters.bundle/Contents/MacOS/Filters
    0xe756000 -  0xe757fdb  com.apple.compressor.stomp 3.0 (3.0) /Library/Frameworks/Compressor.framework/Compressor
    0xe75a000 -  0xe75ffcf  com.apple.SmoothCamFxPlug 1.0.1 (1.0.1) /Library/Application Support/ProApps/Internal Plug-Ins/FxPlug/SmoothCam.fxplug/Contents/MacOS/SmoothCam
    0xe766000 -  0xe768fc7  com.apple.Helium 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/Helium.framework/Versions/A/Helium
    0xe76b000 -  0xe7a9fe7  com.apple.Helium.HeliumRender 1.0.2 (1.0.2) /System/Library/PrivateFrameworks/Helium.framework/Frameworks/HeliumRender.fram ework/Versions/A/HeliumRender
    0xe7c7000 -  0xe7cbfff  com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <7eace734701e7a66899b513df08f9b61> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xe7d0000 -  0xe7d1ffd  com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <8217e492adf5f0f7cdf567e92025442c> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0xe7d5000 -  0xe820fc7  com.apple.audio.CoreAudio.ProMediaIOAVSAVCPlugIn 7.0 (7.0) /Applications/Final Cut Pro.app/Contents/SharedSupport/ProMediaIOAVSAVC.plugin/Contents/MacOS/ProMediaI OAVSAVC
    0xe852000 -  0xe85ffc3  com.apple.fcp.TundraOutputUnit 1.3 (1.3) /Applications/Final Cut Pro.app/Contents/Resources/TundraOutputUnit.bundle/Contents/MacOS/TundraOutputU nit
    0xe869000 -  0xe87affb  com.apple.DVCPROHDVideoOutput 1.3 (1.3) /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0xe881000 -  0xe888ffb  com.apple.DesktopVideoOut 1.2.4 (1.2.4) /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0xe88c000 -  0xe896fff  com.apple.IOFWDVComponents 1.9.5 (1.9.5) <ace13808ef0aecc1907498beaa17cde4> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xe8a5000 -  0xe8a705b  com.apple.qmaster.swamp 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Qmaster
    0xea00000 -  0xf175fff +com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0xfbdf000 -  0xfbe7fff  com.apple.compressor.FilterUI 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/FilterUI.framewo rk/Versions/A/FilterUI
    0xfd00000 -  0xfd65fdb  com.apple.DVCPROHDMuxer 1.3 (1.3) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0xfd83000 -  0xfdaeffb  com.apple.audio.SoundManager.Components 3.9.3 (3.9.3) /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xfdb4000 -  0xfdc0fd3  com.apple.compressor.MediaServerAPI 3.0 (3.0) /Library/Frameworks/MediaServerAPI.framework/MediaServerAPI
    0xfdcd000 -  0xfddafe7  com.apple.compressor.StompUtil 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framew ork/Versions/A/StompUtil
    0xfe1f000 -  0xfe3aff9  com.apple.audio.CoreAudioKit 1.5 (1.5) <b7e5287b5d5cdda58e147a6ffa19667e> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0xfe4b000 -  0xfe57fc3  com.apple.qmaster.SwampUtil 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework /Versions/A/SwampUtil
    0xfe65000 -  0xfe70fcf  com.apple.qmaster.SwampService 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framew ork/Versions/A/SwampService
    0xfeb7000 -  0xfec4fdf  com.apple.qmaster.RequestProcessing 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.f ramework/Versions/A/RequestProcessing
    0xfeff000 -  0xff10fd7  com.apple.qmaster.Status 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Ve rsions/A/Status
    0x10000000 - 0x10062fd7  com.apple.proapps.AudioMixEngine 2.0 (64) /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x10284000 - 0x102bbfe7 +ProMath ??? (???) <ca06920040304ee38f8596235e5a0a35> /Users/g501/Library/Frameworks/ProMath.framework/Versions/A/ProMath
    0x102cf000 - 0x1037ffef +ProCore ??? (???) <73a6d8eeebcc408e8e7057576b8c46ec> /Users/g501/Library/Frameworks/ProCore.framework/Versions/A/ProCore
    0x103cb000 - 0x10459fe7 +ProMedia ??? (???) <dd2c1c676d0e489a97edec87d5e85121> /Users/g501/Library/Frameworks/ProMedia.framework/Versions/A/ProMedia
    0x104dd000 - 0x104f7fdb +ThirdPartyPlugins ??? (???) <0b9b449686df440391cc2802bf19542f> /Users/g501/Library/Frameworks/ThirdPartyPlugins.framework/Versions/A/ThirdPart yPlugins
    0x10511000 - 0x10577fff +ProGraphics ??? (???) <5e46ca6bfc8e4fb0904cbff64b05b00f> /Users/g501/Library/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
    0x10664000 - 0x107c2fd8 +Lithium ??? (???) <bf76700d7ac34af28c67950d8816714c> /Users/g501/Library/Frameworks/Lithium.framework/Versions/A/Lithium
    0x10885000 - 0x10a2afd7  com.apple.motion.TextFramework 3.0 (3.0) <a772cec7002f4d54933d714fa2fb76be> /Applications/Motion.app/Contents/Frameworks/TextFramework.framework/TextFramew ork
    0x10af9000 - 0x10b4dfd3 +Bloodhound ??? (???) <da42553a7dd94361bd4638764bf9be94> /Users/g501/Library/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
    0x10bab000 - 0x10d23ff3  com.apple.motion.Behaviors 3.0 (3.0) <6ee27d5111c8452486b6def6db46882a> /Applications/Motion.app/Contents/PlugIns/Behaviors.ozp/Contents/MacOS/Behavior s
    0x10dda000 - 0x10f4cfe3  com.apple.motion.Particles 3.0 (3.0) <663c7fd45f4b41fcb47d3a98ba7db8a7> /Applications/Motion.app/Contents/PlugIns/Particles.ozp/Contents/MacOS/Particle s
    0x10faf000 - 0x10fbdfe3  com.apple.motion.Text 3.0 (3.0) <6e54cfc2edac4717b4dd6fb76439bd9c> /Applications/Motion.app/Contents/PlugIns/Text.ozp/Contents/MacOS/Text
    0x10fd9000 - 0x10fde03f  com.apple.fxmetaplug.ImageUnit 1.2.2 (1.2.2) /Library/Application Support/ProApps/Internal Plug-Ins/FxMetaPlug/ImageUnit.fxmetaplug/Contents/MacOS/ImageUnit
    0x10fe5000 - 0x10fe8fc7  com.apple.Helium.HCache 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/Helium.framework/Plug-ins/HCache.bundle/Conte nts/MacOS/HCache
    0x11000000 - 0x11016ff7  com.apple.proapps.ControlSurfaceSupport 2.0 (64) /Applications/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x1102c000 - 0x117a5ffb +com.borisfx.VectorShape ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0x12201000 - 0x12bc6fe0  com.apple.ozone.framework 3.0 (3.0) <6e70f9825fd5487d90f820c10585db4b> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Ozone
    0x134c0000 - 0x135ae07f  com.apple.AECore 3.0 (3.0) /Library/Frameworks/AECore.framework/Versions/A/AECore
    0x13642000 - 0x13684fe3  com.apple.compressor.ImageProcessing 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/ImageProcessing. framework/Versions/A/ImageProcessing
    0x136b9000 - 0x13701fe7  com.apple.compressor.StompUI 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framewor k/Versions/A/StompUI
    0x1372d000 - 0x13773fe8  com.apple.qmaster.SwampCore 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework /Versions/A/SwampCore
    0x137b6000 - 0x137caffb  com.apple.qmaster.ServiceControl 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.fram ework/Versions/A/ServiceControl
    0x14592000 - 0x14676fd7  com.apple.compressor.StompTypes 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompTypes.frame work/Versions/A/StompTypes
    0x14711000 - 0x14863fcf  com.apple.compressor.transcoding 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/Transcoding.fram ework/Versions/A/Transcoding
    0x1496f000 - 0x149b3fd7  com.apple.qmaster.SwampTypes 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampTypes.framewor k/Versions/A/SwampTypes
    0x23b04000 - 0x23b51fe3  com.apple.qmaster.do 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects. framework/Versions/A/DistributedObjects
    0x23ba6000 - 0x23becfef  com.apple.qmaster.ContentControl 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ContentControl.fram ework/Versions/A/ContentControl
    0x23c26000 - 0x23cebff7  com.apple.qmaster.JobControl 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/JobControl.framewor k/Versions/A/JobControl
    0x23d96000 - 0x23da4feb  com.apple.qmaster.ClusterManager 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.fram ework/Versions/A/ClusterManager
    0x23db6000 - 0x23dd5fdb  com.apple.qmaster.SwampUI 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/V ersions/A/SwampUI
    0x23df1000 - 0x23dfefc7  com.apple.qmaster.SwampExecutor 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampExecutor.frame work/Versions/A/SwampExecutor
    0x8fe00000 - 0x8fe30b23  dyld 96.2 (???) <ef2061020a88c4fe1f40b8d9cb1a6101> /usr/lib/dyld
    0x90003000 - 0x901e9ffb  com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x901ea000 - 0x901f7fff  libCSync.A.dylib ??? (???) <c42bb98d8afc1f2f8ff764d6553dd670> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x901f8000 - 0x901fdfff  com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x901fe000 - 0x90211fff  com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90212000 - 0x90243fff  com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90244000 - 0x90293ff7  libGLImage.dylib ??? (???) <dba44404ea3684df4f23df5e8e5430c3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90294000 - 0x902b4ff7  libJPEG.dylib ??? (???) <d8ce67cfab44ad066b29ff7d30b429b6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x902b5000 - 0x902e0ff7  libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x902e1000 - 0x902e1ffc  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90320000 - 0x903afffb  com.apple.DesktopServices 1.4.6 (1.4.6) <3b1ac6c5643f1858e86ec52554c4b408> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x903b0000 - 0x903b0fff  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x903b1000 - 0x903b1fff  com.apple.Carbon 136 (136) <a85de0e96c9f876edec85e40fb691722> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x903b2000 - 0x903dbffb  com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x903dc000 - 0x904c3fff  com.apple.JavaScriptCore 5525.18 (5525.18) <d94ee2a4a7aa244335a4a2a49a5aaeec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x904c4000 - 0x9054cfff  com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9054d000 - 0x905b4ffb  libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x905b5000 - 0x90611ffb  com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90612000 - 0x90699ffb  com.apple.audio.CoreAudio 3.1.0 (3.1) <2742b9ba28ab47e6117819d4cbed34b1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9069a000 - 0x9074afff  com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9074b000 - 0x90805fff  libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib
    0x9081c000 - 0x9085dffb  libTIFF.dylib ??? (???) <8c4c179b200d217de9a1de294a0e93a0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9085e000 - 0x9085effa  com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90955ffc  libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x90956000 - 0x90c88ff7  com.apple.QuickTime 7.6.4 (1327.73) <2a47a570627b516ad5d7e2ee611c49fa> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90c89000 - 0x90c89ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90c8a000 - 0x90da8ff7  com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90da9000 - 0x90eceffb  com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90ecf000 - 0x91644fff  com.apple.AppKit 6.5.3 (949.33) <1144a07dd55895f89e44adf80cc151d9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91645000 - 0x9169bfff  libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9169c000 - 0x916d9fff  libRIP.A.dylib ??? (???) <7e5e8a6305111535e1297a342761ba27> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x916da000 - 0x91725ffb  com.apple.Metadata 10.5.2 (398.18) <0899c93992af8d2e36e4dd2ad21ba475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91726000 - 0x9184afff  com.apple.imageKit 1.0.1 (1.0) <4cf1f88ec52fe945d0d534cf63ab7fce> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91868000 - 0x91870ffb  libCGATS.A.dylib ??? (???) <bfdb7aa1a133586a2d54f7182afce017> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91871000 - 0x91905ff7  com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91906000 - 0x9193bff7  com.apple.LDAPFramework 1.4.4 (108) <a4e1d9404ee5ac803b2599e11870d248> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9193c000 - 0x91c3dffb  com.apple.CoreServices.CarbonCore 786.4 (786.4) <07a9bff6abb5dabf362dd2f14d016d36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91c3e000 - 0x91cf5fff  com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cf6000 - 0x91d11ffb  libPng.dylib ??? (???) <a0a5ce98fa9fe98fe190c99a3dbbdfa0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d12000 - 0x91d96ffd  com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91d97000 - 0x91db6fff  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9253e000 - 0x926deff7  com.apple.QuartzComposer 2.1 (106.5) <c823d8b4d0e6ab03f609a097f8333c50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x926df000 - 0x926e1ffd  libRadiance.dylib ??? (???) <fe9cb9f3bef3072229d3f42e4e5b9690> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x926e2000 - 0x926eafff  libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x9272a000 - 0x92a53fe7  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a54000 - 0x92a8dfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92a8e000 - 0x92ab7fff  com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x92ab8000 - 0x92bccffa  com.

    After you have done the uninstall/ reinstall, have you run all the updates?
    x

  • FCP 6 KGCore plug-in error

    Hello.  I recently had to replace the power supply in my MacPro G5 PPC (Os X 10.5.4). Since doing so, I keep getting the following error when I try to open FCP 6:
    The application Final Cut Pro quit unexpectedly. The problem may have been caused by the KGCore plug-in. When I click Ignore, the same error occurs.
    I've uninstalled and reinstalled the FCP 6 Suite of applications at least 10 times, manually and using the FCS Remover on the digitalrebellion site. I appreciate your suggestions. I've pasted the log file below.  Thank you in advance for your help.
    Process:            [220]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCutPro
    Version:         6.0 (6.0)
    Build Info:      FCPApp-705022005~2
    Code Type:       PPC (Native)
    Parent Process:  launchd [122]
    Date/Time:       2015-01-26 17:15:17.034 -0500
    OS Version:      Mac OS X 10.5.4 (9E25)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000c0000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   libSystem.B.dylib             0xffff8a98 __memcpy + 760
    1   KGCore                         0x00af489c KGMemoryCopy + 32
    2                                  0x002896c0 StreamGetBytesInner(KGStreamRecord*, unsigned char, void*, long*) + 448
    3                                  0x00289980 pKGStreamGetInt32(KGStreamRecord*, long*) + 44
    Thread 1:
    0   libSystem.B.dylib             0x92fc6e4c __semwait_signal + 12
    1   libSystem.B.dylib             0x93003a00 _pthread_cond_wait + 1580
    2   libGLProgrammability.dylib     0x939bc298 glvmDoWork + 120
    3   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 2:
    0   libSystem.B.dylib             0x92fc0498 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib             0x9300390c _pthread_cond_wait + 1336
    2                                  0x0044fe2c Synchronizable::Wait() + 44
    3                                  0x0043b9ac DisplayQueue::Run() + 720
    4                                  0x00479920 Thread::RunHelper(void*) + 28
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 3:
    0   libSystem.B.dylib             0x92fc0498 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib             0x9300390c _pthread_cond_wait + 1336
    2                                  0x0044fe2c Synchronizable::Wait() + 44
    3                                  0x004f2a68 WorkUnitPerformer::Run() + 68
    4                                  0x00479920 Thread::RunHelper(void*) + 28
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 4:
    0   libSystem.B.dylib             0x92fc0438 mach_msg_trap + 8
    1   libSystem.B.dylib             0x92fc735c mach_msg + 56
    2   com.apple.CoreFoundation       0x90e12568 CFRunLoopRunSpecific + 1812
    3   com.apple.CoreFoundation       0x90e12df0 CFRunLoopRun + 60
    4   com.apple.AVCVideoServices     0x00d95f78 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 164
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 5:
    0   libSystem.B.dylib             0x92fc0438 mach_msg_trap + 8
    1   libSystem.B.dylib             0x92fc735c mach_msg + 56
    2   com.apple.CoreFoundation       0x90e12568 CFRunLoopRunSpecific + 1812
    3   com.apple.audio.CoreAudio     0x90633e3c HALRunLoop::OwnThread(void*) + 212
    4   com.apple.audio.CoreAudio     0x90633c80 CAPThread::Entry(CAPThread*) + 104
    5   libSystem.B.dylib             0x93002658 _pthread_start + 316
    Thread 0 crashed with PPC Thread State 32:
      srr0: 0xffff8a98  srr1: 0x0200d030   dar: 0xc0000000 dsisr: 0x02200000
        r0: 0x00000007    r1: 0xbfffc230    r2: 0x00004000    r3: 0xbfffc33f
        r4: 0x0ff42d21    r5: 0x00003fff    r6: 0x00000010    r7: 0x00000020
        r8: 0x00000030    r9: 0xc0000000   r10: 0x00000000   r11: 0x00af8090
       r12: 0xc0000040   r13: 0x00000000   r14: 0x00000000   r15: 0x00000000
       r16: 0x00000000   r17: 0x1323e9d0   r18: 0x00795780   r19: 0x00000000
       r20: 0x00614994   r21: 0x006149a0   r22: 0x00745598   r23: 0x00000000
       r24: 0x00000001   r25: 0xbfffc33f   r26: 0x00000001   r27: 0x00087ffd
       r28: 0xbfffc338   r29: 0x00000016   r30: 0x00004000   r31: 0x1323e9d0
        cr: 0x4804244f   xer: 0x20000000    lr: 0x00af48a0   ctr: 0x00000006
    vrsave: 0xfff80000
    Binary Images:
        0x1000 -   0x742fff +   ??? (???)  
      0xaf2000 -   0xaf7ff7 +KGCore ??? (???) /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
      0xafd000 -   0xafefff  com.apple.iokit.dvcomponentglue 1.9.5 (1.9.5) <143d5a0b230245035fb6364b29f6b76b> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
      0xb02000 -   0xb12fef  com.apple.AERegistration 1.2 (68) /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
      0xb24000 -   0xb2cfd7  com.apple.AEProfiling 1.2 (18) /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
      0xb34000 -   0xcadfff  com.apple.prokit 4.5 (722) <b40ef07866b6ecc8843a10f6d2440037> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      0xd83000 -   0xdb6fcb  com.apple.AVCVideoServices 1.0 (38) /Applications/Final Cut Pro.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServi ces
      0xdd7000 -   0xdeaff7  com.apple.framework.promedia.ProMediaIOUnit 1.0.0 (1) /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIOUnit.framework/Versions/A/ProMediaIOUnit
      0xdf7000 -   0xe01fe3  com.apple.framework.promediaio 1.0.0 (1) /Applications/Final Cut Pro.app/Contents/Frameworks/ProMediaIO.framework/Versions/A/ProMediaIO
      0xe07000 -   0xe7bfdb  com.apple.ProFX 1.2 (1.2) /Library/Frameworks/ProFX.framework/Versions/A/ProFX
      0xea6000 -   0xfa8ffd  com.apple.DiskImagesFramework 10.5.3 (195) <f3ea8095643e26cb666f3ee0e5a204b1> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x100b000 -  0x1061ff7  com.apple.proapps.MIO 1.0 (1.0) /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x109d000 -  0x10a9fc3  com.apple.finalcutstudio.prometadatasupport 0.5 (1.0) /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0x10b3000 -  0x10d4ff1  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x10dc000 -  0x110fffb  com.apple.MediaKit 9.1 (396) <848fe31d13f65a08215960eebd9cf163> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x111f000 -  0x11edff5  com.apple.DiscRecording 4.0.1 (4010.4.5) <9efa7b74a943c19af985e96e74fab558> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1254000 -  0x1281ffb  libcurl.4.dylib ??? (???) <bd94f6417b93e0174fa282255dd6d6d1> /usr/lib/libcurl.4.dylib
    0x12ab000 -  0x12acfdb +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x1500000 -  0x1544fff  com.apple.vmutils 4.1 (104) <16b044379a7172567dae7a54ded38ffb> /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x17e3000 -  0x17eafc7  com.apple.proapps.mrcheckpro 1.4 (179) /Applications/Final Cut Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x3cef000 -  0x3de8ff3  com.apple.RawCamera.bundle 2.0.7 (2.0.7) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x3e2f000 -  0x3e4bfff  GLRendererFloat ??? (???) <a16b151dfe35dd65da0ec9a149f5cdba> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x3e98000 -  0x3ec5fcb  com.apple.FinalCutPro.Plugins.AfterEffects 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0x3ecc000 -  0x3ed0fd3  com.apple.FinalCutPro.Plugins.AudioGroupsExport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0x3ed3000 -  0x3eecfef  com.apple.FinalCutPro.Plugins.AudioMixer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0x3ef8000 -  0x3efbfc3  com.apple.FinalCutPro.Plugins.FinalTouchExport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FinalTouchExport.bundle/Contents/MacOS/FinalTouc hExport
    0x8ea6000 -  0x901cffb  GLEngine ??? (???) <e546c359794d516a4ec464c774b1300a> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x904e000 -  0x92a4ff5  com.apple.ATIRadeon9700GLDriver 1.5.28 (5.2.8) <a5b23527a4689e76f7860770d3820d0d> /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0xa3a5000 -  0xa3c1ffb  com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xa3d7000 -  0xa3f8fff  libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0xa3ff000 -  0xa4acff3  com.apple.FinalCutPro.Plugins.Browser 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0xa4c4000 -  0xa4cafdb  com.apple.FinalCutPro.Plugins.Cache Manager 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0xa4cd000 -  0xa4e2fff  com.apple.FinalCutPro.CinemaTools 4.0 (4.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0xa4eb000 -  0xa4f6fe1  com.apple.FinalCutPro.Plugins.CTHelper 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0xa4fb000 -  0xa521fff  com.apple.FinalCutPro.Plugins.EditTape 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0xa52e000 -  0xa578ff0  com.apple.FinalCutPro.Plugins.EDL Export 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0xa58c000 -  0xa594ff3  com.apple.FinalCutPro.Plugins.Effect Builder 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0xa597000 -  0xa5a3fe7  com.apple.FinalCutPro.Plugins.FCPExtPluginSupport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0xa5a9000 -  0xa5dbfda  com.apple.FinalCutPro.Plugins.FCS Engine 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0xa5e2000 -  0xa5f3fe3  com.apple.FinalCutPro.Plugins.FilterCustomEd 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0xa5f6000 -  0xa60bfef  com.apple.FinalCutPro.Plugins.FilterViewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0xa60e000 -  0xa62efcb  com.apple.FinalCutPro.Plugins.Flash 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0xa63d000 -  0xa64aff3  com.apple.FinalCutPro.Plugins.GenViewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0xa64d000 -  0xa652ff7  com.apple.FinalCutPro.Plugins.LayerFileReader 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0xa655000 -  0xa6a1ff3  com.apple.FinalCutPro.Plugins.Media Manager 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0xa6ac000 -  0xa6c0fd3  com.apple.FinalCutPro.Plugins.MolokiniSupport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0xa6cd000 -  0xa6e0fff  com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 (1.0) /Applications/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0xa6ec000 -  0xa700fe7  com.apple.FinalCutPro.Plugins.Motion Viewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0xa703000 -  0xa721ff7  com.apple.FinalCutPro.Plugins.Movie Analyzer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0xa72f000 -  0xa747ff3  com.apple.FinalCutPro.Plugins.Movie Viewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0xa751000 -  0xa756ffb  com.apple.FinalCutPro.Plugins.NuggetExport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0xa759000 -  0xa801ffb  com.apple.FinalCutPro.Plugins.OMF Audio Export 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0xa81d000 -  0xa827027  com.apple.FinalCutPro.Plugins.Perf Analyzer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0xa82a000 -  0xa842fe1  com.apple.FinalCutPro.Plugins.ProAppsIntegration 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0xa850000 -  0xa85efe3  com.apple.FinalCutPro.Plugins.Pulldown Support 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0xa864000 -  0xa8a1fd7  com.apple.FinalCutPro.Plugins.QTM Reader 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0xa8ad000 -  0xa8b6feb  com.apple.FinalCutPro.Plugins.QuickView 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0xa8b9000 -  0xa8c7fdb  com.apple.FinalCutPro.Plugins.Relink Media 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0xa8cb000 -  0xa8cdfd7  com.apple.FinalCutPro.Plugins.Text Window 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0xa8d0000 -  0xa947fc5  com.apple.FinalCutPro.Plugins.Timeline Editor 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0xa94f000 -  0xa957fef  com.apple.FinalCutPro.Plugins.Transcoder 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0xa95b000 -  0xa96dfcb  com.apple.FinalCutPro.Plugins.Transition Viewer 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0xa970000 -  0xa986ff3  com.apple.FinalCutPro.Plugins.Trimming 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0xa989000 -  0xa990fff  com.apple.FinalCutPro.Plugins.VDUSupport 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0xa994000 -  0xa9d6fef  com.apple.FinalCutPro.Plugins.Vector Accelerator 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xa9da000 -  0xa9ecfeb  com.apple.FinalCutPro.Plugins.VideoLog 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0xa9ef000 -  0xaa08fc3  com.apple.FinalCutPro.Plugins.VoiceOver 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0xaa0c000 -  0xaa6dfdf  com.apple.FinalCutPro.Plugins.XML Support 6.0 (6.0) /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0xb290000 -  0xb2a5fd0  com.apple.FCP Uncompressed 422.component 1.5 (1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xb30e000 -  0xb313fd3  com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xb317000 -  0xb37cfd7  com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0xb39e000 -  0xb3f3ff3 +com.DivXInc.DivXDecoder 6.0.0 (6.0.0) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0xb401000 -  0xb449feb  com.apple.motion.component 1.0 (1.0) <c583833a51b64485b8d90db92a0a0b3a> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xb44d000 -  0xb451fe7 +Motion ??? (???) <253e1acd37ff4609bd23acddfd3d7ce9> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb455000 -  0xb46cfe3  com.apple.fcp.DVOutputUnit 1.3 (1.3) /Applications/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xb61d000 -  0xb66ffab  com.apple.AppleProRes422 1.0 (36) /Library/QuickTime/AppleProRes422.component/Contents/MacOS/AppleProRes422
    0xb674000 -  0xb7a5ffb  QuickTimeH264.altivec ??? (???) <bfb7e7a6b6b996de5a4cfcafb49fdf35> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0xb7b8000 -  0xb7eafef  com.apple.DVCPROHDCodec 1.4 (231) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xb7ef000 -  0xb83afff  com.apple.viceroy.codec 32.1 (32.1) /System/Library/Components/VCH263Codec.component/VCH263Codec
    0xb843000 -  0xb897fee  com.apple.AppleHDVCodec 1.3 (211) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xb8a2000 -  0xb8c2ff7  com.apple.AppleVAFramework 4.0.20 (4.0.20) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xb8c8000 -  0xb8e5ff7  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xb8ea000 -  0xb8feffb  com.apple.IMXCodec 1.3 (143) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xb902000 -  0xb942feb  com.apple.applepixletvideo 1.2.18 (1.2d18) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xb945000 -  0xb983ff7  com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xba0f000 -  0xba3cff3  com.apple.motion.MotionBundle 3.0 (3.0) <3ea7bd691f994e44b18dfb3ef14f359f> /Library/Application Support/ProApps/Bundles/Motion.bundle/Contents/MacOS/Motion
    0xbb24000 -  0xbb76fdb  com.apple.soundtrackpro.integration 2.0.0 () <026ec6e58e354539be36902112be637c> /Library/Application Support/ProApps/Bundles/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0xc000000 -  0xc779fe3 +com.borisfx.TextScrambler ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0xd1cc000 -  0xd943feb +com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0xe54c000 -  0xe55bfeb  com.apple.QuartzComposer.FxPlugWrapper 1.1 (1.1) /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/FxPlugWrapper.plugin/Contents/MacOS/FxPlugWrapper
    0xe564000 -  0xe56ffdf  com.apple.PluginManager 1.7 (28) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xe57a000 -  0xe58bff3  com.apple.fxplugframework 1.2 (1.2) /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0xe59e000 -  0xe5a8fff  com.apple.QuartzComposer.QCMotionPatch 1.0 (1.0) <34c6118f0c454f26b660ec3a2ee68e88> /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/QCMotionPatch.plugin/Contents/MacOS/QCMotionPatch
    0xe5bc000 -  0xe6cfff6  com.apple.motion.filters 3.0.2 (3.0.2) /Library/Application Support/ProApps/Internal Plug-Ins/FxPlug/Filters.bundle/Contents/MacOS/Filters
    0xe756000 -  0xe757fdb  com.apple.compressor.stomp 3.0 (3.0) /Library/Frameworks/Compressor.framework/Compressor
    0xe75a000 -  0xe75ffcf  com.apple.SmoothCamFxPlug 1.0.1 (1.0.1) /Library/Application Support/ProApps/Internal Plug-Ins/FxPlug/SmoothCam.fxplug/Contents/MacOS/SmoothCam
    0xe766000 -  0xe768fc7  com.apple.Helium 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/Helium.framework/Versions/A/Helium
    0xe76b000 -  0xe7a9fe7  com.apple.Helium.HeliumRender 1.0.2 (1.0.2) /System/Library/PrivateFrameworks/Helium.framework/Frameworks/HeliumRender.fram ework/Versions/A/HeliumRender
    0xe7c7000 -  0xe7cbfff  com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <7eace734701e7a66899b513df08f9b61> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xe7d0000 -  0xe7d1ffd  com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <8217e492adf5f0f7cdf567e92025442c> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0xe7d5000 -  0xe820fc7  com.apple.audio.CoreAudio.ProMediaIOAVSAVCPlugIn 7.0 (7.0) /Applications/Final Cut Pro.app/Contents/SharedSupport/ProMediaIOAVSAVC.plugin/Contents/MacOS/ProMediaI OAVSAVC
    0xe852000 -  0xe85ffc3  com.apple.fcp.TundraOutputUnit 1.3 (1.3) /Applications/Final Cut Pro.app/Contents/Resources/TundraOutputUnit.bundle/Contents/MacOS/TundraOutputU nit
    0xe869000 -  0xe87affb  com.apple.DVCPROHDVideoOutput 1.3 (1.3) /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0xe881000 -  0xe888ffb  com.apple.DesktopVideoOut 1.2.4 (1.2.4) /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0xe88c000 -  0xe896fff  com.apple.IOFWDVComponents 1.9.5 (1.9.5) <ace13808ef0aecc1907498beaa17cde4> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xe8a5000 -  0xe8a705b  com.apple.qmaster.swamp 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Qmaster
    0xea00000 -  0xf175fff +com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0xfbdf000 -  0xfbe7fff  com.apple.compressor.FilterUI 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/FilterUI.framewo rk/Versions/A/FilterUI
    0xfd00000 -  0xfd65fdb  com.apple.DVCPROHDMuxer 1.3 (1.3) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0xfd83000 -  0xfdaeffb  com.apple.audio.SoundManager.Components 3.9.3 (3.9.3) /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xfdb4000 -  0xfdc0fd3  com.apple.compressor.MediaServerAPI 3.0 (3.0) /Library/Frameworks/MediaServerAPI.framework/MediaServerAPI
    0xfdcd000 -  0xfddafe7  com.apple.compressor.StompUtil 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framew ork/Versions/A/StompUtil
    0xfe1f000 -  0xfe3aff9  com.apple.audio.CoreAudioKit 1.5 (1.5) <b7e5287b5d5cdda58e147a6ffa19667e> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0xfe4b000 -  0xfe57fc3  com.apple.qmaster.SwampUtil 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework /Versions/A/SwampUtil
    0xfe65000 -  0xfe70fcf  com.apple.qmaster.SwampService 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framew ork/Versions/A/SwampService
    0xfeb7000 -  0xfec4fdf  com.apple.qmaster.RequestProcessing 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.f ramework/Versions/A/RequestProcessing
    0xfeff000 -  0xff10fd7  com.apple.qmaster.Status 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Ve rsions/A/Status
    0x10000000 - 0x10062fd7  com.apple.proapps.AudioMixEngine 2.0 (64) /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x10284000 - 0x102bbfe7 +ProMath ??? (???) <ca06920040304ee38f8596235e5a0a35> /Users/g501/Library/Frameworks/ProMath.framework/Versions/A/ProMath
    0x102cf000 - 0x1037ffef +ProCore ??? (???) <73a6d8eeebcc408e8e7057576b8c46ec> /Users/g501/Library/Frameworks/ProCore.framework/Versions/A/ProCore
    0x103cb000 - 0x10459fe7 +ProMedia ??? (???) <dd2c1c676d0e489a97edec87d5e85121> /Users/g501/Library/Frameworks/ProMedia.framework/Versions/A/ProMedia
    0x104dd000 - 0x104f7fdb +ThirdPartyPlugins ??? (???) <0b9b449686df440391cc2802bf19542f> /Users/g501/Library/Frameworks/ThirdPartyPlugins.framework/Versions/A/ThirdPart yPlugins
    0x10511000 - 0x10577fff +ProGraphics ??? (???) <5e46ca6bfc8e4fb0904cbff64b05b00f> /Users/g501/Library/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
    0x10664000 - 0x107c2fd8 +Lithium ??? (???) <bf76700d7ac34af28c67950d8816714c> /Users/g501/Library/Frameworks/Lithium.framework/Versions/A/Lithium
    0x10885000 - 0x10a2afd7  com.apple.motion.TextFramework 3.0 (3.0) <a772cec7002f4d54933d714fa2fb76be> /Applications/Motion.app/Contents/Frameworks/TextFramework.framework/TextFramew ork
    0x10af9000 - 0x10b4dfd3 +Bloodhound ??? (???) <da42553a7dd94361bd4638764bf9be94> /Users/g501/Library/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
    0x10bab000 - 0x10d23ff3  com.apple.motion.Behaviors 3.0 (3.0) <6ee27d5111c8452486b6def6db46882a> /Applications/Motion.app/Contents/PlugIns/Behaviors.ozp/Contents/MacOS/Behavior s
    0x10dda000 - 0x10f4cfe3  com.apple.motion.Particles 3.0 (3.0) <663c7fd45f4b41fcb47d3a98ba7db8a7> /Applications/Motion.app/Contents/PlugIns/Particles.ozp/Contents/MacOS/Particle s
    0x10faf000 - 0x10fbdfe3  com.apple.motion.Text 3.0 (3.0) <6e54cfc2edac4717b4dd6fb76439bd9c> /Applications/Motion.app/Contents/PlugIns/Text.ozp/Contents/MacOS/Text
    0x10fd9000 - 0x10fde03f  com.apple.fxmetaplug.ImageUnit 1.2.2 (1.2.2) /Library/Application Support/ProApps/Internal Plug-Ins/FxMetaPlug/ImageUnit.fxmetaplug/Contents/MacOS/ImageUnit
    0x10fe5000 - 0x10fe8fc7  com.apple.Helium.HCache 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/Helium.framework/Plug-ins/HCache.bundle/Conte nts/MacOS/HCache
    0x11000000 - 0x11016ff7  com.apple.proapps.ControlSurfaceSupport 2.0 (64) /Applications/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x1102c000 - 0x117a5ffb +com.borisfx.VectorShape ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0x12201000 - 0x12bc6fe0  com.apple.ozone.framework 3.0 (3.0) <6e70f9825fd5487d90f820c10585db4b> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Ozone
    0x134c0000 - 0x135ae07f  com.apple.AECore 3.0 (3.0) /Library/Frameworks/AECore.framework/Versions/A/AECore
    0x13642000 - 0x13684fe3  com.apple.compressor.ImageProcessing 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/ImageProcessing. framework/Versions/A/ImageProcessing
    0x136b9000 - 0x13701fe7  com.apple.compressor.StompUI 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framewor k/Versions/A/StompUI
    0x1372d000 - 0x13773fe8  com.apple.qmaster.SwampCore 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework /Versions/A/SwampCore
    0x137b6000 - 0x137caffb  com.apple.qmaster.ServiceControl 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.fram ework/Versions/A/ServiceControl
    0x14592000 - 0x14676fd7  com.apple.compressor.StompTypes 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompTypes.frame work/Versions/A/StompTypes
    0x14711000 - 0x14863fcf  com.apple.compressor.transcoding 3.0 (3.0) /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/Transcoding.fram ework/Versions/A/Transcoding
    0x1496f000 - 0x149b3fd7  com.apple.qmaster.SwampTypes 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampTypes.framewor k/Versions/A/SwampTypes
    0x23b04000 - 0x23b51fe3  com.apple.qmaster.do 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects. framework/Versions/A/DistributedObjects
    0x23ba6000 - 0x23becfef  com.apple.qmaster.ContentControl 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ContentControl.fram ework/Versions/A/ContentControl
    0x23c26000 - 0x23cebff7  com.apple.qmaster.JobControl 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/JobControl.framewor k/Versions/A/JobControl
    0x23d96000 - 0x23da4feb  com.apple.qmaster.ClusterManager 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.fram ework/Versions/A/ClusterManager
    0x23db6000 - 0x23dd5fdb  com.apple.qmaster.SwampUI 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/V ersions/A/SwampUI
    0x23df1000 - 0x23dfefc7  com.apple.qmaster.SwampExecutor 3.0 (3.0) /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampExecutor.frame work/Versions/A/SwampExecutor
    0x8fe00000 - 0x8fe30b23  dyld 96.2 (???) <ef2061020a88c4fe1f40b8d9cb1a6101> /usr/lib/dyld
    0x90003000 - 0x901e9ffb  com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x901ea000 - 0x901f7fff  libCSync.A.dylib ??? (???) <c42bb98d8afc1f2f8ff764d6553dd670> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x901f8000 - 0x901fdfff  com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x901fe000 - 0x90211fff  com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90212000 - 0x90243fff  com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90244000 - 0x90293ff7  libGLImage.dylib ??? (???) <dba44404ea3684df4f23df5e8e5430c3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90294000 - 0x902b4ff7  libJPEG.dylib ??? (???) <d8ce67cfab44ad066b29ff7d30b429b6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x902b5000 - 0x902e0ff7  libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x902e1000 - 0x902e1ffc  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90320000 - 0x903afffb  com.apple.DesktopServices 1.4.6 (1.4.6) <3b1ac6c5643f1858e86ec52554c4b408> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x903b0000 - 0x903b0fff  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x903b1000 - 0x903b1fff  com.apple.Carbon 136 (136) <a85de0e96c9f876edec85e40fb691722> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x903b2000 - 0x903dbffb  com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x903dc000 - 0x904c3fff  com.apple.JavaScriptCore 5525.18 (5525.18) <d94ee2a4a7aa244335a4a2a49a5aaeec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x904c4000 - 0x9054cfff  com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9054d000 - 0x905b4ffb  libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x905b5000 - 0x90611ffb  com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90612000 - 0x90699ffb  com.apple.audio.CoreAudio 3.1.0 (3.1) <2742b9ba28ab47e6117819d4cbed34b1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9069a000 - 0x9074afff  com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9074b000 - 0x90805fff  libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib
    0x9081c000 - 0x9085dffb  libTIFF.dylib ??? (???) <8c4c179b200d217de9a1de294a0e93a0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9085e000 - 0x9085effa  com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90955ffc  libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x90956000 - 0x90c88ff7  com.apple.QuickTime 7.6.4 (1327.73) <2a47a570627b516ad5d7e2ee611c49fa> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90c89000 - 0x90c89ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90c8a000 - 0x90da8ff7  com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90da9000 - 0x90eceffb  com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90ecf000 - 0x91644fff  com.apple.AppKit 6.5.3 (949.33) <1144a07dd55895f89e44adf80cc151d9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91645000 - 0x9169bfff  libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9169c000 - 0x916d9fff  libRIP.A.dylib ??? (???) <7e5e8a6305111535e1297a342761ba27> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x916da000 - 0x91725ffb  com.apple.Metadata 10.5.2 (398.18) <0899c93992af8d2e36e4dd2ad21ba475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91726000 - 0x9184afff  com.apple.imageKit 1.0.1 (1.0) <4cf1f88ec52fe945d0d534cf63ab7fce> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91868000 - 0x91870ffb  libCGATS.A.dylib ??? (???) <bfdb7aa1a133586a2d54f7182afce017> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91871000 - 0x91905ff7  com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91906000 - 0x9193bff7  com.apple.LDAPFramework 1.4.4 (108) <a4e1d9404ee5ac803b2599e11870d248> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9193c000 - 0x91c3dffb  com.apple.CoreServices.CarbonCore 786.4 (786.4) <07a9bff6abb5dabf362dd2f14d016d36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91c3e000 - 0x91cf5fff  com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cf6000 - 0x91d11ffb  libPng.dylib ??? (???) <a0a5ce98fa9fe98fe190c99a3dbbdfa0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d12000 - 0x91d96ffd  com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91d97000 - 0x91db6fff  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9253e000 - 0x926deff7  com.apple.QuartzComposer 2.1 (106.5) <c823d8b4d0e6ab03f609a097f8333c50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x926df000 - 0x926e1ffd  libRadiance.dylib ??? (???) <fe9cb9f3bef3072229d3f42e4e5b9690> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x926e2000 - 0x926eafff  libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x9272a000 - 0x92a53fe7  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a54000 - 0x92a8dfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92a8e000 - 0x92ab7fff  com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x92ab8000 - 0x92bccffa  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92bcd000 - 0x92bd6fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92bd7000 - 0x92c09fff  com.apple.bom 9.0 (136) <cb560109ea507cdfb6c77349845e6b2a> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92c1a000 - 0x92c64fff  com.apple.QuickLookUIFramework 1.1 (170.4) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92c65000 - 0x92c84fff  libresolv.9.dylib ??? (???) <ea4013600c24f794dff0013de3db4bf4> /usr/lib/libresolv.9.dylib
    0x92c85000 - 0x92fbefeb  com.apple.HIToolbox 1.5.3 (???) <1f08f0263f6037c253e6cfbe69cfc5a0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92fbf000 - 0x93158fe3  libSystem.B.dylib ??? (???) <79cf3ef34f92361dc6263d884c723c24> /usr/lib/libSystem.B.dylib
    0x93159000 - 0x931defff  libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x931df000 - 0x931e4ff6  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x931e5000 - 0x93209ffb  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9320a000 - 0x93215fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <817174777f7b41bfa3e0cc8974fffbdc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9321c000 - 0x9322fffb  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93230000 - 0x932b1fff  com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x932b2000 - 0x932c0fff  libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x932f3000 - 0x93300fff  libbz2.1.0.dylib ??? (???) <dbd048b7143b6e13a5e9d26b1a765c7a> /usr/lib/libbz2.1.0.dylib
    0x93330000 - 0x9335aff7  libssl.0.9.7.dylib ??? (???) <5dac2e94552ad76696c35bd6886f5a92> /usr/lib/libssl.0.9.7.dylib
    0x93361000 - 0x93367ffb  com.apple.DisplayServicesFW 2.0 (2.0) <79cccbdf217d3c80d760958add417819> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93368000 - 0x93382ffb  com.apple.CoreVideo 1.6.0 (20.0) <2bc359d0334aa51fcf0534320dee89e9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93383000 - 0x93452ffb  com.apple.QuickTimeMPEG4.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x93453000 - 0x93453ffe  com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93454000 - 0x93496fff  com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93497000 - 0x934b5fff  com.apple.QuickLookFramework 1.1 (170.4) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x934b6000 - 0x93566fff  edu.mit.Kerberos 6.0.12 (6.0.12) <5cf1a9c1d7e526bb9b084013a1722d08> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93567000 - 0x936afffb  libicucore.A.dylib ??? (???) <dd2fd169aa328f6e97a1d700e5846866> /usr/lib/libicucore.A.dylib
    0x936b0000 - 0x93799fff  libxml2.2.dylib ??? (???) <6bf1a24e68615e0edf843988f5a0a1f4> /usr/lib/libxml2.2.dylib
    0x9379a000 - 0x937ffffb  com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93800000 - 0x93899fc3  libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x938df000 - 0x938e5ffb  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x938e6000 - 0x938edffb  com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x938ee000 - 0x938fefff  libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x938ff000 - 0x93989fff  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93996000 - 0x93dcbffa  libGLProgrammability.dylib ??? (???) <f032e07d587794af4d4ba1b7dc7b4fd2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93dcc000 - 0x93dcdfff  libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x93dce000 - 0x93de9ff3  com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <d69161954145cf745b51ae31e0961077> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93dea000 - 0x93df5ffb  libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x93df6000 - 0x93e0dffb  com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93e0e000 - 0x93e26ffb  com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93e27000 - 0x93e46fff  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93e47000 - 0x93e4efff  com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93e63000 - 0x93e66fff  com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93e67000 - 0x93f3afff  com.apple.CoreServices.OSServices 226.5 (226.5) <50a4f7fe2d6078971f9ef6fc88cc5d2b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93f3b000 - 0x93f46ff9  com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93f47000 - 0x93f4aff3  com.apple.QuickTimeH264.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x93f4b000 - 0x93f71fff  libcups.2.dylib ??? (???) <faed280b72f625b591ae0506cb142367> /usr/lib/libcups.2.dylib
    0x93f72000 - 0x940bcffb  com.apple.ImageIO.framework 2.0.2 (2.0.2) <20c50c4b4d09a4cf69fb8732e3d79081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x940bd000 - 0x940ccfff  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <897487778bd1c0429fcd88c99c293583> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x940cd000 - 0x9412fffb  com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94199000 - 0x94233ffb  com.apple.ApplicationServices.ATS 3.3 (???) <5c97f539ba68e1143929cd89db390d20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94234000 - 0x94238ffe  libGIF.dylib ??? (???) <2d51bf4f806540aac255dd7e98a99948> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94239000 - 0x9427dfff  com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9427e000 - 0x942c5fff  com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x942c9000 - 0x94333fff  com.apple.PDFKit 2.1 (2.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94334000 - 0x94403fff  com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94404000 - 0x944c9ffb  com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x944ca000 - 0x944d6ff3  com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x944ed000 - 0x94aa7fff  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94aa8000 - 0x94b4affb  com.apple.QuickTimeImporters.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94b4b000 - 0x94b5bffb  com.apple.agl 3.0.9 (AGL-3.0.9) <ab2f91cfb4e503d2516df44852c35e81> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94b5c000 - 0x95787fef  com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x95ab1000 - 0x95ab4ffb  com.apple.securityhi 3.0 (30817) <08b7dd59bdfadfc2e73cd708bb8bdc31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95ab5000 - 0x95ab5fff  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95b79000 - 0x95b7aff8  com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95bcb000 - 0x95bf2fff  libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x95e70000 - 0x95e70ff8  com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95e71000 - 0x95e8cffb  com.apple.openscripting 1.2.6 (???) <12270fbb14905644f78975f227328a98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95edb000 - 0x96047ff9  com.apple.AddressBook.framework 4.1.1 (695) <c2da7479f17eecd7a1efd7250afb0aef> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96048000 - 0x965bffff  com.apple.CoreGraphics 1.351.31 (???) <1d6f8c59da420b7b6105cf0f0dcc8f8e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x965c0000 - 0x965cdffb  com.apple.opengl 1.5.6 (1.5.6) <9f2c6a226837dae46ced8b28e195210c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x965ce000 - 0x96664fff  com.apple.LaunchServices 289.2 (289.2) <67191ba4de2d3d14be9b4bbddd4fe0a6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96665000 - 0x969c3ff2  com.apple.QuartzCore 1.5.3 (1.5.3) <c410b1f89e67d41c3d06eac1790b500c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x969c4000 - 0x96b86ff4  com.apple.CoreAUC 3.08.0 (3.08.0) <9d8d7368e2d3b11318a3556c6d4902a1> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96b87000 - 0x96dccffb  com.apple.Foundation 6.5.5 (677.19) <1667218c075b6e69728c5c2dd9ff6065> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96dcd000 - 0x96e48fff  com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96e54000 - 0x96eb4fff  com.apple.CoreText 2.0.2 (???) <e5940fddbca517f29b8865c9b02ddff0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96eb5000 - 0x96eeafff  com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96eeb000 - 0x96fcefeb  libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0xfffec000 - 0xfffeffff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    YYou should post your question on the Final Cut Studio. You should also update your software to v6.0.6.

  • Itunes HD movie download: -50 error message

    hi there!
    last nite i purchased an HD movie from Itunes on my mac. when i woke up this morning, the download had timed out. 2.29G of 2.54G had been downloaded... so close!?!? there was a '-50 unknown error' message on my screen saying that maybe my internet connection had been interrupted and to try again.
    so i restarted my mac and tried to resume the download... and the same -50 error message popped up again. the internet connection seems fine too. i gave up after the 5th time. ugh.
    does anyone know what i should do next?
    thanks in advance

    Thanks for the reply. You are right. In the description of the movie Four Lions under Language is states
    Enlish (United Kingdom) (Stereo)
    I actually thought all HD movies were in at least 5.1. I guess I have learnt something.
    Thanks.
    cjnl

  • Error message KI203 when transferring non valuted stock cross company

    Hi,
    The posting of the stock transfers plant to plant is prevented by the error message
    KI203: Company code & is not assigned to CO area &.
    The Error is in following case :
          1. The transfer posting is carried out between plants of different company codes.
          2. The material in the issuing plant is non-valuated.
    When valuated material there is no any error .
    We are on 4.7 version ,
    Also we know that on 4.6 version the system supported this process .
    Please advise .
    Best Regards,
    Moshe

    Hi
    The best way to slolve this problem, Now is to maintain Assable value in Material Master For reciving Plant.
    Hear you can maintain all the chapter id, register A or C, etc
    and then try doing GR,
    The other way and the permanent solution is
    VPRS or equivalent
    Condition class B Prices
    Calculat.type C Quantity
    Condit.category  H
    Cond.control H Condition value fixed
    Condit.origin A Automatic pricing
    In this Condition category is most important and by this only system copies the base amount for excise duty calculation in MIGO or J1IEX.
    Regs
    Niti Narayan

  • "Crypto replay check failed" errors

    Hey folks,
    I have a site-to-site IPSEC VPN using 2 catalyst 6500's running IOS 12.2(18)SXD7b on each end.
    After reviewing the syslog files this morning, I noticed that for the last 4 days at approximately the same time each nite, my router reports this error:
    Local7.Warning: %CRYPTO-4-PKT_REPLAY_ERR: decrypt: replay check failed
    The error reporting tool on cisco.com says this error is benign, but does not give much info or troubleshooting tips. I've double checked my configuration and everything looks fine. Have you guys seen this before? Any tips?
    Thanks,
    SM

    Hi Steve, check this link if it can help you:
    http://www.ciscotaccc.com/kaidara-advisor/security/showcase?case=K07229553
    Regards,
    Ricardo

  • I keep gettin this error message when i try to compile can't fix

    MY CODE
    import java.text.DecimalFormat;
    public class MotelBase{
    private int nite;
    private int numadult;
    private int numchild;
    final double ADULT_RATE = 25.0;
    final double CHILD_RATE = 8.0;
    public MotelBase (int inNite, int inNumAdult, int inNumChild){
         nite = inNite;
         numadult = inNumAdult;
         numchild = inNumChild;}
    public int getNumAdult(){return numadult;}
    public int getNumChild(){return numchild;}
    public int getNite(){return nite;}
    public double getAchg(){return numadult * nite * ADULT_RATE;}
    public double getCchg(){return numchild * nite * CHILD_RATE;}
    public double getBase;{return (getAchg + getCchg);}
    public double getTax;{return (getBase) * .10;}
    public double getTotal;{return (getTax) + (getBase);}
    public void setNite(int inNite){nite = inNite;}
    public void setNumAdult(int inNumAdult){numadult = inNumAdult;}
    public void setNumChild(int inNumChild){numchild = inNumChild;}
    public String toString(){return "Number of Adults: " + this.numadult + "\n" +
                                    "Number of Children: " + this.numchild + "\n" +
                                    "Number of Nights: " + this.nite + "\n" +
                                    "Base rate: " + this.getBase + "\n" ;}}
    **Here are the error messages when i compile**
    javac -d . -g -classpath . MotelBase.java
    MotelBase.java:17: return outside method
    public double getBase;{return (getAchg + getCchg);}
    ^
    MotelBase.java:18: return outside method
    public double getTax;{return (getBase) * .10;}
    ^
    MotelBase.java:19: return outside method
    public double getTotal;{return (getTax) + (getBase);}
    ^
    3 errors
    Can anyone help me

    so i removes the semi's and added ()'s
    public double getBase(){return (getAchg) + (getCchg);}
    public double getTax(){return (getBase) * .10;}
    public double getTotal(){return (getTax) + (getBase);}
    and this happened
    javac -d . -g -classpath . MotelBase.java
    MotelBase.java:17: cannot find symbol
    symbol : variable getAchg
    location: class MotelBase
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: illegal start of type
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: cannot find symbol
    symbol : variable getCchg
    location: class MotelBase
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: illegal start of type
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:17: incompatible types
    found : java.lang.String
    required: double
    public double getBase(){return (getAchg) + (getCchg);}
    ^
    MotelBase.java:18: cannot find symbol
    symbol : variable getBase
    location: class MotelBase
    public double getTax(){return (getBase) * .10;}
    ^
    MotelBase.java:18: illegal start of type
    public double getTax(){return (getBase) * .10;}
    ^
    MotelBase.java:19: cannot find symbol
    symbol : variable getTax
    location: class MotelBase
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: illegal start of type
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: cannot find symbol
    symbol : variable getBase
    location: class MotelBase
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: illegal start of type
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:19: incompatible types
    found : java.lang.String
    required: double
    public double getTotal(){return (getTax) + (getBase);}
    ^
    MotelBase.java:26: cannot find symbol
    symbol : variable getBase
    location: class MotelBase
    "Base rate: " + this.getBase + "\n" ;}}
    ^
    13 errors
    it seem like everytime i fix something there is a virtual landrush of errors, i appreciate all of your help thank you for taking the time to answer my questions

  • Adobe flash script error

    Post Author: JSA
    CA Forum: Xcelsius and Live Office
    In trying to update a model I have updated many times before, I am running into an error message alerting me to a slow Adobe script and prompting me to abort the script, or ignore and continue.  The User Manual suggests that larger models may need additional processing time and to ignore the script and the model will eventually update. For me, when I ignore the script (having to close the error message as many as three times over a two minute period) Xcelsius crashes.
    I have not gotten this error ever in the past, and now am geting it every time I update this model.  It has shut me down effectively. I even removed all data references and began rebuilding when I got the error again, even though I was not even trying to refresh the data source!  After the crash, I also get a "the referenced memory at XXXXX could not be read at 0x00000004" type of error. Also new error, and only shows up once Xcelsius crashes.
    Has anyone else experienced this issue?  I would appreciate any help.  Perhaps this is an Adobe Flash compatibility issue?
    JSA

    I also get the same error. It only pops up at s=certain times. I have on SWF in another that I call (from a HTML) when I get the error. However when I call the SWF from its own HTML i do nit get it at all. Another problem is that I sometimes get udefined lines and rows in my line charts.

Maybe you are looking for

  • IPhone not recognized by iTunes

    For some reason my iPhone is no longer being recognized by iTunes. I'm running 8.2 and 3.0 firmware. I've tried different cables, ports, reinstalling iTunes, rebooting the computer, rebooting the phone and nothing. The phone is charging when connecte

  • Is anyone else having trouble synching their iPod contacts?

    History: While synching my older iPoud Touch (via cable link), with my new MacBook Pro (OS X Lion) I lost all of the contacts on the iPod and none of the lost contacts made it to the MacBook Pro ... before I knew it another back up ran so now my empt

  • TIFF image in Browser

    I have TIFF images in folder in a machine on network ,when the user clicks the image link through browser i want the TIFF to open in the browser but the browser is not opening it infact IE is not doing anything but Firefox is atleast asking for file

  • How can I get LiveCycle ES2

    I owe a copy of LiveCycle Designer ES4.  On another system I have LiveCycle Designer ES2 to used to create forms that we use in out application.  The ES2 worked great.  However, with ES4 our application will not read the fields using iTextSharp if th

  • Controller assigments stop working?? Any Fix??

    I have an M-Audio Oxygen 49 Keyboard and recently made a New Autoload with Key Commands and Midi controller assignments for transport controls, and some toggle windows... After about 20 minutes of messing around I went to press record on my Oxygen an