Unexpected exception:need help

hi everyone,
i want to make a one way communication between applet and servlet.morever trying to send an array of string along the path stated and for that accomplishment i got stuck around the following code at client and server side.
when i run the code, having the following exception at server side
     *java.io.EOFException*:
            at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2279)
        at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2748)
        at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:780)
        at java.io.ObjectInputStream.<init>(ObjectInputStream.java:280)
        at RegistrationData.recieve_data(RegistrationData.java:57)
        at RegistrationData.processRequest(RegistrationData.java:33)
        at RegistrationData.doGet(RegistrationData.java:78)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
        at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
        at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
        at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
        at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
        at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
        at java.lang.Thread.run(Thread.java:619)
  at client side(applet)
            String[] data    ={"hello","how","right"};        
        String strwp ="/UASProject/RegistrationData";              
        URL jspURL = new URL(getCodeBase(),strwp);             
        System.out.println(jspURL);
        URLConnection jspCon = jspURL.openConnection();               
        jspCon.setUseCaches(false);
        jspCon.setDoOutput(true);
        jspCon.setDoInput(false); 
        jspCon.setDefaultUseCaches(false);   
        jspCon.setRequestProperty("Content-Type", "application/x-java-serialized-object");      
       BufferedOutputStream bos=new BufferedOutputStream( jspCon.getOutputStream());
        ObjectOutputStream oboutStream = new ObjectOutputStream(bos);             
        oboutStream.writeObject(data);         
        oboutStream.flush();        
        bos.close();
        oboutStream.close();        
       getAppletContext().showDocument(jspURL,"_self");        
     }catch(Exception e) 
       {System.out.println(e);}and this is at server side(servlet)
             BufferedInputStream bis=new BufferedInputStream( request.getInputStream());
                    ObjectInputStream inputFromjsp = new ObjectInputStream(bis);                                      
                    reg_data = (String[])inputFromjsp.readObject();                             
                    out.println(reg_data[1]);
                    bis.close();
                    inputFromjsp.close();    one more point for ur sake of nailing my problem,
exception is being thrown at this line, and there is no any error at  sun java console
ObjectInputStream inputFromjsp = new ObjectInputStream(bis);                                       please let me out of this headache

Double post http://forum.java.sun.com/thread.jspa?threadID=5235999&tstart=0

