Inserting new Account Contacts  puzzling error

For some reason, inserting a contact with a random ContactLastName returns an error. See example below:
SOAP Request:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn:crmondemand/ws/ecbs/account/10/2004" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
   <SOAP-ENV:Header>
      <wsse:Security>
         <wsse:UsernameToken>
            <wsse:Username>###</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">###</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </SOAP-ENV:Header>
   <SOAP-ENV:Body>
      <ns:AccountExecute_Input>
         <ListOfAccount>
            <Account operation="insert">
               <AnnualRevenues>1000</AnnualRevenues>
               <AccountName>John Insert5</AccountName>
               <MarketPotential>High</MarketPotential>
               <ListOfContact>
                  <Contact operation="insert">
                     <ContactFirstName>first1</ContactFirstName>
                     <ContactLastName>last1</ContactLastName>
                     <Description>contact1</Description>
                  </Contact>
                  <Contact operation="insert">
                     <ContactFirstName>First2</ContactFirstName>
                     <ContactLastName>Last2</ContactLastName>
                     <Description>contact2</Description>
                  </Contact>
               </ListOfContact>
            </Account>
         </ListOfAccount>
      </ns:AccountExecute_Input>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
{code}
_ERROR returned by CRMOD:_
{quote}
Cannot find entry 'last1' in the bounded picklist for the field 'Last Name' in integration component 'Account_Account Contact'(SBL-EAI-04401)
{quote}
When I tried to use an existing *Last Name* from another Account Contact, the insert succeeds. See example below:
_SOAP Request:_
{code:xml}
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn:crmondemand/ws/ecbs/account/10/2004" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
   <SOAP-ENV:Header>
      <wsse:Security>
         <wsse:UsernameToken>
            <wsse:Username>2011HRZPM6-17/JBALANDR</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">Passw0rd</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </SOAP-ENV:Header>
   <SOAP-ENV:Body>
      <ns:AccountExecute_Input>
         <ListOfAccount>
            <Account operation="insert">
               <AnnualRevenues>1000</AnnualRevenues>
               <AccountName>John Insert5</AccountName>
               <MarketPotential>High</MarketPotential>
               <ListOfContact>
                  <Contact operation="insert">
                     <ContactFirstName>first1</ContactFirstName>
                     <ContactLastName>test</ContactLastName>
                     <Description>howard</Description>
                  </Contact>
                  <Contact operation="insert">
                     <ContactFirstName>First2</ContactFirstName>
                     <ContactLastName>Howard</ContactLastName>
                     <Description>contact2</Description>
                  </Contact>
               </ListOfContact>
            </Account>
         </ListOfAccount>
      </ns:AccountExecute_Input>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
{code}
When I verified the records inserted, I noticed that the Contact details on the Insert SOAP request were not persisted. Instead, the existing contact records  (eg. tim howard and Bob Howard) referenced by the *Last Name* I used were attached to the new +John Insert5+ Account record.
Is this behavior expected and specific to inserting new Account Contact records? If it is, how then can I insert a new contact in this scenario?i                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Original SOAP Request that returns an error:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn:crmondemand/ws/ecbs/account/10/2004" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
   <SOAP-ENV:Header>
      <wsse:Security>
         <wsse:UsernameToken>
            <wsse:Username>###</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">###</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </SOAP-ENV:Header>
   <SOAP-ENV:Body>
      <ns:AccountExecute_Input>
         <ListOfAccount>
            <Account operation="insert">
               <AnnualRevenues>1000</AnnualRevenues>
               <AccountName>John Insert8</AccountName>
               <MarketPotential>High</MarketPotential>
               <ListOfContact>
                  <Contact operation="insert">
                     <ContactFirstName>first7</ContactFirstName>
                     <ContactLastName>last7</ContactLastName>
                     <Description>contact7</Description>
                  </Contact>
                  <Contact operation="insert">
                     <ContactFirstName>First8</ContactFirstName>
                     <ContactLastName>Last8</ContactLastName>
                     <Description>contact8</Description>
                  </Contact>
               </ListOfContact>
            </Account>
         </ListOfAccount>
      </ns:AccountExecute_Input>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
{code}
Modified SOAP Request with *ExternalSystemId* (Contact User Key) information:
{code:xml}
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="urn:crmondemand/ws/ecbs/account/10/2004" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
   <SOAP-ENV:Header>
      <wsse:Security>
         <wsse:UsernameToken>
            <wsse:Username>###</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">###</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </SOAP-ENV:Header>
   <SOAP-ENV:Body>
      <ns:AccountExecute_Input>
         <ListOfAccount>
            <Account operation="insert">
               <AnnualRevenues>1000</AnnualRevenues>
               <AccountName>John Insert8</AccountName>
               <MarketPotential>High</MarketPotential>
               <ListOfContact>
                  <Contact operation="insert">
               <ContactExternalSystemId>dummy7</ContactExternalSystemId>
                     <ContactFirstName>first7</ContactFirstName>
                     <ContactLastName>last7</ContactLastName>
                     <Description>contact7</Description>
                  </Contact>
                  <Contact operation="insert">
               <ContactExternalSystemId>dummy8</ContactExternalSystemId>
                     <ContactFirstName>First8</ContactFirstName>
                     <ContactLastName>Last8</ContactLastName>
                     <Description>contact8</Description>
                  </Contact>
               </ListOfContact>
            </Account>
         </ListOfAccount>
      </ns:AccountExecute_Input>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
{code}
The second SOAP request enabled me to successfully insert new Contact records and associate them to the new Account record.
At least for Web Services 1.0, I already know what the root cause is  and how to get around it though I am uncertain why it was designed to behave that way. Why is it when a Child record is inserted separately from the Parent record that CRMOD no longer validates if the Child record already exists - isn't that behavior inconsistent to the behavior of CRMOD when a Parent and Child records are Inserted using a single request?
Furthermore, I am still puzzled with the errors being returned when I use Webservices 2.0:
When no Contact user key is provided:
{quote}
Cannot find entry 'last7' in the bounded picklist for the field 'Last Name' in integration component 'Account_Account Contact'(SBL-EAI-04401)
{quote}
When a Contact user key is provided:
{quote}
Picklist validation of field 'Contact External Id' in integration component 'Account_Account Contact' didn't find any matches satisfying the query '[External System Id] = "dummy7"', and an attempt to create a new record through the picklist failed.(SBL-EAI-04186)
{quote}
Both errors seems like picklist error to me - what does this mean? Both *Last Name* and *External System Id* are not picklists.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Question about the order to creating Account, Contact, Contact Role

    Hi, my friends,
    I have some questions about the order of creating Account, Contact, Contact Role, etc in Web Service 1.0. I could create them in the following case:
    1. Insert Contact object and get contactId (now new contact exists in CRMOD)
    2. Insert Account object with Contact Role child associated with contactId
    My questions are:
    1. Do we have the following order? Insert new Account with new Contact child and Contact Role child (Contact is new and does not exist in CRMOD).
    2. Looks like system need accountId, contactId, etc to make the objects relationship. Is there other field having the same function?
    Thanks
    Ray

    Hi Ray,
    In response to your questions:
    1. Do we have the following order? Insert new Account with new Contact child and Contact Role child (Contact is new and does not exist in CRMOD).No. Both the Account and Contact must already exist. The Role value is an attribute on the Account Contact relationship, this relationship must exist in order to assign a role value to it. This is consistent with the behaviour of the UI, when you press the New button on the Contact child applet, you are taken to the Contact New page where you can create a Contact record. Once you save, the relationship is created but you cannot assign a role value unless you click the Edit Roles link next to the new Contact.
    2. Looks like system need accountId, contactId, etc to make the objects relationship. Is there other field having the same function?Correct, the system needs to know which Account/Contact pair is being assigned a role value. To do this the Account and Contact values must be uniquely identified using the Id values for each.
    I hope this helps.
    Thanks,
    Sean
    Edited by: Sean Duffy on Jan 25, 2010 10:11 AM

  • HT204034 I want to make a new account without payment method but there is an error ate the end says "for assistance contact iTunes support " why?

    I want to make a new account without payment method but there is an error ate the end says "for assistance contact iTunes support " why?

    These are user-to-user forums, to contact iTunes Support and ask them why you are getting the message to contact them :
    - go to http://www.apple.com/support/itunes/ww
    - click on your country's flag
    - click on the Contact Support at the bottom of the left-hand column
    - click on Contact iTunes Store Support on the right-hand side of the page

  • Error while creating a new account in Publication Registry in OSR

    Hi
    I faced the following error during the registration of an new account in Publication registry throws the Fatal Error and generates the following log details.
    Please help me out of the problem.
    Error Code: 13001
    Fatal Errrors in account management.Please contact Adminsitartor
    Caused by: javax.xml.messaging.JAXMException: org.systinet.wasp.client.XMLInvoca
    tionException: Exception while processing incoming message message. Unable to re
    ad server response. Server returned status code: 404 (Not found) (Content-type:t
    ext/html; charset=UTF-8):
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 404--Not Found</TITLE>
    <META NAME="GENERATOR" CONTENT="WebLogic Server">
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 404--Not Found</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=
    white><FONT FACE="Courier New"><FONT FACE="Helvetica" SIZE="3"><H3>From RFC 2068
    <i>Hypertext Transfer Protocol -- HTTP/1.1</i>:</H3>
    </FONT><FONT FACE="Helvetica" SIZE="3"><H4>10.4.5 404 Not Found</H4>
    </FONT><P><FONT FACE="Courier New">The server has not found anything matching th
    e Request-URI. No indication is given of whether the condition is temporary or p
    ermanent.</p><p>If the server does not wish to make this information available t
    o the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone
    ) status code SHOULD be used if the server knows, through some internally config
    urable mechanism, that an old resource is permanently unavailable and has no for
    warding address.</FONT></P>
    </FONT></TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    at com.systinet.jaxm.messaging.ProviderConnectionImpl.call(ProviderConne
    ctionImpl.java:145)
    at org.systinet.uddi.client.UDDIClientProxy.invoke(UDDIClientProxy.java:
    217)
    ... 38 more
    Caused by: org.systinet.wasp.client.XMLInvocationException: Exception while proc
    essing incoming message message. Unable to read server response. Server returned
    status code: 404 (Not found) (Content-type:text/html; charset=UTF-8):
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 404--Not Found</TITLE>
    <META NAME="GENERATOR" CONTENT="WebLogic Server">
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 404--Not Found</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=
    white><FONT FACE="Courier New"><FONT FACE="Helvetica" SIZE="3"><H3>From RFC 2068
    <i>Hypertext Transfer Protocol -- HTTP/1.1</i>:</H3>
    </FONT><FONT FACE="Helvetica" SIZE="3"><H4>10.4.5 404 Not Found</H4>
    </FONT><P><FONT FACE="Courier New">The server has not found anything matching th
    e Request-URI. No indication is given of whether the condition is temporary or p
    ermanent.</p><p>If the server does not wish to make this information available t
    o the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone
    ) status code SHOULD be used if the server knows, through some internally config
    urable mechanism, that an old resource is permanently unavailable and has no for
    warding address.</FONT></P>
    </FONT></TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    at com.systinet.wasp.client.XMLInvocationHelperImpl._receive(XMLInvocati
    onHelperImpl.java:699)
    at com.systinet.wasp.client.XMLInvocationHelperImpl._receive(XMLInvocati
    onHelperImpl.java:617)
    at com.systinet.wasp.client.XMLInvocationHelperImpl._call(XMLInvocationH
    elperImpl.java:145)
    at com.systinet.wasp.client.XMLInvocationHelperImpl.call(XMLInvocationHe
    lperImpl.java:77)
    at org.systinet.wasp.client.XMLInvocationHelper.call(XMLInvocationHelper
    .java:18)
    at com.systinet.jaxm.messaging.ProviderConnectionImpl.call(ProviderConne
    ctionImpl.java:141)
    ... 39 more
    Caused by: java.io.IOException: Unable to read server response. Server returned
    status code: 404 (Not found) (Content-type:text/html; charset=UTF-8):
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 404--Not Found</TITLE>
    <META NAME="GENERATOR" CONTENT="WebLogic Server">
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 404--Not Found</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=
    white><FONT FACE="Courier New"><FONT FACE="Helvetica" SIZE="3"><H3>From RFC 2068
    <i>Hypertext Transfer Protocol -- HTTP/1.1</i>:</H3>
    </FONT><FONT FACE="Helvetica" SIZE="3"><H4>10.4.5 404 Not Found</H4>
    </FONT><P><FONT FACE="Courier New">The server has not found anything matching th
    e Request-URI. No indication is given of whether the condition is temporary or p
    ermanent.</p><p>If the server does not wish to make this information available t
    o the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone
    ) status code SHOULD be used if the server knows, through some internally config
    urable mechanism, that an old resource is permanently unavailable and has no for
    warding address.</FONT></P>
    </FONT></TD></TR>
    </TABLE>
    </BODY>
    </HTML>
    at com.systinet.wasp.soap.MessageSourceImpl.init(MessageSourceImpl.java:
    208)
    at com.systinet.wasp.soap.MessageSourceFactoryImpl.getMessageSource(Mess
    ageSourceFactoryImpl.java:36)
    at com.systinet.wasp.client.XMLInvocationHelperImpl._receive(XMLInvocati
    onHelperImpl.java:664)
    ... 44 more
    ERROR: com.systinet.uddi.webui.WebUIRawService - Web Framework exception
    EXCEPTION: com.systinet.uddi.webui.WebUIException: (18003) UDDI error occurred.
    javax.servlet.ServletException: com.systinet.uddi.webui.WebUIException: (18003)
    UDDI error occurred.
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:42)
    at com.systinet.webfw.security.InternalSecurityFilter.doFilter(InternalS
    ecurityFilter.java:55)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:36)
    at com.systinet.webfw.WebRawService.process(WebRawService.java:329)
    at com.idoox.wasp.server.adaptor.RawAdaptorImpl.dispatch(RawAdaptorImpl.
    java:318)
    at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java
    :356)
    at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:3
    28)
    at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java
    :393)
    at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerIm
    pl.java:638)
    at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java
    :473)
    at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost
    (ServiceManagerImpl.java:2594)
    at com.systinet.transport.servlet.server.Servlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:300)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:183)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.wrapRun(WebAppServletContext.java:3717)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: com.systinet.uddi.webui.WebUIException: (18003) UDDI error occurred.
    at com.systinet.uddi.webui.component.account.CreateAccount.process(Creat
    eAccount.java:163)
    at com.systinet.webfw.TaskDispatcher.processComponent(TaskDispatcher.jav
    a:758)
    at com.systinet.webfw.WebRawService.service(WebRawService.java:494)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:40)
    ... 26 more
    Caused by: org.systinet.uddi.account.AccountException: Fatal error occurs in acc
    ount management. For help please contact the administrator of the registry.
    at com.systinet.uddi.account.InterceptorProxy.invoke(InterceptorProxy.ja
    va:73)
    at $Proxy208.save_userAccount(Unknown Source)
    at com.systinet.uddi.account.AccountApiImpl.save_userAccount(AccountApiI
    mpl.java:93)
    at com.systinet.uddi.webui.component.account.CreateAccount.process(Creat
    eAccount.java:142)
    ... 29 more
    ERROR: com.systinet.uddi.webui.WebUIRawService - ===============================
    ========================================
    ERROR: com.systinet.uddi.webui.WebUIRawService -
    EXCEPTION: Fatal error occurs in account management. For help please contact th
    e administrator of the registry.
    org.systinet.uddi.account.AccountException: Fatal error occurs in account manage
    ment. For help please contact the administrator of the registry.
    at com.systinet.uddi.account.InterceptorProxy.invoke(InterceptorProxy.ja
    va:73)
    at $Proxy208.save_userAccount(Unknown Source)
    at com.systinet.uddi.account.AccountApiImpl.save_userAccount(AccountApiI
    mpl.java:93)
    at com.systinet.uddi.webui.component.account.CreateAccount.process(Creat
    eAccount.java:142)
    at com.systinet.webfw.TaskDispatcher.processComponent(TaskDispatcher.jav
    a:758)
    at com.systinet.webfw.WebRawService.service(WebRawService.java:494)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:40)
    at com.systinet.webfw.security.InternalSecurityFilter.doFilter(InternalS
    ecurityFilter.java:55)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:36)
    at com.systinet.webfw.WebRawService.process(WebRawService.java:329)
    at com.idoox.wasp.server.adaptor.RawAdaptorImpl.dispatch(RawAdaptorImpl.
    java:318)
    at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java
    :356)
    at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:3
    28)
    at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java
    :393)
    at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerIm
    pl.java:638)
    at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java
    :473)
    at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost
    (ServiceManagerImpl.java:2594)
    at com.systinet.transport.servlet.server.Servlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:300)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:183)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.wrapRun(WebAppServletContext.java:3717)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Hi,
    It look two ways either you dont have permission to write any new thing to that domain.properties file or might file is got corrupted.
    Please check for the permission to that file.
    Regards,
    Kal.

  • Contacts app crashes when I add new accounts for sync

    Hello,
    My contacts app crashes when I add new accounts (other than gmail) to sync below you can see the output, what could be the reason and how can I overcome that difficulty thank you in advance
    Process:               Contacts [1044]
    Path:                  /Applications/Contacts.app/Contents/MacOS/Contacts
    Identifier:            com.apple.AddressBook
    Version:               9.0 (1563)
    Build Info:            AddressBook_executables-1563000000000000~3
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Contacts [1044]
    User ID:               501
    Date/Time:             2015-03-13 02:55:10.315 +0200
    OS Version:            Mac OS X 10.10.2 (14C1510)
    Report Version:        11
    Anonymous UUID:        6B11190A-4909-0793-97E2-FF325FB29B9C
    Sleep/Wake UUID:       730D3321-56A7-4FAD-89CA-9ECD127BD5A5
    Time Awake Since Boot: 7500 seconds
    Time Since Wake:       3800 seconds
    Crashed Thread:        4  Dispatch queue: com.apple.root.default-qos.overcommit
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000010
    VM Regions Near 0x10:
    -->
        __TEXT                 000000010af60000-000000010aff6000 [  600K] r-x/rwx SM=COW  /Applications/Contacts.app/Contents/MacOS/Contacts
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff89f5a4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89f5964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8895fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8895effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8895e858 CFRunLoopRunSpecific + 296
    5   com.apple.HIToolbox           0x00007fff8b52faef RunCurrentEventLoopInMode + 235
    6   com.apple.HIToolbox           0x00007fff8b52f86a ReceiveNextEventCommon + 431
    7   com.apple.HIToolbox           0x00007fff8b52f6ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    8   com.apple.AppKit               0x00007fff869a3f81 _DPSNextEvent + 964
    9   com.apple.AppKit               0x00007fff869a3730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    10  com.apple.AppKit               0x00007fff86997593 -[NSApplication run] + 594
    11  com.apple.AppKit               0x00007fff86982a14 NSApplicationMain + 1832
    12  libdyld.dylib                 0x00007fff877a85c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff89f60232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8f6efa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: com.apple.root.default-qos.overcommit
    0   libsystem_info.dylib           0x00007fff8f4c93eb _mdns_query_callback + 565
    1   libsystem_dnssd.dylib         0x00007fff8b198c9b handle_query_response + 243
    2   libsystem_dnssd.dylib         0x00007fff8b1971b8 DNSServiceProcessResult + 680
    3   libsystem_info.dylib           0x00007fff8f4c7c1e _mdns_search + 1592
    4   libsystem_info.dylib           0x00007fff8f4db5ec mdns_item_call + 275
    5   libsystem_info.dylib           0x00007fff8f4de082 __si_async_call_block_invoke + 119
    6   libdispatch.dylib             0x00007fff8f6f1323 _dispatch_call_block_and_release + 12
    7   libdispatch.dylib             0x00007fff8f6ecc13 _dispatch_client_callout + 8
    8   libdispatch.dylib             0x00007fff8f6ef88f _dispatch_root_queue_drain + 935
    9   libdispatch.dylib             0x00007fff8f6fdfe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib       0x00007fff8b880637 _pthread_wqthread + 729
    11  libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 11:: Dispatch queue: NSOperationQueue 0x618000036de0 :: NSOperation 0x61000005ef90 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff89f5a4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89f5964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8895fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8895effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8895e858 CFRunLoopRunSpecific + 296
    5   com.apple.AddressBook.CardDAVPlugin 0x000000010e77d18b -[CDXController _runRunLoopUntilFinished] + 179
    6   com.apple.AddressBook.CardDAVPlugin 0x000000010e77d59c -[CDXController discoverServerWithHttpPorts:withHttpsPorts:withPaths:withTimeout:error:] + 754
    7   com.apple.AddressBook.CardDAVPlugin 0x000000010e76054f -[CDXManager getPrincipalInfo:] + 632
    8   com.apple.AddressBook.CardDAVPlugin 0x000000010e760a5d -[CDXManager getPrincipalInfoPropertyWithNameSpace:andName:error:] + 35
    9   com.apple.AddressBook.CardDAVPlugin 0x000000010e760adc -[CDXManager getPrincipalURLString:] + 48
    10  com.apple.AddressBook.CardDAVPlugin 0x000000010e76f4d9 -[PHXCardDAVSource doSyncWithServer:] + 2480
    11  com.apple.AddressBook.CardDAVPlugin 0x000000010e772db3 -[PHXCardDAVSource startSync] + 654
    12  com.apple.CoreFoundation       0x00007fff889283cc __invoking___ + 140
    13  com.apple.CoreFoundation       0x00007fff88928222 -[NSInvocation invoke] + 290
    14  com.apple.Foundation           0x00007fff8e5922e9 -[NSInvocationOperation main] + 34
    15  com.apple.Foundation           0x00007fff8e4ea32c -[__NSOperationInternal _start:] + 653
    16  com.apple.Foundation           0x00007fff8e4e9f33 __NSOQSchedule_f + 184
    17  libdispatch.dylib             0x00007fff8f6ecc13 _dispatch_client_callout + 8
    18  libdispatch.dylib             0x00007fff8f6f0365 _dispatch_queue_drain + 1100
    19  libdispatch.dylib             0x00007fff8f6f1ecc _dispatch_queue_invoke + 202
    20  libdispatch.dylib             0x00007fff8f6ef6b7 _dispatch_root_queue_drain + 463
    21  libdispatch.dylib             0x00007fff8f6fdfe4 _dispatch_worker_thread3 + 91
    22  libsystem_pthread.dylib       0x00007fff8b880637 _pthread_wqthread + 729
    23  libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 12:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib         0x00007fff89f5f48a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff8dbdfe50 usleep + 54
    2   com.apple.AppKit               0x00007fff86bb4763 -[NSUIHeartBeat _heartBeatThread:] + 2376
    3   com.apple.Foundation           0x00007fff8e54a90a __NSThread__main__ + 1345
    4   libsystem_pthread.dylib       0x00007fff8b880268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8b8801e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8b87e41d thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff89f5a4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89f5964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8895fb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8895effb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8895e858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff86b0733b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8b880268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8b8801e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8b87e41d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff89f5f94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8b87e40d start_wqthread + 13
    Thread 15:
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000000f  rbx: 0x0000000000000001  rcx: 0xffffffffffffffff  rdx: 0x0000000000000000
      rdi: 0x0000000000000000  rsi: 0x000000010c8d35a0  rbp: 0x000000010c8d3550  rsp: 0x000000010c8d34a0
       r8: 0x000000010c8d35a0   r9: 0x0000000000000001  r10: 0x0000000000000000  r11: 0x0000000000000282
      r12: 0x0000000000000001  r13: 0x000000010c8d35a0  r14: 0x000000010c8d3c20  r15: 0x0000000000000000
      rip: 0x00007fff8f4c93eb  rfl: 0x0000000000010246  cr2: 0x0000000000000010
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10af60000 -        0x10aff5ff7  com.apple.AddressBook (9.0 - 1563) <43ED8AE2-B513-3578-B2C8-FD88685D658B> /Applications/Contacts.app/Contents/MacOS/Contacts
           0x10dbc7000 -        0x10dbc8fff  com.apple.AddressBook.LocalSourceBundle (9.0 - 1563) <DD762837-D59A-3603-84A1-86FB30043334> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10e749000 -        0x10e74dff7  com.apple.DirectoryServicesSource (9.0 - 1563) <05E74164-B969-385E-A5DB-162055C6C90F> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10e753000 -        0x10e755fff  com.apple.addressbook.POIPlugin (9.0 - 1563) <319B0E57-ACD3-387C-BB49-813B8EC94314> /System/Library/Address Book Plug-Ins/POIPlugin.sourcebundle/Contents/MacOS/POIPlugin
           0x10e75b000 -        0x10e7a9fff  com.apple.AddressBook.CardDAVPlugin (10.9 - 451) <572F0C80-B344-3C44-8EB7-DF0BD0CCE739> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10f2bc000 -        0x10f2bcfef +cl_kernels (???) <45F3041C-2FA3-4760-8415-467DB8956AC8> cl_kernels
           0x10f2ca000 -        0x10f2caff5 +cl_kernels (???) <C4C54B9E-ABBF-4BAB-B3F7-9AE16A96CF3A> cl_kernels
           0x10f2cc000 -        0x10f3b2fef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x111d43000 -        0x111d43ffe +cl_kernels (???) <DD3CB9A9-1EFA-4B54-9CD9-2991E0BCED29> cl_kernels
           0x112119000 -        0x112119ffe +cl_kernels (???) <DD3CB9A9-1EFA-4B54-9CD9-2991E0BCED29> cl_kernels
           0x11213d000 -        0x11213dfef +cl_kernels (???) <45F3041C-2FA3-4760-8415-467DB8956AC8> cl_kernels
        0x7fff6b6b0000 -     0x7fff6b6e6837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff84fc8000 -     0x7fff84fcdff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff84fdd000 -     0x7fff84febfff  com.apple.AddressBook.ContactsFoundation (9.0 - 1563) <CCAB74BF-947C-384D-B4C8-E2118145555B> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff85572000 -     0x7fff85666fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff85fc0000 -     0x7fff85fc9ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff85fca000 -     0x7fff85fe4ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff85fe5000 -     0x7fff86009ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8600a000 -     0x7fff86325fcf  com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff86326000 -     0x7fff8632dfff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8635c000 -     0x7fff86378fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff86391000 -     0x7fff8639cff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
        0x7fff8639d000 -     0x7fff863ebfff  com.apple.ExchangeWebServices (5.0 - 213) <BB96875F-981D-3787-B450-A294F6D0A6A6> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff863ec000 -     0x7fff864fafff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8650a000 -     0x7fff86535fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff86536000 -     0x7fff86583fff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff865a9000 -     0x7fff865c3ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff865c4000 -     0x7fff86638fff  com.apple.ShareKit (1.0 - 323) <92C947CC-FD6B-39D4-919D-9ABD7701384C> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff86639000 -     0x7fff86646fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff86657000 -     0x7fff8665bff7  libGIF.dylib (1232) <3C70FBBC-FBA5-3013-A440-05D68B63885F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff86685000 -     0x7fff86689fff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8668a000 -     0x7fff8677dfff  com.apple.MapKit (1.0 - 1464.4.21.1) <DF2A21A5-4128-388C-9BDA-E55DAD02103B> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
        0x7fff8677e000 -     0x7fff867ecffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff867ed000 -     0x7fff867effff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff867f0000 -     0x7fff867f4fff  libspindump.dylib (182) <085978DC-A34D-3B72-BC7B-025C35A0A373> /usr/lib/libspindump.dylib
        0x7fff867f5000 -     0x7fff867f8fff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff86918000 -     0x7fff86933ff7  com.apple.aps.framework (4.0 - 4.0) <F3C3C246-101E-3E81-9608-D2D6E9352532> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff86980000 -     0x7fff874caff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff874cb000 -     0x7fff87735fff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87736000 -     0x7fff87741fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87757000 -     0x7fff877a4ff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff877a5000 -     0x7fff877a8ff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff877a9000 -     0x7fff877a9fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff877c3000 -     0x7fff877d8ff7  com.apple.AppContainer (4.0 - 238.10.1) <24A43E31-BCD3-32DB-8023-DE7EEA912E89> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff877d9000 -     0x7fff877ebff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff877ec000 -     0x7fff878deff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff878df000 -     0x7fff878f0fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff87aaa000 -     0x7fff87b6afff  com.apple.backup.framework (1.6.2 - 1.6.2) <63E8CA47-B7B8-3A63-B505-D1622CE52527> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff87b90000 -     0x7fff87c2fdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff87c30000 -     0x7fff87c7fff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff87c80000 -     0x7fff87c81ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff87c82000 -     0x7fff87c8dfff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff87c8e000 -     0x7fff87ecffff  com.apple.AddressBook.framework (9.0 - 1563) <63953D92-FB0D-31B1-A449-07BA64D08BA9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff87ed0000 -     0x7fff87ed3ff7  com.apple.AppleSystemInfo (3.1 - 3.1) <B40B3737-42A5-3D57-9E87-D3905EE5BADB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff87ed4000 -     0x7fff87eeaff7  com.apple.CoreMediaAuthoring (2.2 - 951) <3EAFC9D1-8D7C-30CF-92C7-903A5C241763> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff87eeb000 -     0x7fff87ef5ff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff87ef6000 -     0x7fff87ef6fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff87ef7000 -     0x7fff87f0cfff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff87f0d000 -     0x7fff87f19ff7  com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ilities
        0x7fff87f1a000 -     0x7fff87f23fff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff87f53000 -     0x7fff8832afe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8832b000 -     0x7fff8832dfff  libRadiance.dylib (1232) <9C2DBBDF-0F0B-36BF-84D0-13E0086F793A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8832e000 -     0x7fff8835bfff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88421000 -     0x7fff8842afff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8842c000 -     0x7fff88434ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff88435000 -     0x7fff884f0ff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff884f7000 -     0x7fff88515ff7  com.apple.addressbook.vCard (9.0 - 1563) <370F3435-855E-3C60-9CC9-B3F24AC1AF97> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff88516000 -     0x7fff8857dffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8857e000 -     0x7fff888e9fff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff888ea000 -     0x7fff888ecff3  com.apple.SafariServices.framework (10600 - 10600.3.18) <2C2F0A8D-CC06-30CF-B247-93A96A25F0D5> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff888ed000 -     0x7fff88c83fff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff88c84000 -     0x7fff89170ff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff89171000 -     0x7fff89197ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff89198000 -     0x7fff8919cfff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8919d000 -     0x7fff8923bfff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8923c000 -     0x7fff89260ff7  com.apple.facetimeservices (10.0 - 1000) <3DCF679D-B06D-3CB4-AE6E-FBC122959529> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff89261000 -     0x7fff89446ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff89447000 -     0x7fff894cbfff  com.apple.ViewBridge (103.1 - 103.1) <BABD572C-58AA-362C-B246-D45DCD990D16> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8950e000 -     0x7fff89590fff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff89591000 -     0x7fff89592fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff89593000 -     0x7fff895fffff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8960f000 -     0x7fff8977aff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8977b000 -     0x7fff89796ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff89797000 -     0x7fff897a5ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff898a7000 -     0x7fff89903fff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff89904000 -     0x7fff89911ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff89912000 -     0x7fff89935ff7  com.apple.idsfoundation (10.0 - 1000) <E603D03E-6EFF-375B-AC5E-1F888EDB2D49> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff89936000 -     0x7fff899cbff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff899cc000 -     0x7fff89b5afff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff89bdd000 -     0x7fff89e73ff7  com.apple.AOSKit (1.06 - 215) <432B31DE-50F3-3258-A462-A777C3B8184A> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff89e74000 -     0x7fff89f05ff7  libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
        0x7fff89f13000 -     0x7fff89f17fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff89f18000 -     0x7fff89f20ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff89f21000 -     0x7fff89f48fff  com.apple.printingprivate.framework.PrintingPrivate (10.0 - 148) <1EFBB095-7BA4-3D4C-8532-25989C0A0279> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
        0x7fff89f49000 -     0x7fff89f66fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff89f67000 -     0x7fff89fb5fff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff89fb6000 -     0x7fff89fb7fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff89fbd000 -     0x7fff89ff8fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a882000 -     0x7fff8a885ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8a886000 -     0x7fff8a891ff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff8a8bb000 -     0x7fff8a8ebfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8a8ec000 -     0x7fff8a8ecfff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8a8ed000 -     0x7fff8a901ff7  com.apple.MessagesKit (1.0 - 1) <95927461-D647-323F-8F76-D46CB46272DF> /System/Library/PrivateFrameworks/MessagesKit.framework/Versions/A/MessagesKit
        0x7fff8a902000 -     0x7fff8a97aff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8aa4e000 -     0x7fff8aa6ffff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8aa70000 -     0x7fff8aaa9fff  com.apple.AirPlaySupport (2.0 - 215.15) <C36CC8AF-27CC-3B18-9C3C-3F845B35FDEC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8aaaa000 -     0x7fff8aaabfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8aadf000 -     0x7fff8ac8fff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ac95000 -     0x7fff8acd6fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8ad14000 -     0x7fff8ad1bff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8ad1c000 -     0x7fff8adadff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff8adae000 -     0x7fff8adaefff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8adaf000 -     0x7fff8aef5fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
        0x7fff8aef6000 -     0x7fff8af47ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8af48000 -     0x7fff8afa3fef  libTIFF.dylib (1232) <56D444B7-A37A-30BC-80B5-5E702FFAAAAB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8afa4000 -     0x7fff8afa5ff7  com.apple.AddressBook.ContactsData (9.0 - 1563) <2A4BD452-4279-38AA-A4EE-761903795B05> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8afa6000 -     0x7fff8afbffff  com.apple.ContactsUI (9.0 - 1563) <75C944A2-8407-341F-8B37-42D7BD47CEBE> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff8afc0000 -     0x7fff8afdafff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8b00a000 -     0x7fff8b053ff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b054000 -     0x7fff8b05bff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b05c000 -     0x7fff8b0e5fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8b0e6000 -     0x7fff8b0eefff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8b0ef000 -     0x7fff8b14eff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8b15c000 -     0x7fff8b194fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b195000 -     0x7fff8b19dfff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8b19e000 -     0x7fff8b1a5fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8b1a6000 -     0x7fff8b4d9fff  libmecabra.dylib (666.2) <F757CABA-3EDB-3ABA-A378-A7C574EA233B> /usr/lib/libmecabra.dylib
        0x7fff8b4da000 -     0x7fff8b4f4ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8b4f5000 -     0x7fff8b4f7fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff8b4f8000 -     0x7fff8b500ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8b501000 -     0x7fff8b805ffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8b806000 -     0x7fff8b860ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff8b87d000 -     0x7fff8b886fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8b887000 -     0x7fff8b88dfff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8b88e000 -     0x7fff8b8acfff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <C763B730-D6BC-31D3-951A-898BB49C5A3E> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b8ad000 -     0x7fff8b8e8fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8b8e9000 -     0x7fff8b92fffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8b930000 -     0x7fff8b9dffe7  libvMisc.dylib (516) <A82F9FE8-70ED-3BC9-9184-1A2B9EE3C010> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8b9e0000 -     0x7fff8ba17ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8ba18000 -     0x7fff8ba29ff3  libsystem_coretls.dylib (35.10.1) <3EAED90A-7AA0-323C-A52B-E16477981D59> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8ba2a000 -     0x7fff8ba32fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8ba47000 -     0x7fff8bd2effb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8bd2f000 -     0x7fff8bf32ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8bf33000 -     0x7fff8bf35ff7  com.apple.securityhi (9.0 - 55006) <1F40ECF1-6AEF-3E64-9DAD-ADC646CCEA98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8bf36000 -     0x7fff8bf36ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8bf37000 -     0x7fff8bfa6fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c174000 -     0x7fff8c1c0ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff8c1c1000 -     0x7fff8c1c4fff  libScreenReader.dylib (390.21) <364E0A52-4076-3F55-8C77-7CC5E085E4C4> /usr/lib/libScreenReader.dylib
        0x7fff8c1c5000 -     0x7fff8c1d2ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff8c1d3000 -     0x7fff8c1e5ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8c1e6000 -     0x7fff8d19dffb  com.apple.WebCore (10600 - 10600.3.15) <59A28076-26E4-3CE2-B6FC-AF59308C0B95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8d19e000 -     0x7fff8d1a0ff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8d1a1000 -     0x7fff8d409ff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d40a000 -     0x7fff8d42dfff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8d435000 -     0x7fff8d455fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8d456000 -     0x7fff8d4f8ff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8d4f9000 -     0x7fff8db60fff  com.apple.VectorKit (1.0 - 992.4.10) <9D373DA9-677E-3585-BC97-522C82967FC2> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
        0x7fff8db61000 -     0x7fff8dbedff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff8dbf0000 -     0x7fff8dbf1fff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff8dbf2000 -     0x7fff8dc3fff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8dc8b000 -     0x7fff8dcdffff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8dce0000 -     0x7fff8dd08fff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff8dd18000 -     0x7fff8dd64ff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8de4b000 -     0x7fff8de4ffff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8df0d000 -     0x7fff8e051ff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8e0eb000 -     0x7fff8e0f9ff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8e0fa000 -     0x7fff8e102fe7  libcldcpuengine.dylib (2.4.5) <F9EF8060-5E40-3E88-BC38-7452649672B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8e103000 -     0x7fff8e10bfff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8e168000 -     0x7fff8e1e5fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8e1e6000 -     0x7fff8e308ff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8e4aa000 -     0x7fff8e4d3ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8e4d4000 -     0x7fff8e4e1fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8e4e2000 -     0x7fff8e810fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8e811000 -     0x7fff8e811fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8e812000 -     0x7fff8e81dfff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8e81e000 -     0x7fff8e843fff  libPng.dylib (1232) <10DC46CC-A4FD-3B1A-AA23-E4F12938BC13> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8e844000 -     0x7fff8e853fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8eb38000 -     0x7fff8eb4cff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8eb4d000 -     0x7fff8eb6affb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8eb6b000 -     0x7fff8eb6dff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8eb6e000 -     0x7fff8ebe2ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8ec62000 -     0x7fff8ec67fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8ec68000 -     0x7fff8ec70ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8ec71000 -     0x7fff8ec72ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8ecce000 -     0x7fff8eceaff7  com.apple.pluginkit.framework (1.0 - 1) <FEB6FF0B-A688-37C9-93CF-E886E7ED3141> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff8ee7b000 -     0x7fff8eed7fff  com.apple.coredav (1.0.1 - 261) <6FDDD736-DF1C-3D2B-82D7-D6D15C67F269> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8eed8000 -     0x7fff8f000ff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8f001000 -     0x7fff8f033ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8f034000 -     0x7fff8f03ffdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f040000 -     0x7fff8f093ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8f094000 -     0x7fff8f4c4fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8f4c5000 -     0x7fff8f4edfff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8f4ee000 -     0x7fff8f628ff7  com.apple.ImageIO.framework (3.3.0 - 1232) <A9682E9F-4917-3926-A035-7FEE7FF9D2AB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8f630000 -     0x7fff8f633fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8f634000 -     0x7fff8f6c8fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8f6c9000 -     0x7fff8f6daff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8f6db000 -     0x7fff8f6ddfff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8f6eb000 -     0x7fff8f715ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8f716000 -     0x7fff8f744fff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2) <16F7A7F1-CF1D-35AD-A91F-690A814048DF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f7f5000 -     0x7fff8f835ff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff8f836000 -     0x7fff8f8b7ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8f8b8000 -     0x7fff8f9d0ffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f9d1000 -     0x7fff8fa29ff7  com.apple.accounts.AccountsDaemon (113 - 113) <30F83BF7-2BAE-3BAD-B111-224346AF4B52> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff8fa2a000 -     0x7fff8fa49fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff8fa4a000 -     0x7fff8fa4fff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8fa80000 -     0x7fff8faf4fff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8faf5000 -     0x7fff8fbd5fff  com.apple.QuickLookUIFramework (5.0 - 675.13) <A4B5E57E-F363-3C63-8861-4DCEAC3FB23B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8fbd6000 -     0x7fff8fbe2ff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8fbe3000 -     0x7fff8fc48ff7  com.apple.ids (10.0 - 1000) <BAF9E069-888A-30EB-B247-DC6311B53B67> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8fc49000 -     0x7fff8fd07ff7  com.apple.imcore (10.0 - 1000) <F0AD50BC-EE92-3808-83C6-3E8CCF8782F1> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8fd08000 -     0x7fff8fd0afff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8fd0b000 -     0x7fff8fd0dffb  libCGXType.A.dylib (775.16) <B2DC78CA-179F-39A7-8D0B-873DC0ACFE96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8fd0e000 -     0x7fff8fd3dfff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8fd3e000 -     0x7fff8fd48fff  com.apple.IntlPreferences (2.0 - 150.1) <C62C6F4F-38B9-340B-82A6-1F82AFE1D724> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8fd5e000 -     0x7fff8fdecff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8fded000 -     0x7fff8fe15ffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8fe16000 -     0x7fff8fe2fff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8fe4a000 -     0x7fff8fe76fff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff8fed7000 -     0x7fff90009ff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9003b000 -     0x7fff900d1ffb  com.apple.CoreMedia (1.0 - 1562.107) <FE18102D-8D7A-3500-A400-747AA8C0B3D0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff900d2000 -     0x7fff900d9fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff900da000 -     0x7fff900f4ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff900f5000 -     0x7fff903c4ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff90435000 -     0x7fff9043bfff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff9043c000 -     0x7fff9043eff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff9043f000 -     0x7fff90445ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff90446000 -     0x7fff9044bff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff904fb000 -     0x7fff90526ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff90527000 -     0x7fff90557ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff90585000 -     0x7fff905c2ff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff905c3000 -     0x7fff90721ffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff90722000 -     0x7fff90736ff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff90744000 -     0x7fff9074fff7  com.apple.DirectoryService.Framework (10.10 - 187) <29F7A48C-D8DD-33EB-B9E3-863DA7DBB421> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff907b7000 -     0x7fff90ff0fe3  com.apple.CoreGraphics (1.600.0 - 775.16) <A7BA30E6-A15F-3E48-9718-3837949A0E2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff90ff1000 -     0x7fff90ff2ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff90ff3000 -     0x7fff9100cfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9100d000 -     0x7fff9100dff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff9104a000 -     0x7fff91066ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff91067000 -     0x7fff9132dfff  com.apple.WebKit (10600 - 10600.3.18) <F8E36318-4F4C-348B-B1DE-D4BE035036AD> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff9132e000 -     0x7fff91344ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff91345000 -     0x7fff91437fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff9145b000 -     0x7fff9145dfff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff9148c000 -     0x7fff91495ff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff91496000 -     0x7fff91742fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff91743000 -     0x7fff91c56ff3  com.apple.JavaScriptCore (10600 - 10600.3.13) <C0C3246C-D26F-3440-AC75-81CFFA4F9C91> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91c57000 -     0x7fff91d3bfff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff91d3f000 -     0x7fff91d63fef  libJPEG.dylib (1232) <638302B6-369F-3C50-BF63-F8D19C393F47> /System/Library/Frameworks/ImageIO.framework/Versions/A/Re

    Please test after taking each of the following steps. Back up all data before you begin.
    Step 1
    Quit the Contacts or Address Book application if it's running.
    Triple-click anywhere in the line of text below on this page to select it:
    ~/Library/Caches/com.apple.AddressBookSourceSync
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash.
    Repeat with this line:
    ~/Library/Containers/com.apple.AddressBook
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Step 2
    If you use iCloud, uncheck the box marked Contacts in the iCloud preference pane. Press return to confirm, or click Keep on Mac in the dialog that opens.
    If you synchronize contacts with any other network service, disable that synchronization in the Internet Accounts  preference pane.
    Step 3
    This step applies only if you can launch Contacts. From the list of groups on the left side of the Contacts window, select All On My Mac. If that group doesn't exist or is empty, skip this step. Otherwise, from the menu bar, select
              File ▹ Export... ▹ Contacts Archive...
    Save the exported archive to the Desktop.
    Step 4
    Quit Contacts if it's running. Reveal the following item in the Finder as you did in Step 1:
    ~/Library/Application Support/AddressBook
    If you know when the problem started, and you can restore that folder from an earlier backup without losing any contacts, do so and test. Otherwise, move the folder to the Desktop, leaving the window open for now.
    Step 5
    Launch Contacts. Your contacts and groups will be gone. If you took Step 3, then double-click the file you created in that step and confirm that you want to import from it. Your contacts and groups will reappear.
    Step 6
    If you took Step 2, reverse it. Test. If the issue is resolved, delete the AddressBook folder and the archive file on the Desktop and close the open folder window.
    Otherwise, quit Contacts again and put the AddressBook folder back where it was, overwriting the newer one that will have been created in its place.
    Step 7
    Go back to Step 3, but this time choose Export vCard... from the Export menu. Continue as in Steps 4-6. All contacts should be preserved, but you may lose some metadata such as group membership.

  • I've a new account on iMac.  When composing an email the contact list does not show up on the bar.  WWhen I start keying in a name, it comes up with the address.  How do I engage the  contact list from the email?

    I've a new account on iMac.  When composing an email the contact list does not show up on the bar, which would allow me to select the persons I want to include on the distribution of the email.  When I start keying in a name in the email, it comes up with the person's address, which shows it is synced.  How do I engage the contact list from the email like I do on my old account (where a contact list icon shows up, along with the "attach" and other icons) ?

    With the New Message window open, go to the View menu and select "Customize Toolbar...".
    In the screen that opens, drag the item labelled "Address" into the Toolbar area of the New Message window, then click the "Done" button.
    That item should be then added to the Toolbar for the New Message window.
    Note that the main Mail window and the New Message window (as well as the separate message window if you open a message that way) use different toolbars - the settings/inclusions for one do not carry over to another.

  • ODI - SCD Type 2 - Insert new row error

    Hi All,
    For Dimension I have a surrogate key, a natural key, and a column with "overwrite on change", start_date, end_date, current_record_ind. When I run the interface with the default SCD Type 2 for SQl server, this runs fine. But when I change that one column from "overwrite on change" to "insert new row", it fails on the update step. What should I be looking for anf fixing.
    Thanks for your time and help.

    DB: SQL Server 2008.
    IKM = IKM MSSQL Slowly Changing Dimension
    Error Message: ODI-1228 - Incorrect syntax near the keyword from.
    Code: update T
    set
    from database.dbo.Dim_type as T,
    database.dbo.I$_Dim_type as S
    where T.Cd = S.Cd
    and T.Current_rec_ind = 1
    and IND_UPDATE = 'U'
    To overcome the issue, I have commented the update code in the Knowledge module and the insert works, but for this one it is ok, but I have requirements where one column needs to be overwritten and other column changes will require to add a new record. How to handle both?
    Thanks for your time.

  • I want to get off the plan start a new account but can't contact account owner

    Hi,
    My brother and I have been on the "NATIONWIDE TLK&TXT SHARE 700" plan and the account owner is a friend of our family.
    I have almost fulfilled my two year contract (it will be over in about 1 month) and we would like to upgrade to a new Iphone and put my name as the account owner (none of us had enough credit by the time we got these phones from Verizon, but now we are able to pay our bills and would like to be responsible and keep privacy).
    I've noticed that in order to accomplish AoL, curruent account owner needs to call Verizon and authorizes the account transfer, but the problem is, I haven't been able to contact her for a month(she won't answer the phone and no call back has been received...).
    So I was thinking I should just give up keeping my number and start a new contract and a plan with my brother.
    My question is, as just an account member (not owner or manger), can my brother and I get off the plan without owner's permission? She and I are not on the same plan and she actually gave me some kind of password so that I could manage some stuffs with customer service. I was actually able to cancel my mother's line from the family plan one year ago with that password , but I wonder if I could do the same thing with both my brother's and my lines without owner's permission.
    If I can do that, is there any way to keep my numbers when starting a new account without having current account owner involved since I can't reach her? 
    If I start a new account and a plan with my brother and get the phone with 2-year-contract, rather than just upgrading to an iphone (while keeping my number under the current account owner like now), how much money will I be losing? Would it be a lot?

    whatwhywhere wrote:
    My question is, as just an account member (not owner or manger), can my brother and I get off the plan without owner's permission? She and I are not on the same plan and she actually gave me some kind of password so that I could manage some stuffs with customer service. I was actually able to cancel my mother's line from the family plan one year ago with that password If you were able to do this, then you must be an account manager
    , but I wonder if I could do the same thing with both my brother's and my lines without owner's permission.
    If I can do that, is there any way to keep my numbers when starting a new account without having current account owner involved since I can't reach her? If you are an account manager, I would think you should be able to accomplish this. You should call *611 or go into a Verizon store to find out.
    If I start a new account and a plan with my brother and get the phone with 2-year-contract, rather than just upgrading to an iphone (while keeping my number under the current account owner like now), how much money will I be losing? Would it be a lot?
    If you start a new Family Plan with 2 lines instead of remaining part of a Family Plan with 3(or more) lines, you could end up paying more. Not knowing what your arrangement is, though, we cannot begin to tell you how much more you would be paying.
    For example:
    700 minute Family Plan with unlimited texting for 2 lines would be $99.98/month + tax for a total of ~$50/person.
    700 minute Family Plan with unlimited texting for 3 lines would be $109.97/month + tax for a total of $37/person.
    Any add ons such as insurance, data, etc... would of course be extra. You may also have to pay a security deposit in addition if you do not have much of a credit history.

  • It seems at some point, my husband and I merged accounts.  And whenever I received a message, his phone was notified as well.  We turned off icloud, then I turned it back on with my new account info.  Can I receive my old contacts on my new apple id?

    I am out all of my contacts, trying to figure out a way to send them to my new apple id so I don't have to retype everything back into the phone.  Any advice is appreciated!

    You and your husband can share a store account and still have seperate iCloud accounts for your contacts, bookmarks and stuff like that.  Click here for instructions to make an apple account without entering a credit card.  Make sure you use a different email address for each apple account. 
    Set up your iPhone/iPad whatever using the new account for iCloud.  Then go into settings/store and sign in with your purchasing account, you may need to sign out of the other account.  To the best of my knowledge, your household is allowed to share purchased legally, someone please correct me if I'm wrong.
    Once you each have your own devices set to your own accounts you can set them to backup to that account and it will keep all your contacts seperate.

  • How can I fix the "This is not a test user account, please create a new account in the sandbox environment" error?

    Hi there everyone,
    Recently I tried to make an in-app purchase, I'm not sure whether the app is relevant or not but it was for Tapped Out, however, after trying to make the purchase I received an error message saying "Sign-In Required, tap continue to sign in to check for downloads [Environment: Sandbox]" so I followed the instructions and was then presented with another error message saying "This is not a test user account, please create a new account in the sandbox environment. [Environment: Sandbox]"
    I have been doing a lot of research online trying to find a solution and so far nothing has worked for me, I have also been passing emails backwards and forwards between an Apple Customer Support colleague and are yet to find a working solution.
    Here are a few pieces of information.
    1. I am running iOS 6.1.3 on a 4th Gen iPod, it's relatively new, I got it for Christmas.
    2. My iPod is not, and never has been Jail Broken.
    3. I do not have a test account and have never tried to make my own apps.
    4. I have tried signing out of my Apple ID, resetting my iPod's settings and signing in again.
    5. I have tried resetting my Apple ID password
    6. I have tried restoring my iPod to factory settings.
    If anyone has another suggestion for something I could try it would be greatly appreciated, thanks.

    Yep, I've been reading through other threads on lots of different sites over the last few hours and I can't seem to find a working solution, even though some seem to have worked for other people.
    Most of them hadn't been updated in a while so I made my own post to see if anyone has anything new.

  • ITunes is updated and works fine and I am able to log onto my account. When I go to purchase a song, I get the error message "Your Apple ID has been disabled". I've tried different methods: changing passwords, making a new account with another email addre

    iTunes is updated and works fine and I am able to log onto my account. When I go to purchase a song, I get the error message "Your Apple ID has been disabled". I've tried different methods: changing passwords, making a new account with another email address, and emailing itunes tech support. I am curious as to how many others have been experiencing the same issue. When I googled the error, it seemed like it was happening extremely often with many people.
    We all love their products, but they always come with a lot of issues and horrible customer support.
    My apple Id is [email protected]

    My Iphone 4 is telling me the same thing and I believe I figured out what the problem is.  I had some fraudulent charges on my itunes account, so I call my bank and disputed the charges.  Right after I did that, I started getting the message "Your apple ID has been disabled."  I just realized today that the charges are not fraudulent, they are "in app purchases."  One of my daughters downloaded the game Top Girl which is FREE, but in the game Top Girl you use money in the game to purchase things.  It just so happens that the money you use to purchase things is real money MY Money!!!.  My daughter thought she was using play money in the game and had no idea she was using real money.  She spent $106.00 buying stuff.  Now I have to call the bank and tell them to release the hold and pay Itunes.  I'm hoping this solves the problem.  Here is the link to learn how to disable "in app purchase" on your iphone or ipad.
    http://www.ikidapps.com/2010/12/parents-avoid-accidental-app-purchases-how-to-tu rn-off-in-app-purchasing.html

  • Error message when trying to create a new account (was: Hi, need help)

    Hi, I need your help, I have come across a problem, I want to create a new account, but the problem is with the server Developer Toolbox concern, but we are not in memory

    How come Leopard let me use the WGM in standard mode?
    While SA complains that it won't work in Standard Configuration, WGM does not. There is some fault in the logic of this for which I don't have an explanation.
    If I want to get control on Dock, selection of Home folder, config of Proxy... which I think are basic things, do I really need the advanced mode?
    If you wish to have complete control of all client settings, yes. There really is no disadvantage of using an Advanced configuration other than the learning curve.
    So if I switch to advanced mode, there is good chance I won't get this error message anymore, right?
    Yes.

  • When logging on to my account a receive this message "the server encountered an error processing registration. Please try again later".  This is not a new account. I have changed my password and nothing works.  What am I doing wrong.

    I'm having trouble logging into facetime.  We do not have a new account.  I've changed the password and still cannot get in.  The message that pops up is "the server encountered an error processing registration.  Please try again later."  I want to talk to my granddaughter but can't.  Can someone help me.  Thanks

    I had to same problem. I found forums about adding the DNS 8.8.8.8 and 8.8.4.4 in System Preferences - Networks I did that and it still didnt work.  Just found another forum saying to go into System Preferences - Time and Date and check the Set time and Date automatically. And it worked for me. Hope it works for you too.

  • Receiver JDBC: Error while doing the Deleting and Inserting new records

    Hi All,
              I am doing Idoc to JDBC scenario. In this I am collecting & bundling different type of Idocs and then sending to the JDBC receiver. My requirement is to delete the existing records in the database and insert the new records. I have configures as mentioned in the link
    Re: Combining DELETE and INSERT statements in JDBC receiver
    In the above link its shows for single mapping. In my scenario I am using multi mapping for collecting idocs in BPM. If I configured for normal mapping then it is working fine(Deleting existing records and Inserting new record). Whenever I am using multi mapping then I am getting following error in the receiver JDBC communication channel u201CError while parsing or executing XML-SQL document: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)u201D . Can you please tell me what might be the problem.
    Thanks & Regards,
    T.Purushotham

    Hi !
    check this out:
    JDBC - No 'action' attribute found in XML document - error
    JDBC receiver adapter: No 'action' attribute found in XML document
    It appears that the inbound payload (the one that is going from XI to the JDBC adapter) does not have the requiered tag to specify which SQL action to execute in the receiver system. Maybe the multimapping is not creating the desired output message format.
    Regards,
    Matias.

  • According to my network provider (Amaysim/Optus) Tethering is enabled, so why do I get this error message "to enable personal hotspot on this account, contact OPTUS"

    According to my network provider (Amaysim/Optus) Tethering is enabled, so why do I get this error message "to enable personal hotspot on this account, contact OPTUS"
    Amysim/Optus support can not help.
    I can not check or change any network settings (no APN settings)
    I have synced phone using latest itunes (10.5.3).
    Phone software is up to date (5.0.1).
    Network settings have been reset.
    SIM card has been taken out and put back in.
    Phone has been switched off/on again.
    Another sim card from virgin works ok (hotspot option is visible and can be turned on/off as required)
    The Amaysim/Optus SIM card can be put into another phone (android) and tethering/hotspot works fine.
    Can anyone provide solution to this nightmare?

    I am having the same issue although i have an iphone 5. I have contacted Live connected numerous times an tried everything imaginable to solve the issue. Is it possibly a handset issue? I cant recieve any help from optus as im with live connected, they cant help me and apple keep telling me to contact your carrier ( live connected). Seems to make me want to switch providers pretty shortly..
    please let me know if you can solve your issue and maybe it can help me too..

Maybe you are looking for