Web Service Test in SE80 does not work with internal Table

Hello,
I have created a web server based on a function module. It works fine when the server is invoked from outside (.Net or SOAPUI).
However, when I test it in SE80, (open the Server and then F8), it shows error message:
     Access to the table ref. node 'Y02VSI_CAE_CONDITIONITEM' outside a loop
(Germany Zugriff auf den Tabellen-Ref-Node 'Y02VSI_CAE_CONDITIONITEM' außerhalb einer Schleife )
The test xml is generated from SAP, I just fill the data as following:
This XML is absolute correct. Why item ('Y02VSI_CAE_CONDITIONITEM) is outside a loop?
Is it a bug from SAP?
Thanks in advance!
Regards
Dianlong

Hi Dianlong,
Please check if SAP note 1132501 is relevant for your ECC release. If you apply the note, you may have to re-generate the web service from the function module.
Regards, Trevor

Similar Messages

  • TableChanged() does not work with parrent table reference

    Hi,
    I used this example http://www.javalobby.org/articles/jtable/ where the cells refocus after updating, but I have rewrote it to my needs and the program throws nullpointerexception when I update any cell:(
    here is the tableChanged part of code:
        public class InteractiveTableModelListener implements TableModelListener {
            public void tableChanged(TableModelEvent evt) {
                if (evt.getType() == TableModelEvent.UPDATE) {
                    int column = evt.getColumn();
                    int row = evt.getFirstRow();
                    System.out.println("updated row: " + row + " column: " + column);
                   if((column + 1) >= model.getRowCount()){
                      table.removeColumnSelectionInterval(column,column);
                    }else{
                      table.setColumnSelectionInterval(column + 1, column + 1);
                    table.setRowSelectionInterval(row,row);
    }the table reference worked in the exaple but doesnt work in my program:(
    here is the init of the table in function initComponent:
            tableModel.addTableModelListener(new InteractiveTableModelListener());
            TableSorter sorter = new TableSorter(tableModel);
            JTable table = new JTable(sorter);the class is on the same level as the function
    i have searched all the internet for this with no results:(
    thank you for your advice!

    Yes, you are right, I wrote this post in a hurry and exhaused, that it does not work.
    I'm trying to write out a data file (now only a vector of data) in a JTable and I want to edit the rows and after I submit text in a cell, I want the caret to move one cell right, so the user can write another text, just like in MS Excel. At the end of the row the caret disapears but does not create another row.
    And I have problems with variable JTable table in the inner class that contains method tableChanged().
    Well After making an example I realized it worked and then I checked the example line by line and found out that I declare another JTable with the same name in the table initializing method,
    Then the variable couldnt work in tableChanged method... It was empty...
    I used your example from thread, you advised me:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class TableProcessing extends JFrame implements TableModelListener
         // here I declare the table
            protected JTable table;
         public TableProcessing()
              String[] columnNames = {"Item", "Quantity", "Price", "Cost"};
              Object[][] data =
                   {"Bread", new Integer(1), new Double(1.11), new Double(1.11)},
                   {"Milk", new Integer(1), new Double(2.22), new Double(2.22)},
                   {"Tea", new Integer(1), new Double(3.33), new Double(3.33)},
                   {"Cofee", new Integer(1), new Double(4.44), new Double(4.44)}
              DefaultTableModel model = new DefaultTableModel(data, columnNames);
              model.addTableModelListener( this );
                    // here I declare it again, which is a MISTAKE
              JTable table = new JTable( model )
                   //  Returning the Class of each column will allow different
                   //  renderers to be used based on Class
                   public Class getColumnClass(int column)
                        return getValueAt(0, column).getClass();
                   //  The Cost is not editable
                   public boolean isCellEditable(int row, int column)
                        int modelColumn = convertColumnIndexToModel( column );
                        return (modelColumn == 3) ? false : true;
              table.setPreferredScrollableViewportSize(table.getPreferredSize());
              JScrollPane scrollPane = new JScrollPane( table );
              getContentPane().add( scrollPane );
          *  The cost is recalculated whenever the quantity or price is changed
         public void tableChanged(TableModelEvent e)
              System.out.println(e.getSource());
              if (e.getType() == TableModelEvent.UPDATE)
                   int row = e.getFirstRow();
                   int column = e.getColumn();
                   if (column == 1 || column == 2)
                                   // AND here is not initialised - throws NullPointerException
                        TableModel model = table.getModel();
                        int     quantity = ((Integer)model.getValueAt(row, 1)).intValue();
                        double price = ((Double)model.getValueAt(row, 2)).doubleValue();
                        Double value = new Double(quantity * price);
                        model.setValueAt(value, row, 3);
         public static void main(String[] args)
              TableProcessing frame = new TableProcessing();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

  • Consuming Web Services in 11.2 does not work ??

    Hello,
    Did anyone manage to call a Web Service from Oracle 11.2 database?
    We wanted to call a web service from Oracle, so for example if I execute:
    SELECT add_numbers(1, 5) FROM dual;
    from my database, I get the result 6.
    Cool thing is that the add_numbers function is not in my database, but in a database somewhere in the cloud, and I access the function as a web service.
    Oracle provides step-by-step documentation how to do it, but we couldn't make it working by following the docs. It was done on a clean Oracle 11.2 database install.
    We followed the instructions from: http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    The main part of the job is to:
    1) Load the java classes into the Oracle database by issuing the following command: % loadjava -u sys\<password> -r -v -f -genmissing dbwsclientws.jar dbwsclientdb11.jar
    2) Install the UTL_DBWS package into the database (it is not installed by default in 11g):
    SQL> @?/sqlj/lib/utl_dbws_decl.sql
    SQL> @?/sqlj/lib/utl_dbws_body.sql
    We loaded the classes into the SYS user and installed the UTL_DBWS package into the SYS user as well.
    3) Create a function that uses UTL_DBWS package to call a web service: http://www.oracle-base.com/articles/10g/utl_dbws10g.php
    However, when we tried to run the add_numbers function, it returned an error from the UTL_DBWS package, from the create_service function (line 190), the function returned that the java class that it calls does not exist:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
    ORA-06512: at "SYS.UTL_DBWS", line 193
    ORA-06512: at "SYS.UTL_DBWS", line 190
    ORA-06512: at "SYS.ADD_NUMBERS", line 25
    Line 193 in UTL_DBWS package goes like this:
    function create_service_proxy(wsdl_Document_Location VARCHAR2, service_Name VARCHAR2) return SERVICE
    as language java
    name 'oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String,java.lang.String) return long';
    However, this makes no sense because the class is loaded:
    select dbms_java.longname(object_name), status, object_type from all_objects where
    object_name like '%DbwsProxy%'
    and object_type = 'JAVA CLASS'
    Output:
    oracle/jpub/runtime/dbws/DbwsProxy$1;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy$CallProxy;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy$ServiceProxy;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy;VALID;JAVA CLASS
    Anyone knows the cause of the exception?
    Edited by: user8938058 on Feb 1, 2011 2:08 AM

    I had the same problem. For me below code works:
    CREATE OR REPLACE FUNCTION SYS.add_numbers (p_int_1 IN NUMBER,
    p_int_2 IN NUMBER)
    RETURN NUMBER
    AS
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname UTL_DBWS.qname;
    l_port_qname UTL_DBWS.qname;
    l_operation_qname UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    BEGIN
    l_wsdl_url := 'http://www.oracle-base.com/webservices/server.php?wsdl';
    l_namespace := 'http://www.oracle-base.com/webservices/';
    l_service_qname := UTL_DBWS.to_qname(l_namespace, 'Calculator');
    l_port_qname := UTL_DBWS.to_qname(l_namespace, 'CalculatorPort');
    l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ws_add');
    l_service := UTL_DBWS.create_service (
    service_name => l_service_qname);
    l_call := UTL_DBWS.create_call (
    service_handle => l_service);
    utl_dbws.set_target_endpoint_address(l_call, 'http://www.oracle-base.com/webservices/server.php');
    utl_dbws.set_property( l_call, 'OPERATION_STYLE', 'rpc');
    l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    <ws_add xmlns="' || l_namespace || '">
    <int1>' || p_int_1 || '</int1>
    <int2>' || p_int_2 || '</int2>
    </ws_add>');
    l_xmltype_out := UTL_DBWS.invoke(call_Handle => l_call,
    request => l_xmltype_in);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN l_return;
    END;
    It seems that the problem is with class oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String,java.lang.String) return long
    I rewrite your example that it uses oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String) return long
    In the database log I get this stacktrace:
    *** 2011-06-03 11:22:37.390
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3b689a27
    WSDL: http://www.oracle-base.com/webservices/server.php?wsdl
    ERROR: java.lang.ExceptionInInitializerError
    java.lang.ExceptionInInitializerError
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readDocument(WSDLReaderImpl.java:309)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:275)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:462)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:440)
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:161)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:167)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:196)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:181)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:114)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Caused by: java.util.MissingResourceException: Can't find oracle.j2ee.ws.wsdl.ORAWSDLMessageBundle bundle
         at java.util.logging.Logger.setupResourceInfo(Logger.java:1285)
         at java.util.logging.Logger.<init>(Logger.java:203)
         at java.util.logging.Logger.getLogger(Logger.java:271)
         at oracle.j2ee.ws.wsdl.ORAWSDLMessages.<clinit>(ORAWSDLMessages.java:14)
         ... 14 more
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3b689a27
    WSDL: http://www.oracle-base.com/webservices/server.php?wsdl
    ERROR: java.lang.NoClassDefFoundError
    java.lang.NoClassDefFoundError
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readDocument(WSDLReaderImpl.java:309)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:275)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:462)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:440)
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:161)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:167)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:196)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:181)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:114)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Maybe somebody explain why if I use function create_service(wsdl_Document_Location URITYPE, service_Name QNAME)
    RETURN SERVICE it throws ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
    and when I use function create_service(service_Name QNAME) RETURN SERVICE it works ?
    Please help
    Edited by: user10200937 on 2011-06-03 03:14

  • RFC works but web service for that RFC does not work..weird??

    hi all,
    I created an RFC enabled function module to create a Sales Order in SAP CRM for both for Varinat Configurable and Normal Materials.
    The RFC Works well...if i test it..it creates an order and if i go and check the sales order in CRM GUI. i find that sales order is perfect with the configuration data for the configurable items..
    Now i created a Web service for this RFC by calling the Web service creation wizard.
    Now i am testing the Web service in SOAMANGER T-code and the sales order is created and weird thing the configuration data is missing for Varinat configurable item..
    But i dont encounter this problem if i am testing the RFC directly
    What could be wrong...why is my web service behaving weird?
    I am dying to find this out..did any body enocunter this situation befor ..please help

    Sure Oliver..
    I put a break point using external debugger and when i was testing the Web service in SOAMANAGER..
    i could then land into ABAP debugger.
    There in my RFC i put a logic such that i diffenetiate between VC and Non-VC items and fill the Charateristic Values only if it is aVC item.
    I saw that the IF condition was not executing as they suddenly changed the material structure in ECC and it reflected in CRM.
    SO i am inputting 18 digits of material no like '000000000000000001' for '1'...but the if condition was checking against 1 =1 so that loop never executed and chara values are not getting filled.
    But if i test RFC in se37 ..it works as i am inputting 1...
    Since Web service works with XML (WSDL) need to be very careful with the format in which data is inputted and the format in which the logic we wrote in RFC works.
    Once again ..thanks to all people who helped me with the answers...
    Regards,
    Jessica Sam

  • Consuming Web Services in 11.2 does not work (UTL_DBWS)

    Hello
    i read some documents for consuming web services on the internet , but i get an error when i call add_numbers function as follows:
    i connected on WSUSER , then
    SQL> select add_numbers(1,3) from dual;
    The Error message is:
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
    ORA-06512: at "WSUSER.UTL_DBWS", line 193
    ORA-06512: at "WSUSER.UTL_DBWS", line 190
    ORA-06512: at "WSUSER.ADD_NUMBERS", line 25"
    I use the following steps to setup the UTL_DBWS :
    1-     Create new user 'WSUSER'
    2-     Run the UTL_DBWS scripts ( utl_dbws_decl.sql , utl_dbws_body.sql) on WSUSER.
    3-     Execute this command
    loadjava -u scott/tiger -r -v -f -genmissing dbwsclientws.jar dbwsclientdb11.jar
    4-     Log in as sys and grant these privileges to our new user:
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxySet','write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxyHost', 'write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxyPort', 'write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission', 'accessClassInPackage.sun.util.calendar','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission','getClassLoader','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.net.SocketPermission','*','connect,resolve');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','*','read,write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission','setFactory','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission', 'createClassLoader', '' )
    5-     Create add_numbers function on wsuser to test utl_dbws:
    CREATE OR REPLACE FUNCTION add_numbers (p_int_1 IN NUMBER,
    p_int_2 IN NUMBER)
    RETURN NUMBER
    AS
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname UTL_DBWS.qname;
    l_port_qname UTL_DBWS.qname;
    l_operation_qname UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    BEGIN
    l_wsdl_url := 'http://www.oracle-base.com/webservices/server.php?wsdl';
    l_namespace := 'http://www.oracle-base.com/webservices/';
    l_service_qname := UTL_DBWS.to_qname(l_namespace, 'Calculator');
    l_port_qname := UTL_DBWS.to_qname(l_namespace, 'CalculatorPort');
    l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ws_add');
    l_service := UTL_DBWS.create_service (
    wsdl_document_location => URIFACTORY.getURI(l_wsdl_url),
    service_name => l_service_qname);
    l_call := UTL_DBWS.create_call (
    service_handle => l_service,
    port_name => l_port_qname,
    operation_name => l_operation_qname);
    l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    <ws_add xmlns="' || l_namespace || '">
    <int1>' || p_int_1 || '</int1>
    <int2>' || p_int_2 || '</int2>
    </ws_add>');
    l_xmltype_out := UTL_DBWS.invoke(call_Handle => l_call,
    request => l_xmltype_in);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN l_return;
    END;
    6-     Test the function
    Select add_numbers(1,2) from dual
    on the test i get the error message :
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
    ORA-06512: at "WSUSER.UTL_DBWS", line 193
    ORA-06512: at "WSUSER.UTL_DBWS", line 190
    ORA-06512: at "WSUSER.ADD_NUMBERS", line 25
    anyone have an idea to resolve this error .
    thanks alot

    Hi.
    Looking at the code, it seems it is my article you are asking about.
    http://www.oracle-base.com/articles/10g/utl_dbws10g.php
    I've just run through it on an 11.2 instance and it works fine for me.
    Make sure your server has access to the Internet and make sure the java classes are loaded successfully.
    Cheers
    Tim...

  • .click on row works with php table - does not work with javascript table.

    Howdy,
    I've run into a very interesting problem today, and I hope you'll be able to help me.
    I have a page in which the top is php to read a table from the server, and post the table as the html page is being built.
    The data come up as a table, and each row is clickable, that click moving the user to a different page, based on the row clicked.
    Here are the relevant parts of the php code:
    <?php
    echo "<table id='patienttable' cellpadding=5px border=0 font-size=16px>";
    echo "<tr><th width='30'>"."ID#"."</th><th width='100'>"."Last Name"."</th><th width='100'>"."First Name"."</th><th width='100'>".
    "Middle Name"."</th><th width='80'>"."DOB"."</th><th width='50'>"."Zip"."</th><th width='50'>"."Gender"."</th><th width='100'>".
    "Phone"."</th></tr>";
    while ($row = mysqli_fetch_array($result))
    blah blah blah
    echo "<tr><td id='localid'>".$localid. "</td><td>".$lastname. "</td><td>".$firstname. "</td><td>".$middlename."</td><td>".$dob."</td><td>".$physzip. "</td><td>".$gender."</td><td>".$phone1.       "</td></tr>";
      echo "</table>";
    ?>
    And here is the code to click on a row:
    $("#patienttable tr").click(function() {
           var passthis = $(this).find("#localid").html();
           $.post("php/setsessionvariable.php",
                  {sessionval: passthis},
         function(e) {window.location.href = "root.php"}
    EVERYTHING works great - no problems - working now for about 2 months.
    Today I started to build something similar, BUT! I cannot read from the database at the top of the page, I must do an ajax query, call the db, and post the data in a table;
    Here is the boring, fairly straight-forward javascript code:
    $.ajax({
        type: "POST",
        url: "findpatientbackend.php",
        data: {letterslastname: lastname},
        dataType : 'json',
        success: function(result) {
      $("#div1").html("");
            if(result.length >= 1)
       {var output = "";
             $("div1").html("<table id='findtable'>");
              $.each(result, function(index, value) {
                                                     output += "<tr><td width='100px'></td><td id='localid' width='100px'>"
                 + value.localid + "</td><td width='100px'>"
                 + value.lastname + "</td><td width='100px'>"
                 + value.firstname + "</td><td width='100px'>"
                 + value.middlename + "</td><td width='100px'>"
                 + value.dob + "</td></tr>";
                $("#div1").html(output);
             $("div1").html("</table>");  
        error : function() { alert("error on return"); }
    And here is the click row code, almost EXACTLY like the one above:
    $("#findtable tr").click(function() {
           var passthis = $(this).find("#localid").html();
           $.post("php/setsessionvariable.php",
                  {sessionval: passthis},
         function(e) {window.location.href = '../root.php'}
    All the "stuff" loaded onto the page just fine, BUT, absolutely nothing happens when I click a row.
    Playing around this afternoon, I did a "View Source" on both pages, and saw something VERY interesting;
    1 - The table written by PHP is present, can be seen, and therefore is "clickable" to the jquery .click function.
    2 - The table written by javascript is INVISIBLE! I cannot see it in the source view (but I can see it on the screen) and therefore the .click function can't see it either.
    Questions:
    1. How can I make the table written in javascript "clickable" - how can I make the javascript table "visible"?
    2. Could it be the use of ".html" to post the table to the div? Is there another way?
    And again, I thank you in advance for any help.

    I found the solution to my problem, and perhaps my comments here will help others.
    Thinking a bit more, I wrote a separate javascript routine that created a table, allowed it to be styled, and allowed it to be clickable.
    Here is the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js" type="text/javascript"></script>
    <style>
    #findtable {
    width:200px;
    background-color:#CFD3FE;
    margin:10px auto;
    text-align:center;}
    </style>
    <body>
    <div id="puttablehere"></div>
    <script>
    $(document).ready(function () {
    var output = "<table id='findtable'>";
    for (var i = 0; i<15; i++) {output += "<tr><td width='100px'>X</td><td id='localid' width='100px'>X</td></tr>";}
    output += "</table>";
    $("#puttablehere").html(output);
    $("#findtable tr").click(function(e) { alert("it works!"); });
    </script>
    </body>
    </html>
    The initial code I posted was creating the table the wrong way.
    You have to create the WHOLE table at the same time, and post it all at once.
    The code above does that.
    My learning points are:
    1. To create a table in javascript, and post it with a $("#puttablehere").html(output); call, you must put the ENTIRE table into that single string variable called "output" (or whatever you want to call it).
    2. Everytime you call a jqeury .html function like this: ---("#puttablehere").html(output); -- It COMPLETELY over-writes the whole div/tr/td block that it is pointed at.
    3. If you create a table in javascript (client side) you cannot see it with "View Source" - because what is posted in the table is AFTER the DOM is loaded.
    Creating a table with php server side - you CAN see, because it is posted with the DOM.
    So I thank you for your ideas, and I hope this may help another noob, such as myself, in the future.
    Adios!

  • DefaultFileName does not work with apache-webligic bridge in service pack 5

    The DefaultFileName directive does not work with apache-webligic bridge
    from service pack 5. It used to work with the apache-webligic bridge
    from service pack 3. Can anybody tell me why? Thanks.
    Wei

    I also had same issues using iPhone 5. Got chance to speak with senior engineers at NTC and they have confirmed 3G equipment they are using is not yet compatible with 3G band that iPhone 5 uses. So technically speaking, iPhone 5 has a hardware that is a generation ahead and not backward compatible to 3G system NTC currently uses.
    On a bright side though, they confirmed that NTC is aware of the situation and is soon upgrading its hardware within next 1 or 2 months which will finally support 3G on iPhone 5. The other operator though already has support for this (don't want to mention their name but you know the alternative).
    As for me, I'll be waiting for the (super frustrating) NTC to upgrade their hardware.
    BTW - Apple has nothing to do with this issue.

  • Applet does not work with a proxy server.URgent

    Hi,
    I have an asp page being hosted from a IIS server.
    The asp page has an applet which gets data from a server side component which is hosted as a service on the server side.For connection to the server I am using URLConnection object and trying to connect over a TCP connection.
    The problem occurs when I use an proxy in the middle.
    I have changed the browser settings to include the proxy.
    The following is the error I recieve:
    Full :http://172.25.11.63:4590/
    <-------------------------------->
    OPening input stream
    in Run ::::
    ERROR: Created data socket but can't open stream on
    it.172.25.11.63:4590//
    172.25.11.63:4590//
    java.io.FileNotFoundException: 172.25.11.63:4590//
         at com/ms/net/wininet/http/HttpInputStream.connect
         at com/ms/net/wininet/http/HttpInputStream.<init>
         at com/ms/net/wininet/http/HttpURLConnection.createInputStream
         at com/ms/net/wininet/WininetURLConnection.getInputStream
         at TalkClientApplet.rendezvous
         at TalkClientApplet.actionPerformed1
         at TalkClientApplet.start
         at com/ms/applet/AppletPanel.securedCall0
         at com/ms/applet/AppletPanel.securedCall
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run
    ...Disconnecting.
    Following is my code.
    url = new URL("http://" + host +":"+i);
    urlconnection = url.openConnection();
    urlconnection.setDoOutput(true);
    urlconnection.setDoInput(true);
    System.out.println("Successfully opened the URL connection at " + "http://" + host + ":" + i );
              System.out.println ("Protocol: " + url.getProtocol());
              System.out.println ("Host :" + url.getHost());     
              System.out.println ("Port :" + url.getPort());
              System.out.println ("File :" + url.getFile() );
              System.out.println ("Full :" + url.toExternalForm());
              System.out.println ("<-------------------------------->");
    os = new BufferedWriter(new OutputStreamWriter(urlconnection.getOutputStream()));
    System.out.println("OPening input stream ");
    // is = new DataInputStream(urlconnection.getInputStream());
         System.out.println(urlconnection.getInputStream());
    is = new DataInputStream(urlconnection.getInputStream());
    The exact place where I get the error is whn i call URLConnection.openInputStream().
    Usually this error comes with a malformed URL.But the same code words without a proxy.Also I am not making any changes to my code in both scenarios that is with or without proxy.
    Please help.This is urgent and a showstopper

    Thanks for your nice solution, but unfortunatelly it does not work with lines longer than 100 chars with Netscape. It works fine with IE and appletviewer too.
    Example:
    I use this code:
    try {
                URL url = new URL(protocol,hostName,portNumber,URLstring);
                InputStream in = url.openStream();
                BufferedInputStream bis = new BufferedInputStream(in);
                StringBuffer input = new StringBuffer(60);
                int c;
                while ((c = bis.read()) != -1){
                    System.out.print((char)c);
                    input.append((char)c);
                bis.close();
                dataFromServer = input.toString();
            catch(Exception ex) {
                ex.printStackTrace();
            }I use input file test.html with exactly 100 chars ('a')
    Netscape Java Console:
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadataFromServer : aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaI use input file test.html with exactly 101 chars ('a')
    Netscape Java Console:
    ?JL?yyxk?cedataFromServer : ?

  • Adobe Flash Player does not work with Safari. What can I do?

    Hi,
    I have a MacBook Pro, Retina, 15 inch, late 2013,  2 GHz Intel Core i7, using OS X 10.9.4. I have installed Adobe Flash Player. In my System Preference, in the advanced settings, it is set to install updates also tells me that I have the NPAPI Plug-in (version 14.0.0.145) installed but not the PPAPI Plug-in. Is this the reason why it does not work with Safari (keeps telling me to download the app, which I did but still does not work)? Is there any way I could fix the problem? Please, help.
    Thanks.

    If you can't install or update Flash, follow these instructions.
    If you have installed the latest version of Flash, please take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 8. Back up all data before making any changes.
    Step 1
    You might have to log out or restart the computer before a Flash update takes effect.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Step 3
    If you're only having trouble with YouTube videos, log in to YouTube and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 4
    a. If you get a warning of a "blocked" or "outdated" plug-in, then select the Security tab in the Safari preferences window. In the list of plugins on the left, there should be one—and only one—entry for "Adobe Flash Player," showing the same version number that you installed. Select that entry. On the right there will be a list of websites for which you have specifically allowed Flash, if any. It's normal for the list to be empty. Below that is a menu labeled
              When visiting other websites
    From that menu, select either Allow or Ask.
    b. If you still get the alerts, then go back to the Flash Player preference pane and select the Advanced tab. Click Check Now. Quit and relaunch the browser.
    c. If the alerts still persist, triple-click anywhere in the line below on this page to select it:
    /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
    Right-click or control-click the highlighted text and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it, there should be a file named "XProtect.meta.plist". If that file is missing and you know why it's missing, restore it from a backup or copy it from another Mac running the same version of OS X. Otherwise, reinstall OS X.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 5
    In the Safari preferences window, select the Advanced tab and uncheck the box marked
              Stop plug-ins to save power
    Step 6
    Open this folder as in Step 4:
    /Library/Internet Plug-Ins
    Delete the following item, or anything with a similar name, if present:
              Flash Player (failing).plugin 
    You may be prompted for your login password.
    Step 7
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 8
    If you get a "missing plug-in" error, select
              Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked  
              Allow (or Enable) plug-ins
    Then click the button marked
              Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 9
    Select
              Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.

  • My camera works with the photobooth and with skype but does not work with online applications such as "lolcam from facebook" or "faceonthehole" application. Please help

    My camera works with the photobooth and with skype but does not work with other applications like the "lolcam" from facebook or the " faceonthe hole" application. Can anyone help?

    There was a issue with school computers being used to spy on kids in their bedrooms, Mac's were involved.
    So Apple most likely tightened the API's to only select, trustworthy companies as not to abuse the web cam access priviledge.
    If you want to use a web cam with these other programs and services, you'll likely have to buy a third party USB one, so you can manually disconnect it.
    There isn't a way to physcially disconnect the built in web cam on Mac's without busting open the machine.

  • Flash player does not work with Ie or Firefox with win 8.1?

    Flash player does not work with Ie or Firefox with win 8.1 64, If i try and play a video I get the message to install Flashplayer.
    If I try and install it it says it is already installed. Your onsite  installer says it is not applicable to my machine.
    I have followed all the normal steps re enabling addons and active filters etc.
    all to no avail Pc is Dell 6 months old, Flashplayer has never worked on this machine. Last MS update mid Dec 2014.
    Version of flashplayer is 15....03.......

    Flash Player is a built-in component of Internet Explorer.  There's nothing separate to download or install.
    Firefox requires a different version of Flash Player (the NPAPI plug-in), which will be served to you if you go here: http://get.adobe.com/flashplayer using Firefox; however, there are some unique stability issues related to Firefox on Win8.1, and you're probably better off using Google Chrome if you want a more optimal experience with Flash Player.
    For problems where IE isn't being detected by sites that require Flash:
    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11

  • External USB HD does not work with HAL:

    External USB HD does not work with HAL:
    From the last 10 days the HAL auto-mount with ntfs-3g file system of my external hard drive  does not woks.
    But the manual mount procedure with the command mount -t ntfs-3g /dev/sdb* /mnt/XYZ works.
    I've followed the instructions in the wiki: http://wiki.archlinux.org/index.php/HAL and the system has worked up to the last kernel or HAL update.
    My fat32 usb-stick works without any problem.
    If I try to open the device with KDE it appears an error popup wit this message:
    TODO: have to rethink extra options
    Error: kio_media_mount_helper
    The log from the kernel.log is
    Nov 6 22:03:16 myhost usb 5-1: new high speed USB device using ehci_hcd and address 4
    Nov 6 22:03:16 myhost usb 5-1: configuration #1 chosen from 1 choice
    Nov 6 22:03:17 myhost Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    Nov 6 22:03:17 myhost ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    Nov 6 22:03:17 myhost Initializing USB Mass Storage driver...
    Nov 6 22:03:17 myhost scsi6 : SCSI emulation for USB Mass Storage devices
    Nov 6 22:03:17 myhost usb-storage: device found at 4
    Nov 6 22:03:17 myhost usb-storage: waiting for device to settle before scanning
    Nov 6 22:03:17 myhost usbcore: registered new interface driver usb-storage
    Nov 6 22:03:17 myhost USB Mass Storage support registered.
    Nov 6 22:03:22 myhost scsi 6:0:0:0: Direct-Access WDC WD32 00JB-00KFA0 0811 PQ: 0 ANSI: 0
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sdb: sdb1
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Attached SCSI disk
    Nov 6 22:03:22 myhost sd 6:0:0:0: Attached scsi generic sg2 type 0
    Nov 6 22:03:22 myhost usb-storage: device scan complete
    and the error.log is
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Do you have some idea ....
    Bye.

    I have done the following:
    Downloaded the patched hal version.
    used makepkg in /abs/local/trunk/ to create a pkg for pacman
    used sudo pacman -U pkgname to install it.
    used sudo nano /etc/hal/fdi/policy/preferences.fdi to create the fdi file with the following content:
    saved the file and removed my ntfs entryes from fstab and rebooted. and still there is no automount off ntfs partitions.
    have i done something wrong?
    br fjodork
    WARNING: what follows is a guide of what did work for me, I'm still in an early stage of learning linux, so please correct me if anything of what follows is wrong/dangerous/stupid. As I said, this worked for me, it's not pretty, since I was learning each step on the fly and I'm sure there are better ways to do this.
    So fjodork, you seem to have done the the necessary steps, though i couldn't get it to work until i first removed hal without dependencies
    pacman -Rd hal
    it will give you some warning about the dependencies, ignore  it since we are reinstalling hal in a few steps.
    First i tried to follow Raymano's link, obviously it showed me nothing in the browser so I thought it might be a broken link.
    So I downloaded the source tarball from here http://hal.freedesktop.org/releases/hal-0.5.10.tar.gz
    unpacked it changed the /tools/hal-storage-mount.c as per Milfadoodle's instructions.
    at first I tried to compile directly from source, the process would finish without a glitch though after reboot nothing changed, as if hal weren't
    installed, i guess there were issues with paths. anyway read on
    Then repacked the source in tarball, copied it to /var/abs/extra/system/hal and modified the PKGBUILD as follows
    makedepends=('pkgconfig' 'gperf')
    options=('!libtool')
    install=hal.install
    source=(${pkgname}-${pkgver}.tar.gz #removed url so makepkg looks in the current directory for the tarball
        hal
        hal-policy.patch
        cryptsetup_location.patch
        hal-0.5.9-hide-diagnostic.patch
        ntfs3g-valid-options.patch)
    md5sums=('6641c30a27c00485c6accac5110ff911' # replace with md5sum of your package's sourceball (run md5sum filename)
             '882f67668cb14a0a9e4a27ef22278027'
             '5ba8b610aa9763a5f42b9f7cbd7a86ad'
    then makepkg (i had to add --asroot, don't ask why
    and finally pacman -U hal-0.5.10-1-i686.pkg
    another reboot and everything worked without a glitch!:D (yeah i know i still haven't got rid of the reboot mentality )
    I have also put the policy files as per the wiki instructions.
    PS: I know this is a dirty way to getting things done but as i said, I'm just starting
    If anyone could comment/correct/explain this post I'd be more than happy, the automount issue was bothering me for about a month now (you'll say why do I need ntfs in the first place? well, I only recently switched for Linux as my primary OS, these are some relics of the M$ era

  • After upgrading to Lion internal mic does not work with Facetime

    After upgrading to Lion internal mic does not work with Facetime.  The mic is picking up sound as noted in System Prefs.  This was working just fine before the updgrade.  Facetime works OK on my iPod. 

    you have in french a tutorial to recreate your partition here
    Rebuild partition with Recovery HD lion after upgrade to 10.7.2
    i tested, it's work !
    For your wifi problem:
    Try to change your setup of wifi, look this table given by apple:
    I changed my wifi setup wep to wpa and it's work !

  • ACROBAT XI - DOES NOT WORK WITH WINDOWS VISTA

    WHY DOESN'T THE COMPANY STATE ACROBAT XI PRO DOES NOT WORK WITH WINDOWS VISTA.
    THE COMPANY NEEDS TO WARN PEOPLE.  THE ACROBAT TECH SUPPORT FINALLY FIGURED OUT THAT IT'S NOT COMPATIBLE WITH WINDOWS VISTA.

    The Acrobat website and the box lists the compatible OSs. You want Adobe to list all of the incompatible OSs---going back how far.
    Acrobat XI Pro system requirements
    These system requirements are for Adobe® Acrobat® XI Pro software, v11.0. Because system requirements change with each software update, refer to the Release Notes for your software version for the latest information on supported operating systems and browsers.
    Windows
    1.3GHz or faster processor
    Microsoft® Windows® XP with Service Pack 3 for 32 bit or Service Pack 2 for 64 bit; Windows Server® 2003 R2 (32 bit and 64 bit); Windows Server 2008 or 2008 R2 (32 bit and 64 bit); Windows 7 (32 bit and 64 bit); or Windows 8 (32 bit and 64 bit)
    512MB of RAM (1GB recommended)
    1.85GB of available hard-disk space
    1024x768 screen resolution
    DVD-ROM drive
    Internet Explorer 7, 8, 9, or 10; Firefox Extended Support Release; or Chrome
    Video hardware acceleration (optional)
    Note: For 64-bit versions of Windows Server 2003 R2 and Windows XP (with Service Pack 2), Microsoft Update KB930627 is required.

  • Wintergame does not work with 10.8 and no assistence from apple or the seller

    I have bought in the official Apple Ap Store the game Wintergames. But it does not work with mit OSX 10.8.3
    Every i try to load this programm it brakes down. I have contacted the seller. He is not interested in the problem and gave only the hint to re-intall the programm. This i have done 3 times. It does not work. I have get in contact with the Apple Support. They answered me they were not responsible for that.
    And i ask me.... why do Apple sell programms in their own stores, that do not work.
    This is the remark it get, if i start this programm:
    Process:         wintergames [3566]
    Path:            /Applications/WinterGames.app/Contents/MacOS/wintergames
    Identifier:      com.rune-soft.wintergames
    Version:         1.2.0 (1.2)
    App Item ID:     427639548
    App External ID: 10667633
    Code Type:       X86 (Native)
    Parent Process:  launchd [211]
    User ID:         501
    Date/Time:       2013-04-10 13:31:54.394 +0200
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          29498 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  38 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D1D3A31E-9A15-BB5E-1704-71380FD0FE3E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K]
    ---/--- SM=NUL  /Applications/WinterGames.app/Contents/MacOS/wintergames
        __TEXT                 0000000000001000-0000000000197000 [ 1624K]
    r-x/rwx SM=COW  /Applications/WinterGames.app/Contents/MacOS/wintergames
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.rune-soft.wintergames         0x00088619 MainMenu::createMenues() +
    393
    1   com.rune-soft.wintergames         0x000a7db4 MainMenu::init() + 4804
    2   com.rune-soft.wintergames         0x00070dfa
    WinMain(Windows::HINSTANCE__*, Windows::HINSTANCE__*, char*, int) + 394
    3   com.rune-soft.wintergames         0x000042ff -[GameAppDelegate
    mainWinThreadProc:] + 303
    4   com.rune-soft.wintergames         0x00003c46 -[GameAppDelegate
    applicationDidFinishLaunching:] + 342
    5   com.apple.Foundation              0x997f9152 __57-[NSNotificationCenter
    addObserver:selector:name:object:]_block_invoke_0 + 49
    6   com.apple.CoreFoundation          0x91e6c861
    ___CFXNotificationPost_block_invoke_0 + 257
    7   com.apple.CoreFoundation          0x91db7e9a _CFXNotificationPost + 2794
    8   com.apple.Foundation              0x997e1c88 -[NSNotificationCenter
    postNotificationName:object:userInfo:] + 92
    9   com.apple.AppKit                  0x934750fe -[NSApplication
    _postDidFinishNotification] + 367
    10  com.apple.AppKit                  0x93474db8 -[NSApplication
    _sendFinishLaunchingNotification] + 249
    11  com.apple.AppKit                  0x93471d0f
    -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751
    12  com.apple.AppKit                  0x93471824
    -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] +
    378
    13  libobjc.A.dylib                   0x96383628 -[NSObject
    performSelector:withObject:withObject:] + 77
    14  com.apple.Foundation              0x997fc73a __76-[NSAppleEventManager
    setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 +
    121
    15  com.apple.Foundation              0x997fc291 -[NSAppleEventManager
    dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    16  com.apple.Foundation              0x997fc08e
    _NSAppleEventManagerGenericHandler + 173
    17  com.apple.AE                      0x94d5aa35 aeDispatchAppleEvent(AEDesc
    const*, AEDesc*, unsigned long, unsigned char*) + 331
    18  com.apple.AE                      0x94d2ffbe
    dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    19  com.apple.AE                      0x94d2fe7d aeProcessAppleEvent + 318
    20  com.apple.HIToolbox               0x99bd4c58 AEProcessAppleEvent + 100
    21  com.apple.AppKit                  0x9346dd4d _DPSNextEvent + 1655
    22  com.apple.AppKit                  0x9346d1dc -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                  0x9346363c -[NSApplication run] + 855
    24  com.apple.AppKit                  0x93406666 NSApplicationMain + 1053
    25  com.rune-soft.wintergames         0x0000383a start + 54
    Thread 1:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x99ad59ae kevent + 10
    1   libdispatch.dylib                 0x975bbc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                 0x975bb7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component    0x9255f5ac 0x91f69000 +
    6251948
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore    0x906ad7da AIOFileThread(void*) +
    892
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 7:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib            0x99ad27d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x99ad1cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio         0x901e5310
    HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned
    long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio         0x901dfe3e
    HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned
    int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio         0x901de67d
    HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio         0x901de061
    HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio         0x901e804a
    ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio         0x901ddf85 HALB_IOThread::Entry(void*)
    + 69
    8   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    9   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0008849b  ecx: 0xbfffdfcc  edx: 0x02aa7200
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffea58  esp: 0xbfffb5f0
       ss: 0x00000023  efl: 0x00010282  eip: 0x00088619   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000014
    Logical CPU: 2
    Binary Images:
        0x1000 -   0x196fff +com.rune-soft.wintergames (1.2.0 - 1.2)
    <A73F630B-CA42-6B3F-60C8-DA7B3E2676A3>
    /Applications/WinterGames.app/Contents/MacOS/wintergames
      0x2f2000 -   0x31dff7  com.apple.audio.OpenAL (1.6 - 1.6)
    <CDE1BC7D-871D-3BE7-A6DE-96F6806BB7E1>
    /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
      0x32d000 -   0x3befee +libfreetype.dylib (1)
    <AAF09BB8-8463-7133-C835-7B11945D39CB>
    /Applications/WinterGames.app/Contents/Frameworks/libfreetype.dylib
      0x3d3000 -   0x962fe3 +Cg.dylib (0)
    /Applications/WinterGames.app/Contents/Frameworks/Cg.dylib
    0x1093000 -  0x10a0ff3  com.apple.Librarian (1.1 - 1)
    <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB>
    /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x1728000 -  0x1732ff7 +com.unsanity.smartcrashreports (Smart Crash
    Reports version 1.5 - 1.5) /Library/InputManagers/*/Smart Crash
    Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x173f000 -  0x179cfff +com.cocoamug.CosmoPod (3.1)
    <DF7EFF0D-F74B-D0FC-3712-4E36D75D0043>
    /Library/InputManagers/*/CosmoPod.bundle/Contents/MacOS/CosmoPod
    0x17fa000 -  0x17fbffc +com.CASIO.EXLIM.component (1.1 - 1.1)
    /Library/QuickTime/CASIO AVI Importer.component/Contents/MacOS/CASIO AVI
    Importer
    0x4d25000 -  0x4dd0fff  libcrypto.0.9.7.dylib (106)
    <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x4e14000 -  0x4f33ffb  com.apple.WebKit (8536 - 8536.28.10)
    <C181C3FB-91E3-38AB-A709-6B61935B3AD8>
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x5268000 -  0x526bfef  com.apple.LiveType.component (2.1.3 - 2.1.3)
    /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x60ad000 -  0x6d40ffb  com.apple.WebCore (8536 - 8536.28.10)
    <AA738A8C-808D-302A-B58D-404C58075C45>
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.
    framework/Versions/A/WebCore
    0x90d9000 -  0x913efde  com.apple.LiveType.framework (2.1.3 - 2.1.3)
    /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x915e000 -  0x91d0fff +com.DivXInc.DivXDecoder (6.4.0 - 6.4.0)
    /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x91de000 -  0x9224fc3  com.apple.motion.component (1.0 - 1.0)
    <77973A13-4E79-426F-853F-2318E52A2207>
    /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x922a000 -  0x922d02f  Motion (1)
    <B5E862EE-E0FF-4F86-A789-98E3E601A18C>
    /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb1b2000 -  0xb346ffb  GLEngine (8.7.25)
    <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn
    gine
    0xb37d000 -  0xb4fefff  libGLProgrammability.dylib (8.7.25)
    <CE1A4DFC-EEB2-37C1-B574-0338666C4017>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg
    rammability.dylib
    0xb530000 -  0xb53bfff  libGPUSupport.dylib (8.7.25)
    <08BED1B3-FD0C-3137-BC0C-39EED6029D84>
    /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Librarie
    s/libGPUSupport.dylib
    0xb542000 -  0xb56dff7  GLRendererFloat (8.7.25)
    <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bund
    le/GLRendererFloat
    0xb576000 -  0xb57effd  libcldcpuengine.dylib (2.2.16)
    <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpu
    engine.dylib
    0xef8c000 -  0xef8effd  com.apple.PDFImporter (2.2 - 22)
    <29C10CDB-1E25-39CE-AF37-69DC3DE4BB51>
    /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporte
    r
    0xf394000 -  0xf452ff3  ColorSyncDeprecated.dylib (400)
    <A959DD25-E448-3563-B74E-E58C69961C76>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xfc00000 -  0xfc05ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4)
    /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOu
    t
    0xfc94000 -  0xfc99fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 -
    2.3.7fc4) <081467DA-1F55-3C0C-8081-062A985F36B7>
    /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI
    n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0xfca0000 -  0xff90feb +org.perian.Perian (1.2.3 - 1.2.3)
    <722FFF4F-46EF-E5BE-70A6-42B5873D2B37>
    /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x1040b000 - 0x105d9ff3 +com.MyCometG3.mp4vDecoder (0.7.7 - 2008.06.01)
    /Library/QuickTime/mp4vDecoder.component/Contents/MacOS/mp4vDecoder
    0x106a9000 - 0x106bbfd9  com.apple.FCP Uncompressed 422.component (1.5 -
    1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP
    Uncompressed 422
    0x106c1000 - 0x10729feb  com.apple.AppleProResDecoder (3.0.2 - 5718)
    <3F859389-0434-372E-842F-F15A76B4A8B6>
    /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/Appl
    eProResDecoder
    0x1075a000 - 0x107a3fff  com.apple.AppleVAH264HW.component (3.0 - 3.0)
    <FDF1C720-ED0E-323E-BA44-21423DE18D61>
    /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH2
    64HW
    0x10867000 - 0x1086effc  com.apple.AppleGVAHW.component (1.1 - 1)
    <5DB91F15-3FD3-308F-8FC5-662562F3EA78>
    /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x10875000 - 0x109c0fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6)
    <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7>
    /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x109dc000 - 0x10a16fff  com.apple.QuickTimeFireWireDV.component (7.7.1 -
    2599.24) <1E9A8E7C-A9FD-34FD-AB7C-C3784BAB821F>
    /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui
    ckTimeFireWireDV
    0x10a22000 - 0x10a66fe7  com.apple.DVCPROHDCodec (1.4 - 231)
    /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x10a7b000 - 0x10b1efd3  com.apple.AppleHDVCodec (1.4.1 - 222)
    <68ABD695-E990-4F5F-9074-D2C4AE440637>
    /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x10b3c000 - 0x10b5dfff  com.apple.AppleIntermediateCodec (2.0.1 - 5718)
    <D4B0F083-2E31-3508-BE1D-71F8BA917702>
    /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIn
    termediateCodec
    0x10b6c000 - 0x10b70ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1)
    <AD3A3083-F5A3-3ED1-8086-10A977DE9118>
    /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Code
    c
    0x10b75000 - 0x10b95ff3  com.apple.IMXCodec (1.3.1 - 147)
    /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x10bad000 - 0x10bc5ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31)
    <6093BFF1-355E-3F02-903F-FDB466324F99>
    /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/AppleP
    ixletVideo
    0x1255e000 - 0x125b0fff  com.apple.QuickTimeMPEG.component (7.7.1 -
    2599.24) <16DFA65D-83BF-3EC1-B904-C2088AF8CCD1>
    /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTime
    MPEG
    0x70000000 - 0x7015eff7  com.apple.audio.units.Components (1.8 - 1.8)
    <F1EA4AF9-517E-3288-9AA4-F20546791B77>
    /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0)
    <4B231127-7885-33A3-9FC7-7EF42A066FD7>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGL
    Driver
    0x8fe5d000 - 0x8fe8fe57  dyld (210.2.3)
    <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x9000bffc  libGIF.dylib (849)
    <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.d
    ylib
    0x9000c000 - 0x901c8ffd  libicucore.A.dylib (491.11.2)
    <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
    0x901c9000 - 0x90227ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1)
    <953DD669-8C6E-387D-AB3F-D8C8965347DF>
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90228000 - 0x9022affb  libRadiance.dylib (849)
    <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadia
    nce.dylib
    0x90245000 - 0x90278ffb  com.apple.GSS (3.0 - 2.0)
    <9566A96D-C296-3ABD-A12A-E274C81C0B25>
    /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9033c000 - 0x905dfff3  com.apple.CoreImage (8.2.4 - 1.0.1)
    <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Core
    Image.framework/Versions/A/CoreImage
    0x905e0000 - 0x90648fe7  libvDSP.dylib (380.6)
    <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvDSP.dylib
    0x90649000 - 0x9094eff7  com.apple.CoreServices.CarbonCore (1037.5 -
    1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca
    rbonCore.framework/Versions/A/CarbonCore
    0x9094f000 - 0x90d4bfeb  com.apple.VideoToolbox (1.0 - 926.87)
    <D6460276-E1CF-317D-B32F-80EAE916168C>
    /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90d4c000 - 0x90d6efff  libc++abi.dylib (26)
    <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x90d6f000 - 0x90e7aff7  libJP2.dylib (849)
    <B2D0E844-C390-376C-91D9-F3501B5C7A83>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.d
    ylib
    0x90e7d000 - 0x90e85fff  libcopyfile.dylib (89)
    <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x90e86000 - 0x90f83ff7  com.apple.DiskImagesFramework (10.8.3 - 345)
    <26D0C7F8-E87E-3511-8388-8EE616A39D6D>
    /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImag
    es
    0x90f84000 - 0x90f8efff  libCSync.A.dylib (331.0.4)
    <71A7B331-C8A2-322C-AFB0-062EE9C3B848>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90f8f000 - 0x90fafffd  com.apple.ChunkingLibrary (2.0 - 133.3)
    <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48>
    /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chu
    nkingLibrary
    0x90fb0000 - 0x90fb6fff  libGFXShared.dylib (8.7.25)
    <4268BFAF-4529-3B40-A8B9-66F176AC20CF>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSha
    red.dylib
    0x90fb7000 - 0x90fc6fff  libGL.dylib (8.7.25)
    <818E3E6B-9B00-3117-8157-9E95CB59A47B>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl
    ib
    0x90fc7000 - 0x90fc8fff  libdnsinfo.dylib (453.19)
    <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x90fc9000 - 0x90fccff9  libCGXType.A.dylib (331.0.4)
    <981B13D6-4E8B-3468-92D3-FE436B48C0DA>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90fcd000 - 0x9108bff3  com.apple.ColorSync (4.8.0 - 4.8.0)
    <B534DE6A-3AF0-307C-B274-A4FCFC5BC696>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/ColorSync
    0x9108c000 - 0x9108dffd  com.apple.TrustEvaluationAgent (2.0 - 23)
    <E42347C0-2D3C-36A4-9200-757FFA61B388>
    /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/
    A/TrustEvaluationAgent
    0x9108e000 - 0x910a5fff  com.apple.GenerationalStorage (1.1 - 132.3)
    <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63>
    /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A
    /GenerationalStorage
    0x910a6000 - 0x9117cfff  com.apple.DiscRecording (7.0 - 7000.2.4)
    <528052A0-FCFB-3867-BCDF-EE0F8A998C1C>
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecordin
    g
    0x911ba000 - 0x91343ff7  com.apple.vImage (6.0 - 6.0)
    <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma
    ge.framework/Versions/A/vImage
    0x91344000 - 0x919d0ff3  com.apple.CoreAUC (6.16.13 - 6.16.13)
    <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E>
    /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x919d1000 - 0x919dffff  libxar.1.dylib (105)
    <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x919e0000 - 0x91a4fffb  com.apple.Heimdal (3.0 - 2.0)
    <964D9952-B0F2-34F6-8265-1823C0D5EAB8>
    /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a50000 - 0x91a95ff7  com.apple.NavigationServices (3.7 - 200)
    <6AB1A00C-BC94-3889-BA95-40A454B720CE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati
    onServices.framework/Versions/A/NavigationServices
    0x91a96000 - 0x91aa4ff7  libz.1.dylib (43)
    <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x91aa5000 - 0x91ab1ff7  com.apple.NetAuth (4.0 - 4.0)
    <52D23F12-0718-341D-B9DF-16C814022250>
    /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91ab2000 - 0x91b4dfff  com.apple.CoreSymbolication (3.0 - 117)
    <F705A8CD-A04A-3A84-970A-7B04BC05DA97>
    /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/C
    oreSymbolication
    0x91b4e000 - 0x91b4ffff  liblangid.dylib (116)
    <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x91b50000 - 0x91cadffb  com.apple.QTKit (7.7.1 - 2599.24)
    <39CC892D-2874-33FE-BE30-87FE07D875BD>
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cae000 - 0x91cdbffb  com.apple.CoreServicesInternal (154.2 - 154.2)
    <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
    /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/
    A/CoreServicesInternal
    0x91cdc000 - 0x91d6effb  libvMisc.dylib (380.6)
    <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvMisc.dylib
    0x91d6f000 - 0x91f57ffb  com.apple.CoreFoundation (6.8 - 744.18)
    <68AFEE40-0078-347E-9DEE-32CFE0062A10>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat
    ion
    0x91f58000 - 0x91f59fff  libquarantine.dylib (52)
    <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91f66000 - 0x91f68fff  com.apple.securityhi (4.0 - 55002)
    <79E3B880-3AB7-3BF3-9CDF-117A45599545>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security
    HI.framework/Versions/A/SecurityHI
    0x91f69000 - 0x92ca1fff  com.apple.QuickTimeComponents.component (7.7.1 -
    2599.24) <51BE2DF8-7B3B-36F5-8860-50071A8702E4>
    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui
    ckTimeComponents
    0x92ca2000 - 0x92d89ff7  libxml2.2.dylib (22.3)
    <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x92d8a000 - 0x92da8ff3  com.apple.openscripting (1.3.6 - 148.3)
    <F3422C02-5ACB-343A-987B-A2D58EA2F5A8>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri
    pting.framework/Versions/A/OpenScripting
    0x92da9000 - 0x92edcff3  com.apple.MediaControlSender (1.7 - 170.20)
    <7B1AC317-AFDB-394F-8026-9561930E696B>
    /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/
    MediaControlSender
    0x92edd000 - 0x92f0efff  com.apple.DictionaryServices (1.2 - 184.4)
    <CCB46C81-57C6-3F45-B77C-4D29E4CD6BA6>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di
    ctionaryServices.framework/Versions/A/DictionaryServices
    0x92f0f000 - 0x93126fff  com.apple.CoreData (106.1 - 407.7)
    <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93127000 - 0x9313cfff  com.apple.ImageCapture (8.0 - 8.0)
    <F681CA5B-2871-32CF-8E9F-9220EB387407>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap
    ture.framework/Versions/A/ImageCapture
    0x9313d000 - 0x9313efff  libsystem_sandbox.dylib (220.2)
    <61A79095-1978-3AAA-B0E0-658BC8E5F045>
    /usr/lib/system/libsystem_sandbox.dylib
    0x9313f000 - 0x93297ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8)
    <0D36953C-9897-3E9B-8C70-847E90B203A2>
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93298000 - 0x932b1fff  com.apple.Kerberos (2.0 - 1)
    <8413EDD3-7E01-3D47-83FD-C14A5235DCD2>
    /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x932b2000 - 0x93309ff7  com.apple.ScalableUserInterface (1.0 - 1)
    <4B538E02-4F41-37FF-81F6-ED43DE0E78CC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Scal
    ableUserInterface.framework/Versions/A/ScalableUserInterface
    0x9330a000 - 0x93ec6ff7  com.apple.AppKit (6.8 - 1187.37)
    <6FBB3467-04F9-395F-8EA8-C84347C5BE43>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ec7000 - 0x93eceffe  com.apple.agl (3.2.1 - AGL-3.2.1)
    <48407521-A4A3-3D28-8784-29E36AA04804>
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93ecf000 - 0x93ed8fff  com.apple.DiskArbitration (2.5.2 - 2.5.2)
    <89822A83-B450-3363-8E9C-9B80CB4450B1>
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr
    ation
    0x93ed9000 - 0x93f20ff3  com.apple.CoreMedia (1.0 - 926.87)
    <713B7213-D695-3162-9852-DBC114C26178>
    /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93f21000 - 0x93f45fff  com.apple.PerformanceAnalysis (1.16 - 16)
    <7B7EAA0B-5208-32DB-B083-D4B62F37EC46>
    /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A
    /PerformanceAnalysis
    0x93f46000 - 0x946e1ff3  libclh.dylib (4.0.3 - 4.0.3)
    <CF4CE94B-D0CE-3E84-9640-5ABFC54378A5>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dy
    lib
    0x946ee000 - 0x946fbff7  com.apple.AppleFSCompression (49 - 1.0)
    <9A066D13-6E85-36FC-8B58-FD46E51751CE>
    /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x946fc000 - 0x9473efff  libcurl.4.dylib (69.2)
    <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9473f000 - 0x94ad2ff3  com.apple.MediaToolbox (1.0 - 926.87)
    <F3623474-03AD-3A7F-8BD1-46A44A12E74E>
    /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94ad3000 - 0x94be3ff3  com.apple.QuickTimeImporters.component (7.7.1 -
    2599.24) <3DBEE5E4-4C40-3390-8405-0D9E271084B2>
    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/Quic
    kTimeImporters
    0x94be4000 - 0x94c25ff7  com.apple.framework.CoreWiFi (1.2.2 - 122.12)
    <D9479FFE-2D79-373C-9F73-E746664ACD5C>
    /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94d1b000 - 0x94d1ffff  com.apple.IOSurface (86.0.4 - 86.0.4)
    <6431ACB6-561B-314F-9A2A-FAC1578FCC86>
    /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94d22000 - 0x94d25fff  com.apple.help (1.3.2 - 42)
    <2B727B38-0E18-3108-9735-F65958924A91>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra
    mework/Versions/A/Help
    0x94d26000 - 0x94d26fff  com.apple.Carbon (154 - 155)
    <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d27000 - 0x94d27fff  libSystem.B.dylib (169.3)
    <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x94d28000 - 0x94d82ffb  com.apple.AE (645.6 - 645.6)
    <44556FF7-A869-399A-AEBB-F4E9263D9152>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE
    .framework/Versions/A/AE
    0x94d83000 - 0x94dfcffb  libType1Scaler.dylib (101.1)
    <C12C5169-4E91-3148-934F-8A9CAB8546C6>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94dfd000 - 0x94e3dfff  com.apple.MediaKit (14 - 687)
    <8735A76E-7766-33F5-B3D2-86630070A1BA>
    /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x94e3e000 - 0x94e44fff  com.apple.print.framework.Print (8.0 - 258)
    <3E10C488-C390-33BD-8A4F-568E3021811D>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr
    amework/Versions/A/Print
    0x94e45000 - 0x94fbdff5  com.apple.QuartzCore (1.8 - 304.2)
    <FB737C74-C460-32A3-9107-D2112BAE6EBC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94fbe000 - 0x94fbefff  com.apple.vecLib (3.8 - vecLib 3.8)
    <83160DD1-5614-3E34-80EB-97041016EF1F>
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94fbf000 - 0x9507cfeb  libsystem_c.dylib (825.26)
    <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9507d000 - 0x950d7fff  com.apple.Symbolication (1.3 - 93)
    <4A794D1C-DE02-3183-87BF-0008A602E4D3>
    /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbo
    lication
    0x950d8000 - 0x95364ffb  com.apple.RawCamera.bundle (4.04 - 680)
    <DD1D3CFC-1710-3186-A6C4-89B42F100117>
    /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95365000 - 0x95366ffd  libunc.dylib (25)
    <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x95367000 - 0x9537cfff  com.apple.speech.synthesis.framework (4.1.12 -
    4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9537d000 - 0x953aaffe  libsystem_m.dylib (3022.6)
    <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x95412000 - 0x95424fff  libbsm.0.dylib (32)
    <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x954c3000 - 0x9550dff7  com.apple.framework.CoreWLAN (3.0.2 - 302.12)
    <1D7CB11D-C28C-3A25-865A-4AD6EE40D493>
    /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9550e000 - 0x9550efff  com.apple.CoreServices (57 - 57)
    <83B793A6-720D-31F6-A76A-89EBB2644346>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95511000 - 0x95513ffc  com.apple.QuickTimeH264.component (7.7.1 -
    2599.24) <54598D54-DBFC-3EA1-9712-05F4052A79E2>
    /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTime
    H264
    0x95514000 - 0x95558ff7  libGLU.dylib (8.7.25)
    <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy
    lib
    0x95845000 - 0x95869fff  libJPEG.dylib (849)
    <CD42C17E-6B13-35BE-B585-9AE69CEA534F>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.
    dylib
    0x95904000 - 0x95930ff7  libsystem_info.dylib (406.17)
    <2731CC70-DF2E-3BD1-AE73-A3B83C531756>
    /usr/lib/system/libsystem_info.dylib
    0x95938000 - 0x959adff7  com.apple.ApplicationServices.ATS (332 - 341.1)
    <1D81B09C-98DB-3CDB-990B-459FAE3D8D7A>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/ATS
    0x959ae000 - 0x959b0fff  libdyld.dylib (210.2.3)
    <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x959b5000 - 0x95c75ff3  com.apple.security (7.0 - 55179.11)
    <165A3105-9ADF-329B-93FC-3C8EFAEDDD13>
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f11000 - 0x95f48ffa  com.apple.LDAPFramework (2.4.28 - 194.5)
    <B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24>
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95f49000 - 0x96084ff7  libBLAS.dylib (1073.4)
    <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libBLAS.dylib
    0x96085000 - 0x960aaffb  com.apple.framework.familycontrols (4.1 - 410)
    <B1755756-BEA2-3205-ADAA-68FCC32E60BD>
    /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami
    lyControls
    0x960ab000 - 0x96142ff7  com.apple.ink.framework (10.8.2 - 150)
    <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram
    ework/Versions/A/Ink
    0x96143000 - 0x96291fff  com.apple.CFNetwork (596.3.3 - 596.3.3)
    <EC7EF37B-B00E-374D-9E8F-E4E22D741059>
    /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x962a2000 - 0x962a9ff3  com.apple.NetFS (5.0 - 4.0)
    <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F>
    /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x962aa000 - 0x9632fff7  com.apple.SearchKit (1.4.0 - 1.4.0)
    <4E947DC1-7985-3111-A864-58EDD6D955DC>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se
    archKit.framework/Versions/A/SearchKit
    0x96330000 - 0x96355ff7  com.apple.CoreVideo (1.8 - 99.4)
    <A26DE896-32E0-3D5E-BA89-02AD23FA96B3>
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96359000 - 0x96359fff  com.apple.ApplicationServices (45 - 45)
    <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic
    ationServices
    0x9635a000 - 0x9635dff7  com.apple.TCC (1.0 - 1)
    <ABE3CE50-C948-30B1-A343-837D8E7BA9F0>
    /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x96365000 - 0x96472057  libobjc.A.dylib (532.2)
    <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96477000 - 0x9658fff7  com.apple.coreavchd (5.6.0 - 5600.4.16)
    <D871D730-1D5C-34E7-98C7-0FF09964E618>
    /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96590000 - 0x96948ffa  libLAPACK.dylib (1073.4)
    <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libLAPACK.dylib
    0x96949000 - 0x96950fff  libsystem_dnssd.dylib (379.37)
    <49A44FB3-559D-3C7E-AA40-23F5A8E612AC>
    /usr/lib/system/libsystem_dnssd.dylib
    0x96951000 - 0x9696dfff  libPng.dylib (849)
    <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.d
    ylib
    0x9696e000 - 0x9696effd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
    <D35BA73D-1E56-3A1D-9F9F-971F3BF8C136>
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9696f000 - 0x96bc8ff8  com.apple.JavaScriptCore (8536 - 8536.28.10)
    <B02A662A-7DE6-3C9D-AB08-AA746D48FF2B>
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC
    ore
    0x96bc9000 - 0x96bfefff  libTrueTypeScaler.dylib (84.6)
    <B7DB746B-7A61-38EF-8CA7-408ED9C14A02>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96bff000 - 0x96c00fff  libremovefile.dylib (23.2)
    <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x96c01000 - 0x96c3cfef  libGLImage.dylib (8.7.25)
    <6C0B2148-032A-3911-AB21-2E07606E3D9A>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag
    e.dylib
    0x96c3d000 - 0x96c94ff3  com.apple.HIServices (1.20 - 417)
    <561A770B-8523-3D09-A763-11F872779A4C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/HIServices.framework/Versions/A/HIServices
    0x96c95000 - 0x96c9fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
    <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
    /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceM
    anagement
    0x96da2000 - 0x96db5ff9  com.apple.MultitouchSupport.framework (235.29 -
    235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE>
    /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/M
    ultitouchSupport
    0x96db6000 - 0x96e1eff7  com.apple.framework.IOKit (2.0.1 - 755.22.5)
    <F9A70D23-1108-3616-9DE3-6C5730CA7AB2>
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e1f000 - 0x96e35fff  com.apple.CFOpenDirectory (10.8 - 151.10)
    <3640B988-F915-3E0D-897C-CB04C95BA601>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/C
    FOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96e65000 - 0x96eb3ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2)
    <6E858B9F-337A-314E-88B7-24A274ACE568>
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System
    Configuration
    0x96eb4000 - 0x96ef6ff7  libauto.dylib (185.1)
    <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x96ef7000 - 0x96ff5ff7  libFontParser.dylib (84.6)
    <7D3EB3CC-527E-3A74-816A-59CAFD2260A4>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96ff6000 - 0x97004fff  com.apple.opengl (1.8.7 - 1.8.7)
    <0631EC1D-833B-39D2-A907-A9F7617E5504>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97056000 - 0x97473fff  FaceCoreLight (2.4.1)
    <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
    /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceC
    oreLight
    0x97474000 - 0x9747dfff  com.apple.CommerceCore (1.0 - 26.1)
    <8C28115C-6EC1-316D-9237-F4FBCBB778C5>
    /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Framewo
    rks/CommerceCore.framework/Versions/A/CommerceCore
    0x9747e000 - 0x97576ff9  libsqlite3.dylib (138.1)
    <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x975ad000 - 0x975b6ffd  com.apple.audio.SoundManager (4.0 - 4.0)
    <6A0B4A5D-6320-37E4-A1CA-91189777848C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo
    und.framework/Versions/A/CarbonSound
    0x975b7000 - 0x975c9ff7  libdispatch.dylib (228.23)
    <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x975ca000 - 0x97618ffb  libFontRegistry.dylib (100)
    <97D8F15F-F072-3AF0-8EF8-50C41781951C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97619000 - 0x97625ffa  com.apple.CrashReporterSupport (10.8.3 - 417)
    <A4A45B14-8992-3739-82BC-3C5E5C2686F9>
    /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/
    A/CrashReporterSupport
    0x97626000 - 0x976d5ff7  com.apple.CoreText (260.0 - 275.16)
    <7716C57B-E059-3B30-BBA8-AD7FF6EE3D35>
    /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x976d6000 - 0x97776ff7  com.apple.QD (3.42 - 285)
    <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/QD.framework/Versions/A/QD
    0x97777000 - 0x977b9ffb  com.apple.RemoteViewServices (2.0 - 80.6)
    <AE962502-4539-3893-A2EB-9D384652AEAC>
    /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/
    RemoteViewServices
    0x977ba000 - 0x9781eff3  libstdc++.6.dylib (56)
    <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9781f000 - 0x97829fff  com.apple.speech.recognition.framework (4.1.5 -
    4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe
    cognition.framework/Versions/A/SpeechRecognition
    0x9782a000 - 0x97841ff4  com.apple.CoreMediaAuthoring (2.1 - 914)
    <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5>
    /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/
    CoreMediaAuthoring
    0x97842000 - 0x978a6fff  com.apple.datadetectorscore (4.1 - 269.2)
    <B4D53047-C613-32F8-9E08-0154EA81B487>
    /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D
    ataDetectorsCore
    0x978b2000 - 0x978faff5  com.apple.opencl (2.2.18 - 2.2.18)
    <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x978fb000 - 0x979affff  com.apple.coreui (2.0 - 181.1)
    <6BEEE83E-C878-3FE6-B521-8B32B3A35409>
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x979b0000 - 0x97a00ff7  com.apple.CoreMediaIO (307.0 - 4155)
    <49D36F54-D414-3745-8194-69FC3B632ED3>
    /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97a01000 - 0x97a2aff7  libRIP.A.dylib (331.0.4)
    <FE496AFC-420A-3712-BC79-FC8C63ADB73D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97a2b000 - 0x97affff3  com.apple.backup.framework (1.4.2 - 1.4.2)
    <0473EB45-E9BF-3C10-B235-A6E2B960A88F>
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x97b00000 - 0x97b1dfff  libCRFSuite.dylib (33)
    <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x97b75000 - 0x97b79ffe  libcache.dylib (57)
    <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x97b7a000 - 0x97c12fff  com.apple.CoreServices.OSServices (557.6 -
    557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS
    Services.framework/Versions/A/OSServices
    0x97c13000 - 0x97d2fffb  com.apple.desktopservices (1.7.3 - 1.7.3)
    <7157C51D-C695-3C9E-B532-F551E7E55B56>
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A
    /DesktopServicesPriv
    0x97d61000 - 0x97d61fff  libsystem_blocks.dylib (59)
    <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
    /usr/lib/system/libsystem_blocks.dylib
    0x97d62000 - 0x97d69fff  liblaunch.dylib (442.26.2)
    <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x97d6a000 - 0x97d6affd  libOpenScriptingUtil.dylib (148.3)
    <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x97d6b000 - 0x97e78ff3  com.apple.ImageIO.framework (3.2.0 - 849)
    <B34C2380-51F6-38B1-BB6C-C2E5185D90EF>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97ed1000 - 0x97f7bfff  com.apple.LaunchServices (539.7 - 539.7)
    <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La
    unchServices.framework/Versions/A/LaunchServices
    0x97f80000 - 0x97f8afff  libsystem_notify.dylib (98.5)
    <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
    /usr/lib/system/libsystem_notify.dylib
    0x97f9a000 - 0x97f9dffc  libCoreVMClient.dylib (32.3)
    <35B63A60-DF0A-3FB3-ABB8-164B246A43CC>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVM
    Client.dylib
    0x98317000 - 0x98372fff  com.apple.htmlrendering (77 - 1.1.4)
    <CD33B313-7E85-3AC0-9EFF-6B0C05F10135>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend
    ering.framework/Versions/A/HTMLRendering
    0x983a5000 - 0x98421ff3  com.apple.Metadata (10.7.0 - 707.5)
    <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me
    tadata.framework/Versions/A/Metadata
    0x98422000 - 0x98864ff3  com.apple.CoreGraphics (1.600.0 - 331.0.4)
    <BC041647-FB5A-3D07-A253-F3D34E25BF6C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98865000 - 0x98869fff  com.apple.OpenDirectory (10.8 - 151.10)
    <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirector
    y
    0x9886a000 - 0x9886afff  com.apple.Accelerate (1.8 - Accelerate 1.8)
    <4EC0548E-3A3F-310D-A366-47B51D5B6398>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9886b000 - 0x9886bfff  libkeymgr.dylib (25)
    <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x988d8000 - 0x988e8ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
    <C6076983-A02E-389E-BFC6-008EECC4C896>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x98965000 - 0x98966fff  libDiagnosticMessagesClient.dylib (8)
    <39B3D25A-148A-3936-B800-0D393A00E64F>
    /usr/lib/libDiagnosticMessagesClient.dylib
    0x989f0000 - 0x98a3cfff  libcorecrypto.dylib (106.2)
    <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x992bb000 - 0x992c7ffe  libkxld.dylib (2050.22.13)
    <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
    0x992f8000 - 0x992f8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8)
    <908B8D40-3FB5-3047-B482-3DF95025ECFC>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/vecLib
    0x992f9000 - 0x99575ff7  com.apple.QuickTime (7.7.1 - 2599.24)
    <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D>
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99576000 - 0x995f0ff3  com.apple.securityfoundation (6.0 - 55115.4)
    <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC>
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit
    yFoundation
    0x995f1000 - 0x99640ff6  libTIFF.dylib (849)
    <229EBA67-A2D3-30B7-8177-3CA5503360EC>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.
    dylib
    0x99641000 - 0x99732ffc  libiconv.2.dylib (34)
    <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9973d000 - 0x99748fff  libcommonCrypto.dylib (60027)
    <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9>
    /usr/lib/system/libcommonCrypto.dylib
    0x99749000 - 0x99757ff3  libsystem_network.dylib (77.10)
    <11CAF6A8-17CF-3178-9348-57C5ED494BA8>
    /usr/lib/system/libsystem_network.dylib
    0x99758000 - 0x99781fff  libxslt.1.dylib (11.3)
    <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x99782000 - 0x99785ff7  libcompiler_rt.dylib (30)
    <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
    /usr/lib/system/libcompiler_rt.dylib
    0x99786000 - 0x9978fff9  com.apple.CommonAuth (3.0 - 2.0)
    <34C4768C-EF8D-3DBA-AFB7-09148C8672DB>
    /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAu
    th
    0x99790000 - 0x99794ff7  libmacho.dylib (829)
    <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x99795000 - 0x99ab3ff3  com.apple.Foundation (6.8 - 945.16)
    <C4D95341-B4FF-30AC-815A-A23C019C57A3>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99ab4000 - 0x99abbffb  libunwind.dylib (35.1)
    <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x99abc000 - 0x99abfffc  libpam.2.dylib (20)
    <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x99ac0000 - 0x99adaffc  libsystem_kernel.dylib (2050.22.13)
    <70C520E8-0394-3DFB-823B-FE8C251C169A>
    /usr/lib/system/libsystem_kernel.dylib
    0x99adb000 - 0x99af8fff  libxpc.dylib (140.42)
    <1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib
    0x99af9000 - 0x99b5ffff  com.apple.print.framework.PrintCore (8.3 -
    387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/PrintCore.framework/Versions/A/PrintCore
    0x99b60000 - 0x99b70ff7  libsasl2.2.dylib (166)
    <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x99b71000 - 0x99f54fff  com.apple.HIToolbox (2.0 - 626.1)
    <ECC3F04F-C4B7-35BF-B10E-183B749DAB92>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo
    x.framework/Versions/A/HIToolbox
    0x99f55000 - 0x99f72ff7  libresolv.9.dylib (51)
    <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x99f73000 - 0x99f7fff8  libbz2.1.0.dylib (29)
    <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x99f80000 - 0x99fc2ff7  libcups.2.dylib (327.3)
    <C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib
    0x9a01e000 - 0x9a080fff  libc++.1.dylib (65.1)
    <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x9a081000 - 0x9a083ffd  libCVMSPluginSupport.dylib (8.7.25)
    <C8FC6227-5209-3138-89CD-03CAD11F3EC3>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPl
    uginSupport.dylib
    0x9a084000 - 0x9a0a3ff3  com.apple.Ubiquity (1.2 - 243.15)
    <E10A2937-D671-3D14-AF8D-BA25E601F458>
    /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9a312000 - 0x9a3f3fff  libcrypto.0.9.8.dylib (47)
    <219227B4-75D2-3CCC-B241-4BE8F8E1D4AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9a3f4000 - 0x9a427ff5  libssl.0.9.8.dylib (47)
    <84896B24-4941-3149-A4CF-2BAD0F621002> /usr/lib/libssl.0.9.8.dylib
    0x9a659000 - 0x9a683ff9  com.apple.framework.Apple80211 (8.3.2 -
    832.18.1) <69AD5C5E-14A2-3E2B-AE28-2C7A7E4F5D0A>
    /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802
    11
    0x9a684000 - 0x9a6c3ff7  com.apple.bom (12.0 - 192)
    <D245FA22-3B6C-3872-B485-BE84AD9098B2>
    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9a6c4000 - 0x9a6faffb  com.apple.DebugSymbols (98 - 98)
    <D0293694-C381-30DF-8DD9-D1B04CD0E5F0>
    /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugS
    ymbols
    0x9a6fb000 - 0x9a6fbfff  com.apple.Cocoa (6.7 - 19)
    <01AA482A-677A-31CA-9EC9-05C57FDDE427>
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a6fc000 - 0x9a700fff  com.apple.CommonPanels (1.2.5 - 94)
    <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa
    nels.framework/Versions/A/CommonPanels
    0x9a707000 - 0x9a762ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19)
    <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B>
    /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 5760
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=228.2M resident=144.2M(63%)
    swapped_out_or_unallocated=84.0M(37%)
    Writable regions: Total=603.0M written=205.9M(34%) resident=473.2M(78%)
    swapped_out=0K(0%) unallocated=129.8M(22%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    (null) (reserved)                    40K        reserved VM address space
    (unallocated)
    ATS (font support)                 33.0M
    ATS (font support) (reserved)         4K        reserved VM address space
    (unallocated)
    CG backing stores                  4336K
    CG image                              4K
    CG raster data                      116K
    CG shared images                   1216K
    CoreServices                       5420K
    IOKit                             257.9M
    IOKit (reserved)                      4K        reserved VM address space
    (unallocated)
    MALLOC                            269.4M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      192K
    Memory tag=35                      3976K
    Stack                              67.6M
    VM_ALLOCATE                        16.5M
    __DATA                             30.5M
    __DATA/__OBJC                       208K
    __IMAGE                             528K
    __IMPORT                             72K
    __LINKEDIT                         44.1M
    __OBJC                             1932K
    __OBJC/__DATA                       256K
    __PAGEZERO                            4K
    __TEXT                            184.1M
    __UNICODE                           544K
    mapped file                        76.4M
    shared memory                       424K
    ===========                      =======
    TOTAL                             998.4M
    TOTAL, minus reserved VM space    998.3M

    Hi,
    here are some more informations about the problem.
    The root CA certificate is imported as trusted in the system keychain of the server and the client. A certificate evaluation returns "valid certificates, trusted ...".
    The client bind fails with this messages, e.g. Kerio Control is able the use LDAPS, so it seams just the problem with the trustability of the certificates. Keychain trusts the certificates, OD client bind not, this is not so consistent.
    Any idee?
    Thanks
    Henri
    2013-03-14 19:39:02.776804 CET - Trigger - notified opendirectoryd:nodes;lastServerChanged;/LDAPv3/ldaps://macpro....:636
    2013-03-14 19:39:02.793467 CET - 71825.330426.330427, Module: AppleODClientLDAP - unable to create connection to LDAP server - ldap_search_ext_s for the ro
    otDSE failed with error 'server connection failed' (-1) error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (self signed cert
    ificate in certificate chain)
    2013-03-14 19:39:02.793501 CE
    CONNECTED(00000003)
    depth=1 /C=DE/...
    Certificate chain
    0 s:/CN=macpro...
       i:/C=DE//OU=IT/CN=*.office.../emailAddress=admin@...
    verify error:num=19:self signed certificate in certificate chain
    verify return:0

Maybe you are looking for