Similar Messages

  • Dynamic Client Exception - Need help

    Hi,
    Need help.......
    I am getting following exception, when I run
    my dynamic client.
    Attached below is my code as well as WSDL.
    Thanks in advance..
    Regards
    -Shakeel
    [java] javax.xml.rpc.JAXRPCException: failed to invoke operation 'Print' du
    e to an error in the soap layer (SAAJ); nested exception is: Message[ failed to
    serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.Serial
    izationException: mapping lookup failure. class=interface javax.xml.soap.SOAPEle
    ment class context=TypedClassContext{schemaType=['http://learn.technologies.com/
    WS']:PrintRequest}]StackTrace[
    [java] javax.xml.soap.SOAPException: failed to serialize interface javax.x
    ml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping l
    ookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedCla
    ssContext{schemaType=['http://learn.technologies.com/WS']:PrintRequest}
    [java] at weblogic.webservice.core.DefaultPart.invokeSerializer(Default
    Part.java:328)
    CODE
    // Setup the global SAAJ message factory
    System.setProperty("javax.xml.soap.MessageFactory", "weblogic.webservice.core.soap.MessageFactoryImpl");
    // Setup the global JAX-RPC service factory
    System.setProperty( "javax.xml.rpc.ServiceFactory", "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    // define qnames
    String targetNamespace = "http://learn.technologies.com/WS";
    QName serviceName = new QName(targetNamespace, "PersonalDataService");
    QName portName = new QName(targetNamespace, "PersonalDataInterface");
    QName operationName = new QName(targetNamespace, "Print");
    URL wsdlLocation = new URL("http://localhost:7001/simpleexample/PersonalDataInterface?WSDL");
    // create service
    Service service = serviceFactory.createService(wsdlLocation, serviceName);
    // create call
    Call call = service.createCall(portName, operationName);
    WSDL
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://learn.technologies.com/WS"
    targetNamespace="http://learn.technologies.com/WS">
    <types>
    <schema targetNamespace="http://learn.technologies.com/WS"
    xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    <element name="PrintRequest">
    <complexType>
    <sequence>
    <element name="firstName" type="string"/>
    <element name="age" type="int"/>
    <element name="salary" type="double"/>
    </sequence>
    </complexType>
    </element>
    <element name="PrintResponse">
    <complexType>
    <sequence/>
    </complexType>
    </element>
    <element name="QueryRequest">
    <complexType>
    <sequence>
    <element name="id" type="double"/>
    </sequence>
    </complexType>
    </element>
    <element name="QueryResponse">
    <complexType>
    <sequence>
    <element name="return" type="tns:ArrayOfPersonalData"/>
    </sequence>
    </complexType>
    </element>
    <complexType name="PersonalData">
              <sequence>
              <element name="name" type="string"/>
              <element name="age" type="int"/>
              <element name="salary" type="double"/>
              </sequence>
    </complexType>
    <complexType name="ArrayOfPersonalData">
              <sequence>
              <element maxOccurs="unbounded" minOccurs="0" name="Item" type="tns:PersonalData"/>
              </sequence>
    </complexType>
    </schema>
    </types>
         <message name="PrintRequestMessage">
         <part name="PrintRequest" element="tns:PrintRequest"/>
         </message>
         <message name="PrintResponseMessage">
         <part name="PrintResponse" element="tns:PrintResponse"/>
         </message>
         <message name="QueryRequestMessage">
         <part name="QueryRequest" element="tns:QueryRequest"/>
         </message>
         <message name="QueryResponseMessage">
         <part name="QueryResponse" element="tns:QueryResponse"/>
         </message>
         <portType name="PersonalDataInterface">
              <operation name="Print">
                   <input name="PrintRequestMessage" message="tns:PrintRequestMessage"/>
              <output name="PrintResponseMessage" message="tns:PrintResponseMessage"/>
              </operation>
              <operation name="Query">
                   <input name="QueryRequestMessage" message="tns:QueryRequestMessage"/>
                   <output name="QueryResponseMessage" message="tns:QueryResponseMessage"/>
              </operation>
         </portType>
         <binding name="PersonalDataIntfBinding" type="tns:PersonalDataInterface">
         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
         <operation name="Print">
              <soap:operation/>
              <input> <soap:body use="literal"/> </input>
              <output> <soap:body use="literal"/> </output>
         </operation>
         <operation name="Query">
              <soap:operation/>
              <input> <soap:body use="literal"/> </input>
              <output> <soap:body use="literal"/> </output>
         </operation>
         </binding>
         <service name="PersonalDataService">
         <port name="PersonalDataInterface" binding="tns:PersonalDataIntfBinding">
              <soap:address location="http://localhost:7001/simpleexample/PersonalDataInterface"/>
         </port>
         </service>
    </definitions>

    Exception is coming on following line (forgot
    to paste in first post)
         Object result = call.invoke(new Object[] { "Shakeel", new Integer (30), new Double(2000) });

  • Itunes keeps shutting down unexpectedly! need help

    when i try and open itunes its just comes up with an error! need help!

    Here’s some prior posts on Power Supply & Case Fans.
    http://discussions.apple.com/thread.jspa?messageID=8548984
    http://discussions.apple.com/thread.jspa?messageID=8641095
    http://discussions.apple.com/thread.jspa?messageID=7222617
    http://discussions.apple.com/thread.jspa?messageID=6388340
    http://discussions.apple.com/message.jspa?messageID=6952401
    http://discussions.apple.com/thread.jspa?messageID=8451459
     Cheers, Tom

  • BeanUtils.populate exception (Need Help)

    Dear All,
    Am getting a strange exception when try to do a action in struts, below is my exception, please help me in solving this issue.
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: BeanUtils.populate
         org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1190)
         org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:821)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:254)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1480)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:524)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:239)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:266)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:157)
         java.security.AccessController.doPrivileged(Native Method)
         java.security.AccessController.doPrivileged(Native Method)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1480)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:524)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:239)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:266)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:157)
    root cause
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessDeclaredMembers)
         java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         java.security.AccessController.checkPermission(AccessController.java:427)
         java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         java.lang.SecurityManager.checkMemberAccess(SecurityManager.java:1662)
         java.lang.Class.checkMemberAccess(Class.java:2125)
         java.lang.Class.getDeclaredMethods(Class.java:1762)
         org.apache.commons.beanutils.MappedPropertyDescriptor$1.run(MappedPropertyDescriptor.java:386)
         java.security.AccessController.doPrivileged(Native Method)
         org.apache.commons.beanutils.MappedPropertyDescriptor.getPublicDeclaredMethods(MappedPropertyDescriptor.java:383)
         org.apache.commons.beanutils.MappedPropertyDescriptor.internalFindMethod(MappedPropertyDescriptor.java:453)
         org.apache.commons.beanutils.MappedPropertyDescriptor.findMethod(MappedPropertyDescriptor.java:527)
         org.apache.commons.beanutils.MappedPropertyDescriptor.<init>(MappedPropertyDescriptor.java:149)
         org.apache.commons.beanutils.PropertyUtilsBean.getPropertyDescriptor(PropertyUtilsBean.java:865)
         org.apache.commons.beanutils.BeanUtilsBean.setProperty(BeanUtilsBean.java:991)
         org.apache.commons.beanutils.BeanUtilsBean.populate(BeanUtilsBean.java:865)
         org.apache.commons.beanutils.BeanUtils.populate(BeanUtils.java:343)
         org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1188)
         org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:821)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:254)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1480)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:524)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:239)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:266)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:157)
         java.security.AccessController.doPrivileged(Native Method)
         java.security.AccessController.doPrivileged(Native Method)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1480)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:524)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:239)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:266)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:157)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.27 logs.Thanks in advance,
    vyrav.

    Thanks for ur reply Ganesh.
    This is my JSP
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <%@ taglib uri="/WEB-INF/tld/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/tld/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/tld/struts-logic.tld" prefix="logic" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html:html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Uploaded File Details</title>
         <script>
              function logOut()
                        document.adminForm.action="upload.do?parameter=logout";
                        document.adminForm.submit();
              function download(temp)
                        document.adminForm.fileId.value = temp;
                        document.adminForm.action="download.do";
                        document.adminForm.submit();
         </script>
    <link rel="stylesheet" type="text/css" href="style.css" />
    </head>
    <body>
         <table align="right">
                        <tr>
                             <td>
                                  <a href="javascript:logOut();">Logout</a>
                             </td>
                        </tr>
         </table>
         <%
                        if(session.getAttribute("name")!=null)
                                    String userName= (String) session.getAttribute("name");
         %>
                   <br /><br /><b>Welcome <%=userName%></b><br />
         <%
         %>
         <center>
              <html:form action="/download.do" name="adminForm" type="com.roots.AdminForm">
                   <br /><br />
                   <html:hidden property="fileId"/>
                   <table align="center" border="1">
                        <tr bgcolor="#FFCC66">
                             <td align="center">
                                  No
                             </td>
                             <td align="center">
                                  Name
                             </td>
                             <td align="center">
                                  Uploaded Date
                             </td>
                             <td align="center">
                                  File Name
                             </td>
                        </tr>
                        <logic:iterate name="adminForm" property="displayList" id="displayDto">
                             <tr>
                                  <td align="center">
                                       <bean:write name="displayDto" property="serialNo"/>
                                  </td>
                                  <td align="left">
                                       <bean:write name="displayDto" property="empName"/>
                                  </td>
                                  <td align="left">
                                       <bean:write name="displayDto" property="uploadedDate"/>
                                  </td>
                                  <td align="left">
                                       <a href="javascript:download('<bean:write name="displayDto" property="serialNo"/>');"><bean:write name="displayDto" property="fileName"/></a>
                                  </td>
                             </tr>
                        </logic:iterate>
                   </table>
              </html:form>          
         </center>
    </body>
    </html:html>This is my struts config
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
             "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
             "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
         <struts-config>
               <data-sources>
               </data-sources>
              <form-beans>
                   <form-bean name="loginForm" type="com.roots.LoginForm" />
                   <form-bean name="uploadForm" type="com.roots.UploadForm" />
                   <form-bean name="adminForm" type="com.roots.AdminForm" />
              </form-beans>
              <global-forwards></global-forwards>
              <action-mappings>
                   <action path="/login"
                        name="loginForm"
                        scope="request"
                        validate="true"
                        input="/login.jsp"
                        type="com.roots.LoginAction" >
                             <forward name="SUCCESS" path="/upload.jsp" />
                             <forward name="FAILURE" path="/login.jsp" />
                             <forward name="ADMIN" path="/admin.do" />
                   </action>
                   <action path="/upload"
                        name="uploadForm"
                        scope="request"
                        parameter="parameter"
                        input="/upload.jsp"
                        type="com.roots.UploadAction" >
                             <forward name="SUCCESS" path="/upload.jsp" />
                             <forward name="FAILURE" path="/login.jsp" />
                   </action>
                   <action path="/download"
                             type="com.roots.FileDownloadAction">
                   </action>
                   <action path="/admin"
                        name="adminForm"
                        scope="request"
                        validate="false"
                        type="com.roots.AdminAction" >
                        <forward name="DISPLAY" path="/admin.jsp" />
                        <forward name="FAILURE" path="/login.jsp" />
                   </action>
              </action-mappings>
              <message-resources parameter="application_fr"/>
            <message-resources parameter="application_es"/>
            <message-resources parameter="application_en"/>
            <message-resources parameter="application_de"/>
            <message-resources parameter="application" />
         </struts-config>this is my form package com.roots;
    import java.util.List;
    import org.apache.struts.action.ActionForm;
    public class AdminForm extends ActionForm {
         private List displayList = null;
         public String fileId;
         public String getFileId() {
              return fileId;
         public void setFileId(String fileId) {
              this.fileId = fileId;
         public List getDisplayList() {
              return displayList;
         public void setDisplayList(List displayList) {
              this.displayList = displayList;
    }Please let me know wat am doing wrong, this is killing me for the last two days.
    Thanks,
    vyrav.

  • Macbook Pro: Safari quit unexpectedly. Need help. Don't know what to do.

    Whenever I click the Safari icon, I always see 'Safari quit unexpectedly' appearing on the screen.
    I can't use Safari & Microsoft Word to copy and paste the 'Problem Details and System Configuration'. Therefore, I took a picture of the information. But not all of them... hope you could still help!

    Process: Safari [259]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 6.0.1 (8536.26.14)
    Build Info: WebBrowser-7536026014000000~2
    Code Type: X86-64 (Native)
    Parent Process: launchd [134]
    User ID: 501
    Date/Time: 2013-07-16 17:59:55.441 -0400
    OS Version: Mac OS X 10.8.2 (12C60)
    Report Version: 10
    Interval Since Last Report: 3217692 sec
    Crashes Since Last Report: 115
    Per-App Interval Since Last Report: 3179230 sec
    Per-App Crashes Since Last Report: 72
    Anonymous UUID: A7D7A44B-C1F4-4D7F-879E-EDF984233717
    Crashed Thread: 8
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000044
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x44:
    -->
    __TEXT 00000001095a6000-00000001095a7000 [ 4K] r-x/rwx SM=COW /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    dyld: in dlopen()
    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.frame work/Versions/A/ImageKit
    Thread 0:: Dispatch queue: com.apple.main-thread
    0 dyld 0x00007fff691be233 ImageLoaderMachOCompressed::trieWalk(unsigned char const*, unsigned char const*, char const*) + 179
    1 dyld 0x00007fff691be35d ImageLoaderMachOCompressed::findExportedSymbol(char const*, ImageLoader const**) const + 93
    2 dyld 0x00007fff691b8822 ImageLoaderMachO::findExportedSymbol(char const*, bool, ImageLoader const**) const + 46
    3 dyld 0x00007fff691bea9f ImageLoaderMachOCompressed::resolveTwolevel(ImageLoader::LinkContext const&, ImageLoader const*, bool, char const*, bool, ImageLoader const**) + 63
    4 dyld 0x00007fff691bec9c ImageLoaderMachOCompressed::resolve(ImageLoader::LinkContext const&, char const*, unsigned char, int, ImageLoader const**, ImageLoaderMachOCompressed::LastLookup*, bool) + 316
    5 dyld 0x00007fff691bed3d ImageLoaderMachOCompressed::bindAt(ImageLoader::LinkContext const&, unsigned long, unsigned char, char const*, unsigned char, long, int, char const*, ImageLoaderMachOCompressed::LastLookup*, bool) + 77
    6 dyld 0x00007fff691bf350 ImageLoaderMachOCompressed::eachBind(ImageLoader::LinkContext const&, unsigned long (ImageLoaderMachOCompressed::*)(ImageLoader::LinkContext const&, unsigned long, unsigned char, char const*, unsigned char, long, int, char const*, ImageLoaderMachOCompressed::LastLookup*, bool)) + 1312
    7 dyld 0x00007fff691bedc5 ImageLoaderMachOCompressed::doBind(ImageLoader::LinkContext const&, bool) + 69
    8 dyld 0x00007fff691b591c ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool) + 182
    9 dyld 0x00007fff691b58d5 ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool) + 111
    10 dyld 0x00007fff691b58d5 ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool) + 111
    11 dyld 0x00007fff691b58d5 ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool) + 111
    12 dyld 0x00007fff691b5019 ImageLoader::link(ImageLoader::LinkContext const&, bool, bool, ImageLoader::RPathChain const&) + 169
    13 dyld 0x00007fff691aace4 dyld::link(ImageLoader*, bool, ImageLoader::RPathChain const&) + 547
    14 dyld 0x00007fff691b081a dlopen + 483
    15 libdyld.dylib 0x000000010eb6edd8 dlopen + 57
    16 com.apple.Safari.framework 0x0000000109804f1f AOSAccountsFramework() + 40
    17 com.apple.Safari.framework 0x00000001098034c2 getkAAAccountConfigChangedNotification() + 28
    18 com.apple.Safari.framework 0x0000000109876d7b __aosAccountsFrameworkAvailable_block_invoke_0 + 9
    19 com.apple.Safari.framework 0x0000000109874dae -[CloudTabStore init] + 90
    20 com.apple.Safari.framework 0x0000000109874d44 +[CloudTabStore sharedCloudTabStore] + 59
    21 com.apple.Safari.framework 0x000000010982bacf -[ToolbarController _canShowToolbarItemForCloudTabs] + 29
    22 com.apple.Safari.framework 0x000000010982c270 -[ToolbarController toolbarDefaultItemIdentifiers:] + 178
    23 com.apple.AppKit 0x000000010c2f8394 -[NSToolbar _defaultItemIdentifiers] + 80
    24 com.apple.AppKit 0x000000010c234eec -[NSToolbar _setConfigurationFromDictionary:notifyFamilyAndUpdateDefaults:upgradedConfigura tion:] + 300
    25 com.apple.AppKit 0x000000010c234d38 -[NSToolbar _setConfigurationUsingName:domain:] + 377
    26 com.apple.AppKit 0x000000010c234bac -[NSToolbar setConfigurationUsingName:] + 201
    27 com.apple.AppKit 0x000000010c2f823d -[NSToolbar _loadFromUDIfNecessary] + 124
    28 com.apple.AppKit 0x000000010c2f7fb3 -[NSWindow setToolbar:] + 602
    29 com.apple.Safari.framework 0x000000010982a93c -[ToolbarController initWithBrowserWindowController:] + 1093
    30 com.apple.Safari.framework 0x0000000109666d87 -[BrowserWindowControllerMac windowDidLoad] + 840
    31 com.apple.AppKit 0x000000010c43f062 -[NSWindowController _windowDidLoad] + 448
    32 com.apple.Safari.framework 0x000000010986f11c -[WindowController _windowDidLoad] + 43
    33 com.apple.AppKit 0x000000010c4103ba -[NSWindowController window] + 114
    34 com.apple.Safari.framework 0x00000001096675eb -[BrowserWindowControllerMac showWindow:] + 53
    35 com.apple.AppKit 0x000000010c19b476 -[NSDocument showWindows] + 103
    36 com.apple.Safari.framework 0x0000000109628c13 -[BrowserDocument showWindows] + 51
    37 com.apple.AppKit 0x000000010c19962f -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 461
    38 com.apple.AppKit 0x000000010c19941e -[NSDocumentController newDocument:] + 39
    39 com.apple.Safari.framework 0x00000001097cc939 -[WindowReopener reopenWithArrayOfWindowControllerNames:] + 120
    40 com.apple.Safari.framework 0x00000001097ccb12 -[WindowReopener init] + 117
    41 com.apple.Safari.framework 0x00000001097ccc1d +[WindowReopener reopenWindows] + 43
    42 com.apple.Safari.framework 0x00000001095bea09 -[AppController(FileInternal) _openUntitledFileWhileLaunching:] + 134
    43 com.apple.Safari.framework 0x00000001095bb5da -[AppController applicationOpenUntitledFile:] + 22
    44 com.apple.AppKit 0x000000010c2f1d14 -[NSApplication _doOpenUntitled] + 482
    45 com.apple.AppKit 0x000000010c2f17af __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 233
    46 com.apple.AppKit 0x000000010c633731 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01437 + 143
    47 com.apple.AppKit 0x000000010c2f125b -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 760
    48 com.apple.AppKit 0x000000010c2ef74e -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 298
    49 com.apple.AppKit 0x000000010c2ef525 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 553
    50 com.apple.AppKit 0x000000010c2ef12c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    51 com.apple.Foundation 0x000000010baf412b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    52 com.apple.Foundation 0x000000010baf3f8d _NSAppleEventManagerGenericHandler + 106
    53 com.apple.AE 0x000000010f609b48 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    54 com.apple.AE 0x000000010f6099a9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    55 com.apple.AE 0x000000010f609869 aeProcessAppleEvent + 318
    56 com.apple.HIToolbox 0x000000010df758e9 AEProcessAppleEvent + 100
    57 com.apple.AppKit 0x000000010c2eb916 _DPSNextEvent + 1456
    58 com.apple.AppKit 0x000000010c2eaed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    59 com.apple.Safari.framework 0x00000001095fc75b -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 162
    60 com.apple.AppKit 0x000000010c2e2283 -[NSApplication run] + 517
    61 com.apple.AppKit 0x000000010c286cb6 NSApplicationMain + 869
    62 com.apple.Safari.framework 0x00000001097cfd54 SafariMain + 166
    63 libdyld.dylib 0x000000010eb6f7e1 start + 1
    Thread 1:
    0 libsystem_kernel.dylib 0x000000010ed4c6d6 __workq_kernreturn + 10
    1 libsystem_c.dylib 0x000000010ebdbeec _pthread_workq_return + 25
    2 libsystem_c.dylib 0x000000010ebdbcb3 _pthread_wqthread + 412
    3 libsystem_c.dylib 0x000000010ebc6171 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib 0x000000010ed4cd16 kevent + 10
    1 libdispatch.dylib 0x000000010eb3adea _dispatch_mgr_invoke + 883
    2 libdispatch.dylib 0x000000010eb3a9ee _dispatch_mgr_thread + 54
    Thread 3:
    0 libsystem_kernel.dylib 0x000000010ed4c6d6 __workq_kernreturn + 10
    1 libsystem_c.dylib 0x000000010ebdbeec _pthread_workq_return + 25
    2 libsystem_c.dylib 0x000000010ebdbcb3 _pthread_wqthread + 412
    3 libsystem_c.dylib 0x000000010ebc6171 start_wqthread + 13
    Thread 4:
    0 libsystem_kernel.dylib 0x000000010ed4c6d6 __workq_kernreturn + 10
    1 libsystem_c.dylib 0x000000010ebdbeec _pthread_workq_return + 25
    2 libsystem_c.dylib 0x000000010ebdbcb3 _pthread_wqthread + 412
    3 libsystem_c.dylib 0x000000010ebc6171 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0 libsystem_kernel.dylib 0x000000010ed4c0fa __psynch_cvwait + 10
    1 libsystem_c.dylib 0x000000010ebddf89 _pthread_cond_wait + 869
    2 com.apple.WebCore 0x00000001128d10fb WebCore::IconDatabase::syncThreadMainLoop() + 107
    3 com.apple.WebCore 0x00000001128cec14 WebCore::IconDatabase::iconDatabaseSyncThread() + 500
    4 com.apple.JavaScriptCore 0x000000010a21636f ***::wtfThreadEntryPoint(void*) + 15
    5 libsystem_c.dylib 0x000000010ebd9742 _pthread_start + 327
    6 libsystem_c.dylib 0x000000010ebc6181 thread_start + 13
    Thread 6:
    0 libsystem_kernel.dylib 0x000000010ed4c6d6 __workq_kernreturn + 10
    1 libsystem_c.dylib 0x000000010ebdbeec _pthread_workq_return + 25
    2 libsystem_c.dylib 0x000000010ebdbcb3 _pthread_wqthread + 412
    3 libsystem_c.dylib 0x000000010ebc6171 start_wqthread + 13
    Thread 7:: com.apple.CoreAnimation.render-server
    0 libsystem_kernel.dylib 0x000000010ed4a686 mach_msg_trap + 10
    1 libsystem_kernel.dylib 0x000000010ed49c42 mach_msg + 70
    2 com.apple.QuartzCore 0x000000010a81a35b CA::Render::Server::server_thread(void*) + 403
    3 com.apple.QuartzCore 0x000000010a89ee76 thread_fun + 25
    4 libsystem_c.dylib 0x000000010ebd9742 _pthread_start + 327
    5 libsystem_c.dylib 0x000000010ebc6181 thread_start + 13
    Thread 8 Crashed:
    0 libiconv.2.dylib 0x00000001115f3469 iso2022_jp2_wctomb + 1205
    1 ??? 0x00000deadbea7dad 0 + 15302363086253
    Thread 8 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x0000000000000054 rcx: 0x0000000000000001 rdx: 0x0000000000000004
    rdi: 0x000000010ba87000 rsi: 0x000000010ae87000 rbp: 0x000000010ba88ff4 rsp: 0x000000010ba88f7c
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x0000000000000000
    r12: 0x0000000000000000 r13: 0x000000010ba88fca r14: 0x00000000000058ca r15: 0x000000010ae87003
    rip: 0x00000001115f3469 rfl: 0x0000000000010202 cr2: 0x0000000000000044
    Logical CPU: 0
    Binary Images:
    0x1095a6000 - 0x1095a6fff com.apple.Safari (6.0.1 - 8536.26.14) <12F33C70-47F7-3872-B933-0A323F3F73DD> /Applications/Safari.app/Contents/MacOS/Safari
    0x1095af000 - 0x109aa4fff com.apple.Safari.framework (8536 - 8536.26.14) <8A1EDE49-1974-3CA6-9B1A-54A1C5B2FF24> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x109df9000 - 0x109dfaff7 libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
    0x109e03000 - 0x109e19fff com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x109e30000 - 0x109e31fff libquit.dylib (130) <FD30E6D6-B4F9-3E14-8376-7036271100D1> /usr/lib/libquit.dylib
    0x109e39000 - 0x109e64fff com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x109e7b000 - 0x109e7bfff com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x109e7e000 - 0x109e7efff com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x109e82000 - 0x109edefff com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x109f16000 - 0x109f22fff com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x109f38000 - 0x109fa5ff7 com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x109fd8000 - 0x10a272ff7 com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x10a320000 - 0x10a520fff libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
    0x10a5c2000 - 0x10a6bffff libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x10a6d5000 - 0x10a70dfff libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
    0x10a722000 - 0x10a731ff7 libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x10a740000 - 0x10a74fff7 com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x10a75d000 - 0x10a90bfff com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x10a9c3000 - 0x10ac93fff com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x10adca000 - 0x10ae48ff7 com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x10ae89000 - 0x10aebdfff com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x10aeea000 - 0x10af3bff7 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x10af6c000 - 0x10b0f6fff com.apple.WebKit (8536 - 8536.26.14) <7C4D5DE6-7153-3E54-8D4F-BB2E9AE74878> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x10b1e8000 - 0x10b3cfff7 com.apple.WebKit2 (8536 - 8536.26.14) <123EF992-E854-32DB-8E6B-3D5BBE2F7E87> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x10b539000 - 0x10b5a1ff7 libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x10b5fc000 - 0x10b71492f libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x10b734000 - 0x10b734ff7 com.apple.SafariServices.framework (8536 - 8536.26.14) <3CE24612-F0CA-3C49-BC1C-63B300659DA5> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x10b739000 - 0x10b739fff com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x10b73d000 - 0x10b73dfff com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x10b740000 - 0x10b929fff com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x10ba8c000 - 0x10ba8cfff com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x10ba92000 - 0x10bdeefff com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x10c00f000 - 0x10c00ffff com.apple.SafariDAVNotifier (1.1.1 - 1) <F2E6ABF4-C7D7-341F-BC27-C9B0E7C4F4EB> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x10c013000 - 0x10c014fff libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x10c01a000 - 0x10c133ff7 com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x10c196000 - 0x10cdc3ff7 com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x10d4b8000 - 0x10d62cfff com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x10d6ee000 - 0x10d700ff7 libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x10d706000 - 0x10d706fff com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x10d70d000 - 0x10d70ffff com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x10d719000 - 0x10d723ff7 com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x10d731000 - 0x10d774fff com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x10d7ae000 - 0x10d8fffff com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x10d98f000 - 0x10d98fffd com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x10d996000 - 0x10dbcbff7 com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x10dccf000 - 0x10dd3cfff com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x10dd77000 - 0x10de97fff com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x10df0b000 - 0x10e23bff7 com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x10e390000 - 0x10e39afff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x10e3a9000 - 0x10e3f5ff7 libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
    0x10e40c000 - 0x10e509ff7 libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    0x10e53e000 - 0x10e53ffff libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
    0x10e545000 - 0x10e60aff7 com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x10e684000 - 0x10e6e1fff com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x10e709000 - 0x10e70ffff com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x10e71e000 - 0x10e71ffff liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x10e729000 - 0x10e73ffff com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x10e74f000 - 0x10e776ff7 com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x10e797000 - 0x10e7aefff com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x10e7be000 - 0x10e890ff7 com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x10e8f5000 - 0x10e9cfff7 com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x10ea53000 - 0x10ea74ff7 libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    0x10ea7f000 - 0x10ea83ff7 com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x10ea8e000 - 0x10eab3ff7 libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
    0x10eaea000 - 0x10eaeffff libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x10eaf4000 - 0x10eb02fff libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
    0x10eb10000 - 0x10eb15fff libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x10eb22000 - 0x10eb29fff libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x10eb36000 - 0x10eb4bff7 libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x10eb62000 - 0x10eb63ff7 libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
    0x10eb6d000 - 0x10eb70ff7 libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x10eb7a000 - 0x10eb7afff libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x10eb84000 - 0x10eb8cfff liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x10eb94000 - 0x10eb9afff libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x10eba0000 - 0x10eba2fff libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
    0x10ebab000 - 0x10ebacff7 libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
    0x10ebb8000 - 0x10ebb9fff libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x10ebc5000 - 0x10ec91fe7 libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
    0x10ecda000 - 0x10ece2ff7 libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
    0x10ecec000 - 0x10ed22fff libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    0x10ed3a000 - 0x10ed55ff7 libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
    0x10ed6a000 - 0x10ed98ff7 libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x10eda6000 - 0x10edb4ff7 libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x10edc2000 - 0x10edcdfff libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x10eddc000 - 0x10edddff7 libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
    0x10ede3000 - 0x10ede5ff7 libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x10edef000 - 0x10edf5ff7 libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x10edfd000 - 0x10ee1fff7 libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
    0x10ee3d000 - 0x10ee8cff7 libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x10eea0000 - 0x10ef09fff libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x10ef74000 - 0x10ef87ff7 libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x10ef95000 - 0x10ef99fff libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x10efa0000 - 0x10efa0fff libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
    0x10efa4000 - 0x10efb1fff libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x10efba000 - 0x10f2d1ff7 com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x10f34b000 - 0x10f3ccfff com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x10f427000 - 0x10f4cdff7 com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x10f52d000 - 0x10f5baff7 com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x10f601000 - 0x10f65eff7 com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x10f68b000 - 0x10f73cfff com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x10f793000 - 0x10f7c4ff7 com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10f7ed000 - 0x10f7f4fff com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x10f7fd000 - 0x10f80bff7 libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
    0x10f813000 - 0x10f820ff7 com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x10f82e000 - 0x10f845fff com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x10f863000 - 0x10f88efff libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x10f89b000 - 0x10f8c2fff com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x10f8e1000 - 0x10f97fff7 com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x10f9b8000 - 0x110348c67 com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x110454000 - 0x1104d4ff7 com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x110501000 - 0x1105beff7 com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x110609000 - 0x11065ffff com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x110692000 - 0x1106a5ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x1106b9000 - 0x110713fff com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x110741000 - 0x110780ff7 com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x11079c000 - 0x1107b0fff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x1107c6000 - 0x1107cafff com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x1107d3000 - 0x1107d3fff com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x1107dd000 - 0x1108e8fff libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x11094b000 - 0x11099aff7 libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x1109c2000 - 0x110b5dfef com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x110b84000 - 0x110b84fff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x110b8e000 - 0x110bf6fff libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x110c04000 - 0x110c9efff libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x110ca9000 - 0x1110a0fff libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x111106000 - 0x11128cfff libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x1112be000 - 0x1112e6fff libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x1112ef000 - 0x111344ff7 libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x111355000 - 0x111375fff libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x111383000 - 0x111387fff libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x111390000 - 0x111492fff libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x1114bf000 - 0x1114c2fff libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x1114c9000 - 0x11150dfff libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
    0x111521000 - 0x111543ff7 com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x11155d000 - 0x111597fff com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x1115b9000 - 0x1115d8ff7 libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x1115e8000 - 0x1116ddfff libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x1116f2000 - 0x111774fff com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x1117a5000 - 0x1117a7fff com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x1117b1000 - 0x1117b6fff com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x1117c6000 - 0x1117d1fff com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x1117df000 - 0x111822ff7 com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x111835000 - 0x11185fff7 com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x11187f000 - 0x111b23fff com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x111c09000 - 0x111c60ff7 com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x111c85000 - 0x111ccfff7 libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x111ce3000 - 0x111ce9fff libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x111cf4000 - 0x111d08fff libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x111d1f000 - 0x111d5cfe7 libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x111d6b000 - 0x111d6dfff libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x111d75000 - 0x111d79fff libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x111d83000 - 0x111dd9ff7 com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x111df4000 - 0x112211fff FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x112425000 - 0x112432fff com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x112440000 - 0x112461fff com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x112475000 - 0x112480ff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x11248e000 - 0x1124adff7 com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x1124c0000 - 0x1124c0fff com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x1124c7000 - 0x1124d0fff com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x1124e0000 - 0x11257afff com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x1125cc000 - 0x112628ff7 com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x11266e000 - 0x1126a4fff com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x1126c9000 - 0x112714fff com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x11273f000 - 0x112787fff com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x1127be000 - 0x1127c2ff7 com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x1127ce000 - 0x1127d1fff com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x1127d7000 - 0x1127ecfff com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x112809000 - 0x112826fff com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x11283e000 - 0x112840ff7 com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x112849000 - 0x11284bfff com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x112855000 - 0x112891fff com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x1128b6000 - 0x1128c1ff7 com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x1128ca000 - 0x113883fff com.apple.WebCore (8536 - 8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x11584d000 - 0x11587bfff com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
    0x1158df000 - 0x1158edfff com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x1158fc000 - 0x1158feff7 com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x115904000 - 0x115910fff libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x11635f000 - 0x1165e2fff com.apple.RawCamera.bundle (4.00 - 658) <6786E9E0-3197-30A3-A0F4-22A6064B3EF2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1168e2000 - 0x11690eff7 libRIP.A.dylib (324.6) <5A7EB5C2-BA60-36D7-BF41-9853F37837AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x11691d000 - 0x116921fff libCGXType.A.dylib (324.6) <2FC25246-A69F-3F81-9AC6-0A1753E1C6A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x1181dc000 - 0x1181feff7 com.apple.AOSAccounts (1.1.2 - 1.1.94) <6D0ECB77-3081-3DC8-9B4F-20E5A1A09554> /System/Library/PrivateFrameworks/AOSAccounts.framework/AOSAccounts
    0x11821a000 - 0x118254fff com.apple.framework.internetaccounts (2.1 - 210) <0AB62FFA-42C8-3433-9C23-7D1AB411348F> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x118289000 - 0x1182bbfff com.apple.framework.Admin (12.0 - 12.0) <5D6978C8-0B1B-3D0E-A122-C0ABD0AA8488> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x1182e2000 - 0x118562ff7 com.apple.AOSKit (1.05 - 151) <A34E8584-797C-318F-9E25-937A710C68AB> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x11858a000 - 0x118592fff com.apple.AOSNotification (1.7.0 - 636.2) <20E768EB-FB1A-341F-8995-92272FDA8D6D> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x11859d000 - 0x118860ff7 com.apple.AddressBook.framework (7.1 - 1167) <92EF9CE4-A42B-3D30-8CA2-79C0A66BB4CE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x118ab0000 - 0x118d24ff7 com.apple.CalendarStore (6.0 - 1245) <E7844C45-CDCD-3639-9476-7DBACDC90490> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x118ea3000 - 0x118ebeff7 com.apple.frameworks.preferencepanes (15.0 - 15.0) <45E922F9-E5F5-3026-90BA-C1F5F8451C9B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x118ed7000 - 0x118fd9fff libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
    0x119041000 - 0x1190b1fff com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x119102000 - 0x11910dff7 com.apple.aps.framework (3.0 - 3.0) <11E1A5D1-F5E5-3228-8B6F-77EB36B5C248> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x119119000 - 0x119125ff7 com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x11912f000 - 0x11921fff7 com.apple.DiskImagesFramework (10.8 - 344) <3A30B9B5-5099-35E2-9DCD-C96764FA2D26> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x11927f000 - 0x119282ff7 com.apple.LoginUICore (2.0 - 2.0) <965559B0-1F0E-3767-A16B-F91AABFA5275> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x11928a000 - 0x119311ff7 libCoreStorage.dylib (274.7) <8E13133C-1198-3555-9518-2BCC09C66C97> /usr/lib/libCoreStorage.dylib
    0x119336000 - 0x119340fff libcsfde.dylib (274.7) <77562CC6-3D42-34BF-BAAB-660140479D55> /usr/lib/libcsfde.dylib
    0x11934b000 - 0x11941eff7 com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x119486000 - 0x1194cefff libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
    0x1194df000 - 0x11951ffff com.apple.MediaKit (13 - 659) <0C56D7FF-0430-3199-9952-CF8577519449> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x119532000 - 0x119569ff7 libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
    0x11957f000 - 0x1195bafff com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x1195c8000 - 0x1195d9ff7 libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
    0x1195e0000 - 0x1195e3fff libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
    0x1195e9000 - 0x1195f0fff com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x1195f6000 - 0x119851ff7 com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x1199b0000 - 0x119a4dff7 com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x119ab5000 - 0x119ae1fff com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x119b11000 - 0x119dbffff com.apple.imageKit (2.2 - 667) <66A64289-6259-335E-9D8C-E3E02ECE7837> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x119ff8000 - 0x11a0f6fff com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x11a1ab000 - 0x11a31cff7 com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x11a423000 - 0x11a426fff com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x11a42c000 - 0x11a477ff7 com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x11a49d000 - 0x11a896ff7 com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x11a925000 - 0x11ad61fff com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x11adf0000 - 0x11ae0afff com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x11ae22000 - 0x11ae6ffff com.apple.CoreMediaIO (301.0 - 4147) <61E348A5-1F9E-3390-9613-3EACE40DBD8C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x11ae94000 - 0x11afd8fef com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x11b00f000 - 0x11b129fff com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x11b14c000 - 0x11b8f4fff com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x11b910000 - 0x11b967ff7 com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x11b972000 - 0x11ba03fff com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x11ba53000 - 0x11baaffff com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x11bae8000 - 0x11baf2fff com.apple.DisplayServicesFW (2.6.1 - 353) <0505CB8A-47D9-3539-9A0D-24F09D99E9D8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x11bafc000 - 0x11bb55fff com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x11bb96000 - 0x11bb9eff7 com.apple.AppSandbox (2.0 - 1) <B75AA17F-E401-3586-B8AE-AC71B68D6BF3> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x11bba8000 - 0x11bbefff7 com.apple.CalDAV (6.0 - 112.5) <F2F0833B-E133-3CC1-BACA-4E84D0A65A2D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x11bc3a000 - 0x11bc45ff7 com.apple.CalendarAgentLink (1.0 - 37) <B794F739-3AA0-395E-B8EA-3E9DECA10890> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x11bc58000 - 0x11bc69ff7 com.apple.CalendarFoundation (1.0 - 29) <2C84D3EB-844E-39DA-A848-43FC42707168> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x11bc7e000 - 0x11bce5ff7 com.apple.coredav (1.0.1 - 179.6) <4E7C1925-D6D9-3E27-8FF1-BD4E615CC87E> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x11bd41000 - 0x11bd9efff com.apple.ExchangeWebServices (3.0 - 157) <58BFD72E-27F3-3F22-A421-B883FACA0E19> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x11be2e000 - 0x11be7fff7 com.apple.iCalendar (6.0 - 126.5) <3C743E01-70DB-341C-89EC-13B5EA70EEE2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x11beb4000 - 0x11bec1fff com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x11becd000 - 0x11c025ff7 com.apple.syncservices (7.0 - 713) <924B8B34-2C9C-3C1D-909D-FF215AA8985D> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x11c0e5000 - 0x11c154fff com.apple.WhitePagesFramework (10.7.0 - 141.0) <65B30FD8-DEC0-31D4-8E7F-CBCB987D7A48> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x11c194000 - 0x11c1bdfff libsandbox.1.dylib (220) <FCD65E60-6276-3455-8A11-09864DC9A285> /usr/lib/libsandbox.1.dylib
    0x11c1c5000 - 0x11c1d8ff7 com.apple.AppContainer (2.0 - 1) <13924FCF-66FC-3CC1-888C-42C22295B2E7> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x11c1eb000 - 0x11c1effff com.apple.SecCodeWrapper (2.0 - 1) <B9D67B7E-8EAD-30E7-8898-98EF29E9A44C> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x11c1f7000 - 0x11c1fbfff libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
    0x7fff691a6000 - 0x7fff691da93f dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
    External Modification Summary:
    Calls made by other processes targeting this process:
    task_for_pid: 3
    thread_create: 1
    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: 185
    thread_create: 5
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=216.2M resident=131.0M(61%) swapped_out_or_unallocated=85.3M(39%)
    Writable regions: Total=1.1G written=13.5M(1%) resident=16.8M(2%) swapped_out=0K(0%) unallocated=1.1G(98%)
    REGION TYPE VIRTUAL
    =========== =======
    CG backing stores 152K
    CG image 4K
    CG shared images 1184K
    CoreAnimation 4K
    CoreServices 1088K
    JS JIT generated code 8K
    JS JIT generated code (reserved) 1.0G reserved VM address space (unallocated)
    MALLOC 45.7M
    MALLOC guard page 48K
    Memory tag=240 4K
    Memory tag=242 12K
    SQLite page cache 384K
    STACK GUARD 56.0M
    Stack 11.6M
    VM_ALLOCATE 16.1M
    __DATA 20.5M
    __IMAGE 528K
    __LINKEDIT 48.5M
    __TEXT 167.9M
    __UNICODE 544K
    mapped file 34.9M
    shared memory 308K
    =========== =======
    TOTAL 1.4G
    TOTAL, minus reserved VM space 405.3M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B06, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f41
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW GS31N
    USB Device: hub_device, 0x8087 (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087 (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1d181000 / 6
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 9
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4

  • SAXParser Exception - NEED HELP IT'S URGENT

    Hi, I'm stuck in this, I have this program that works running a script called runPatito.sh
    but everytime I run it it throws me the following error:
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.xml.sax.SAXParseException: Parser has reached the entity expansion limit "64,000" set by the Application.
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace: AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.xml.sax.SAXParseException: Parser has reached the entity expansion limit &quot;64,000&quot; set by the Application.
    faultActor:
    faultNode:
    faultDetail:
    org.xml.sax.SAXParseException: Parser has reached the entity expansion limit "64,000" set by the Application.
    at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:251)
    at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:168)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:1015)
    at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
    at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    Now , I've been searching and actually I found that I need to increase the system property "EntityExpansionLimit" but unfortunately I haven't been able to do it...
    I found that I need to run my program with java -DentityExpansionLimit=1000000 and "everything else" as it says in all the forums...
    The script that I'm using have this:
    #!/bin/sh
    java -cp patitoApp-patito-client com.patitoC.patito.PatitoClient cold.xml hot.xml
    My problem here is I don't know where to add that line (-DentityExpansionLimit=1000000) in order for this to work properly.
    I would appreciate some help here...

    Hi before explainig other things I wanted to thank you all for replying this post and for trying to help me...
    There are two scripts involved in the proccess, one is the server and one is the client, both of them are running with the modification suggested, but it does not make any difference...
    I still have the exception of the SAXParser with the 64,000
    I even modified the classes because I'm using DocumentBuildFactory and I put the entityExpansionLimit as a property of the object created as I found it...
    Here's the code of those lines:
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
              factory.setAttribute("http://apache.org/xml/properties/entity-expansion-limit",new Integer("1000000"));
              factory.setAttribute("http://apache.org/xml/properties/elementAttributeLimit",new Integer(20));
    I think I need some more help regarding this problem...

  • Safari crashes unexpectedly -  daily - need help interpreting crash report

    Thanks for any suggestions. All I recall seeing is that Safari crashed unexpectedly
    Here's the crash log file:
    Process: Safari [31120]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.2 (6533.18.5)
    Build Info: WebBrowser-75331805~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [144]
    Date/Time: 2010-11-16 07:29:55.762 -0500
    OS Version: Mac OS X 10.6.4 (10F2061)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ??? 000000000000000000 0 + 0
    1 com.apple.WebCore 0x00007fff8231da77 WebCore::RenderLayerCompositor::computeCompositingRequirements(WebCore::RenderL ayer*, ***::HashMap<WebCore::RenderLayer*, WebCore::IntRect, ***::PtrHash<WebCore::RenderLayer*>, ***::HashTraits<WebCore::RenderLayer*>, ***::HashTraits<WebCore::IntRect> >*, WebCore::CompositingState&, bool&) + 55
    2 com.apple.WebCore 0x00007fff81bf201b WebCore::RenderLayerCompositor::updateCompositingLayers(WebCore::CompositingUpd ateType, WebCore::RenderLayer*) + 427
    3 com.apple.WebCore 0x00007fff8231a470 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 528
    4 com.apple.WebCore 0x00007fff8231a917 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::RenderObject*, ***::HashMap<WebCore::OverlapTestRequestClient*, WebCore::IntRect, ***::PtrHash<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::OverlapTestRequestClient*>, ***::HashTraits<WebCore::IntRect> >*, unsigned int) + 1719
    5 com.apple.WebCore 0x00007fff8231c5b0 WebCore::RenderLayerBacking::paintIntoLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, unsigned int, WebCore::GraphicsLayerPaintingPhase, WebCore::RenderObject*) + 1888
    6 com.apple.WebCore 0x00007fff8231c88f WebCore::RenderLayerBacking::paintContents(WebCore::GraphicsLayer const*, WebCore::GraphicsContext&, WebCore::GraphicsLayerPaintingPhase, WebCore::IntRect const&) + 223
    7 com.apple.WebCore 0x00007fff81bf91ec +[WebLayer drawContents:ofLayer:intoContext:] + 284
    8 com.apple.QuartzCore 0x00007fff802f015a CABackingStoreUpdate + 2427
    9 com.apple.QuartzCore 0x00007fff802ef3fb -[CALayer _display] + 837
    10 com.apple.WebCore 0x00007fff81bf907b -[WebLayer display] + 43
    11 com.apple.QuartzCore 0x00007fff802adf8f CALayerDisplayIfNeeded + 524
    12 com.apple.QuartzCore 0x00007fff802ad40a CA::Context::commit_transaction(CA::Transaction*) + 328
    13 com.apple.QuartzCore 0x00007fff802ad05e CA::Transaction::commit() + 314
    14 com.apple.CoreFoundation 0x00007fff87a2b077 __CFRunLoopDoObservers + 519
    15 com.apple.CoreFoundation 0x00007fff87a0686f CFRunLoopRunSpecific + 607
    16 com.apple.HIToolbox 0x00007fff8301491a RunCurrentEventLoopInMode + 333
    17 com.apple.HIToolbox 0x00007fff8301467d ReceiveNextEventCommon + 148
    18 com.apple.HIToolbox 0x00007fff830145d8 BlockUntilNextEventMatchingListInMode + 59
    19 com.apple.AppKit 0x00007fff85bf129e _DPSNextEvent + 708
    20 com.apple.AppKit 0x00007fff85bf0bed -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    21 com.apple.Safari 0x00000001000165d8 0x100000000 + 91608
    22 com.apple.AppKit 0x00007fff85bb68d3 -[NSApplication run] + 395
    23 com.apple.AppKit 0x00007fff85baf5f8 NSApplicationMain + 364
    24 com.apple.Safari 0x000000010000a4a4 0x100000000 + 42148
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff8345408a kevent + 10
    1 libSystem.B.dylib 0x00007fff83455f5d dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff83455c34 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff8345575e dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff83455088 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff83454f25 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff83475eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83479cd1 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff819aec09 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff819aad0c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff8343b2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8343b96d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff87a073c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff87a0684f CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002fa41 0x100000000 + 195137
    5 com.apple.Safari 0x000000010002f9d1 0x100000000 + 195025
    6 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff8343b2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8343b96d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff87a073c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff87a0684f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8887d4c3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff887fde8d _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff8347edce select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff87a28e92 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 6: WebCore: LocalStorage
    0 libSystem.B.dylib 0x00007fff83475eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83479cd1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff865b6420 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.WebCore 0x00007fff81d00621 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 7: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff83475eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83479cd1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff865b6420 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001be851 0x100000000 + 1828945
    4 com.apple.Safari 0x000000010004750f 0x100000000 + 292111
    5 com.apple.Safari 0x000000010004738d 0x100000000 + 291725
    6 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff8343b2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8343b96d mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff802f5be2 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff802f5b22 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff83454eaa _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff834552bc pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff83454f25 start_wqthread + 13
    Thread 10: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff8343b2fa machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8343b96d mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff87a073c2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff87a0684f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff88838a18 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff888388f7 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x00000001000903f7 0x100000000 + 590839
    7 com.apple.Foundation 0x00007fff887fde8d _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff83475eb6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff83479cd1 pthread_condwait + 1286
    2 com.apple.CoreVideo 0x00007fff80a734b2 CVDisplayLink::runIOThread() + 804
    3 com.apple.CoreVideo 0x00007fff80a73153 startIOThread(void*) + 139
    4 libSystem.B.dylib 0x00007fff83474456 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff83474309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x000000011ab50608 rbx: 0x0000000000000001 rcx: 0x0000000000000000 rdx: 0x00007fff5fbfd260
    rdi: 0x000000011bc922d8 rsi: 0x000000011bc93a48 rbp: 0x00007fff5fbfd110 rsp: 0x00007fff5fbfd0c8
    r8: 0x00007fff5fbfd29f r9: 0x00007fff5fbfd590 r10: 0x0000000000000013 r11: 0x00007fff5fbfce40
    r12: 0x000000011bc93a48 r13: 0x00000000000000f0 r14: 0x00000000000000bb r15: 0x00007fff5fbfd260
    rip: 0x0000000000000000 rfl: 0x0000000000010246 cr2: 0x0000000000000000
    Binary Images:
    0x100000000 - 0x1006b0fe7 com.apple.Safari 5.0.2 (6533.18.5) <2778C740-2DD4-7CAD-A0C8-4E7481FD2A6F> /Applications/Safari.app/Contents/MacOS/Safari
    0x100fe6000 - 0x100fe6fff com.apple.JavaPluginCocoa 13.3.0 (13.3.0) <FE297F73-9063-3507-BA4D-B02306F4A3C2> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1148ea000 - 0x1148f3fff com.apple.JavaVM 13.3.0 (13.3.0) <36BCE3E0-67EB-184B-3831-78287E8C58A1> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x11ac4e000 - 0x11ac74fff GLRendererFloat ??? (???) <905A722A-2571-8F65-90AF-E1CEA8AD6DC9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x12113b000 - 0x1212cbfe7 GLEngine ??? (???) <E92B1EDA-7780-1FBC-4AEA-DF96D7117B19> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1212fc000 - 0x1216a8fff com.apple.ATIRadeonX3000GLDriver 1.6.18 (6.1.8) <8B55B546-1748-0BC7-3291-31687A620D1D> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <472D950D-70F8-B810-A959-9184C2AA6C74> /usr/lib/dyld
    0x7fff80003000 - 0x7fff8003bfef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E6B10A46-E64C-9248-29C1-E252410C77B1> /usr/lib/libcups.2.dylib
    0x7fff8003c000 - 0x7fff8003cff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff80095000 - 0x7fff800abfff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff800ac000 - 0x7fff800bdfff SyndicationUI ??? (???) <AB222D54-3800-754D-C234-9FD5F1ACA7EB> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff800be000 - 0x7fff800cbfe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <A49676A5-D9AF-56DE-ACA6-CC0005E42398> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff800cc000 - 0x7fff800d2ff7 IOSurface ??? (???) <7AF7AA31-61A3-F60C-C85A-41107A4DBF06> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff800d3000 - 0x7fff80114ff7 com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff80115000 - 0x7fff80144ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff80145000 - 0x7fff801c2fef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff801c3000 - 0x7fff80280ff7 com.apple.CoreServices.OSServices 357 (357) <78252D7F-0F21-5E99-E7FF-1591FB98437C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff80281000 - 0x7fff802a2fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff802a3000 - 0x7fff8063cff7 com.apple.QuartzCore 1.6.2 (227.22) <3CF27A9E-4B1A-AD21-5B40-E203D1C9350B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff80702000 - 0x7fff80749ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8074a000 - 0x7fff807b4fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff807b5000 - 0x7fff807c4fff com.apple.NetFS 3.2.1 (3.2.1) <0357C371-2E2D-069C-08FB-1180512B8516> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff807c5000 - 0x7fff808abfe7 com.apple.DesktopServices 1.5.8 (1.5.8) <8DFD7D6D-1DE7-C805-02F4-E6F3DF0C83F5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff808ac000 - 0x7fff808b2ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff808b3000 - 0x7fff808b3ff7 com.apple.Carbon 150 (152) <3A7BF27D-495B-3921-C4BE-201BBC61E5D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff808b4000 - 0x7fff808f1fff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff80998000 - 0x7fff80a47fff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff80a5e000 - 0x7fff80a70fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff80a71000 - 0x7fff80a96ff7 com.apple.CoreVideo 1.6.1 (45.5) <29F39070-5CEF-B286-66E3-7CC903519403> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff80a97000 - 0x7fff80a9afff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff80a9b000 - 0x7fff80baafe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <58C1D83A-F3FC-C025-58CA-CA35419FBDA6> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff80bab000 - 0x7fff80babff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff80bf7000 - 0x7fff80c38fff com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff80c39000 - 0x7fff80da8fe7 com.apple.QTKit 7.6.6 (1744) <9A770A86-8DA9-A7C4-8BDC-859F2AD745F3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff80da9000 - 0x7fff80dc9ff7 com.apple.DirectoryService.Framework 3.6 (621.4) <969734C3-D21E-2F30-5CBB-D9F23D123643> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff80dca000 - 0x7fff80e48fff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff80e49000 - 0x7fff80e82ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff80eb8000 - 0x7fff80f20fff com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff80f21000 - 0x7fff80f27fff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C297D7C5-8227-65D5-2E88-D723038963D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff80f28000 - 0x7fff811affe7 com.apple.security 6.1.1 (37594) <C32E7E37-13EC-381A-7CA6-AAE3EBD2C1F1> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff811b0000 - 0x7fff8136efff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
    0x7fff8136f000 - 0x7fff8137bfff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5FFC8295-2DF7-B54C-3766-756842C53731> /usr/lib/libbz2.1.0.dylib
    0x7fff81403000 - 0x7fff814bcfff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <BF1A7D1F-1BB3-78BA-A29E-52384F6E4FD8> /usr/lib/libsqlite3.dylib
    0x7fff814c9000 - 0x7fff81501ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F4067E77-F82D-6B84-BAC7-6E8F955B88AB> /usr/lib/libssl.0.9.8.dylib
    0x7fff81502000 - 0x7fff8158efef SecurityFoundation ??? (???) <D844BB57-386A-0A43-249E-9BE035C2AB53> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff815ca000 - 0x7fff815caff7 com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff81765000 - 0x7fff819a7fef com.apple.AddressBook.framework 5.0.2 (870) <A1278575-53F2-CC00-7306-E49713FEC7C6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff819a8000 - 0x7fff8261bff7 com.apple.WebCore 6533.18 (6533.18.1) <93835F9F-EDA0-4E03-DE76-F2703FC1C1A5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8261c000 - 0x7fff82621fff libGIF.dylib ??? (???) <0A583E66-C43B-5F61-C599-9AC6C5409D66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8267d000 - 0x7fff826fcfef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <69E0C807-BE06-BC3B-2F56-13595D0B90FD> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff826fd000 - 0x7fff82728ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff82729000 - 0x7fff82764fff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff827b0000 - 0x7fff8292dff7 com.apple.WebKit 6533.18 (6533.18.1) <1B7655BE-5F18-583B-1A43-72B047339144> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8292e000 - 0x7fff82951fff com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff82952000 - 0x7fff82956ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff82a58000 - 0x7fff82ae7fff com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff82ae8000 - 0x7fff82b1dfef com.apple.framework.Apple80211 6.2.3 (623.1) <2168CFEF-BABB-AA55-1059-5C7723B976A1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff82b37000 - 0x7fff82b80fef libGLU.dylib ??? (???) <88F0E457-EE53-B5FF-6A1B-D0326D0C643D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff82b9c000 - 0x7fff82c21fff com.apple.print.framework.PrintCore 6.2 (312.5) <C20F87CE-ACC1-552B-8A73-2B3846A01D80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff82c22000 - 0x7fff82c8eff7 com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff82c8f000 - 0x7fff82ca4ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff82fe6000 - 0x7fff832e4fe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff832e5000 - 0x7fff833e9fff com.apple.PubSub 1.0.5 (65.20) <4B7C7949-653D-D1D2-FEDF-97863ADD4BE0> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff833ea000 - 0x7fff83439ff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <FE549581-6A40-BD28-24A4-68FA0B616780> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff8343a000 - 0x7fff835fafef libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <863580CA-BD50-95C6-B9FD-931FAB07FED3> /usr/lib/libSystem.B.dylib
    0x7fff835fb000 - 0x7fff8363cfef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8363d000 - 0x7fff83d3a067 com.apple.CoreGraphics 1.545.0 (???) <88892F58-F785-2E30-50B1-E9CC8775E79F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83db0000 - 0x7fff83df3fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff83df4000 - 0x7fff83df9ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff83dfa000 - 0x7fff83fb0fef com.apple.ImageIO.framework 3.0.3 (3.0.3) <1B8E6256-27CD-E0E1-BF7B-AB15B3915685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff83fb1000 - 0x7fff83fb8fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff83fb9000 - 0x7fff83fcafff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff8401a000 - 0x7fff84022fff com.apple.DisplayServicesFW 2.2.2 (251) <006CB2B6-25DC-49F5-DED7-F828E88719AB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff84023000 - 0x7fff8402efff com.apple.CrashReporterSupport 10.6.3 (250) <47181442-3131-23A5-959B-C80D828B2967> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff84108000 - 0x7fff8414ffef com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff84150000 - 0x7fff8419aff7 com.apple.Metadata 10.6.3 (507.10) <7913DD85-87D4-527C-DB20-5802ECA3CC31> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8419b000 - 0x7fff8422bfff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8422c000 - 0x7fff84281fef com.apple.framework.familycontrols 2.0.1 (2010) <66C68564-8AF3-2A03-B5B2-594CD6781CEA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff84282000 - 0x7fff842fffef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff84300000 - 0x7fff84345fff com.apple.CoreMediaIOServices 130.0 (1035) <1A4BE73A-9E7E-939F-2D40-50768F775346> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff84346000 - 0x7fff846e7fe7 com.apple.RawCamera.bundle 3.3.0 (533) <84ACD5A6-A184-0D4A-24C6-41D14291E8EC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8470b000 - 0x7fff84721fe7 com.apple.MultitouchSupport.framework 205.34 (205.34) <01AAE66D-C2DF-4EF5-FC7B-E89E08C02A01> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84722000 - 0x7fff84905fef libType1Scaler.dylib ??? (???) <24E9B836-3E8C-A005-22D4-B34799E7164B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff84906000 - 0x7fff84914ff7 libkxld.dylib ??? (???) <06A51939-F1BC-7D41-2E2A-53ACB1B4A3A8> /usr/lib/system/libkxld.dylib
    0x7fff84915000 - 0x7fff84959fe7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff8495a000 - 0x7fff84965fff com.apple.corelocation 12 (12) <04DFA04A-CE28-06BB-0C1F-D8F0FD491002> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff84966000 - 0x7fff849a9ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <28EB1C4B-56C3-85AA-BAB0-0163EBE51427> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff849aa000 - 0x7fff84a44fff com.apple.ApplicationServices.ATS 275.11.1 (???) <0A898C0C-41A0-B9BF-0A38-74FB029CA049> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff84a45000 - 0x7fff84afafe7 com.apple.ColorSync 4.6.3 (4.6.3) <5A7360A8-D495-1E8D-C4B4-A363AF989ADE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff84afb000 - 0x7fff84b00fff libGFXShared.dylib ??? (???) <1B50D804-966B-30D2-D0FD-B090B6FEAC7E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff84b01000 - 0x7fff84b29fff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84c0a000 - 0x7fff84c0aff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff84c0b000 - 0x7fff84c21fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff84c22000 - 0x7fff84d4aff7 com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff84d51000 - 0x7fff84d8eff7 libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff84e2c000 - 0x7fff85330fe7 com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff85571000 - 0x7fff85573fff com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff85574000 - 0x7fff855e4ff7 com.apple.AppleVAFramework 4.10.8 (4.10.8) <C3B7EABC-66B8-E951-0E03-1E1521D5D03D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8560a000 - 0x7fff8560bfff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff8560c000 - 0x7fff85632fe7 libJPEG.dylib ??? (???) <DBA0816B-7D0C-2B8D-767D-74E5198B5123> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff85633000 - 0x7fff8573dff7 com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff8573e000 - 0x7fff85786ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff85796000 - 0x7fff857a5fff libxar.1.dylib ??? (???) <2C4E4D13-263B-6EFF-C6FD-FB8BA6DB3EF0> /usr/lib/libxar.1.dylib
    0x7fff85948000 - 0x7fff859e8fff com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff85b4a000 - 0x7fff85b7bfff libGLImage.dylib ??? (???) <7EF50768-54F1-5883-C40F-DAF83810C3FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff85b94000 - 0x7fff85ba8ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff85bab000 - 0x7fff85bacff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff85bad000 - 0x7fff865a3fff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff865a4000 - 0x7fff8678cff7 com.apple.JavaScriptCore 6533.18 (6533.18.1) <097272AC-E436-78E5-4A74-284DEB07D6D9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff867d9000 - 0x7fff867e4ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff86801000 - 0x7fff86883fff com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff868b5000 - 0x7fff86af0fef com.apple.imageKit 2.0.3 (1.0) <8DA80BC9-C671-BD89-EA2E-3C632D6ECE30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff86af1000 - 0x7fff86b22fef libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff86b23000 - 0x7fff8732dfe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff87363000 - 0x7fff87418fe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff87419000 - 0x7fff8741cff7 libCoreVMClient.dylib ??? (???) <CE19A78F-B76D-244A-1C04-0544B914F728> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8741d000 - 0x7fff8741dff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff8741e000 - 0x7fff87535fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff87536000 - 0x7fff87598fe7 com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff87599000 - 0x7fff876b2fef libGLProgrammability.dylib ??? (???) <0E55A58B-5B42-669F-2655-90893554CA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff876b3000 - 0x7fff877f1fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff877f2000 - 0x7fff8783efff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff8783f000 - 0x7fff8785dfff libPng.dylib ??? (???) <76D798A5-8C16-7FC8-E76E-5B40CA7CFDEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8785e000 - 0x7fff87860fff libRadiance.dylib ??? (???) <4E3DF84D-2D3A-A845-88C6-D196D9DA1F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff87882000 - 0x7fff878e0ff7 com.apple.framework.IOKit 2.0 (???) <00376B85-C54E-F1B9-1335-5938D9D2CA4F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff87997000 - 0x7fff8799aff7 com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8799b000 - 0x7fff8799fff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <A5BECE74-6C4A-E7F3-1948-667ED1A74864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff879a9000 - 0x7fff879aafff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff879ab000 - 0x7fff879baff7 com.apple.opengl 1.6.9 (1.6.9) <BB8AEF81-0EC1-ED4C-360B-186C60AE745C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff879bb000 - 0x7fff87b30ff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff87b31000 - 0x7fff87b42ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff87b43000 - 0x7fff87c1dff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff87c1e000 - 0x7fff87c6dfef libTIFF.dylib ??? (???) <421F4CB7-ACC7-7E90-FC83-EBC2BCA3ECB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff87c6e000 - 0x7fff87c82fff libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff87c83000 - 0x7fff87c84ff7 com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff87e67000 - 0x7fff882aafef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff882ab000 - 0x7fff8836bfff libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8836c000 - 0x7fff883e7fff com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff883e8000 - 0x7fff8871bfe7 com.apple.CoreServices.CarbonCore 861.16 (861.16) <B7C1E3F2-6E95-D172-1C93-38B10CA80F21> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8871c000 - 0x7fff887ecff7 com.apple.CFNetwork 454.9.8 (454.9.8) <24667A86-FCDA-5B58-2CDC-3BFDFE8EA985> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff887ed000 - 0x7fff88a6efef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88a6f000 - 0x7fff88b94fef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff88b95000 - 0x7fff88bdeff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff88bdf000 - 0x7fff88bdfff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff88c1f000 - 0x7fff88cd5fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff88cd6000 - 0x7fff88ceffff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff88cf0000 - 0x7fff88cf0ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff88cfd000 - 0x7fff88d4efe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff88d85000 - 0x7fff88e50fe7 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <A6B2D07C-FC4D-F49E-64E5-AD4DFA830C05> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff88e51000 - 0x7fff88e6cff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff88e70000 - 0x7fff890d9ff7 com.apple.QuartzComposer 4.1 (156.16) <D8B84962-C6E5-6812-2205-A910F707EE67> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <863580CA-BD50-95C6-B9FD-931FAB07FED3> /usr/lib/libSystem.B.dylib

    HI,
    Install the v10.6.4 Combo Update.
    http://support.apple.com/kb/DL1048
    And follow the instructions here for troubleshooting third party Safari add-ons.
    http://support.apple.com/kb/TS3230?viewlocale=en_US
    Carolyn

  • Urgent! - unexpected error -- need help!!

    Hi, all. I'm a photographer on a tight deadline and need to upload pictures to my lab. The program uses java and it's been working fine for months since I first started using it. Now, all of the sudden, when I try to upload pictures online to my lab and java tries to run, I get knocked off of my online connection. Java just won't connect me any longer. I get error messages on my desktop and I pasted it below. Can anyone give any advice? I so badly need to be able to get my orders uploaded to my lab!! Thank you in advance. Here's the error message:
    An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0bd09bc7, pid=2308, tid=2832
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_01-b06 mixed mode, sharing)
    # Problematic frame:
    # C 0x0bd09bc7
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x09735000): JavaThread "AWT-Windows" daemon [_thread_in_native, id=2832]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000010
    Registers:
    EAX=0x00000010, EBX=0x00000000, ECX=0x00000000, EDX=0x0000000c
    ESP=0x0a23f668, EBP=0x0a23f670, ESI=0x0a23f6d4, EDI=0x0a23f684
    EIP=0x0bd09bc7, EFLAGS=0x00010202
    Top of Stack: (sp=0x0a23f668)
    0x0a23f668: 0a23f6d4 00000000 0a23f6c0 0bd6d5bf
    0x0a23f678: 00030356 00000000 00000102 0a23f6d4
    0x0a23f688: 0a23f880 00000000 00000000 00000000
    0x0a23f698: 0000000c 0bcf6840 00000001 2110fb50
    0x0a23f6a8: 0a23f684 0a23f28c 0a23f788 0bd5caf0
    0x0a23f6b8: 0c77b1a8 ffffffff 0a23f704 68057223
    0x0a23f6c8: 00030356 00000000 00000102 0a23f76c
    0x0a23f6d8: 680571c0 2b294bc0 074e01a5 0a23f854
    Instructions: (pc=0x0bd09bc7)
    0x0bd09bb7: c0 96 0c 0b c0 58 74 08 8b 00 03 05 cc c0 96 0c
    0x0bd09bc7: 8b 00 0b c0 75 05 e8 7e 6b fe ff 89 45 fc 8b 75

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

  • Out OF Bounds Exception need help

    I am trying to learn how to catch exceptions. I can not see what I am doing wrong. Can someone show me and explain what I am doing wrong. I am taking in Military Time and will convert it to a 12 hour clock. I am testing it as I go so I have not finished adding code. The bad code is marked with // <== StringIndexOutOfBoundsException. Thank You in advance for the help.
    public class TimeFormat
    public TimeFormat()
    public static void main(String[] args)
    double amtt;
    char ans = 'n';
    String time1 = "00:00";
    String min1 = " ";
    int hh = 0;
    int mm = 0;
    String dd = " ";
    System.out.println("This program will convert 24 hour time into 12 hour time");
    do
    try
    System.out.println("Enter a time in military format: (ex. 14:00)");
    time1 = SavitchIn.readLine();
    hh = Integer.parseInt(time1.substring( 0, 2));
    String amPm = "PM";
    if (hh <= 12)
    amPm = "AM";
    dd = time1.substring( 2, 1); // <== StringIndexOutOfBoundsException
    mm = Integer.parseInt(time1.substring( 3, 2));
    int t1 = Integer.parseInt(time1);
    min1 = time1.substring(3, 3);
    if (t1 < 0 || t1 > 2459)
    throw new Exception ("Exception: Bad Input, must be between 0 and 2459");
    catch(Exception e)
    System.out.println("e.getMessage()");
    System.out.println("Time must be between 0 and 2499");
    System.out.println("\n\nWould you like to do it again? (y/n) : ");
    ans= SavitchIn.readLineNonwhiteChar();
    }while ((ans == 'y') || (ans == 'y'));

    import java.awt.*;
    import java.io.*;
    import java.text.*;
    public class texas {
      int hours, minutes;
      String AM_PM = " am";
      public texas() {
        try {
          BufferedReader br = new BufferedReader(
                              new InputStreamReader( System.in ));
          System.out.print("\nEnter a 24-hour time (\"##:##\"): ");
          System.out.flush();
          String s = br.readLine();
          if(s.indexOf(":") == -1) {
            System.out.println("Invalid entry - separate hours " +
                               "and minutes with \":\"");
            return;
          String[] sarray = s.split(":");
          hours   = Integer.parseInt(sarray[0]);
          minutes = Integer.parseInt(sarray[1]);
        } catch(IOException ioe) {
          System.out.println(ioe.toString());
          return;
        } catch(NumberFormatException nfe) {
          System.out.println(nfe.toString());
          return;
        } catch(ArrayIndexOutOfBoundsException aioobe) {
          System.out.println(aioobe.toString());
          return;
        if(hours < 0 || hours > 24) {
          System.out.println("Invalid input - hours must be between 0 and 24");
          return;
        if(minutes < 0 || minutes > 59) {
          System.out.println("Invalid input - minutes must be between 0 and 59");
          return;
        if(hours > 12) {
          hours -= 12;
          AM_PM = " pm";
        if(hours == 12 && minutes >= 0)
          AM_PM = " pm";
        String minutes12 = String.valueOf(minutes);
        if(minutes12.length() < 2)
          minutes12 = "0" + minutes12;
        String time = String.valueOf(hours) + ":" + minutes12 + AM_PM;
        System.out.println("12-hour time is: " + time);
      public static void main(String[] args) {
        new texas();
    }

  • Unreported exception--Need Help

    I can't understand why is this not working:
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class Slanje {
         public void infos(String host,String from,String to,String subject,String messagetext){
    /*String host="";
    String from="";
    String to="";*/
    // Get system properties
    Properties props = System.getProperties();
    // Setup mail server
    props.put("mail.smtp.host", host);
    // Get session
    Session session = Session.getDefaultInstance(props, null);
    // Define message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    message.setFrom(new InternetAddress(from));
    // Set the to address
    message.addRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    // Set the subject
    message.setSubject(subject);
    // Set the content
    message.setText(messagetext);
    // Send message
    Transport.send(message);
    I'm making email client and want to make methods to be called when wanting to make message to be send

    I presume you're getting a compiler error regarding the unreported exception, right? That means you need to put your method calls that throw exceptions in a try/catch block. For example, props.put() throws NullPointerException, so you need a catch statement for that. The other method calls may have similar needs.
    Steve

  • Unexpected exception:please help

    hello there..
    i want to make a communication between an applet(embedded in myjsp.jsp) and a jsp page(another.jsp)
    for that i m using the following code
    try{
            URL appletURL = getCodeBase();
            String strHost = appletURL.getHost();
            String strPort = String.valueOf(appletURL.getPort());
            String strProtocol = appletURL.getProtocol();
            int portNumber = Integer.parseInt(strPort);
            String strwp ="/UASProject/Registrationform.jsp";       
            URL jspURL = new URL(strProtocol,strHost,portNumber,strwp);
            URLConnection jspCon = jspURL.openConnection();
            jspCon.setUseCaches(false);
            jspCon.setDoOutput(true);
            jspCon.setDoInput(true);
            OutputStream outstream= jspCon.getOutputStream();
            ObjectOutputStream oboutStream = new ObjectOutputStream(outstream);
            PrintWriter out = new PrintWriter(oboutStream,true);
           // String postData= "?xmlText=" + URLEncoder.encode(genXml(),"UTF-8");      
           // out.flush();
            String strLength = String.valueOf(oboutStream);
            jspCon.setRequestProperty("Content-Length",strLength);
            jspCon.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
            oboutStream.writeObject(std_details);   
            oboutStream.flush();
            oboutStream.close();
            URL tempURL = new URL(String.valueOf(jspURL));
            //System.out.println(String.valueOf(jspURL)+" "+String.valueOf(tempURL));
            getAppletContext().showDocument(tempURL,"_blank");    
         }catch(Exception e) 
           {System.out.println(e+" "+e.getCause());}but at sun java console in IE7.0 i got the following exception
    java.lang.IllegalStateException: Already connected
    i looked around this but couldn't able to solve.
    guide me to make a successful connection be

    thanks for ur quick reply..
    actually i copied this code from one of the post around this forum.
    what u meant to say as i understand..i haven't written any code in target jsp ,in fact i will do it later.
    just now i want to check whether i m going into the righ way or not by running the jsp from withing the applet(embedded in a jsp) and moreover post few datas to that jsp.
    please guide me where to reformat the code?

  • Photo booth quit unexpectedly. Need Help!

    I've tried deleting com.apple.Photobooth.plist, resetting the PRAM and using the repair disk permission but still it doesn't solved the problem.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
    SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
    DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    ☞ If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    ☞ Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • Runtime Exception - Need Help

    Hi
    I have a simple BPEL process to test the exception handling. It basically consists of a Invoke to call a EJB and a catchAll around the invoke. If there is an exception due to the Target EJB not available , the catchAll catches the exception, but if there is a runtime exception thrown in the EJB such as a NullPointerException, the catchAll does not capture it and also i'm not able to even access the instance, the instance itself vanishes. I have included the detailed log below..
    can some one shed some light on this..?
    Thanks in advance
    Sam
    The log contains activities of creating a new instance from Dashboard and click on the 'Flow' in console
    &gt;&gt;&gt;&gt; Log Start &gt;&gt;&gt;&gt;
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT CONNECTION 1
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE CONNECTION 0
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT CONNECTION 1
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE CONNECTION 0
    &lt;2005-02-04 10:24:08,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;WSDLSchemaUtil::getInputParameters&gt; In
    put parameter name payload parameter type {http://acm.org/samples}EHT1Request
    &lt;2005-02-04 10:24:09,046&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT TX CONNECTION 1
    &lt;2005-02-04 10:24:09,062&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;BaseDeliveryPersistenceAdaptor
    ::storeInvoke&gt; Compressed message bytes from 850 to 381
    &lt;2005-02-04 10:24:09,062&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE TX CONNECTION 0
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::insert&gt; Receiv
    ed batch message, 1 messages [invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb]
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb] for set invok
    e
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [] for set engine
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::receive&gt; Alloc
    ating new thread; pending threads: 1, active threads: 0, total: 0
    &lt;2005-02-04 10:24:09,171&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::init&gt; Done
    initializing dispatcher queue 'java:comp/env/jms/collaxa/BPELWorkerQueue'
    &lt;2005-02-04 10:24:09,187&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;InvokeDispatchSet::fetchSc
    heduled&gt; Fetched message invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb from inv
    oke queue for processing
    &lt;2005-02-04 10:24:09,234&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::send&gt; Sent
    message to queue java:comp/env/jms/collaxa/BPELWorkerQueue
    &lt;2005-02-04 10:24:09,234&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::insert&gt; Receiv
    ed batch message, 0 messages []
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;InvokeInstanceMessageHandl
    er::handle&gt; Processing invoke instance message for domain default
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT TX CONNECTION 1
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [] for set invoke
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [] for set engine
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::receive&gt; Alloc
    ating new thread; pending threads: 1, active threads: 1, total: 1
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::send&gt; Sent
    message to queue java:comp/env/jms/collaxa/BPELWorkerQueue
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message remove dispatcher bean message aacf889e30f5e83a:125e791:101ddf7208b:-7ffa for set
    system
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::receive&gt; Alloc
    ating new thread; pending threads: 1, active threads: 1, total: 2
    &lt;2005-02-04 10:24:09,265&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::send&gt; Sent
    message to queue java:comp/env/jms/collaxa/BPELWorkerQueue
    &lt;2005-02-04 10:24:09,281&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;SystemDispatchSet::fetchSc
    heduled&gt; Fetched message remove dispatcher bean message aacf889e30f5e83a:125e791:101ddf7208b:-7ffa f
    rom system queue for processing
    &lt;2005-02-04 10:24:09,281&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;RemoveMessageHandler::hand
    le&gt; Processing remove message for ticket aacf889e30f5e83a:125e791:101ddf7208b:-7ffa
    &lt;2005-02-04 10:24:09,281&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::acknowled
    ge&gt; Acknowledged message remove dispatcher bean message aacf889e30f5e83a:125e791:101ddf7208b:-7ffa
    &lt;2005-02-04 10:24:09,296&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;BaseInvokeHandler::load&gt; Loade
    d message bytes, compressed 381 , uncompressed 850
    &lt;2005-02-04 10:24:09,312&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.delivery&gt; &lt;InvokeCache::remove&gt; Remov
    ing cache entry for message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb
    &lt;2005-02-04 10:24:09,375&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__create&gt; Creating n
    ormal element EHT1Request, state=0
    &lt;2005-02-04 10:24:09,375&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DomSerializerUtil::loadElement&gt; Loaded
    element EHT1Request size=238
    &lt;2005-02-04 10:24:09,390&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT TX CONNECTION 2
    &lt;2005-02-04 10:24:09,390&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE TX CONNECTION 1
    &lt;2005-02-04 10:24:09,421&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::createInstance&gt; Created
    cube instance '2701' from process 'EHT1' (revision '1.0')
    &lt;2005-02-04 10:24:09,500&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;MethodCubeBlock::activate&gt; Create m
    ethod scope 'BpPrc0.1' in block 'BpPrc0'
    &lt;2005-02-04 10:24:09,500&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;MethodCubeBlock::activate&gt; Method n
    ame:processTransaction type: not-supported
    &lt;2005-02-04 10:24:09,515&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::invokeMethod&gt; Invoking
    method 'initiate' on cube instance '2701'
    &lt;2005-02-04 10:24:09,515&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpTry0' with scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpTry0.2' in block 'BpTry0'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpSeq0' with scope 'BpTry0.2'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 35
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 35
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key main
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpSeq0.3' in block 'BpSeq0'
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpRcv0' with scope 'BpSeq0.3'
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpRcv0-BpSeq0.3-1 to be performed
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatchHelper::sendMemory
    &gt; Dispatching in-memory request, [workitem perform message 2701-BpRcv0-BpSeq0.3-1]
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;PerformMessageHandler::han
    dleLocal&gt; Processing workitem perform message 2701-BpRcv0-BpSeq0.3-1 for domain default
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Attempt
    ing to handle workitem 2701-BpRcv0-BpSeq0.3-1 with transition 0
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Perfor
    ming workitem '2701-BpRcv0-BpSeq0.3-1'
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key receiveInput
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELEntryReceiveWMP::EHT1&gt; exe
    cuting &lt;receive&gt; at line 39
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELEntryReceiveWMP::EHT1&gt; set
    variable 'input' to be readOnly.
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key input
    &lt;2005-02-04 10:24:09,578&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement::toXML&gt; Converting to XML E
    HT1Request, state= 3
    &lt;2005-02-04 10:24:09,578&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__toXML&gt; Converting
    element input to xml, state=0
    &lt;2005-02-04 10:24:09,578&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__toXML&gt; Converting
    element input uri http://acm.org/samples to xml
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key receiveInput
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Is per
    former 2701-BpRcv0-BpSeq0.3-1 idempotent? true
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkBlockConditions&gt; W
    orkitem '2701-BpRcv0-BpSeq0.3-1' has been marked as complete
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Attem
    pting to finalize workitem '2701-BpRcv0-BpSeq0.3-1'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkManageScope&gt; Found
    highest dirty scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpScp0' with scope 'BpSeq0.3'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line 44
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key scope-1
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpScp0.4' in block 'BpScp0'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpTry1' with scope 'BpScp0.4'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpTry1.5' in block 'BpTry1'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpSeq1' with scope 'BpTry1.5'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 52
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 52
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpSeq1.6' in block 'BpSeq1'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpAss0' with scope 'BpSeq1.6'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpAss0-BpSeq1.6-1 to be performed
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Done p
    erforming workitem '2701-BpRcv0-BpSeq0.3-1'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Done ha
    ndling workitem 2701-BpRcv0-BpSeq0.3-1
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;PerformMessageHandler::han
    dleLocal&gt; Processing workitem perform message 2701-BpAss0-BpSeq1.6-1 for domain default
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Attempt
    ing to handle workitem 2701-BpAss0-BpSeq1.6-1 with transition 0
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Perfor
    ming workitem '2701-BpAss0-BpSeq1.6-1'
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key initIS
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELAssignWMP::EHT1&gt; executing
    &lt;copy&gt; at line 52
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::initXPath&gt; namespaceMapping
    is: {bpws=http://schemas.xmlsoap.org/ws/2003/03/business-process/, tns=http://acm.org/samples, xsd=
    http://www.w3.org/2001/XMLSchema, bpelx=http://schemas.oracle.com/bpel/extension, ora=http://schemas
    .oracle.com/xpath/extension, nsxml0=http://www.emergingaspects.com/service/EXHT}
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::evaluate&gt; XPathQuery[string
    ("NOT OK")], XPath Result: class=java.lang.String value=NOT OK
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;PersistenceManager::copy( Obje
    ct )&gt; copying %jS
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key invokeStatus
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key initIS
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Is per
    former 2701-BpAss0-BpSeq1.6-1 idempotent? true
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkBlockConditions&gt; W
    orkitem '2701-BpAss0-BpSeq1.6-1' has been marked as complete
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Attem
    pting to finalize workitem '2701-BpAss0-BpSeq1.6-1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkManageScope&gt; Found
    highest dirty scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpInv0' with scope 'BpSeq1.6'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpInv0-BpSeq1.6-2 to be performed
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Done p
    erforming workitem '2701-BpAss0-BpSeq1.6-1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Done ha
    ndling workitem 2701-BpAss0-BpSeq1.6-1
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;PerformMessageHandler::han
    dleLocal&gt; Processing workitem perform message 2701-BpInv0-BpSeq1.6-2 for domain default
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Attempt
    ing to handle workitem 2701-BpInv0-BpSeq1.6-2 with transition 0
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Perfor
    ming workitem '2701-BpInv0-BpSeq1.6-2'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key invokeEHTS
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELInvokeWMP::EHT1&gt; executing
    &lt;invoke&gt; at line 57
    &lt;2005-02-04 10:24:09,703&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; operation:
    doExceptionHandlingTest
    &lt;2005-02-04 10:24:09,703&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; inputConta
    iner: {payload=&lt;payload xmlns="http://www.emergingaspects.com/service/EXHT"/&gt;}
    &lt;2005-02-04 10:24:09,703&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; callProps:
    {is-initial-call=true, parentId=2701, syncPersistMode=null, process-id=EHT1, rootId=2701, conversat
    ionId=bpel://localhost/default/EHT1~1.0/2701-BpInv0-BpSeq1.6-2, location=null, priority=3, work-item
    -key=2701-BpInv0-BpSeq1.6-2, domain-id=default, revision-tag=1.0}
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSDLManager::getWSDL&gt; registered wsdl a
    t http://sampc:9700/orabpel/default/EHT1/ExceptionHandlingTestService.wsdl
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSDLManager::getWSDL&gt; got wsdl at: http
    ://sampc:9700/orabpel/default/EHT1/ExceptionHandlingTestService.wsdl
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; def is htt
    p://sampc:9700/orabpel/default/EHT1/ExceptionHandlingTestService.wsdl
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSIFInvocationHandler::invoke&gt; opName=d
    oExceptionHandlingTestportTypeQn={http://www.emergingaspects.com/service/EXHT}EXHTServiceserviceQn={
    http://www.emergingaspects.com/service/EXHT}EXHTService
    &lt;2005-02-04 10:24:09,859&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMSerializerUtil::binaryDeepCopy&gt; Beg
    in binary deep copy for payload
    &lt;2005-02-04 10:24:09,859&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__deepCopy&gt; Deep cop
    ying payload, uri=http://www.emergingaspects.com/service/EXHT, state=0
    &lt;2005-02-04 10:24:09,890&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__create&gt; Creating n
    ormal element payload, state=0
    &lt;2005-02-04 10:24:09,890&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMSerializerUtil::binaryDeepCopy&gt; Don
    e binary deep copy for payload
    WSIF0005E: An error occurred when invoking the method 'doExceptionHandlingTest'. ('EJB')
    &lt;2005-02-04 10:24:09,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSIFInvocationHandler::invoke&gt; Fault ha
    ppenned
    javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerException
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
    java.lang.NullPointerException
    at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_812_WLStub.doExce
    ptionHandlingTest(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.collaxa.cube.ws.wsif.providers.ejb.WSIFOperation_EJB.executeRequestResponseOperation(
    WSIFOperation_EJB.java:1071)
    at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:392)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:321)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:143)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:569)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:299)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:182)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3447)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1824)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(Perfo
    rmMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:87
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:144)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5531)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Caused by: java.lang.NullPointerException
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    ... 2 more
    &lt;2005-02-04 10:24:09,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;BPELInvokeWMP::__invoke&gt; Caught RemoteE
    xception
    orabpel.apache.wsif.WSIFException: Operation failed!; nested exception is:
    javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerExce
    ption
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
    java.lang.NullPointerException
    at com.collaxa.cube.ws.wsif.providers.ejb.WSIFOperation_EJB.executeRequestResponseOperation(
    WSIFOperation_EJB.java:1207)
    at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:392)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:321)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:143)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:569)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:299)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:182)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3447)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1824)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(Perfo
    rmMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:87
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:144)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5531)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Caused by: javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerE
    xception
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
    java.lang.NullPointerException
    at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_812_WLStub.doExce
    ptionHandlingTest(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.collaxa.cube.ws.wsif.providers.ejb.WSIFOperation_EJB.executeRequestResponseOperation(
    WSIFOperation_EJB.java:1071)
    ... 27 more
    Caused by: java.lang.NullPointerException
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    ... 2 more
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;bpel.p0.BPEL_BIN$$BPELC_BpInv0::per
    form&gt; error thrown
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{summary=Operation failed!; nested exception is:
            javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerExce
    ption
            at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
            at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
            at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
            at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
            at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
            at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
            at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
            at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
            at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
            at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
            java.lang.NullPointerException}}
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:604)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:299)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:182)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3447)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1824)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(Perfo
    rmMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:87
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:144)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5531)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key invokeEHTS
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key {http://schemas.oracle.com/bpel/extension}bindingFault
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Is per
    former 2701-BpInv0-BpSeq1.6-2 idempotent? false
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkBlockConditions&gt; W
    orkitem '2701-BpInv0-BpSeq1.6-2' has been marked as complete
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Attem
    pting to finalize workitem '2701-BpInv0-BpSeq1.6-2'
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Caugh
    t business exception at block 'BpTry1', rolling back
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::forceCompleteScope&gt; Is
    instance faulted? true
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::forceCompleteScopeTree&gt;
    Forcing to complete scope rooted at 'BpTry1.5'
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;BaseWorkItemPersistenceAdaptor
    ::load&gt; Skipping database load ... found workitems
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::closeActivity&gt; Workitem
    2701-BpInv0-BpSeq1.6-2 is faulted ... skipping cancel
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.agents&gt; &lt;ExpirationAgent::unscheduleW
    orkItem&gt; Removing work item 2701-BpInv0-BpSeq1.6-2 from expiration scheduler
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkExpirable&gt; Removin
    g work item 2701-BpInv0-BpSeq1.6-2 from expiration agent
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;ForceCompleteTreeIterator::apply&gt; C
    ompleting scope 'BpTry1.5'
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;ForceCompleteTreeIterator::apply&gt; C
    ompleting scope 'BpSeq1.6'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::forceCompleteScopeTree&gt;
    Done forced complete scope rooted at 'BpTry1.5'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkManageScope&gt; Found
    highest dirty scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpCAl0' with scope 'BpScp0.4'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;catchAll&gt; at line 48
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;catchAll&gt; at line 48
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpCAl0.7' in block 'BpCAl0'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpWai0' with scope 'BpCAl0.7'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::initXPath&gt; namespaceMapping
    is: {bpws=http://schemas.xmlsoap.org/ws/2003/03/business-process/, tns=http://acm.org/samples, xsd=
    http://www.w3.org/2001/XMLSchema, bpelx=http://schemas.oracle.com/bpel/extension, ora=http://schemas
    .oracle.com/xpath/extension, nsxml0=http://www.emergingaspects.com/service/EXHT}
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::evaluate&gt; XPathQuery['PT30S
    '], XPath Result is: class java.lang.String
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.agents&gt; &lt;ExpirationAgent::unscheduleW
    orkItem&gt; Removing work item 2701-BpWai0-BpCAl0.7-1 from expiration scheduler
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.agents&gt; &lt;ExpirationScheduler::schedul
    e&gt; Work item 2701-BpWai0-BpCAl0.7-1 scheduled for Fri Feb 04 10:24:40 EST 2005
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpWai0-BpCAl0.7-1 to be performed
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Done p
    erforming workitem '2701-BpInv0-BpSeq1.6-2'
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Done ha
    ndling workitem 2701-BpInv0-BpSeq1.6-2
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatchHelper::sendMemory
    &gt; In-memory false ... stop processing in-memory
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::store&gt; Initial request
    ... storing instance 2701 to datastore
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;CubeInstancePersistenceMgr::st
    ore&gt; Storing instance 2701 to datastore
    &lt;BaseCubeSessionBean::logError&gt; Error while invoking bean "delivery": Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    &lt;2005-02-04 10:24:10,187&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE TX CONNECTION 0
    &lt;2005-02-04 10:24:10,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatchHelper::handleMess
    age&gt; failed to handlerMessage
    ORABPEL-04004
    Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    at com.collaxa.cube.engine.adaptors.oracle.AuditTrailPersistenceAdaptor$TrailHandler.store(A
    uditTrailPersistenceAdaptor.java:283)
    at com.collaxa.cube.engine.adaptors.common.BaseAuditTrailPersistenceAdaptor.store(BaseAuditT
    railPersistenceAdaptor.java:134)
    at com.collaxa.cube.engine.adaptors.oracle.AuditTrailPersistenceAdaptor.store(AuditTrailPers
    istenceAdaptor.java:62)
    at com.collaxa.cube.engine.data.AuditTrailPersistenceMgr.store(AuditTrailPersistenceMgr.java
    :239)
    at com.collaxa.cube.engine.adaptors.common.BaseCubeInstancePersistenceAdaptor.store(BaseCube
    InstancePersistenceAdaptor.java:466)
    at com.collaxa.cube.engine.adaptors.oracle.CubeInstancePersistenceAdaptor.store(CubeInstance
    PersistenceAdaptor.java:74)
    at com.collaxa.cube.engine.data.CubeInstancePersistenceMgr.store(CubeInstancePersistenceMgr.
    java:307)
    at com.collaxa.cube.engine.CubeEngine.store(CubeEngine.java:5295)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5540)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    &lt;2005-02-04 10:24:10,265&gt; &lt;ERROR&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseScheduledWorker::proce
    ss&gt; Failed to handle dispatch message invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-
    7ffb ... exception Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.mess
    age.invoke.InvokeInstanceMessage"; the exception is: Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.mess
    age.invoke.InvokeInstanceMessage"; the exception is: Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:73)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    &lt;2005-02-04 10:24:10,265&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::acknowled
    ge&gt; Acknowledged message invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb
    &lt;2005-02-04 10:24:24,750&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT CONNECTION 1
    &lt;BaseCubeSessionBean::logError&gt; Error while invoking bean "finder": Instance not found in datasource
    The process domain was unable to fetch the instance with key "aacf889e30f5e83a:125e791:101ddf7208b:-
    7ffc" from the datasource.
    Please check that the instance key "aacf889e30f5e83a:125e791:101ddf7208b:-7ffc" refers to a valid in
    stance that has been started and not removed from the process domain.
    &lt;2005-02-04 10:24:24,765&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE CONNECTION 0
    &lt;&lt;&lt;&lt; Log End &lt;&lt;&lt;&lt;

    hmmm for some reason when you call your EJB and it throws an exception, the JTA transaction is marked as rollbakc so the BPEL EM engine fails to save the instance.
    Could you please provide us some additional pieces of information:
    obversion.bat.
    The exact exception that your EJB throws.
    JTA configuration of your bean
    Have you looked at the BankTransfer demo?
    Edwin

  • Hello, i just did a software update now everything i downloaded will not open. it quits unexpectedly and need help. trying to Skype my loved ones. i'm in the military and haven't had a chance for a month.

    Process:         Skype [418]
    Path:            /Applications/Skype.app/Contents/MacOS/Skype
    Identifier:      com.skype.skype
    Version:         6.15 (6.15.60.330)
    Code Type:       X86 (Native)
    Parent Process:  launchd [163]
    Responsible:     Skype [418]
    User ID:         501
    Date/Time:       2014-05-10 12:42:35.314 -0400
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  1264965B-B33B-77BB-8607-DE1E1B33C739
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7ffffc
    VM Regions Near 0xbf7ffffc:
        __LINKEDIT             00000000a8506000-00000000a864d000 [ 1308K] r--/r-- SM=COW  /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    --> Stack                  00000000bc000000-00000000bf800000 [ 56.0M] ---/rwx SM=NUL 
        Stack                  00000000bf800000-00000000c0000000 [ 8192K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_pthread.dylib                 0x9a3dd631 __mtx_droplock + 470
    1   libsystem_pthread.dylib                 0x9a3ddaf9 pthread_mutex_unlock + 83
    2   libobjc.A.dylib                         0x93f62251 look_up_class + 88
    3   libobjc.A.dylib                         0x93f6f15c connect_class(objc_class*) + 68
    4   libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    5   libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    6   libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    7   libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    8   libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    9   libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    10  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    11  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    12  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    13  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    14  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    15  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    16  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    17  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    18  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    19  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    20  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    21  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    22  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    23  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    24  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    25  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    26  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    27  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    28  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    29  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    30  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    31  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    32  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    33  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    34  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    35  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    36  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    37  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    38  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    39  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    40  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    41  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    42  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    43  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    44  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    45  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    46  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    47  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    48  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    49  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    50  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    51  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    52  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    53  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    54  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    55  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    56  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    57  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    58  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    59  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    60  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    61  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    62  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    63  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    64  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    65  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    66  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    67  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    68  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    69  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    70  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    71  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    72  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    73  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    74  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    75  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    76  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    77  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    78  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    79  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    80  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    81  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    82  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    83  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    84  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    85  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    86  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    87  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    88  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    89  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    90  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    91  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    92  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    93  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    94  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    95  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    96  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    97  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    98  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    99  libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    100 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    101 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    102 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    103 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    104 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    105 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    106 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    107 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    108 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    109 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    110 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    111 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    112 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    113 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    114 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    115 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    116 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    117 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    118 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    119 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    120 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    121 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    122 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    123 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    124 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    125 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    126 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    127 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    128 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    129 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    130 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    131 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    132 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    133 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    134 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    135 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    136 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    137 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    138 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    139 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    140 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    141 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    142 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    143 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    144 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    145 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    146 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    147 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    148 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    149 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    150 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    151 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    152 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    153 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    154 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    155 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    156 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    157 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    158 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    159 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    160 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    161 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    162 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    163 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    164 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    165 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    166 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    167 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    168 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    169 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    170 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    171 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    172 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    173 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    174 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    175 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    176 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    177 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    178 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    179 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    180 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    181 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    182 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    183 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    184 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    185 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    186 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    187 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    188 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    189 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    190 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    191 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    192 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    193 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    194 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    195 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    196 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    197 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    198 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    199 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    200 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    201 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    202 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    203 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    204 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    205 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    206 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    207 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    208 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    209 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    210 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    211 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    212 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    213 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    214 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    215 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    216 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    217 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    218 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    219 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    220 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    221 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    222 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    223 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    224 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    225 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    226 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    227 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    228 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    229 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    230 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    231 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    232 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    233 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    234 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    235 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    236 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    237 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    238 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    239 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    240 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    241 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    242 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    243 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    244 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    245 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    246 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    247 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    248 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    249 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    250 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    251 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    252 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    253 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    254 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    255 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    256 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    257 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    258 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    259 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    260 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    261 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    262 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    263 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    264 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    265 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    266 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    267 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    268 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    269 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    270 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    271 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    272 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    273 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    274 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    275 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    276 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    277 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    278 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    279 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    280 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    281 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    282 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    283 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    284 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    285 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    286 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    287 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    288 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    289 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    290 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    291 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    292 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    293 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    294 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    295 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    296 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    297 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    298 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    299 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    300 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    301 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    302 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    303 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    304 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    305 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    306 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    307 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    308 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    309 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    310 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    311 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    312 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    313 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    314 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    315 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    316 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    317 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    318 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    319 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    320 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    321 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    322 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    323 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    324 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    325 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    326 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    327 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    328 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    329 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    330 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    331 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    332 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    333 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    334 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    335 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    336 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    337 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    338 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    339 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    340 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    341 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    342 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    343 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    344 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    345 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    346 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    347 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    348 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    349 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    350 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    351 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    352 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    353 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    354 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    355 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    356 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    357 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    358 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    359 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    360 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    361 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    362 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    363 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    364 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    365 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    366 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    367 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    368 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    369 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    370 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    371 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    372 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    373 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    374 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    375 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    376 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    377 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    378 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    379 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    380 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    381 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    382 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    383 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    384 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    385 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    386 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    387 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    388 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    389 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    390 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    391 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    392 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    393 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    394 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    395 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    396 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    397 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    398 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    399 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    400 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    401 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    402 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    403 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    404 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    405 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    406 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    407 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    408 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    409 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    410 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    411 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    412 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    413 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    414 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    415 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    416 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    417 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    418 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    419 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    420 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    421 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    422 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    423 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    424 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    425 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    426 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    427 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    428 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    429 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    430 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    431 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    432 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    433 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    434 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    435 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    436 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    437 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    438 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    439 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    440 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    441 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    442 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    443 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    444 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    445 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    446 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    447 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    448 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    449 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    450 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    451 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    452 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    453 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    454 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    455 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    456 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    457 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    458 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    459 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    460 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    461 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    462 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    463 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    464 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    465 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    466 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    467 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    468 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    469 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    470 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    471 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    472 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    473 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    474 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    475 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    476 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    477 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    478 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    479 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    480 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    481 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    482 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    483 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    484 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    485 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    486 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    487 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    488 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    489 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    490 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    491 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    492 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    493 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    494 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    495 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    496 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    497 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    498 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    499 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    500 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    501 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    502 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    503 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    504 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    505 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    506 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    507 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    508 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    509 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    510 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    511 libobjc.A.dylib                         0x93f6f16a connect_class(objc_class*) + 82
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x082f9703  ebx: 0x00002800  ecx: 0xa106f9e8  edx: 0x00000003
      edi: 0x082f9700  esi: 0x082f9700  ebp: 0xbf800058  esp: 0xbf7ffff0
       ss: 0x00000023  efl: 0x00010287  eip: 0x9a3dd631   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xbf7ffffc
    Logical CPU:     0
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
        0x1000 -   0xa07fff +com.skype.skype (6.15 - 6.15.60.330) <D1FFDA7C-6115-30E4-9FC1-63956F7B4B1E> /Applications/Skype.app/Contents/MacOS/Skype
    0x8fe14000 - 0x8fe46417  dyld (239.4) <2E655535-479B-3E48-ADD3-6278819CA38A> /usr/lib/dyld
    0x900f4000 - 0x90206ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x90231000 - 0x902cdfff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90354000 - 0x90358ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90412000 - 0x905befff  com.apple.QuartzCore (1.8 - 332.3) <00167BF7-E3C4-3AA7-8DA0-466BD4175350> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x905bf000 - 0x905c3ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x905c4000 - 0x905c4fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9060c000 - 0x9061aff3  com.apple.opengl (9.6.0 - 9.6.0) <63941A8D-AACC-3C71-BE8C-4DAA913A1439> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9061b000 - 0x90670ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x906a2000 - 0x906d0ff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9089c000 - 0x90911ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <FD423680-01A1-357A-89A7-33910A87DE65> /System/Library/Frameworks/ApplicationServices.framework/Versions/

    Any updates? I have the same issue!

  • Weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception

    Hi,
    I am using a remote client program to look up data source via JNDI and access a database connection. Here's part of the code:
    Hashtable h = new Hashtable();
    h.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    h.put(Context.PROVIDER_URL, "t3://hostname:12345");
    Context ctx = new InitialContext(h);
    DataSource ds = (DataSource)ctx.lookup("myDS");
    Connection conn = ds.getConnection(); //thrwing exception at this line
    weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception
    Pl help ASAP

    Hi,
    Can u please post the complete stackTrace...because there may be many reasons behind "*weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception*"..That will really help to understand the root cause.
    If you dont find much StackTrace at Client end then at the sametimestamp ..may be on the Server Log you will find more details.
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)
    Edited by: Jay SenSharma on Feb 25, 2010 8:55 PM

Maybe you are looking for

  • HRA amount doubling in middle of month leaving action

    HRA for an individual is 100 Rs per month.  It is working fine for all the months during the employee's tenure in organization. In case of leaving action/retirement action when an employee retires on 13th of April, AND then when i run payroll at end

  • How to set Blocking Indicator for product specific TransportationLanes?

    Hi All, I'm facing a problem while trying to set the blocking indicator for product specific Transportation Lanes-external procurement. How can i proceed on the same? I've figured out 2 methods for blocking the product specific TLanes. 1. using /SAPA

  • BURN DISK ERROR 4280

    Burning disc in iTunes for Windows using TSST corp CDW/DVD TS-H492C drive fails with 4280 error my ipod is busted and i need to make discs from my itunes or i am screwed for the big bbq sunday (HELP HELP) anyone else having similar? eb

  • Need distinct rows with using distinct clause

    I have following requirement Empid startdate end organisation 1 1-jan-2008 O1 2 2-jan-2008 31-jul-08 O1 3 2-jan-2008 31-jul-08 O1 4 2-jan-2008 31-jul-08 O2 5 2-jan-2008 31-jul-08 O2 6 2-jan-2008 31-jul-08 O2 7 2-jan-2008 31-jul-08 O3 8 2-jan-2008 31-

  • Authorization control in Web Dynpro

    Dear experts, I have a question about setting authorization in Web Dynpro.  For example, how can I control if a button can be pressed or what kinds of data should be displayed based on user role in UME.  Moreover, if I have security settings declared