Incorrect Certificate?

I'm been banging my head against the wall with this one. I have Certificate Authority installed on my Server 2008 box and I ran the command:
certutil -ca.cert client.crt
This gets my servers certificate, right? So next I copied that to the PC that's going to be running my Java application. I import the certificate with:
keytool -import -keystore .\jre\lib\security\cacerts -file client.crt
After this I run my java application and get an error.
Am I using the wrong certificate maybe? The guide told me when CA was installed I'd have a server cert file on C:\, which I never found.
Here's my error, and the guide I followed:
Guide:
http://confluence.atlassian.com/display/CROWD/Configuring+an+SSL+Certificate+for+Microsoft+Active+Directory
Error:
javax.naming.CommunicationException: simple bind failed: 192.168.12.74:636 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target]
at com.sun.jndi.ldap.LdapClient.authenticate(LdapClient.java:215)
at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2740)
at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:316)
at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:193)
at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:211)
at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:154)
at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:84)
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:684)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:307)
at javax.naming.InitialContext.init(InitialContext.java:242)
at javax.naming.ldap.InitialLdapContext.<init>(InitialLdapContext.java:153)
at eua.data.ADAuthenticator.authenticate(ADAuthenticator.java:93)
at eua.gui.MainFrame$2.actionPerformed(MainFrame.java:157)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.Component.processMouseEvent(Component.java:6504)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
at java.awt.Component.processEvent(Component.java:6269)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4860)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4686)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2713)
at java.awt.Component.dispatchEvent(Component.java:4686)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:707)
at java.awt.EventQueue.access$000(EventQueue.java:101)
at java.awt.EventQueue$3.run(EventQueue.java:666)
at java.awt.EventQueue$3.run(EventQueue.java:664)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.awt.EventQueue$4.run(EventQueue.java:680)
at java.awt.EventQueue$4.run(EventQueue.java:678)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:677)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:211)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
Caused by: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1868)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:276)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:270)
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1337)
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:154)
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:868)
at sun.security.ssl.Handshaker.process_record(Handshaker.java:804)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:998)
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1294)
at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:848)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:102)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:275)
at java.io.BufferedInputStream.read(BufferedInputStream.java:334)
at com.sun.jndi.ldap.Connection.run(Connection.java:835)
at java.lang.Thread.run(Thread.java:722)
Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:385)
at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:292)
at sun.security.validator.Validator.validate(Validator.java:260)
at sun.security.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:326)
at sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:231)
at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:126)
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1319)
... 12 more
Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:196)
at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:268)
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:380)
Thanks for taking the time to read this!
Edited by: 901867 on Feb 15, 2012 10:00 AM

I import the certificate with:
keytool -import -keystore .\jre\lib\security\cacerts -file client.crt
Is that JRE the JRE you are running your application with? If not, you need to use -Djavax.net.ssl.trustStore=xxx to point to that file.

Similar Messages

  • Error while accesing the certificate request service

    Hi,
    I am trying to use certification request available in sicf
        default_host| bc | bsp | sap | certreq .
    I am getting the following error
    Error: Incorrect certificate request (CertReq)
    One of the following reason can cause this error:
    - You call this service without CertReq
    - Your CertReq is not valid or the signature is incorrect
    - Your RA is not registered yet
    - You apply for certificate within incorrect naming space
    Please contact your system administrator.
    Any idea how can i rectify the problem.  Do i need to have any certficate installed in my browser before calling this?
    Regards,
    Dhana

    Hello,
    This is not security related,please ask basis consultant to fix this
    Thanks,
    Prasant

  • ISE 1.3 certificate issue

    Hi experts,
    I have tried to replicate an issue that my customer is having:
    issue: when running client provisioning on default port 8905, the portal certificate shows that it's using the certificate created for the Admin. However, when visiting guest portal or running onboarding process (using port 8443 which is the default one), the certificate is presented with the correct one (the one used for the portal).
    Here is what I have setup in my lab:
    1. in ISE 1.3, installed two certificate: one for admin and the other for portal access:
    2. when accessing the admin page and the client portal, I can see that it's using the correct certificate. ( the OU=ESC one is the admin certificate and the OU=MS one is the portal certificate)
    However, when accessing the test client provisioning portal on 8905, the certificate shows it's using the admin one:
    In the adminstration->device portal mgmt->client provisioning portal, the port is used as default 8443. It makes more sense it uses the client provisioning certificate rather than the admin certificate when the portal is redirected on to port 8905. 
    Is the issue an as-designed feature or is there additional configuration needs to be implemented?

    Hello Neno,
    Thanks for the reply!
    Let me clarify: when I access the client provisioning portal on default 8443 which URL is generated by the ISE, I can see the correct certificate (OU=MS) is presented. But when I manually change the port from 8443 to 8905 in the same URL and access, ISE brings me to the same portal page, but this time the incorrect certificate is presented (OU=ESC which I generated for the admin portal).
    So it seems that ISE presents a wrong certificate (the one for admin) when user is redirected to the provisioning portal on a port other than port 8443. I believe ISE should present the portal certificate usage in this case. I am not sure if this is an as-designed feature, or some additional configuration should be done.
    Let me know if you still have questions with this.
    Many thanks, 

  • B2B-51075 Missing signer certificate receiving AS2 through reverse proxy

    We are setting up AS2 communication through B2B on 11.1.1.6.7,  Our reverse proxy configuration in the DMZ looks as shown:
    <Location /b2b/httpReceiver>
      WebLogicHost internalsoa.domain
       WebLogicPort 8001
       WLLogFile /dmz/logs/wl-proxy.log
       SetHandler weblogic-handler
    </Location>
    https://externaledi.domain/b2b/httpReceiver
    -Dhttp.proxySet=true -Dhttp.proxyHost=externaledi.domain -Dhttp.proxyPort=443
    When I go to the externally available URL, I receive the B2B Server is ready to accept HTTP messages from the Trading Partner message.
    In the TRACE:32 logging, I see:
    [2014-01-10T09:20:30.551-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: c8ec097869f74d35:75fef00f:14379dde17a:-8000-0000000000080c34,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Utility:getAllCertsFromWallet:Loaded Certs 5
    [2014-01-10T09:20:30.553-08:00] [soa_server1] [ERROR] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: c8ec097869f74d35:75fef00f:14379dde17a:-8000-0000000000080c34,0] [APP: soa-infra] java.lang.NullPointerException[[
            at oracle.tip.b2b.packaging.SmimeSecureMessaging.verify(SmimeSecureMessaging.java:834)
            at oracle.tip.b2b.packaging.mime.MimePackaging.processSignedMultipartMessage(MimePackaging.java:1080)
            at oracle.tip.b2b.packaging.mime.MimePackaging.processMultipartMessage(MimePackaging.java:908)
            at oracle.tip.b2b.packaging.mime.MimePackaging.processMessageContent(MimePackaging.java:865)
            at oracle.tip.b2b.packaging.mime.MimePackaging.doUnpack(MimePackaging.java:780)
            at oracle.tip.b2b.packaging.mime.MimePackaging.unpack(MimePackaging.java:670)
            at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1888)
            at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1654)
            at oracle.tip.b2b.transport.InterfaceListener.onMessageLocal(InterfaceListener.java:412)
            at oracle.tip.b2b.transport.InterfaceListener.onMessage(InterfaceListener.java:220)
            at oracle.tip.b2b.transport.basic.TransportServlet.doPost(TransportServlet.java:754)
            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(StubSecurityHelper.java:125)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    java.lang.NullPointerException
            at oracle.tip.b2b.packaging.SmimeSecureMessaging.verify(SmimeSecureMessaging.java:834)
            at oracle.tip.b2b.packaging.mime.MimePackaging.processSignedMultipartMessage(MimePackaging.java:1080)
            at oracle.tip.b2b.packaging.mime.MimePackaging.processMultipartMessage(MimePackaging.java:908)
            at oracle.tip.b2b.packaging.mime.MimePackaging.processMessageContent(MimePackaging.java:865)
            at oracle.tip.b2b.packaging.mime.MimePackaging.doUnpack(MimePackaging.java:780)
            at oracle.tip.b2b.packaging.mime.MimePackaging.unpack(MimePackaging.java:670)
            at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1888)
            at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1654)
            at oracle.tip.b2b.transport.InterfaceListener.onMessageLocal(InterfaceListener.java:412)
            at oracle.tip.b2b.transport.InterfaceListener.onMessage(InterfaceListener.java:220)
            at oracle.tip.b2b.transport.basic.TransportServlet.doPost(TransportServlet.java:754)
            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(StubSecurityHelper.java:125)
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    [2014-01-10T09:20:30.553-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: c8ec097869f74d35:75fef00f:14379dde17a:-8000-0000000000080c34,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] MimePackaging:processSignedMultipartMessage:Signature Verification failed
    [2014-01-10T09:20:30.585-08:00] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: c8ec097869f74d35:75fef00f:14379dde17a:-8000-0000000000080c34,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Notification: notifyApp: payload = <Exception xmlns="http://integration.oracle.com/B2B/Exception" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">[[
      <correlationId>null</correlationId>
      <b2bMessageId>0A0A117A1437D2B5D520000017198417</b2bMessageId>
      <errorCode>B2B-51075</errorCode>
      <errorText>
      <![CDATA[Missing signer certificate.
      ]]>
    We used the following notes to guide the configuration:
    http://blog.darwin-it.nl/2012/11/b2b11g-with-apache-20-as-forward-proxy.html
    http://anuj-dwivedi.blogspot.sg/2010/10/enabling-ssl-on-oracle-b2b-11g.html
    Has anyone gotten AS2 communication to work through a reverse proxy?  We are not picking up any agreements or senders in the B2BConsole reports.
    Thanks,
    -Michael

    It turns out the trading partner provided the incorrect certificate.  Once they sent a new certificate (must be the one they use for signing), everything worked.

  • Automatic Smart Card Certificate Renewal

    We have a problem where our Smart Card certificates are starting to expire but the automatic renewal process is failing.
    Is it actually possible to auto renew Smart Card certs without requiring any user input (other than the PIN)?
    There are two errors in the event log -
    Event ID:      16
    Description:
    Certificate enrollment for <domain>\<username> failed to renew a SmartcardLogon certificate with request ID N/A from <ca server name> (Provider could not perform the action since the context was acquired as silent. 0x80090022 (-2146893790)).
    Event ID:      6
    Automatic certificate enrollment for <domain>\<username> failed (0x80090022) Provider could not perform the action since the context was acquired as silent.
    The certificate template is configured with all the correct permissions (Read,Enroll,AutoEnroll) and group policy is configured with the auto enrolment settings. 
    Thanks in advance.

    This may be caused by a incorrect certificate template configuration. In the Request Handling tab (IIRC), there are several radio buttons where you specify whether enrollment may ask for user input during enrollment or not. You need to allow user input
    during enrollment for smart card templates.
    My weblog: en-us.sysadmins.lv
    PowerShell PKI Module: pspki.codeplex.com
    PowerShell Cmdlet Help Editor pscmdlethelpeditor.codeplex.com
    Check out new: SSL Certificate Verifier
    Check out new:
    PowerShell FCIV tool.

  • Can't create Exchange domain-signed certificate

    Okay, I need to figure out why this is happening. We have our own domain certificate authority, and when I run a domain certificate request from any of my IIS servers, it hands out certificates just fine. But when I try to submit a request for an exchange
    certificate directly in the MMC, I get the following error:
    "The request contains no certificate template information. 0x80094801 (-2146875391)
    Denied by Policy Module: 0x80094801, The request does not contain a certificate template extension or the CertificateTemplate request attribute."
    I get this same issue if I try to submit a request manually from an IIS server.  It only works if I send a domain cert request through the IIS wizard.
    Can someone help me fix this?  I've been having this issue for years now, and I need to figure out how to make this work before I can properly troubleshoot my Exchange 2013 CAS setup.  The Certificate Authority is installed on Windows Server 2012
    Standard, but I've been having this issue before we upgraded the OS to this.
    ----------- Ron E Biggs Network Administrator Entertainment Studios

    Hi Ron
    This issue may be caused by incorrect Certificate Template permission settings. Let’s
    give Authenticated user Enroll permission:
    1.    Open MMC, click File menu, choose Add/Remove Snap-in, choose Certificate
    Templates, click OK. 
    2.    Double-click Web Server template, switch to Security tab, selected Authenticated
    users, click Enroll option. Click OK.
    3.    Open CA console, stop CA service and restart it. 
    4.    Try to open MMC->Certificates of Local Computer, try to request Web
    Server certificates.
    At the same time, we can disable IE SEC and change IE security settings to bypass HTTPS requirement.
    To do so:
    1.    Open  Server Manager, click Server Manger in the left panel, click
    Configure IE SEC in the right panel.
    2.    Click Off at least for administrator.  Click OK. 
    3.    Open Internet Options, switch to Security tab, click Trusted sites,
    move the slide bar to bottom. Click Local intranet, move the slide bar to bottom, click OK. 
    4.    Restart IE and try to visit http://localhost/certsrv, you should be
    able submit request. 
    If there is any error, please let us know the detailed error message
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

  • ACE offering wrong certificate

    Hi
    We have two VIPS (LIVE and TEST)with SSL-proxys configured.
    One is fine (LIVE), the other (TEST) WAS misconfigured with the same certificate and keys as the LIVE.
    This has been subsequently corrected.
    However, the original LIVE (incorrect) certificate is always offered to the TEST vip.
    Is it cached somewhere ? Is it a sticky entry needs clearing ?
    The certificates are definitely different.
    Any help greatly received
    Paul

    Hi Martin,
    You should be able to import the root/intermediate certificates from Resources > Trusted Certificate Authorities.
    Once it is done, the WAF should automagically add them to the chain once a client connect.
    In case it does not, this is most then likely due to the following bug:
    CSCsx19437    If "SSLVerifyClient" global setting is set to "none", an AXG acting.
    Apply the workaround described in the release note of the bug and it will hopefully work:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCsx19437
    Other option would be to go to 6.1.1 where it is fixed.
    Regards,
    Nicolas

  • Certificates setup in server / keychain

    I have a server running OS-X Server 4.1. I had to reinstall completely and need to set up my SSL Certificates the right way.
    A) Since I am new to Certificates I think I might have messed up something. Since it did not work immediately and since I had te reinstall everything I tried to install all certificates I received everywhere: LOGIN + SYSTEM.
    In LOGIN I now have:
    Certificate hostname (issued by StartCom Class 1 Primary Intermediate Server CA)
    Certificate StartCom Certification Authority
    Certificate StartCom Class 1 Primary Intermediate Server CA
    Certificate StartCom Class 3 Primary Intermediate Server CA
    IN SYSTEM I have
    Certificate hostname (issued by IntermediateCA … OS-X Open Directory) + 2x public + 2x private keys
    Certificate hostname (issued by StartCom Class 1 Primary Intermediate Server CA)
    Certificate StartCom Certification Authority
    Certificate StartCom Class 1 Primary Intermediate Server CA
    Open Directory Server = hostname I don’t know if this is causing trouble, because I ended up with two certificates with the same name in keychain?
    I learned that I don't need the underlined entries in LOGIN, but on "Symantec SSL checker" website it recommends for best practices to remove the self-signed root from the server. Is this right? How do I do this? At the same website it says:
    "Multiple certificates were found with the same common name.
    The certificate installation checker cannot determine which certificate is correct. Remove the incorrect certificate and try again."
    Is this a problem? Why is this so? Maybe because SSL certificate and OD certificate have the same name?
    B) In OS-X Server I now have two certificates listed:
         1. Certificate: hostname - issued by StartCom Class 1 Primary Intermediate Server CA
         2. Certificate: hostname - hostname OD Intermediate CA
    I understand I need to use 1 (issued by SSL provider) to secure services? Could you use also the OD certificate?
    C) When I try to manage the server from a client and try to connect via SERVER APP I get a message saying:
              'Server can't verify the identity of the server "server-hostname".'
    Why is the connection not secured with my SSL certificate? I saw that you have KEYs and CERTIFICATEs in the Keychain in 4 different levels: Login, iCloud, System, System-Root. Sometimes you have "IDENTITY PREFERENCE". I guess that in identity preference you can choose which certificate to use for a particular service.
    In the Identity Preference for COM.APPLE.SERVERMGRD I have 18 certificates listed. 3 of them have the name of my SERVER. 2 of them where issued by my SSL CA and one belongs to OPEN DIRECTORY. Are the 2 SSL CA issued Certificates the reason why SSL checker reports multiple certificates? How can I solve this? I only see one instance of Certificate hostname (issued by StartCom Class 1 Primary Intermediate Server CA) in SYSTEM Keychain?
    If I try to change the Identity Preference for COM.APPLE.SERVERMGRD to one of the two Certificate hostname (issued by StartCom Class 1 Primary Intermediate Server CA) and try to login it does not get recognised on the client and is declared as self assigned CERTIFICATE.
    Can someone help?

    Hi Mikey,
    I am not sure why you have kept the corporate network under the dmz zone. In general security practice we use to keep the dmz zone/dmz firewall for having the server/hosting environment where external parties requires access to those.... for example web server / application server.....
    So your design requires some change in order to have a better architecture....
    internet
    |
    router
    |
    external SW
    |
    internet facing firewalls
    |
    DMZ SW and Junp Server / Application Server (DMZ Interface of the Firewall).
    Internet facing Firewall
    |
    LAN Interface SW (Inside Interface of the firewall)
    |
    LAN FW (If you really want to keep it)
    |
    Corporate Network
    Regards
    Karthik

  • Configuring SSO in AS JAVA (PI 7.11)

    Hello, experts!
    Can your HELP me?
    I try to configure client SSO with certificates.
    I configure next parameters and settings on PI 7.11.
    Install SAPCRYPTOlLIB for my AIX version, placing the ticket, sapgenpse, and libsapcrypto.o in the correct locations.
    Profile settings:
    ssl/pse_provider=JAVA
    sec/libsapsecu=/usr/sap/<SID>/SYS/exe/run/libsapcrypto.o
    ssf/ssfapi_lib=/usr/sap/<SID>/SYS/exe/run/libsapcrypto.o
    ssf/name=SAPSECULIB
    ssl/ssl_lib=/usr/sap/<SID>/SYS/exe/run/libsapcrypto.o
    icm/server_port_2=PORT=5$(SAPSYSTEM)01,PROT=HTTPS
    In NWA->Configuration Management->Security->Certificates and Keys create Key Storage ICM_SSL_<j2eeinstanceID>. Then Generate CRS Request, load this code to the service.sap.com/TCS, generate SSL Test Certificate and load to CRS Respone.
    Now i can access my system on https. But when i try to log on wiht certificate and mask check box "Create Client Certificate". I`ll redirect to https://tcs.mysap.com/invoke/tc/usercert with error text:
    "Error: Incorrect certificate request (CertReq)
    One of the following reasons can cause this error:
    - You call this service without CertReq
    - Your CertReq is not valid or the signature is incorrect
    - Your RA is not registered yet
    - You apply for certificate within incorrect naming space
    Please contact your system administrator.
    Whats happen? Why my users couldn`t take certificate?
    Please help...

    Hello Konstantin,
    Please follow the steps in the link:
    http://help.sap.com/saphelp_nw70/helpdata/en/3b/6d04c7974743159e0eaeea2b40a537/frameset.htm
    You need to use a PSE using the DSA algorithm as your Registartion Authority.
    I hope this helps you.
    Regards,
    Blanca

  • Time Machine and iTunes Issue

    What I'm using first: OS X 10.7.1 - iTunes 10.4 - 1TB external Time Machine Drive - apx 90,000 songs -  A big pain in the a**
    So I had a problem with about 90% of my music file paths being not correct and iTunes not finding the files. Basically I had about 40GB of music on my internal HD and the remaining 400GB on my external. I wanted to move my 40GB to my external and have iTunes recognize this. So I make a backup before I do anything and begin working on it. Copied the 40gb to the external and deleted all my iTunes info with the intent to re-import the music and then replace the .xml file so I would have all my playlist, play counts, ratings, ect. I had read a “how to” and understood the process and all would have worked well if……..
    The Time Machine does not have the .xml file and is missing about half of my old music in that same folder. Why in the world would Time Machine not have my old .xml file anywhere? I ended up looking through ALL of my old backups dating back to June and not one is there…. 
    Is there any way to find/recover this file?

    Solved!  At last!
    I cannot say exactly which step was the key, so here are most of the steps I took.  Hopefully this helps someone.
    1. Took the steps in Invalid or incorrect Certificates including reboot.
    2. Took the steps in Edit your Keychain including reboot.
    3. Downloaded and manually reinstalled Security Update 2015-004.
    4. Repaired permissions and directories with Recovery reboot.
    5. Took the steps in Invalid or incorrect Certificates including reboot.
    6. Took the steps in Edit your Keychain including reboot.
    I've gone through some of these steps multiple times, just hoping it would work that time...
    Today -- when I went into Mail.app, it whined about the certs for me.com servers -- so I made *that* always trusted.  And this time, iTunes.app didn't complain about any certs!  And this time, Software Update.app didn't complain about any certs!  And it successfully applied the three-week delayed updates!
    So I'm hoping it's all done and done.  OMG, frustrating along the way!

  • Client Auth  and SSL with Seeburger AS2 adapter

    Hello All,
    We are using the Seeburger AS2 adapter in our landscape and I am in the process of setting the same up and have made quite some progress in all my issues.
    and I  hope that you will be able to help me out.
    1. Server SSL on Receiver AS2 adapter
    I am sending a message from XI using the Receiver AS2 adapter to my AS2 test tool using Server SSL.
    This is working perfectly fine. In my AS2 adapter I have selected HTTPS as the protocol and the message goes via SSL to the target test tool, is processed and the MDN comes back to XI perfectly.
    The issue here is :
    Irrespective of what is provided in the Server Certificate ( Keystore) , the message goes to my target test tool. I even left this field blank with no certificate entry and still the SSL connection was established and the message went to the target system.
    Is there no validation that XI does here? I am lost what is the use of this entry Server Certificate if XI blindly accepts all SSL connections.
    I am using a Decentral Adapter Engine with LoadBalancer.
    2. Client Auth on Receiver AS2 Adapter
    I tried to perform Client Authentication by proving my Server's private key in the AS2 adapter. The corresponding public key is loaded in my partner's Keystore.
    XI error's with the error "SSL handshake failed - Bad Certificate" .
    I am not sure why XI is erroring out here and I have a feeling that I have misunderstood the use of the fields in the AS2 adapter,
    Server Certificate ( Keystore) and Private Key for Client Authentication.
    Has anyone tried this? If further details are needed, I will be able to furnish the same.
    Regards,
    Bhavesh

    Hello Jens,
    Thanks for your reply.
    1. The Encryption and Signature part of the Interface is working absolutely fine and I use the same concept highlighted by you - The Sender always signs the message with his private key and encrypts with message with the partner's public key in the corresponding agreement.
    2. Server SSL is also working perfectly fine, i.e, when XI initiates the connection the SSL connection is established to the partner.
    3. Mutual Auth was the issue where I was getting the bad certificate issue.
    To investigate further I moved the same setup to my Central Adapter Engine and all the issues I had described above seem to have vanished and things work exactly as I was expecting, ie.
    The field : Server Certificate (Keystore) is used to provide the Target System's Server SSL's public Certificate.
    The field : Private Key for Client Authentication is used where XI provides its own Server SSL's private key for Mutual / Client Authentication.
    The problem seems to be with my Decentral Adapter engine and not my central adapter engine and so I guess,
    1. I either have the incorrect certificates on my Decentral Adapter Engine.
    2. I also have 2 instances of a Decentral Adapter Engine with a Webdispatcher and so maybe the 2 Visual Admin's of the 2 Decentral AE are inconsistent.
    3. Maybe it was just a long day and I did something wrong
    Will investigate further for the root cause but I am glad that my concepts remain intact and things do work as I expected them to work.
    A blog on all this is on the cards sometime soon.
    Cheers,
    Bhavesh

  • 3702i AP's not Joining WLC - Layer 3 discovery request not received on management VLAN

    Hi Guys, 
    This is a follow up post to this thread: https://supportforums.cisco.com/discussion/12400481/3702i-not-joint-2504
    Have been playing around with my AP's and made sure the time is correct on all the devices ( WLC and Switch). I have also moved the AP's to the same Vlan as the management IP of the WLC. 
    if I move the AP's to the same Vlan as the WLC they join and are happy, as soon as I move them to a different Vlan they cant join and there time goes back to the default plus they do not seem to save the WLC details to flash but still remember the test names I give them.
    it appears that option 43 is working fine as I can see it look for the WLC IP and I have done some trouble shooting on the WLC and it looks like it see's the AP but doesn't except it.
    please see below for the boot up of the AP and the WLC logs: 
    AP 
    IIOS Bootloader - Starting system.
    *** deleted for breverity ***** 
    Loading "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-mx.153-3.JA1"...#########################
    File "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-mx.153-3.JA1" uncompressed and installed, entry point: 0x2003000
    executing...
    Secondary Bootloader - Starting system.
    Montserrat Board
    *** deleted for breverity ***** 
    Boot CMD: 'boot  flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1;flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1'
    Loading "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1"...###############################################
    File "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1" uncompressed and installed, entry point: 0x1003000
    executing...
                  *** deleted for breverity ***** 
    cisco AIR-CAP3702I-Z-K9 (PowerPC) processor (revision A0) with 376810K/134656K bytes of memory.
    Processor board ID FGL1838X4T1
    PowerPC CPU at 800Mhz, revision number 0x2151
    Last reset from power-on
    LWAPP image version 8.0.110.0
    1 Gigabit Ethernet interface
    2 802.11 Radios
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: F4:4E:05:B7:1E:84
    Part Number                          : 73-15243-01
    PCA Assembly Number                  : 000-00000-00
    PCA Revision Number                  :
    PCB Serial Number                    : FOC18343WPR
    Top Assembly Part Number             : 068-05054-03
    Top Assembly Serial Number           : FGL1838X4T1
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-CAP3702I-Z-K9
    % Please define a domain-name first.
    Press RETURN to get started!
    *Mar  1 00:00:19.295: %SOAP_FIPS-2-SELF_TEST_IOS_SUCCESS: IOS crypto FIPS self test passed (15)
    *Mar  1 00:00:19.755: Registering HW DTLS
    *Mar  1 00:00:19.763: APAVC: Initial WLAN Buffers Given to System is  2500
    *Mar  1 00:00:19.815: APAVC:  WlanPAKs 42878 RadioPaks  42270
    *Mar  1 00:00:22.127: %LINK-6-UPDOWN: Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:26.055: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 0 (4)
    *Mar  1 00:00:26.167: Loading Power Tables from ram:/Q2.bin. Class = A
    *Mar  1 00:00:26.167:  record size of 3ss: 1168 read_ptr: 4F9698E
    *Mar  1 00:00:31.207: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 1 (4)
    *Mar  1 00:00:31.251: Loading Power Tables from ram:/Q5.bin. Class = Z
    *Mar  1 00:00:31.251:  record size of vht: 2904 read_ptr: 4F9698E
    *Mar  1 00:00:31.407: Wait until the stile protocol list is initialized.
    *Mar  1 00:00:32.651: Start STILE Activation
    *Mar  1 00:00:34.571: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to down
    *Mar  1 00:00:35.447: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C3700 Software (AP3G2-K9W8-M), Version 15.3(3)JA1, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2014 by Cisco Systems, Inc.
    Compiled Fri 19-Dec-14 11:20 by prod_rel_team
    *Mar  1 00:00:35.447: %SNMP-5-COLDSTART: SNMP agent on host Test_1 is undergoing a cold start
    *Mar  1 00:00:36.563: %LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, changed state to up
    *Mar  1 00:00:37.787: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to uplwapp_crypto_init: MIC Present and Parsed Successfully
    *Mar  1 00:00:37.939: %SSH-5-ENABLED: SSH 2.0 has been enabled
    *Mar  1 00:00:37.939: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:00:38.987: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Mar  1 00:00:38.987: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar  1 00:00:47.567: %LINK-6-UPDOWN: Interface BVI1, changed state to down
    *Mar  1 00:00:48.567: %LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, changed state to down
    *Mar  1 00:00:50.431: %SOAP_FIPS-2-SELF_TEST_HW_SUCCESS: HW crypto FIPS self test passed (2-16)
    *Mar  1 00:00:50.431: DPAA Initialization Complete
    *Mar  1 00:00:50.431: %SYS-3-HARIKARI: Process DPAA INIT top-level routine exited
    *Mar  1 00:00:51.431: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:53.435: %LINK-6-UPDOWN: Interface BVI1, changed state to up
    *Mar  1 00:00:53.867: Currently running a Release Image
    *Mar  1 00:00:54.287: Incorrect certificate in SHA2 PB !
    *Mar  1 00:00:54.287: Using SHA-1 signed certificate for image signing validation.
    *Mar  1 00:00:54.575: %LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, changed state to up
    *Mar  1 00:00:59.787: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 10.1.20.2, mask 255.255.255.0, hostname Test_1
    *Mar  1 00:01:02.707: APAVC: Succeeded to activate all the STILE protocols.
    *Mar  1 00:01:02.707: APAVC: Registering with CFT
    *Mar  1 00:01:02.707: APAVC: CFT registration of delete callback succeeded
    *Mar  1 00:01:02.707: APAVC: Reattaching  Original Buffer pool for system use
    *Mar  1 00:01:02.707: Pool-ReAtach: paks 42878 radio42270
    %Default route without gateway, if not a point-to-point interface, may impact performance
    *Mar  1 00:01:10.103: AP image integrity check PASSED
    *Mar  1 00:01:10.187: Incorrect certificate in SHA2 PB !
    *Mar  1 00:01:10.203: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Mar  1 00:01:10.203: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar  1 00:01:11.591: %CDP_PD-4-POWER_OK: 15.4 W power - NEGOTIATED inline power source
    *Mar  1 00:01:12.691: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Mar  1 00:01:13.691: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Mar  1 00:01:13.947: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:01:14.947: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Mar  1 00:01:20.211: %SYS-6-LOGGINGHOST_STARTSTOP: Logging to host 255.255.255.255 port 514 CLI Request Triggered
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:01:31.215: %CAPWAP-5-DHCP_OPTION_43: Controller address 10.1.1.231 obtained through DHCP
    *Mar  1 00:02:11.599: %CDP_PD-4-POWER_OK: Full power - NEGOTIATED inline power source
    *Mar  1 00:02:11.603: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down
    *Mar  1 00:02:11.611: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Mar  1 00:02:12.603: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Mar  1 00:02:12.639: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Mar  1 00:02:12.647: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to down
    *Mar  1 00:02:12.655: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar  1 00:02:13.639: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Mar  1 00:02:13.647: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar  1 00:02:13.699: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:02:14.699: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    Not in Bound state.
    *Mar  1 00:02:44.719: %CAPWAP-3-DHCP_RENEW: Could not discover WLC. Either IP address is not assigned or assigned IP is wrong. Renewing DHCP IP.
    *Mar  1 00:02:49.839: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 10.1.20.3, mask 255.255.255.0, hostname Test_1
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:02:55.719: %CAPWAP-5-DHCP_OPTION_43: Controller address 10.1.1.231 obtained through DHCP
    Not in Bound state.
    *Mar  1 00:03:59.219: %CAPWAP-3-DHCP_RENEW: Could not discover WLC. Either IP address is not assigned or assigned IP is wrong. Renewing DHCP IP.
    *Mar  1 00:04:04.343: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 10.1.20.4, mask 255.255.255.0, hostname Test_1
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:04:10.223: %CAPWAP-5-DHCP_OPTION_43: Controller address 10.1.1.231 obtained through DHCP
    WLC: 
    isco Controller) >show time
    Time............................................. Tue Jan 27 17:44:47 2015
    Timezone delta................................... 0:0
    Timezone location................................ (GMT +8:00) HongKong, Bejing, Chongquing
    NTP Servers
        NTP Polling Interval.........................     3600
         Index     NTP Key Index                  NTP Server                  NTP Msg Auth Status
           1              0                             150.101.176.226       AUTH DISABLED
    (Cisco Controller) >show ap join stats summary  
    Incorrect input! Use 'show ap join stats summary [all/<ap-mac>]'
    (Cisco Controller) >show ap join stats summary all 
    Number of APs.............................................. 2 
    Base Mac             AP EthernetMac       AP Name                 IP Address         Status
    f4:4e:05:aa:a6:a0    f4:4e:05:94:c3:98    APf44e.0594.c398        10.1.1.22          Joined    
    f4:4e:05:b6:ce:f0    N A                  Test_1                  10.1.20.7          Not Joined
    (Cisco Controller) >show ap join stats detailed f4:4e:05:b6:ce:f0
    Sync phase statistics
    - Time at sync request received............................ Not applicable
    - Time at sync completed................................... Not applicable
    Discovery phase statistics
    - Discovery requests received.............................. 45
    - Successful discovery responses sent...................... 21
    - Unsuccessful discovery request processing................ 24
    - Reason for last unsuccessful discovery attempt........... Layer 3 discovery request not received on management VLAN
    - Time at last successful discovery attempt................ Jan 27 17:45:49.705
    - Time at last unsuccessful discovery attempt.............. Jan 27 17:45:49.705
    Join phase statistics
    - Join requests received................................... 0
    - Successful join responses sent........................... 0
    - Unsuccessful join request processing..................... 0
    - Reason for last unsuccessful join attempt................ Not applicable
    - Time at last successful join attempt..................... Not applicable
    - Time at last unsuccessful join attempt................... Not applicable
    Configuration phase statistics
    --More-- or (q)uit
    - Configuration requests received.......................... 0
    - Successful configuration responses sent.................. 0
    - Unsuccessful configuration request processing............ 0
    - Reason for last unsuccessful configuration attempt....... Not applicable
    - Time at last successful configuration attempt............ Not applicable
    - Time at last unsuccessful configuration attempt.......... Not applicable
    Last AP message decryption failure details
    - Reason for last message decryption failure............... Not applicable
    Last AP disconnect details
    - Reason for last AP connection failure.................... Not applicable
    - Last AP disconnect reason................................ Not applicable
    Last join error summary
    - Type of error that occurred last......................... Lwapp discovery request rejected
    - Reason for error that occurred last...................... Layer 3 discovery request not received on management VLAN
    - Time at which the last join error occurred............... Jan 27 17:45:49.705
    AP disconnect details
    - Reason for last AP connection failure.................... Not applicable
                                                                               Ethernet Mac : 00:00:00:00:00:00  Ip Address : 10.1.20.7
    (Cisco Controller) >show interface summary 
     Number of Interfaces.......................... 4
    Interface Name                   Port Vlan Id  IP Address      Type    Ap Mgr Guest
    ap                               LAG  20       10.1.20.231     Dynamic No     No   
    guest                            LAG  30       10.1.30.231     Dynamic No     No   
    management                       LAG  10       10.1.1.231      Static  Yes    No   
    virtual                          N/A  N/A      1.1.1.1         Static  No     No   
    SWITCH
    witch#show run
    Building configuration...
    *** deleted for breverity ***** 
    no aaa new-model
    clock timezone AWST 8
    system mtu routing 1500
    ip routing
    ip dhcp pool WAP_Pool
       network 10.1.20.0 255.255.255.0
       default-router 10.1.20.1 
       option 43 hex f104.0a01.01e7
    ip dhcp pool Clients
       network 10.1.30.0 255.255.255.0
       default-router 10.1.30.1 
       dns-server 203.0.178.191 
    ip dhcp pool test
       network 10.1.1.0 255.255.255.0
       default-router 10.1.1.1 
    crypto pki trustpoint TP-self-signed-4082587776
     enrollment selfsigned
     subject-name cn=IOS-Self-Signed-Certificate-4082587776
     revocation-check none
     rsakeypair TP-self-signed-4082587776
    *** deleted for breverity ***** 
    *** deleted for breverity ***** !
    interface FastEthernet0/3
     description *** WLC ****
     switchport trunk encapsulation dot1q
     switchport mode trunk
    interface FastEthernet0/4
     description **** AP *****
     switchport access vlan 20
     switchport mode access
     spanning-tree portfast
    interface FastEthernet0/5
     description **** AP ****
     switchport access vlan 20
     switchport mode access
     spanning-tree portfast
    interface FastEthernet0/6
    i*** deleted for breverity ***** !
    interface Vlan10
     description *** Managment ***
     ip address 10.1.1.230 255.255.255.0
    interface Vlan20
     description *** WIRELESS APS ***
     ip address 10.1.20.1 255.255.255.0
    interface Vlan30
     ip address 10.1.30.1 255.255.255.0
    ip classless
    ip route 0.0.0.0 0.0.0.0 10.1.1.1
    ip http server
    ip http secure-server
    ip sla enable reaction-alerts
    l*** deleted for breverity ***** 
    ntp clock-period 36028827
    ntp source FastEthernet0/1
    ntp server 121.0.0.42
    ntp server 202.127.210.37
    end
    I have also placed a Device in Vlan 20 and it is able to ping the WLC and the WLC can ping it s routing is working. 
    Thanks 

    Hey Scott, 
    I gave that a shot and still no luck, log's from AP boot up:
    IIOS Bootloader - Starting system.
    flash is writable
    Tide XL MB - 40MB of flash
    Xmodem file system is available.
    flashfs[0]: 67 files, 9 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 41158656
    flashfs[0]: Bytes used: 20894208
    flashfs[0]: Bytes available: 20264448
    flashfs[0]: flashfs fsck took 20 seconds.
    Base Ethernet MAC address: f4:4e:05:b7:1e:84
    Ethernet speed is 100 Mb - FULL Duplex
    Loading "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-mx.153-3.JA1"...#########################
    File "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-mx.153-3.JA1" uncompressed and installed, entry point: 0x2003000
    executing...
    Secondary Bootloader - Starting system.
    Montserrat Board
    40MB format
    Tide XL MB - 40MB of flash
    Xmodem file system is available.
    flashfs[0]: 67 files, 9 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 41158656
    flashfs[0]: Bytes used: 20894208
    flashfs[0]: Bytes available: 20264448
    flashfs[0]: flashfs fsck took 21 seconds.
    flashfs[1]: 0 files, 1 directories
    flashfs[1]: 0 orphaned files, 0 orphaned directories
    flashfs[1]: Total bytes: 12257280
    flashfs[1]: Bytes used: 1024
    flashfs[1]: Bytes available: 12256256
    flashfs[1]: flashfs fsck took 1 seconds.
    Base Ethernet MAC address: f4:4e:05:b7:1e:84
    Boot CMD: 'boot  flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1;flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1'
    Loading "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1"...###############################################
    File "flash:/ap3g2-k9w8-mx.153-3.JA1/ap3g2-k9w8-xx.153-3.JA1" uncompressed and installed, entry point: 0x1003000
    executing...
                  Restricted Rights Legend
    Use, duplication, or disclosure by the Government is
    subject to restrictions as set forth in subparagraph
    (c) of the Commercial Computer Software - Restricted
    Rights clause at FAR sec. 52.227-19 and subparagraph
    (c) (1) (ii) of the Rights in Technical Data and Computer
    Software clause at DFARS sec. 252.227-7013.
               cisco Systems, Inc.
               170 West Tasman Drive
               San Jose, California 95134-1706
    Cisco IOS Software, C3700 Software (AP3G2-K9W8-M), Version 15.3(3)JA1, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2014 by Cisco Systems, Inc.
    Compiled Fri 19-Dec-14 11:20 by prod_rel_team
    Montserrat Board
    40MB format
    Tide XL MB - 40MB of flash
    Initializing flashfs...
    flashfs[2]: 67 files, 9 directories
    flashfs[2]: 0 orphaned files, 0 orphaned directories
    flashfs[2]: Total bytes: 40900608
    flashfs[2]: Bytes used: 20894208
    flashfs[2]: Bytes available: 20006400
    flashfs[2]: flashfs fsck took 14 seconds.
    flashfs[2]: Initialization complete.
    flashfs[4]: 0 files, 1 directories
    flashfs[4]: 0 orphaned files, 0 orphaned directories
    flashfs[4]: Total bytes: 11999232
    flashfs[4]: Bytes used: 1024
    flashfs[4]: Bytes available: 11998208
    flashfs[4]: flashfs fsck took 0 seconds.
    flashfs[4]: Initialization complete.
    Copying radio files from flash: to ram:
    Copy in progress...CCCCC
    Copy in progress...CCC
    Copy in progress...CCCC
    Copy in progress...CCCC
    Copy in progress...CC
    Copy in progress...CCCC
    Copy in progress...CC
    Copy in progress...CCCCC
    Copy in progress...CCCC
    Copy in progress...CC
    Uncompressing radio files...
    ...done Initializing flashfs.
    Radio0  present 8764 8000 0 A8000000 A8010000 0
    Rate table has 650 entries (20 legacy/224 11n/406 11ac)
    POWER TABLE FILENAME = ram:/Q2.bin
    Radio1  present 8864 8000 0 80000000 80100000 4
    POWER TABLE FILENAME = ram:/Q5.bin
    Radio2 not present 0 0 0 0 0 8
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    cisco AIR-CAP3702I-Z-K9 (PowerPC) processor (revision A0) with 376810K/134656K bytes of memory.
    Processor board ID FGL1838X4T1
    PowerPC CPU at 800Mhz, revision number 0x2151
    Last reset from power-on
    LWAPP image version 8.0.110.0
    1 Gigabit Ethernet interface
    2 802.11 Radios
    32K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address: F4:4E:05:B7:1E:84
    Part Number                          : 73-15243-01
    PCA Assembly Number                  : 000-00000-00
    PCA Revision Number                  :
    PCB Serial Number                    : FOC18343WPR
    Top Assembly Part Number             : 068-05054-03
    Top Assembly Serial Number           : FGL1838X4T1
    Top Revision Number                  : A0
    Product/Model Number                 : AIR-CAP3702I-Z-K9
    % Please define a domain-name first.
    Press RETURN to get started!
    *Mar  1 00:00:19.295: %SOAP_FIPS-2-SELF_TEST_IOS_SUCCESS: IOS crypto FIPS self test passed (15)
    *Mar  1 00:00:19.755: Registering HW DTLS
    *Mar  1 00:00:19.763: APAVC: Initial WLAN Buffers Given to System is  2500
    *Mar  1 00:00:19.815: APAVC:  WlanPAKs 42878 RadioPaks  42270
    *Mar  1 00:00:22.127: %LINK-6-UPDOWN: Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:26.055: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 0 (4)
    *Mar  1 00:00:26.167: Loading Power Tables from ram:/Q2.bin. Class = A
    *Mar  1 00:00:26.167:  record size of 3ss: 1168 read_ptr: 4F9698E
    *Mar  1 00:00:31.207: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 1 (4)
    *Mar  1 00:00:31.251: Loading Power Tables from ram:/Q5.bin. Class = Z
    *Mar  1 00:00:31.251:  record size of vht: 2904 read_ptr: 4F9698E
    *Mar  1 00:00:31.407: Wait until the stile protocol list is initialized.
    *Mar  1 00:00:32.651: Start STILE Activation
    *Mar  1 00:00:34.571: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to down
    *Mar  1 00:00:35.447: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C3700 Software (AP3G2-K9W8-M), Version 15.3(3)JA1, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2014 by Cisco Systems, Inc.
    Compiled Fri 19-Dec-14 11:20 by prod_rel_team
    *Mar  1 00:00:35.447: %SNMP-5-COLDSTART: SNMP agent on host Test_1 is undergoing a cold start
    *Mar  1 00:00:36.563: %LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, changed state to up
    *Mar  1 00:00:37.787: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to uplwapp_crypto_init: MIC Present and Parsed Successfully
    *Mar  1 00:00:37.939: %SSH-5-ENABLED: SSH 2.0 has been enabled
    *Mar  1 00:00:37.939: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:00:38.987: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Mar  1 00:00:38.987: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar  1 00:00:47.567: %LINK-6-UPDOWN: Interface BVI1, changed state to down
    *Mar  1 00:00:48.567: %LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, changed state to down
    *Mar  1 00:00:50.431: %SOAP_FIPS-2-SELF_TEST_HW_SUCCESS: HW crypto FIPS self test passed (2-16)
    *Mar  1 00:00:50.431: DPAA Initialization Complete
    *Mar  1 00:00:50.431: %SYS-3-HARIKARI: Process DPAA INIT top-level routine exited
    *Mar  1 00:00:51.431: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:53.435: %LINK-6-UPDOWN: Interface BVI1, changed state to up
    *Mar  1 00:00:53.867: Currently running a Release Image
    *Mar  1 00:00:54.287: Incorrect certificate in SHA2 PB !
    *Mar  1 00:00:54.287: Using SHA-1 signed certificate for image signing validation.
    *Mar  1 00:00:54.575: %LINEPROTO-5-UPDOWN: Line protocol on Interface BVI1, changed state to up
    *Mar  1 00:00:59.787: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 10.1.20.2, mask 255.255.255.0, hostname Test_1
    *Mar  1 00:01:02.707: APAVC: Succeeded to activate all the STILE protocols.
    *Mar  1 00:01:02.707: APAVC: Registering with CFT
    *Mar  1 00:01:02.707: APAVC: CFT registration of delete callback succeeded
    *Mar  1 00:01:02.707: APAVC: Reattaching  Original Buffer pool for system use
    *Mar  1 00:01:02.707: Pool-ReAtach: paks 42878 radio42270
    %Default route without gateway, if not a point-to-point interface, may impact performance
    *Mar  1 00:01:10.103: AP image integrity check PASSED
    *Mar  1 00:01:10.187: Incorrect certificate in SHA2 PB !
    *Mar  1 00:01:10.203: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Mar  1 00:01:10.203: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar  1 00:01:11.591: %CDP_PD-4-POWER_OK: 15.4 W power - NEGOTIATED inline power source
    *Mar  1 00:01:12.691: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Mar  1 00:01:13.691: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Mar  1 00:01:13.947: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:01:14.947: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Mar  1 00:01:20.211: %SYS-6-LOGGINGHOST_STARTSTOP: Logging to host 255.255.255.255 port 514 CLI Request Triggered
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:01:31.215: %CAPWAP-5-DHCP_OPTION_43: Controller address 10.1.1.231 obtained through DHCP
    *Mar  1 00:02:11.599: %CDP_PD-4-POWER_OK: Full power - NEGOTIATED inline power source
    *Mar  1 00:02:11.603: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down
    *Mar  1 00:02:11.611: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Mar  1 00:02:12.603: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Mar  1 00:02:12.639: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Mar  1 00:02:12.647: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to down
    *Mar  1 00:02:12.655: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar  1 00:02:13.639: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Mar  1 00:02:13.647: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar  1 00:02:13.699: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:02:14.699: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    Not in Bound state.
    *Mar  1 00:02:44.719: %CAPWAP-3-DHCP_RENEW: Could not discover WLC. Either IP address is not assigned or assigned IP is wrong. Renewing DHCP IP.
    *Mar  1 00:02:49.839: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 10.1.20.3, mask 255.255.255.0, hostname Test_1
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:02:55.719: %CAPWAP-5-DHCP_OPTION_43: Controller address 10.1.1.231 obtained through DHCP
    Not in Bound state.
    *Mar  1 00:03:59.219: %CAPWAP-3-DHCP_RENEW: Could not discover WLC. Either IP address is not assigned or assigned IP is wrong. Renewing DHCP IP.
    *Mar  1 00:04:04.343: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 10.1.20.4, mask 255.255.255.0, hostname Test_1
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (255.255.255.255)
    *Mar  1 00:04:10.223: %CAPWAP-5-DHCP_OPTION_43: Controller address 10.1.1.231 obtained through DHCP

  • How to understand the Error message of the connection of OPC server

    hi guys, one issue need your help
    when I run the NI OPC servers, one error message will appear in the process information.
    Just like as followed:
    ==================================================​=========================
    2011-6-23   11:50:05   Default User   NI OPC Servers   Stopping Simulator device driver.
    2011-6-23   11:50:05   Default User   NI OPC Servers   Closing project D:\National Instruments\Shared\NI OPC Servers\projects\simdemo.opf
    2011-6-23   11:50:25   Default User   NI OPC Servers   NI OPC Servers
    2011-6-23   11:50:25   Default User   NI OPC Servers   Unable to load driver DLL 'D:\National Instruments\Shared\NI OPC Servers\drivers\dataforth_isolynx_u.dll'
    more messages
    ==================================================​===========================
    how to understand "2011-6-23   11:50:25   Default User   NI OPC Servers   Unable to load driver DLL 'D:\National Instruments\Shared\NI OPC Servers\drivers\dataforth_isolynx_u.dll'??????
    Thanks

    Hi!
    I have the same problem when opening the OPC Server.
    Unfortunately I have no solution, but I think it has something to do with incorrect Certificates and is more of a Windows Problem.
    If anybody can help, please let us know!
    Best Regards
    Martin

  • Did security update 2015-004 broke Illustrator & Dreamweaver CS5.5

    Hi community,
    from 2 days ago I can't launch Illustrator and Dreamweaver CS5.5, Illustrator crashes with an error (-108) on various stages of starting up, but Dreamveawer is just stuck on initializing CSS. The only thing I can remember is installing security update 2015-004 on Mavericks (10.9.5) a day before that. I tried creating a new user and starting up in safe mode but the same thing happens.
    Here is the Console log from Illustrator crash:
    Process:    
    Adobe Illustrator [4663]
    Path:       
    /Applications/DTP/*/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier: 
    com.adobe.illustrator
    Version:    
    39 (15.1.0)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [188]
    Responsible:
    Adobe Illustrator [4663]
    User ID:    
    501
    Date/Time:  
    2015-04-10 11:57:23.783 +0200
    OS Version: 
    Mac OS X 10.9.5 (13F1066)
    Report Version:  11
    Anonymous UUID:  75264866-74C0-429E-7C83-AF41E7DF178B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000000f4e6822
    VM Regions Near 0xf4e6822:
    __LINKEDIT        
    000000000f4db000-000000000f4e2000 [   28K] r--/rwx SM=COW  /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    -->
    VM_ALLOCATE       
    000000000f503000-000000000f505000 [
    8K] rw-/rwx SM=PRV 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                     
    0x0f4e6822 0 + 256796706
    1   com.adobe.illustrator   
    0x0013fdb5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1191353
    2   com.apple.HIToolbox     
    0x92c12d89 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    3   com.apple.HIToolbox     
    0x92a6634f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    4   com.apple.HIToolbox     
    0x92a65668 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    5   com.apple.HIToolbox     
    0x92a654e0 SendEventToEventTargetWithOptions + 94
    6   com.apple.HIToolbox     
    0x92c6676a SendMenuOpening(MenuSelectData*, MenuData*, double, unsigned long, unsigned long, __CFDictionary*, unsigned char, unsigned char*) + 573
    7   com.apple.HIToolbox     
    0x92c664fe _SimulateMenuOpening + 138
    8   com.apple.HIToolbox     
    0x92c58798 OpenMenuForInspection(MenuData*) + 127
    9   com.apple.HIToolbox     
    0x92c597cd MenuData::HandleGetNamedAccessibleAttribute(unsigned long long, __CFString const*, unsigned long, OpaqueEventRef*) + 175
    10  com.apple.HIToolbox     
    0x92c596d8 MenuData::GetNamedAccessibleAttributeSelf(unsigned long long, __CFString const*, unsigned long, OpaqueEventRef*) + 166
    11  com.apple.HIToolbox     
    0x92c86510 HIObject::DispatchGetNamedAccessibleAttribute(unsigned long long, __CFString const*, unsigned long, OpaqueEventRef*, void*) + 52
    12  com.apple.HIToolbox     
    0x92c86ad1 HIObject::DispatchAccessibilityEvent(OpaqueEventRef*, unsigned long long, AccessibilityHandlers const*, void*) + 1191
    13  com.apple.HIToolbox     
    0x92c86449 HIObject::HandleClassAccessibilityEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 145
    14  com.apple.HIToolbox     
    0x92a66926 HIObject::EventHook(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 120
    15  com.apple.HIToolbox     
    0x92c12d89 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    16  com.apple.HIToolbox     
    0x92a6634f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    17  com.apple.HIToolbox     
    0x92a65668 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    18  com.apple.HIToolbox     
    0x92a654e0 SendEventToEventTargetWithOptions + 94
    19  com.apple.HIToolbox     
    0x92af3269 Accessible::SendEvent(OpaqueEventRef*, bool) const + 105
    20  com.apple.HIToolbox     
    0x92af270f Accessible::GetNamedAttributeData(__CFString const*, void const*, void const**, unsigned char*) + 171
    21  com.apple.HIToolbox     
    0x92af25fc HLTBCopyUIElementAttributeValue + 64
    22  com.apple.HIToolbox     
    0x92af4993 CarbonCopyAttributeValueCallback(__CFData const*, unsigned long, __CFString const*, void const**, void*) + 85
    23  com.apple.AppKit        
    0x95477205 CopyCarbonUIElementAttributeValue + 60
    24  com.apple.AppKit        
    0x95473379 CopyAttributeValue + 216
    25  com.apple.HIServices    
    0x9002c8da _AXXMIGCopyAttributeValue + 282
    26  com.apple.HIServices    
    0x900366db _XCopyAttributeValue + 462
    27  com.apple.HIServices    
    0x9000f2e7 mshMIGPerform + 229
    28  com.apple.CoreFoundation
    0x93e35e15 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    29  com.apple.CoreFoundation
    0x93e35d7b __CFRunLoopDoSource1 + 523
    30  com.apple.CoreFoundation
    0x93e264b2 __CFRunLoopRun + 2130
    31  com.apple.CoreFoundation
    0x93e259ea CFRunLoopRunSpecific + 394
    32  com.apple.CoreFoundation
    0x93e2584b CFRunLoopRunInMode + 123
    33  com.apple.HIToolbox     
    0x92a89b5d RunCurrentEventLoopInMode + 259
    34  com.apple.HIToolbox     
    0x92a898e2 ReceiveNextEventCommon + 526
    35  com.apple.HIToolbox     
    0x92ad4aca AcquireNextEventInMode + 75
    36  com.apple.HIToolbox     
    0x92c249da _AcquireNextEvent + 58
    37  com.apple.HIToolbox     
    0x92c134ac _RunAppModalLoop + 168
    38  com.apple.HIToolbox     
    0x92c133be RunAppModalLoopForWindow + 130
    39  com.adobe.illustrator   
    0x000fcb85 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 916361
    40  com.adobe.illustrator   
    0x000fd073 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 917623
    41  com.adobe.illustrator   
    0x000fd1f3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 918007
    42  com.adobe.illustrator   
    0x001130c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1007819
    43  com.adobe.illustrator   
    0x000d412a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 749870
    44  com.adobe.illustrator   
    0x00003316 0x1000 + 8982
    Thread 1:
    0   libsystem_kernel.dylib  
    0x96b02046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x94ec0dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib 
    0x94ec4cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x96b02992 kevent64 + 10
    1   libdispatch.dylib       
    0x94d24899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib       
    0x94d24532 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib  
    0x96b02046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x94ec0dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib 
    0x94ec4cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib  
    0x96b02046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x94ec0dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib 
    0x94ec4cce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x94ec3fa3 pthread_cond_wait + 48
    3   com.adobe.amt.services  
    0x046ea274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services  
    0x046e3074 C_EULA_SetState + 2166
    5   com.adobe.amt.services  
    0x046ea2da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    7   libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    8   libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x94ec2042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9458b88d TSWaitOnConditionTimedRelative + 161
    4   com.apple.CoreServices.CarbonCore    0x9458b44a TSWaitOnSemaphoreCommon + 531
    5   com.apple.CoreServices.CarbonCore    0x9458b5fd TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore    0x9456bc00 TimerThread + 89
    7   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    8   libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    9   libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x94ec3bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9458b682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9458b8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x94557cf2 MPWaitOnQueue + 199
    6   AdobeACE                
    0x01681579 0x1647000 + 238969
    7   AdobeACE                
    0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore    0x945582ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib  
    0x96b017ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x94ec1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x94ec3fa3 pthread_cond_wait + 48
    3   AdobeAGM                
    0x01abe59d AGMInitialize + 3243373
    4   AdobeAGM                
    0x01abf1ed AGMInitialize + 3246525
    5   AdobeAGM                
    0x01ac4de0 AGMInitialize + 3270064
    6   libsystem_pthread.dylib 
    0x94ebf5fb _pthread_body + 144
    7   libsystem_pthread.dylib 
    0x94ebf485 _pthread_start + 130
    8   libsystem_pthread.dylib 
    0x94ec4cf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x073a8840  ebx: 0x6d656e75  ecx: 0x00000000  edx: 0x00000002
      edi: 0x00000004  esi: 0x92c12d71  ebp: 0xbfffba48  esp: 0xbfffb95c
       ss: 0x00000023  efl: 0x00010202  eip: 0x0f4e6822   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0f4e6822
    Logical CPU:
    6
    Error Code: 
    0x00000014
    Trap Number:
    14
    Binary Images:
    0x1000 -  0x10ddfe7 +com.adobe.illustrator (39 - 15.1.0) <A59087EC-3C72-CC25-4C18-47FAB3D91DFE> /Applications/DTP/*/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x13fe000 -  0x14cbfe7 +AdobeAXEDOMCore (0) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
    0x153d000 -  0x154dfff  com.apple.carbonframeworktemplate (1.0 - 1.0) <02AB017F-BF6A-B96F-9D39-5F23B36EF2E5> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x1554000 -  0x156fff9 +AdobePDFSettings (1) /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x158a000 -  0x15cefff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <65C09343-06AC-9256-3260-70AFDEA99C82> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1633000 -  0x1633fff +SPBasic (0) <00D26E34-33A4-31BF-3516-87513A07D019> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x1638000 -  0x163effb +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x1647000 -  0x175cfff +AdobeACE (1) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1782000 -  0x1ca8fff +AdobeAGM (1) <72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1df2000 -  0x1e2efff +AdobeARE (1) <B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1e38000 -  0x1e5eff6 +AdobeAXE8SharedExpat (0) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1e71000 -  0x1e8cfff +AdobeBIB (1) <5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1e97000 -  0x1eb8ff7 +AdobeBIBUtils (1) <1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIB Utils
    0x1ec5000 -  0x21b7ff7 +AdobeCoolType (1) <90757246-5467-2606-4095-19B63B255F2F> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x2244000 -  0x22dcfff +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.13048) <A9394CC7-8E48-FE0F-FDB5-37D0FE77435B> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x233d000 -  0x2420fef +AdobePDFPort (1) <26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2458000 -  0x2a8dfeb +AdobePDFL (1) <B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2bc3000 -  0x2c50ff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.13048) <68FB7168-645E-BD55-5EAA-007315B53997> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x2c97000 -  0x2d37fef +AdobeSVGExport (0) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2d63000 -  0x3001ff2 +AdobeSVGRE (0) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x30df000 -  0x3137ff7 +AdobeXMP (0) <73329999-C364-2451-6574-4D0277057D19> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x3147000 -  0x31d3fef +AdobeXMPFiles (0) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x320c000 -  0x32d9ff3 +libicui18n.dylib.36.0 (36) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x333c000 -  0x3416fef +libicuuc.dylib.36.0 (36) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3456000 -  0x3e06fff +libicudata.dylib.36.0 (36) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3e09000 -  0x41e1ff7 +AdobeMPS (1) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4318000 -  0x4386ffb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x439d000 -  0x442eff7 +libicucnv.dylib.36.0 (36) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x444d000 -  0x4633ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x46c5000 -  0x4730fe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x474c000 -  0x47c9fff +AdobeOwlCanvas (1) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x47e7000 -  0x491ffe7 +WRServices (0) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4964000 -  0x4968ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x496f000 -  0x49c5ffb +com.adobe.headlights.LogSessionFramework (2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x4a0e000 -  0x4a43fef +com.adobe.pip (5.5.0.1272) <4AD1ED99-8BB9-B49E-16E5-B7E7A97AAA99> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x4a4e000 -  0x57a0feb +com.adobe.psl (AdobePSL 12.0.0.11086 - 12.0.0.11086) <ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5af7000 -  0x5c74fef +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <49B04BBB-7249-AF03-A7B2-770443BA4AFB> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5df1000 -  0x60e1fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <DDA3FFE0-C30C-9863-BD85-114636A448CE> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x640e000 -  0x6754ff3 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <B7CF0778-96A1-0864-1BBA-63622803E3A3> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c68000 -  0x6c7afef +com.adobe.dvaai.framework (dvaai version 5.0.0 - 5.0.0.0) <A25DFA28-3208-0C10-BDC4-F164755BCDC6> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c9e000 -  0x6ca4fef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <2CFE7AA3-09A8-EB42-AFEA-F7FB4D7DBC6F> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_ date_time
    0x6cb6000 -  0x6cc1ff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <90073BD0-99ED-2715-64B8-2BB79D6F619F> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost _filesystem
    0x6cd6000 -  0x6d54fe2 +com.adobe.boost_regex.framework (boost_regex version 5.0.0 - 5.0.0.0) <BCC13CF6-F0A5-1C84-422B-7B11E5BB061A> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_rege x
    0x6dba000 -  0x6dc4fff +com.adobe.boost_signals.framework (boost_signals version 5.0.0 - 5.0.0.0) <88FE6D06-B15C-787D-C69C-F522CD8D3F3E> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_si gnals
    0x6dd8000 -  0x6ddaffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <4E80B05E-DF55-2776-C886-02DFE2F104CD> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_sys tem
    0x6de3000 -  0x6deaff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <79C1A64C-42C7-26D1-E005-D6CB753F9B2B> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_th reads
    0x6dfb000 -  0x6e59fe2 +com.adobe.boost_serialization.framework (boost_serialization version 5.0.0 - 5.0.0.0) <8CAB6FC6-5F13-A5C5-DF9C-41EE813A0833> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/bo ost_serialization
    0x6f31000 -  0x70d0fe7 +com.adobe.owl (AdobeOwl version 3.0.89 - 3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x713d000 -  0x71aafef +FileInfo (0) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x71c7000 -  0x7203ff7  com.apple.vmutils (4.2.1 - 108) <37A7D6A9-0BA7-39D9-A203-7123124A18B0> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x721d000 -  0x7220ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
    0x72f4000 -  0x72f5ffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xae48000 -  0xaeb8feb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xaec3000 -  0xaecbfff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xeefb000 -  0xeefbfff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 15.1.0 - 15.1.0) <F9296CCC-1877-5C99-BD0D-98FF353B385B> /Applications/DTP/*/Adobe Illustrator.app/Required/Resources/en_GB/PlugInRes.aip/Contents/MacOS/PlugInRes
    0xf100000 -  0xf1b0fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xf493000 -  0xf4b8ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0xf4cd000 -  0xf4d8fff  com.apple.CommerceCore (1.0 - 42) <D28DD970-4B69-3848-9BCC-3C67323B3D9C> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x12cbb000 - 0x12ce4fef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x1435c000 - 0x1435dff8  ATSHI.dylib (363.3) <62AF40CE-1110-31D5-931C-2B2AFB5C1A18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x15618000 - 0x157b3ff3 +aflamingo (1) <D6E6E61D-7B1C-AF96-2D36-36BAE4854116> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
    0x17640000 - 0x1764efff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x17652000 - 0x17664ffd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x40000000 - 0x400d1fe7 +AdobeJP2K (0) <EF392886-5A95-6A96-C95D-43DA0322925C> /Applications/DTP/*/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x50000000 - 0x502b2ff7  com.apple.AMDRadeonX3000GLDriver (1.24.38 - 1.2.4) <6B5F0EE8-EA77-3320-8DAF-B2B14BF30A7D> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
    0x8fe95000 - 0x8fec7417  dyld (239.4) <0F2176BD-4239-3506-BA41-3B885269520E> /usr/lib/dyld
    0x90008000 - 0x90057ff9  com.apple.HIServices (1.23 - 468) <E8F6C5CD-F96C-3E81-B8B4-2811BBAC222F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90058000 - 0x90064ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x900ba000 - 0x904b2ff3  com.apple.CoreGraphics (1.600.0 - 599.35.6) <49905820-F70F-3C80-8636-4C0FAD9C796E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x907e6ff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x907e7000 - 0x907ebff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x907ec000 - 0x907f0fff  com.apple.IOAccelerator (98.26 - 98.26) <C8656E7D-EB93-3AA9-836C-24D0839C1488> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x907f1000 - 0x907f2ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x907f3000 - 0x90a6cff2  com.apple.security (7.0 - 55471.14.27) <544AB73E-CDD3-3073-A00A-56476946C00A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90a6d000 - 0x90a79ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <D50773D6-A261-390E-B159-0C161EA7C457> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90a7a000 - 0x90a86ffc  libkxld.dylib (2422.115.10) <DAE45960-6190-3EEA-9068-84D4914365C9> /usr/lib/system/libkxld.dylib
    0x90a87000 - 0x90afafff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90afb000 - 0x90afbffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <9515158F-3A33-39CF-AD5A-201C2B121F33> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90b82000 - 0x90bbfff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x90bc0000 - 0x90bc1fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x90bc2000 - 0x90bdeff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x90bdf000 - 0x90be1ffb  libRadiance.dylib (1044) <6713977E-A33A-395A-9933-719F72DF1A98> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x90be2000 - 0x90c1afff  com.apple.LDAPFramework (2.4.28 - 194.5) <4399D209-B119-3ACC-97AF-F2E14DD207CB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90c1b000 - 0x90cb3ff7  com.apple.Metadata (10.7.0 - 800.29) <83F7725E-6827-399D-AF87-A4E7FF297702> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90cb4000 - 0x90e60fff  com.apple.QuartzCore (1.8 - 332.3) <1A14CA72-68A2-3970-BFF6-3D36339496FB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90e61000 - 0x90eb1ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x90eb2000 - 0x90f29ffb  com.apple.framework.IOKit (2.0.1 - 907.100.14) <EED051CC-1482-3426-9C1C-A3FFAF7E76F2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92654000 - 0x92680ff7  GLRendererFloat (9.6.1) <A95F9D0F-8D62-3CF9-9D37-7C1F39A204CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x92a00000 - 0x92a27fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92a28000 - 0x92a2cfff  libheimdal-asn1.dylib (323.92.2) <14134D3C-AC21-3047-AB78-7057C08732E4> /usr/lib/libheimdal-asn1.dylib
    0x92a5e000 - 0x92dd3ff9  com.apple.HIToolbox (2.1.1 - 698) <392738F0-322F-3C80-BEF7-138AFB124C35> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92e2a000 - 0x92e54fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x92e55000 - 0x92e58ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x92e59000 - 0x92e69ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x92e6a000 - 0x92e8eff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x92e8f000 - 0x92e90ffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x92e91000 - 0x92ea3fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x92eea000 - 0x92efaff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93469000 - 0x93554ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <79F56F62-902E-32A2-A747-C57CCE03E1AB> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9360a000 - 0x93613fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93614000 - 0x9361bffe  com.apple.agl (3.2.3 - AGL-3.2.3) <4E5074D1-FE90-3F06-BB35-039E2873594D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9361c000 - 0x93626ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A0D07BF7-31DF-3575-A02F-BEB90006DC74> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93627000 - 0x93658ff8  com.apple.GSS (4.0 - 2.0) <243CCC44-86E6-3987-9AFB-159E3196D337> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x93659000 - 0x9368affa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x9368b000 - 0x936dbfff  com.apple.opencl (2.3.59 - 2.3.59) <CE95AA26-7AE6-3692-8291-8268BBB976D1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x936dc000 - 0x936dcfff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x936dd000 - 0x93959fe7  com.apple.QuickTime (7.7.3 - 2826.24) <47052198-D890-3D54-80C6-953FE23AD04F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9395a000 - 0x9395fff3  libsystem_platform.dylib (24.90.1) <0613F163-9A7A-3908-B30B-AC1627503933> /usr/lib/system/libsystem_platform.dylib
    0x93960000 - 0x93c55ffc  com.apple.CoreImage (9.4.0) <33696A53-9E18-32D6-844F-28098DB7E426> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x93c56000 - 0x93c58ffe  libCVMSPluginSupport.dylib (9.6.1) <DCEA5FE5-AC05-3B1A-B87E-1FB8E0CAAFFF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x93c59000 - 0x93dafff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93db0000 - 0x93fb2fff  com.apple.CoreFoundation (6.9 - 855.17) <E382BBB6-4F41-3959-ADC7-238BE49A2155> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93fb3000 - 0x94096fff  libcrypto.0.9.8.dylib (52.8.1) <C920DC85-A8C1-3185-B860-DA9C10ABFA41> /usr/lib/libcrypto.0.9.8.dylib
    0x94097000 - 0x944cbff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x944cc000 - 0x947cdffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x947ce000 - 0x947cefff  com.apple.Carbon (154 - 157) <6C29C608-97B4-306E-AEC5-6F48EDF7EFB5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x947cf000 - 0x947d4ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x94b5f000 - 0x94b63ffa  libGIF.dylib (1044) <075D0A69-DEEC-3712-93F7-DC78FECCC0FF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94b78000 - 0x94d204af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x94d21000 - 0x94d39ffd  libdispatch.dylib (339.92.1) <7E7A88BF-74B3-363B-B534-6F757DF2DDE3> /usr/lib/system/libdispatch.dylib
    0x94e4e000 - 0x94e8eff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94e8f000 - 0x94e8ffff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94eb4000 - 0x94ebdfff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94ebe000 - 0x94ec5ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x94ec6000 - 0x94edeff7  libsystem_malloc.dylib (23.10.1) <CB52555E-0F5B-31E3-A42A-FD4F930E2192> /usr/lib/system/libsystem_malloc.dylib
    0x94edf000 - 0x94fa2ff1  com.apple.CoreText (367.20 - 367.20) <42445623-3BDD-3678-8B46-845C441B6251> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x94fa3000 - 0x9500efff  com.apple.Heimdal (4.0 - 2.0) <C74091A4-AAB4-36F9-98CE-C4D039C3DFD3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9500f000 - 0x9508fff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <53C9C33B-B000-37FD-8C8F-C86F29F058F0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95090000 - 0x95099fff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9509a000 - 0x9509afff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9509b000 - 0x950a5fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x950a6000 - 0x95cc4ff3  com.apple.AppKit (6.9 - 1265.21) <1D31697B-6F33-3239-BACE-5D1361B1F79A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95d1b000 - 0x95d77ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95d78000 - 0x95fdcff7  com.apple.CoreData (107 - 481.3) <8EB45FB9-CF78-36E1-919C-E976AE4C8146> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96001000 - 0x96001fff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x96002000 - 0x9603fffb  libGLImage.dylib (9.6.1) <E2DADD8A-8A60-3F39-840B-4B7FE7001384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96040000 - 0x96093fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96094000 - 0x960caff3  libssl.0.9.8.dylib (52.8.1) <86F2851F-238B-3FA1-923B-234F765BBF92> /usr/lib/libssl.0.9.8.dylib
    0x960ea000 - 0x960f4ff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <C4CC55E5-6CC4-307E-9499-AF89A6463AF4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x960f5000 - 0x96103fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x96104000 - 0x96134ff7  com.apple.CoreServicesInternal (184.9 - 184.9) <999FEDEC-7657-3F32-A9AE-F29E0BE0AAF5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x96135000 - 0x96139fff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96199000 - 0x9619eff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x961a1000 - 0x961a1fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x961a2000 - 0x962b4ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x962b5000 - 0x962bbff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x962bc000 - 0x962c3ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x962ca000 - 0x962deff9  com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <6DDC6828-879B-3F7F-9458-8F57713104B5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x962df000 - 0x962e7ff7  libCGCMS.A.dylib (599.35.6) <1509DE48-6EFF-32D2-9F60-007764E71866> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x9634f000 - 0x9638dff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9638e000 - 0x9645efef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9645f000 - 0x9646afff  libcsfde.dylib (380.70.2) <B3FC85EE-BBC2-3A20-9C45-C1ABDD063A63> /usr/lib/libcsfde.dylib
    0x9646b000 - 0x9646eff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9647a000 - 0x96485ffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x96486000 - 0x96489ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x96495000 - 0x96499ffc  com.apple.IOSurface (91.2 - 91.2) <98107456-8C9F-3914-998B-604CD492E6C7> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9649a000 - 0x964a5fff  libGPUSupportMercury.dylib (9.6.1) <46F4947C-1E01-376B-A2C5-6C8B89D543AF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0x964a6000 - 0x964aefee  libcldcpuengine.dylib (2.3.58) <22F420C2-B6DF-37EF-A023-D8E48D0A7747> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x964af000 - 0x964b2ffa  libCGXType.A.dylib (599.35.6) <1659F924-1373-32E8-812E-09446D48C69E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x964b3000 - 0x964c0fff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x9659c000 - 0x9670fffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <4248C0FE-F872-34AB-9402-0045D5CD0CC1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96710000 - 0x9676effd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9676f000 - 0x96772ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x96aea000 - 0x96b07ff4  libsystem_kernel.dylib (2422.115.10) <4EF375C4-8115-3D77-9493-F2D8472ADB66> /usr/lib/system/libsystem_kernel.dylib
    0x96b53000 - 0x96b53fff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96ba3000 - 0x96c04ff7  com.apple.Symbolication (1.4 - 129.0.2) <FB0121DF-F27B-39A3-92CA-B46981D322D5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x96c05000 - 0x96c30ff7  libsystem_network.dylib (241.4) <03BC404B-D0CB-3747-9CD5-B7A06A2ED0A9> /usr/lib/system/libsystem_network.dylib
    0x96c31000 - 0x96c79fff  com.apple.PerformanceAnalysis (1.47 - 47) <8041F84A-EC6F-3B5E-831E-87F6BCFB7073> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x96c7a000 - 0x96c7effc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x96c7f000 - 0x96c92fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96c93000 - 0x96c9bfff  libsystem_dnssd.dylib (522.92.1) <51965446-5C40-3172-9766-C5AE7FD4D62E> /usr/lib/system/libsystem_dnssd.dylib
    0x96c9c000 - 0x96cb6ff7  com.apple.GenerationalStorage (2.0 - 160.3) <D39634C9-93BF-3C74-828B-4809EF895DA0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x97046000 - 0x9704fff7  libsystem_notify.dylib (121.20.1) <4D3293AC-1CEF-347A-987F-2314AF3CC6EA> /usr/lib/system/libsystem_notify.dylib
    0x97050000 - 0x970beffb  libType1Scaler.dylib (112.1) <8DF02425-1C46-3B86-9E02-71F8D13FF3B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x978a6000 - 0x978caff7  libxpc.dylib (300.90.2) <5ACBBE2C-74EB-3E88-BCBF-C573095318A5> /usr/lib/system/libxpc.dylib
    0x978cb000 - 0x978f3fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x978fc000 - 0x97917ff6  libPng.dylib (1044) <D90105D1-B8AD-3649-A798-DA567D1C5B3A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97918000 - 0x97b92ff9  com.apple.RawCamera.bundle (5.06 - 753) <60F32380-A3E4-3908-9227-C85C674B7C66> /System/Library/CoreServices/RawCamera.bun

    Solved!  At last!
    I cannot say exactly which step was the key, so here are most of the steps I took.  Hopefully this helps someone.
    1. Took the steps in Invalid or incorrect Certificates including reboot.
    2. Took the steps in Edit your Keychain including reboot.
    3. Downloaded and manually reinstalled Security Update 2015-004.
    4. Repaired permissions and directories with Recovery reboot.
    5. Took the steps in Invalid or incorrect Certificates including reboot.
    6. Took the steps in Edit your Keychain including reboot.
    I've gone through some of these steps multiple times, just hoping it would work that time...
    Today -- when I went into Mail.app, it whined about the certs for me.com servers -- so I made *that* always trusted.  And this time, iTunes.app didn't complain about any certs!  And this time, Software Update.app didn't complain about any certs!  And it successfully applied the three-week delayed updates!
    So I'm hoping it's all done and done.  OMG, frustrating along the way!

  • Gateway can't access some SSL sites

    Hello,
    because our intranet has some websites which aren't under our
    control, they have no proper Certificates installed.
    Therefore, I have already set "gateway.trust_all_server_certs"
    in all gateway-instances, and
    "com.iplanet.am.jssproxy.trustAllServerCerts" in AMConfig.properties"
    to "true", but some sites are still not reachable and produces such
    messages in the gateway log:
    org.mozilla.jss.ssl.SSLSocketException: Failed to write to socket: (-8157) Certificate extension not found.
    As a workaround for some sites, I have activated the rewriter proxy
    which seems to be more tolerant about incorrect certificates.
    But I think there is something which should get fixed in the software.
    Regards,
    Juergen Maihoefner

    In my original post, not today's, I had said I was having the issues on the Mini, running OSX 10.6.8 and Safari v.5.1.5 for my bank's pill pay. I should have been more specific as to which machine and OSX Safari browser I'm having the T-Mobile problem with. My mistake.
    It is on both the MacMini and now the Air too. A moment ago, I was able to log in to my.t-mobile.com on the Air, but after putting into my Bookmarks folder, I can't do it anymore. The Log in button comes up greyed out instead of green.
    I'm also still having trouble with my bank's bill pay section on both computers too.
    I wonder if it's related to the saving of the log in info or putting in the Bookmark Folder?

Maybe you are looking for

  • How to create the pricing procedure for domestic & import.

    HI,     Pls any body let me know how to create the pricing procedure for domestic & import. what is the use of the keys step condiiton condition type from   to  manual required statistic   subtotal requirement caltype basetype. how system will work b

  • Sample code to connect LDAP server using jndi

    Hi, can any one help me with sample code to connect LDAP server using jndi, like i want to make use of Ldap server for serching Active directoty. Thanks in advance, Regards Muthu

  • My disk space isn't increasing?

    Hello, I seem to have a problem with my Macbook Pro 13-inch (Mid 2014) with Retina Display, I have 121 GB Flash Storage, and I have partitioned my disk into 2 parts, the first being my startup disk (70.72 GB) and the second, a secondary disk (49.62 G

  • Smartform output different

    Hello, I have some smartforms, the output is different in my two systems. In the developpement system everything is ok, when I go in the consolidation system ... the text is not align, the gray is not the same, the tabulation are sometimes different

  • Old Batch number is picking when GR with Purchase Order

    Hi All When I am doing the Goods Receipt with Puchase Order for the batch managed material Old Batch number is picking automatically, My system configuration for the batch number assignment is automatic.Can you help me why this is happening and what