RMI Server exits early when using SSL

Hi,
Maybe someone else has encountered this one.
My RMI server works fine when I use standard sockets. I create an instance and bind it into the rmiregistry. It then waits indefinitely for connections.
When I use SSL, I can create the object instance. I can also bind it into the registry. However, it only waits a few seconds and then exits.
No exception or error is thrown (I have a catch Throwable block on my main method to be sure of this.)
As my code is adapted from the RMI SSL 'Hello World' examples found on this site) I decided to compile and run those examples. I get the same problem.
Any ideas?
This is the relevant part of my code:
public static void main(String[] args)
    HelloImpl obj = null;     
    try
        // use -clear option to get standard sockets
        if (args.length > 0 && args[0].equals("-clear"))
            obj = new HelloImpl();                   
        else // otherwise default to SSL sockets
            RMIClientSocketFactory csf = new RMISSLClientSocketFactory();
            RMIServerSocketFactory ssf = new RMISSLServerSocketFactory();
            obj = new HelloImpl(csf,ssf);               
        Naming.rebind("HelloServer", obj);
        System.out.println("HelloServer listening for requests\n";
    catch (RemoteException ex)
        ex.printStackTrace();
    catch (MalformedURLException ex)
        ex.printStackTrace();
    catch (Throwable ex)
        ex.printStackTrace();

Thanks for taking an interest.
I just use:
c:\j2sdk1.4.1_02\bin\rmiregistry
to start the registry.
I think the problem is with my SSL sockets. I'm guessing the reason a UnicastRemoteObject is normally kept alive (not garbage collected) in the registry is because it has a ServerSocket which is waiting for connections.
In this case, I don't think the SSLServerSocket is getting created and so my UnicastRemoteObject gets garbage collected.
However, I'm not sure why exactly.

Similar Messages

  • RMI server exits after 10 minutes

    Hi
    I have a strange problem: The rmi server exits after about 15 minutes when using my own socket factories. The reason seems to be, that only daemon threads are left in the servers VM.
    If I add code like:
    while(true) {
    try {
    Thread.sleep(10000000);
    } catch(Exception e){}
    to the main method, the server continues to run as desired, the main thread is not a daemon thread.
    I checked the accept method of my factory, it runs in a daemon thread.
    Is there any configuration property to specify that the server should run forever?
    BTW: the server does not exit when using no own socket factories.

    No, I don't export manually. However, isn't that the job of the naming service?
    Calling export causes an "Object already exported" exception.
    Here is the complete working main code that starts the server (removing the endless loop will cause the server VM to terminate after about 15 minutes of inactivity):
    public static void main(String args[]) throws Exception
    TClientSocketFactory client = new TClientSocketFactory();
    TServerSocketFactory server = new TServerSocketFactory();
    client.setServiceName("authtest");
    server.setServiceName("authtest");
    AuthImpl obj = new AuthImpl(client, server);
    Naming.rebind(
    "//" + InetAddress.getLocalHost().getHostName() + "/AuthServer",
    obj
    while(true) {
    try {
    Thread.sleep(10000000);
    } catch(Exception e){}
    Cheers...Urs

  • Some RST are seen during TCP disconnection when using SSL connection

    Some RST are seen during TCP disconnection when using SSL connection
    It is expected that the disconnection sequence for a secure connection to be as follow:
    client ************************* server
    --- alert (warning, close notify) --->
    <--- alert (warning, close notify) ---
    in any order;
    and then:-
    --------------- FIN, ACK ------------>
    <----------- FIN, ACK ---------------
    ------------------ ACK ----------------->
    Instead of the sequence described above, the TCP connection for a secure connection is closed with an RST.
    For instance, Wireshark capture shows that an SSL+SASL TCP connection is closed in the following manner:
    client ************************** server
    --- alert (warning, close notify) ---->
    ---------------- FIN, ACK ------------>
    <--- alert (warning, close notify) ---
    <----------- FIN, ACK ---------------------
    ------------ RST -----------------> *(This RST message should be investigated, an ACK message was expected)*
    Server: OpenLDAP: slapd 2.4.23
    Client: (java version "1.6.0_16")
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.InitialLdapContext;
    import java.util.Hashtable;
    import javax.naming.ldap.InitialLdapContext;
    import javax.naming.ldap.StartTlsRequest;
    import javax.naming.ldap.StartTlsResponse;
    class Client {
    private static final String DEFAULT_INITIAL_CONTEXT_FACTORY = "com.sun.jndi.ldap.LdapCtxFactory";
    public static void main(String[] args) {
    //SSL
    try {
    System.setProperty("javax.net.ssl.keyStore", "c:\\\keystore");
    System.setProperty("javax.net.ssl.keyStorePassword", "adminadmin");
    System.setProperty("javax.net.ssl.trustStore","c:\\\keystore");
    System.setProperty("javax.net.ssl.trustStorePassword","adminadmin");
    // Set up environment for creating initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    // Must use the name of the server that is found in its certificate
    env.put(Context.PROVIDER_URL, "ldap://1.2.4.4:16415");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "cn=manager,dc=operator,dc=com");
    env.put(Context.SECURITY_CREDENTIALS, "password");
    env.put(Context.SECURITY_PROTOCOL, "ssl");
    // Create initial context
    InitialLdapContext ctx = new InitialLdapContext(env, null);
    // Close the context when we're done
    ctx.close();
    catch(Exception e)
    e.printStackTrace();
    Is it a bug ? Can I expect to have a patch for this issue?
    Regards,
    Olivier
    Edited by: 975464 on 6-Dec-2012 11:21 AM

    I agree it should be an ACK not an RST but it doesn't really matter. The connection is closed, and as neither the client nor the server has any pending data it is benign. Worth investigating in a later JRE.

  • Is server authentication mandatory for using SSL?

    Is server authentication mandatory for using SSL sockets, or is there a way around it?
    In other words, how can I take advantage of SSL sockets without dealing with any kind of certificates? Do I have any other options?

    Ok folks, I found my answer.Here�s the deal.
    Here are some helpful sites: I hope they will also help you understand this topic better and make your life little easier.
    //====================================
    http://www.onjava.com/pub/a/onjava/2001/05/03/java_security.html
    http://www-105.ibm.com/developerworks/education.nsf/java-onlinecourse-bytitle/96B42A25DD270CA886256BAA006351B4?OpenDocument
    http://www.ddj.com/documents/s=870/ddj0102a/rl1
    //====================================
    Neither Server nor Client authentication is mandatory. However, if you don�t use proper ciphersuite (that doesn�t require any authentication), the connection will die so to avoid this problem, you need to enable those ciphersuites manually. Read on.
    In most modes, SSL encrypts data being sent between client and server and also provides (optional) peer authentication.
    These kinds of protection are specified by a "cipher suite", which is a combination of cryptographic algorithms used by a given SSL connection. During the negotiation process, the two endpoints must agree on a ciphersuite that is available in both environments. If there is no such suite in common, no SSL connection can be established, and no data can be exchanged.
    The cipher suite used is established by a negotiation process called "handshaking".
    There are two groups of cipher suites which you will need to know about when managing cipher suites:
    �     Supported cipher suites: all the suites which are supported by the SSL implementation. This list is reported using getSupportedCipherSuites.
    �     Enabled cipher suites, which may be fewer than the full set of supported suites.
    This group is set using the setEnabledCipherSuites method, and queried using the getEnabledCipherSuites method. Initially, a default set of cipher suites will be enabled on a new socket that represents the minimum suggested configuration.
    Implementation defaults require that only cipher suites which authenticate servers and provide confidentiality be enabled by default. Only if both sides explicitly agree to unauthenticated and/or non-private (unencrypted) communications will such a ciphersuite be selected.
    When SSLSockets are first created, no handshaking is done so that applications may first set their communication preferences: what cipher suites to use, whether the socket should be in client or server mode, etc. However, security is always provided by the time that application data is sent over the connection.
    The suite is chosen based upon the credentials that each side possesses and suites that each side supports. For example, a server can�t support an RSA cipher suite unless it has an available RSA private key.
    The client and server must support at least one common cipher suite in order to communicate; if they both support multiple ciphers, the strongest available suite will be chosen.
    The strings are part of the SSL specification and are defined as:
    SSL_<key exchange algorithm>with<encryption algorithm>_<hash algorithm>
    When a number appears in the encryption algorithm, it refers to the key strength of the encryption: higher numbers are more secure.
    setEnabledCipherSuites(String[] suites) method controls which particular cipher suites are enabled for use on this connection.
    �     The cipher suites must have been listed by getSupportedCipherSuites() as being supported.
    �     Even if a suite has been enabled, it might never be used if no peer supports it, or the requisite certificates (and private keys) are not available.
    getSupportedProtocols(): Returns the names of the protocols which could be enabled for use on an SSL connection.
    setEnabledCipherSuites(String[] suites): Controls which particular cipher suites are enabled for use on this connection.
    Let me give you some code that will help you understand little better.
    One is Client.java for the client and the other one is Server.java for the server.
    Compile and run them in two separate consoles.
    ( By the way, I assume that you have properly installed JSSE on your system.)
    //===== Client.java: ===================================================
    import java.io.*;
    import java.net.*;
    import javax.net.ssl.*;
    public class Client
         public static void main(String[] args)
              (new Client()).doIt();
         }//end main
         private void doIt()
              int port = 3333;
              String host = "localhost";
    /*          String[] enable = {"SSL_DH_anon_WITH_RC4_128_MD5",
                        "SSL_DH_anon_WITH_DES_CBC_SHA",
                        "SSL_DH_anon_WITH_3DES_EDE_CBC_SHA",
                        "SSL_DH_anon_EXPORT_WITH_RC4_40_MD5",
                        "SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA"};
    */          try
              SSLSocketFactory sslFact =
              (SSLSocketFactory)SSLSocketFactory.getDefault();
              SSLSocket s =
              (SSLSocket)sslFact.createSocket(host, port);
                   //String[] suites;
                   //Get all the default CipherSuites
                   System.out.println("\n*** Default CipherSuites ***\n");
                   String [] defaultSuites=sslFact.getDefaultCipherSuites();
                   for(int i = 0; i<defaultSuites.length; i++)
                        System.out.println("["+i+"] Default CipherSuite ="+defaultSuites);
                   //Get all the supported CipherSuites
                   System.out.println("*** ================= ***");               
                   System.out.println("\n*** CipherSuites Enabled by default ***\n");
                   String [] enabledSuites=s.getEnabledCipherSuites();
                   for(int i = 0; i<enabledSuites.length; i++)
                        System.out.println("["+i+"] Enabled CipherSuite="+enabledSuites[i]);
                   System.out.println("*** ================= ***\n");
                   System.out.println("***\n Supported CipherSuites ***\n");
                   String [] supportedSuites=sslFact.getSupportedCipherSuites();
                   for(int i = 0; i<supportedSuites.length; i++)
                        System.out.println("["+i+"]Enabled Supported CipherSuite ="+supportedSuites[i]);
                   //Get all enabled CipherSuites
                   System.out.println("*** ================= ***\n");
                   System.out.println("\n*** Old and Newly enabled Anonymous CipherSuites ***\n");
                   //s.setEnabledCipherSuites(enable);
                   //Enable all supported CipherSuites
                   s.setEnabledCipherSuites(supportedSuites);
                   String [] suites=s.getEnabledCipherSuites();
                   for(int i = 0; i<suites.length; i++)
                        System.out.println("["+i+"] Newly enabled Anonymous CipherSuites="+suites[i]);
                   System.out.println("*** ================= ***\n");
                   System.out.println(" The strongest available CipherSuite is chosen by the System.");
                   System.out.println(" But it has to be enabled first, otherwise it ignores it. ");
                   System.out.println("Currently Selected CipherSuite = "+s.getSession().getCipherSuite()+"\n");
                   System.out.println("*** ================= ***");
                   // Send messages to the server through
              // the OutputStream
              // Receive messages from the server
              // through the InputStream
              OutputStream out = s.getOutputStream();
              InputStream in = s.getInputStream();
                   PrintWriter p = new PrintWriter(out);
                   p.println("Hi Buddy!");
                   p.println("Wanna have a beer?");
                   p.println("All right, let's have some.");
                   p.flush();
                   out.close();
         in.close();
         s.close();
              catch (IOException e)
                   System.out.println(""+e);
    }//end class
    //===== Here's Server.java ==============================================
    import java.io.*;
    import java.net.*;
    import javax.net.ssl.*;
    public class Server
         public static void main(String[] args)
              (new Server()).doIt();
         }//end main
         private void doIt()
              int port = 3333;
              SSLServerSocket ss;
              String[] enable = {"SSL_DH_anon_WITH_RC4_128_MD5",
                        "SSL_DH_anon_WITH_DES_CBC_SHA",
                        "SSL_DH_anon_WITH_3DES_EDE_CBC_SHA",
                        "SSL_DH_anon_EXPORT_WITH_RC4_40_MD5",
                        "SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA"};
              try
              SSLServerSocketFactory sslSrvFact =
              (SSLServerSocketFactory)
              SSLServerSocketFactory.getDefault();
                   //Get all the default CipherSuites
                   String [] suites=sslSrvFact.getDefaultCipherSuites();
                   for(int i = 0; i<suites.length; i++)
                        System.out.println(""+i+". DEFAULT CIPHER SUITE="+suites[i]);
                   suites=sslSrvFact.getSupportedCipherSuites();
                   for(int i = 0; i<suites.length; i++)
                        System.out.println(""+i+". SUPPORTED CIPHER SUITE="+suites[i]);
                   System.out.println("*** ================= ***");
              ss =(SSLServerSocket)sslSrvFact.createServerSocket(port);
                   suites=ss.getEnabledCipherSuites();
                   for(int i = 0; i<suites.length; i++)
                        System.out.println(""+i+". ENABLED CIPHER SUITE="+suites[i]);
                   ss.setEnabledCipherSuites(enable);
                   suites=ss.getEnabledCipherSuites();
                   for(int i = 0; i<suites.length; i++)
                        System.out.println(""+i+". NEW ENABLED CIPHER SUITE="+suites[i]);
                   System.out.println("*** ================= ***");
              SSLSocket c = (SSLSocket)ss.accept();
    //          ServerSocket ss = new ServerSocket(port);
    //          Socket c = ss.accept();
              OutputStream out = c.getOutputStream();
              InputStream in = c.getInputStream();
                   BufferedReader br = new BufferedReader(new InputStreamReader(in));
              // Send messages to the client through
              // the OutputStream
              // Receive messages from the client
              // through the InputStream
              while(true)
    //               int i = in.read();
                        String inputString = br.readLine();
                        if(inputString != null)
                        System.out.println(inputString);
                   else
                        out.close();
                        in.close();
                        c.close();
                   ss.close();
              catch (IOException e)
                   System.out.println(""+e);
    }//end class
    //========= Good Luck! ===================

  • Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

    Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

    Can anyone explain why my Dell laptop and my iphone can "see" a server in Luton when using a wireless broadband (I get 20 Mbps download speed) but my ipad can not see this server and finds one in Milton Keynes which gives me 0.37 download speed.

  • RMI server behind firewall--must use host as name, not IP

    Server is running behind a firewall, which runs such that any machine behind the firewall cannot use the external IP to get back to itself.
    That is:
    - outside IP = 192.171.20.5 (port forwards 1099 to 192.168.1.5:1099)
    - inside IP = 192.168.1.5 (rmi server listens on 1099)
    from the machine inside (192.168.1.5), it is IMPOSSIBLE to create a socket to [outside ip](192.171.20.5), port 1099, and expect it to get back to the machine inside--the firewall prohibits this.
    I -can- use name-based lookups, such that I can edit the hosts file on the inside box to route (myhost.com to 192.168.1.5). So, if everyone's DNS resolves myhost.com -> 192.171.20.5, then clients anywhere can go to myhost.com:1099 and will be redirected to my internal machine (192.168.1.5:1099).
    The problem with this is that the names get translated to IPs and sent back to the client.
    Is there a way to keep the names as names, so that both client (using external real-world DNS entries) and server (using local hosts file) can both resolve to the proper IP addresses?
    I'm starting server, as follows:
    java -Djava.rmi.server.codebase=http://myhost.com/rmi/ -Djava.security.policy=/policypath/policy -Djava.rmi.server.hostname=myhost.com mypkg.myclass
    The client connects and gets this message (from a connection exception):
    java.rmi.ConnectException: Connection refused to host: 192.168.1.5;

    Server is running behind a firewall, which runs such
    that any machine behind the firewall cannot use the
    external IP to get back to itself.I dont really understand this statement.. Machines behind the firewall referring to the external ip would be going to the gateway, not themselves.. Or do you have an internal AND external ip on the machines behind the firewall? Or are we referring to the gateway machine as an internal machine as well as external?
    That is:
    - outside IP = 192.171.20.5 (port forwards 1099 to
    192.168.1.5:1099)
    - inside IP = 192.168.1.5 (rmi server listens on
    1099)looks good, what kinda OS/firewall? If we're talking linux/ipchains (or iptables) with ip masquerading, I may be of some use to you...
    from the machine inside (192.168.1.5), it is
    IMPOSSIBLE to create a socket to [outside
    ip](192.171.20.5), port 1099, and expect it to get
    back to the machine inside--the firewall prohibits
    this.If you're on the internal network, why can't you just go for the internal ip addr? If I'm understanding correctly, you want internal dns requests for myhost.com to resolve to 192.168.1.5, and external dns requests to resolve to 192.171.20.5? That should't be a problem...
    I -can- use name-based lookups, such that I can edit
    the hosts file on the inside box to route (myhost.com
    to 192.168.1.5). So, if everyone's DNS resolves
    myhost.com -> 192.171.20.5, then clients anywhere can
    go to myhost.com:1099 and will be redirected to my
    internal machine (192.168.1.5:1099).the hosts file has nothing to do with routing, it's simply a dns-type thing... If your dns is giving external users a 192.168 address as the ip for myhost.com, they will never get to it. 192.168 is not routable on the internet, i think most inet routes will drop packets from 192.168.x.x or 10.x.x.x.
    Is there a way to keep the names as names, so that
    both client (using external real-world DNS entries)
    and server (using local hosts file) can both resolve
    to the proper IP addresses?As long as your dns is working correctly, java doesn't care if you use ips or host names.. Hostnames are preferable, so when you change your network around, you wont affect your rmi server.
    I'm starting server, as follows:
    java -Djava.rmi.server.codebase=http://myhost.com/rmi/
    -Djava.security.policy=/policypath/policy
    -Djava.rmi.server.hostname=myhost.com mypkg.myclass
    The client connects and gets this message (from a
    connection exception):
    java.rmi.ConnectException: Connection refused to host:
    192.168.1.5;Is your server compiled with the 192.171 ip? That's not gonna work, you have to use the same IP the server is running on. I'm still not clear on your network layout, is 192.171.20.5 and 192.168.1.5 the 2 gateway ip's, or is 192.168.1.5 a physically different machine? I'd be willing to bet that your server is compiled with the external address, and if that's not the same machine, then there's no chance of that working....
    There's more than port forwarding going on.. IIRC, java rmi keeps track of its own ip's.. A client request to an external ip will not connect to a server running on the internal ip, even if you forward the port, rmi itself doesn't recognize the internal as the ip it's trying to get to (even if it is true), so it bombs out.. This can happen if you run the rmi server on a gateway, and compile the server with the external ip, and try to connect to the internal ip.. If you want external machines to connect, you MUST run the server on an external ip.
    Give a little more info, we'll getcha running... I'm also assuming you have full control of your network (ie, firewall/dns)
    doug

  • Losing the session when when using SSL & HWLB & Sticky

    I have a fairly complicated setup:
    client -> HWLB-1 -> IIS -> HWLB-1 -> WLS
    HWLB: Hardware Load Balancer (Cisco CSS)
    * HWLB-1 and HWLB-1 are different devices (one in the DMZ one inside the intranet)
    IIS: IIS 5.0
    WLS: WebLogic Server 8.1
    The communication from client all the way to WLS is SSL. In addition the application uses sessions (cannot use session replication) so a sticky setting is required on the HWLB. The sticky setting at the HWLB is using the SSL Session ID.
    My understanding that in the above topology there are actually 2 SSL connections made, one between the client and IIS, and one between the proxy plugin residing on IIS and the WLS instance. If that understanding is correct there are in fact two SSL session IDs. So my question is what is the linkage that enforces the client to the same WLS instance. I am having a hard time seeing how it is possible as this is how I imagine the flow will work:
    1. Client opens an SSL connection to IIS
    2. When the connection is established a SSL Session ID is generated. The HWLB (HWLB-1, the on in the DMZ) stores the SSL Session ID and the IIS instance it communicated to so that subsequent requests with that SSL Session ID go to a particular IIS instance (sticky is successful here)
    3. IIS hands off the request to the proxy plugin. The proxy plugin is configured to use SSL. So the proxy plugin opens a separate SSL connection to the WLS instance. In the process it generates a new SSL Session ID which is used by the intranet HWLB to enforce sticky between IIS/proxy plugin and the WLS instance.
    So how are the 2 SSL Sessions linked (the one between the client and IIS, and the one between the proxy plugin and WLS)?

    I've dealt with this before. I'm not sure what appserver you're using, but weblogic allows you to speciy the session cookie name used by the web application. So each one of our apps have a different session cookie name (never the default JSESSIONID which would be shared). So in your situation, the app in the new window would be using a different session cookie so it would never overwrite the original window's cookie. I'd imagine most containers allow this type of configuration...just not sure. In weblogic, you defing the cookie name in the weblogic.xml file(deployed with each webapp). Here's what it looks like...
    <weblogic-web-app>
    <session-descriptor>
    <session-param>
    <param-name>CookieName</param-name>
    <param-value>MYAPPSCOOKIENAME</param-value>
    I'd also suggest that you completely leave the default (JSESSIONID) completely out of your cookie name. I've heard some containers use the indexOf function to find the cookie.... so MYAPPJSESSIONID and JSESSIONIDMYAPP might possibly be picked up. I'm not sure of this though, but was chatting with a co-worker who told me.

  • Why do I get a OWASP Proxy Server error even when using Safari?

    I first received this error when using the Mercury Browser app but switched over to Safari and still received this error. It appears to be resolved when I use wifi but not when I am using the cellular network. What could be the reason and is there a way to avoid this in the future?

    It appears that you have an upstream proxy set in your APN settings. I've no iOS experience, so can't tell you how to fix this, but hopefully this will give you some place to start searching.
    I suspect that you have installed some app that does traffic monitoring, See this thread: https://discussions.apple.com/thread/4458165?start=0&tstart=0

  • What happened to the lock icon when using SSL? Cannot easily determine SSL use without using sniffer.

    The SSL lock icon does not appear in new Firefox 4 during use of SSL. Why was it removed? Only method of determining successful SSL use is through the use of a sniffer and netstat. There is no obvious lock anywhere in the browser while using SSL
    ALSO.... STOP CHANGING THE ORDER OF THE OPEN NEW TAB/OPEN NEW WINDOW UNDER THE FILE->list.

    The "Site Identity button", which provides a lot more pertinent information about a web site, was introduced in Firefox 3, and was used along with the "Security Lock icon"; that "Lock icon" was finally removed from Firefox 4 versions. <br />
    https://support.mozilla.com/en-US/kb/Site+Identity+Button <br />
    http://www.dria.org/wordpress/archives/2008/05/06/635/ <br />
    This extension will add a "lock" in the S-I-B display.<br />
    https://addons.mozilla.org/en-US/firefox/addon/padlock-icon/

  • What to specfify in CA Reporting services integration (Report server web service URL) when using SSL for both SharePoint and SSRS?

    Hello,
    We are using Sharepoint 2010 and SQL Server reporting services 2008 R2.    We have the sharepoint site bound to port 443 using a certificate.   We also have the same certificate bound in the reporting services configuration manager's
    web service URL tab.    In CA should we put the SSL URL or the non SSL URL?    Right now in CA it has the then non SSL URL,
    http://fakehostname/ReportServer_REPORTSERVICE.     We have some sporadic issues and I am wondering if setting this to our SSL URL will help.    Please let me know
    if you have any questions.
    Thanks,
    Sean

    Hi,
    Regarding this issue, it should be no issue for setting (https) according :
    https://msdn.microsoft.com/en-us/library/bb630447.aspx
    https://msdn.microsoft.com/en-us/library/bb677369.aspx
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/0ada85b1-e2d2-44a8-8443-74eca74f5745/ssrs-cannot-connect-to-https-sharepoint-2010-401-unauthorized
    I notice you mentioned that you have some sporadic issues, what are these issue? If there are errors, please post the detailed information about the errors.
    What is the mode type of SQL Server Reporting Service, native mode or SharePoint mode?
    The screenshot of the web service URL:
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Got problem when using SSL connection when using my own web server

    hi all,
    I need to create a SSL connection to a website, i'm using Java 5 so i just append use the following code,
    System.setProperty("https.proxyHost","90.0.0.122");
              System.setProperty("https.proxyPort","3128");
              URL verisign = new URL("https://www.verisign.com");
              //URL verisign = new URL("https://localhost");       
              //URL verisign = new URL("https://90.0.0.30");
              BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                                  verisign.openStream()));
              String inputLine;
              while ((inputLine = in.readLine()) != null)
                   System.out.println(inputLine);
              in.close();
         }Here when i run the program with arg https://www.verisign.com it works fine, when i replace it with https://locahost it shows the follwing error
    Exception in thread "main" java.io.IOException: HTTPS hostname wrong:  should be <localhost>
         at sun.net.www.protocol.https.HttpsClient.checkURLSpoofing(HttpsClient.java:493)
         at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:418)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:170)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:913)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
         at java.net.URL.openStream(URL.java:1007)
         at URLReader.main(URLReader.java:93)i dono why this happening any can pls help me out to solve the problem

    HI all ,
    I find a solution from the post
    http://forum.java.sun.com/thread.jspa?threadID=521779&start=0
    Thanks

  • IAS does not start when using SSL

    Hello all,
    I hope I hit the correct board for this question and search did find anything useful for my Problem.
    We have a couple of Oracle Databases which are using IAS to serve a PL/SQL and Perl based WepApp. The Databases are 10g (10.2.0.3), and the Servers are running Novell SLES 9 x86_64 (SP 3). We need https on these Machines, so I configured the Server for SSL, created a Certificate using Wallet Manager and so on, exactly as described in the Documentation.
    However when I try to start the HTTP Server with "ssl-enabled" in opmn.xml to enable SSL it does not start any more. It simply cannot load the "mod_ossl.so" Library:
    Logfile says:
    /opt/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl startssl: execing httpd
    Syntax error on line 246 of /opt/oracle/product/10.2.0/http_1/Apache/Apache/conf/httpd.conf:
    Cannot load /opt/oracle/product/10.2.0/http_1/Apache/Apache/libexec/mod_ossl.so into server: /opt/oracle/product/10.2.0/http_1/Apache/Apache/libexec/mod_ossl.
    so: undefined symbol: dbm_firstkey
    I have googled and searched Metalink but did not find anything useful. I assume that "dbm_firstkey" refers to the GNU database routines (gdbm), but I am kinda stuck right now. Has anyone stumped upon this maybe?
    Kind Regards
    Maik

    Two issues:
    - this does not look like OracleAS, but like the HTTP Server from the database;
    - you seem to be loading a 32 bit process (apache/httpd) into a 64 bit shell.
    try starting it within 'linux32 bash' instead.

  • Using WLS 8.1 as a Reverse Proxy Server as well as using SSL

    Hi,
    We have WebLogic server 8.1 installed and set-up as a Reverse Proxy Server. We would like it to serve pages over a secure internet connection (one way).
    I have imported the SSL certificate which I received from Thawte. I have also configured the identity and Trust keystores for the server.
    However, I am still unable to access the server over a secure connection.
    I have logged into WebLogic Console and unticked Listen Port Enabled Port: 80; and ticked SSL Port Enabled and changed it to listen on Port:80? However, all this will mean is all our url's will need to preceded by 'https' I would prefer us to be able to still use 'http' which when requested redirects to 'https'
    Not having been on any WebLogic courses, I am new to this and would appreciate any help or step by step guides people have.
    Many Thanks,
    Karl

    Hi Raphael Chasse,
    The LoadBalancer plugin can be used as a reverse proxy.
    you could configure the loadbalancer.xml as below, where requests for app1 get redirected to server1 and app2 to server2.
    <loadbalancer>
    <cluster name="cluster1">
    <instance disable-timeout-in-minutes="30" enabled="true" listeners="http://server1 name="i1"/>
    <web-module context-root="/app1" disable-timeout-in-minutes="30" enabled="true"/>
    <health-checker interval-in-seconds="1" timeout-in-seconds="60" url="/"/>
    </cluster>
    <cluster name="cluster2">
    <instance disable-timeout-in-minutes="30" enabled="true" listeners="http://server2 name="i2"/>
    <web-module context-root="/app2" disable-timeout-in-minutes="30" enabled="true"/>
    <health-checker interval-in-seconds="1" timeout-in-seconds="60" url="/"/>
    </cluster>
    </loadbalancer>
    This link talks more about the loadbalancer.xml file format http://docs.sun.com/source/817-5445/aglbdtd.html.
    cheers
    Vishwas

  • IPhoto crashes on exit and when using iPhoto Library Manager

    Hi all,
    When attempting to split up my 70,000 iPhoto library using iPhoto Library Manager, the application crashes when attempting to import the photos to a new iPhoto library. This is when it is trying to make iPhoto quit during the import process.
    Similarly, iPhoto (under normal use) crashes when attempting to close (or quit) as you normally do. It just freezes and then eventually comes up with an error/crash message showing close, ignore or reopen dialogue box.
    Yes I know I have a huge library of 70,000 images and I did do the built-in iPhoto maintenance proceedures (which sped things up when opening the library after startup and general operations I must say) but it still crashes when trying to exit.
    I guess it has something to do with the size of the library, but unless I can get software to split into smaller libraries, I don't know what else I can do.
    Any suggestions?
    Thanks in advance...

    Forgot to paste this message I get after it finally shuts down/crashes:
    Process: iPhoto [42328]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 8.1.1 (8.1.1)
    Build Info: iPhotoProject-4190000~4
    Code Type: X86 (Native)
    Parent Process: launchd [129]
    Date/Time: 2010-02-08 14:03:26.174 +1100
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 665426 sec
    Crashes Since Last Report: 31
    Per-App Interval Since Last Report: 89913 sec
    Per-App Crashes Since Last Report: 3
    Anonymous UUID: 1FE4458F-E4A7-4246-9B10-9429BF4BC913
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFoundation 0x98075413 CFQSortArray + 259
    1 com.apple.CoreFoundation 0x980887ec __CFRunLoopDoObservers + 1020
    2 com.apple.CoreFoundation 0x9804518d __CFRunLoopRun + 557
    3 com.apple.CoreFoundation 0x98044864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98044691 CFRunLoopRunInMode + 97
    5 com.apple.iPhoto 0x00218701 0x1000 + 2193153
    6 com.apple.iPhoto 0x00067bc1 0x1000 + 420801
    7 com.apple.Foundation 0x9004c1c7 nsnotecallback + 176
    8 com.apple.CoreFoundation 0x980639a9 __CFXNotificationPost + 905
    9 com.apple.CoreFoundation 0x980633da _CFXNotificationPostNotification + 186
    10 com.apple.Foundation 0x90041094 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    11 com.apple.Foundation 0x9004e471 -[NSNotificationCenter postNotificationName:object:] + 56
    12 com.apple.AppKit 0x98f5aeab -[NSApplication terminate:] + 713
    13 com.apple.AppKit 0x98d60f86 -[NSApplication sendAction:to:from:] + 112
    14 com.apple.AppKit 0x98d60e39 -[NSMenuItem _corePerformAction] + 435
    15 com.apple.AppKit 0x98d60b2a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    16 com.apple.AppKit 0x98d60a16 -[NSMenu performActionForItemAtIndex:] + 65
    17 com.apple.AppKit 0x98d609c9 -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    18 com.apple.AppKit 0x98d6092f -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    19 com.apple.AppKit 0x98d60873 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    20 com.apple.AppKit 0x98d54f79 NSSLMMenuEventHandler + 404
    21 com.apple.HIToolbox 0x94002e29 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    22 com.apple.HIToolbox 0x940020f0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    23 com.apple.HIToolbox 0x94024981 SendEventToEventTarget + 52
    24 com.apple.HIToolbox 0x94050e3b SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    25 com.apple.HIToolbox 0x94075b20 SendMenuCommandWithContextAndModifiers + 66
    26 com.apple.HIToolbox 0x94075ad7 SendMenuItemSelectedEvent + 121
    27 com.apple.HIToolbox 0x940759d3 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    28 com.apple.HIToolbox 0x94045212 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 440
    29 com.apple.HIToolbox 0x940449a9 _HandleMenuSelection2 + 465
    30 com.apple.HIToolbox 0x940447c7 _HandleMenuSelection + 53
    31 com.apple.AppKit 0x98d4e4ba _NSHandleCarbonMenuEvent + 285
    32 com.apple.AppKit 0x98d23076 _DPSNextEvent + 2304
    33 com.apple.AppKit 0x98d22306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    34 com.apple.AppKit 0x98ce449f -[NSApplication run] + 821
    35 com.apple.AppKit 0x98cdc535 NSApplicationMain + 574
    36 com.apple.iPhoto 0x00123ac8 0x1000 + 1190600
    37 com.apple.iPhoto 0x000030ea 0x1000 + 8426
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x92b830ea kevent + 10
    1 libSystem.B.dylib 0x92b83804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x92b82cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x92b82a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x92b824f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92b82336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x92b5c93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92b8a445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92bb9028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90088a84 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x900417f5 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x900416d8 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6a201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f58363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    9 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    11 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x92b5c93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x92b8a445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92bb9028 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90088a84 -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x900417f5 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x900416d8 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x00f6a201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x00f58363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    9 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    10 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    11 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92b5c8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92b5d047 mach_msg + 68
    2 com.apple.CoreFoundation 0x9804577f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x98044864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98044691 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x9008637c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6 com.apple.proxtcore 0x00f598a5 -[XTRunLoopThread run:] + 421
    7 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    8 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    9 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    10 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x005056c9 0x1000 + 5261001
    4 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 6: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x929a7276 ***::TCMalloc_PageHeap::scavengerThread() + 614
    4 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92b82182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92b82718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92b82336 start_wqthread + 30
    Thread 8:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x90074aef -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x005112b2 0x1000 + 5309106
    5 com.apple.iPhoto 0x00510ad0 0x1000 + 5307088
    6 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.Foundation 0x90074aef -[NSCondition wait] + 316
    4 com.apple.iPhoto 0x005112b2 0x1000 + 5309106
    5 com.apple.iPhoto 0x00510ad0 0x1000 + 5307088
    6 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x92b7b856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x98084ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    3 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92bb6441 nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x92bb637f usleep$UNIX2003 + 61
    3 com.apple.AE 0x93563e33 sendToModernProcess(__CFMachPort*, unsigned long, AEDesc const*, long) + 644
    4 com.apple.AE 0x93560f00 AESendMessage + 3635
    5 com.apple.ImageCapture 0x91d5c234 ICAAESendMessage + 57
    6 com.apple.ImageCapture 0x91d5213a ICACommand::SendSync() + 72
    7 com.apple.ImageCapture 0x91d51c94 ICACommand::ProcessCommand() + 76
    8 com.apple.ImageCapture 0x91d549de ICAGetDeviceList + 83
    9 com.apple.iPhoto 0x001012ad 0x1000 + 1049261
    10 com.apple.iPhoto 0x00101250 0x1000 + 1049168
    11 com.apple.iPhoto 0x0010133f 0x1000 + 1049407
    12 com.apple.iPhoto 0x00100f46 0x1000 + 1048390
    13 com.apple.iPhoto 0x000a9f9e 0x1000 + 692126
    14 com.apple.iPhoto 0x002181df 0x1000 + 2191839
    15 com.apple.iPhoto 0x0021852e 0x1000 + 2192686
    16 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    17 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    18 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    19 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x92b5c8da machmsgtrap + 10
    1 libSystem.B.dylib 0x92b5d047 mach_msg + 68
    2 com.apple.CoreFoundation 0x9804577f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x98044864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x98044691 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x90085430 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    9 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x92b8a806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x92b8a4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x92b8c158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iPhoto 0x005056c9 0x1000 + 5261001
    4 com.apple.Foundation 0x9004c8d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x9004c888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x92b89fbd pthreadstart + 345
    7 libSystem.B.dylib 0x92b89e42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffcfc040 ebx: 0xffcfc040 ecx: 0xa04064cc edx: 0x00000000
    edi: 0x00000004 esi: 0x00000000 ebp: 0xbfffdb88 esp: 0xbfffdb20
    ss: 0x0000001f efl: 0x00010246 eip: 0x98075413 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x9f9ffe com.apple.iPhoto 8.1.1 (8.1.1) <13A7B173-F1BC-6A25-54AC-C27E27774B17> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0xb2f000 - 0xb5aff3 com.apple.DiscRecordingUI 5.0.3 (5030.4.2) <E7AD526D-2149-065C-BA8D-2DA22BE43926> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0xb72000 - 0xc27fe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0xc6d000 - 0xc77fff com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0xc81000 - 0xd1dffc com.apple.MobileMe 8 (1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0xd7f000 - 0xd7ffff +eOkaoCom.dylib ??? (???) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0xd83000 - 0xdb6fe7 +eOkaoDt.dylib ??? (???) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0xdbc000 - 0xf22fff +eOkaoFr.dylib ??? (???) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0xf26000 - 0xf4aff2 +eOkaoPt.dylib ??? (???) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0xf51000 - 0xf98ff7 com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0xfdc000 - 0xfdcffa com.apple.iLifeSlideshow 1.0.3 (357.8) <3972FD15-5FDC-A7DC-3144-255D352A00CE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0xfe0000 - 0x1060fef com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x10c2000 - 0x10c2ff7 com.apple.AppleAppSupport 1.5 (1.5) <9FD82212-62A9-A388-940B-2343D69889C3> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x10c6000 - 0x10eefff com.apple.iLifeSlideshowCore 1.0.3 (126) <CB45910E-F1F3-0278-4D76-E995EF03DA9D> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x1108000 - 0x1221fe7 com.apple.iLifeSlideshowProducer 1.0.3 (319.5) <CE73BB90-E7AB-525D-CD4A-1576DFC6EF76> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x129f000 - 0x139dfe3 com.apple.iLifeSlideshowRenderer 1.0.3 (313.7) <EFAD06D8-111E-15C5-6105-5C878AAF3086> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x140e000 - 0x1416fff com.apple.iLifeSlideshowExporter 1.0.3 (125.2) <EE2C7A8E-68A2-5F60-72D8-FE45C5EB5B52> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x141f000 - 0x1448fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1459000 - 0x1461fe7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x146d000 - 0x1470fff com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x17b2000 - 0x17b4ff3 com.apple.LiveType.component 2.1.4 (2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17ba000 - 0x17bdff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x17c2000 - 0x17c4ff7 Motion ??? (???) <CB022D7E-217B-EF89-4974-72C50834B41D> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x3759000 - 0x37bdfe2 com.apple.LiveType.framework 2.1.4 (2.1.4) <19C0FA03-FC58-CCFE-395D-DD4125A0B811> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0x37dd000 - 0x3832fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3860000 - 0x38a6ffb com.apple.motion.component 1.0 (698) <BB552040-6F80-5207-E007-BB94A59D748D> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x38ac000 - 0x3948ff8 com.apple.procore.framework 4.0 (712) <09EE33B4-412C-FC25-5356-1DE47695BAA6> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0x13a08000 - 0x13a0cfff com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x15c04000 - 0x15c14ff3 com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x174fa000 - 0x1750ffff com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1751c000 - 0x1754dff7 com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x182e4000 - 0x182e5ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1ffa0000 - 0x1ffabfff com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x1ffb5000 - 0x1ffbffff com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x1ffc9000 - 0x1ffd3fff com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x1ffdd000 - 0x1ffe8fff com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x1fff7000 - 0x1fff8ff7 com.apple.iLMBAppDefPlugin 2.1.3 (110.0.3) <ABA956B7-9BE5-01F3-C2B5-23591F943F78> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x20de3000 - 0x20deaff7 com.apple.iLMBAperturePlugin 2.1.3 (110.0.3) <821580C6-A859-AA53-5C85-19F39BB4B747> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x20df1000 - 0x20df2ff7 com.apple.iLMBFolderPlugin 2.1.3 (110.0.3) <3DAB4296-DF87-5510-5FBF-9B615B77A544> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x20df7000 - 0x20df9ff7 com.apple.iLMBMoviesFolderPlugin 2.1.3 (110.0.3) <FF3F0BCB-09A6-E51E-FFB6-BA2EDF29E130> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x20fe1000 - 0x20fe5ff7 com.apple.iLMBGarageBandPlugin 2.1.3 (110.0.3) <69F15960-9D4D-E931-40BC-9A706D40197E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x20feb000 - 0x20ff7ff7 com.apple.iLMBiMoviePlugin 2.1.3 (110.0.3) <CA6345FC-F811-EA46-D48A-35DE3499829B> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x213e8000 - 0x213f1ff7 com.apple.iLMBiPhotoPlugin 2.1.3 (110.0.3) <D1CD69A8-CFCA-3B00-C977-CC40C2B97766> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x213f8000 - 0x213faff7 com.apple.iLMBPhotoBoothPlugin 2.1.3 (110.0.3) <6B6DBBD0-BA2C-A4F7-69C5-C4249E1B7FE2> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x218e1000 - 0x218f2ffb com.apple.iLMBiPhoto8Plugin 2.1.3 (110.0.3) <7C16F545-E264-D0C6-47DE-11006AEF2D51> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x220f1000 - 0x220f9ff7 com.apple.iLMBiTunesPlugin 2.1.3 (110.0.3) <5B4BE0C1-0B25-43E7-B5DB-9A8C7C6BF2CE> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x24f00000 - 0x24fc8fe3 com.apple.iTunesAccess 9.0.2 (9.0.2) <BE683D34-0A0C-4153-FF5E-21CBBBFDD447> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8fe00000 - 0x8fe41627 dyld 132.1 (???) <7E8A62A5-BB2D-C9C5-940D-B493DC9CD231> /usr/lib/dyld
    0x90003000 - 0x9000aff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6FEFF0CE-312D-43A7-D0CF-36F67724C46D> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90036000 - 0x902a6ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x902a7000 - 0x902aafe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x902ab000 - 0x902effe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x902f0000 - 0x9039dfe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9039e000 - 0x903aeff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x903af000 - 0x90716ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9074a000 - 0x9084bfe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9092b000 - 0x90935ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90936000 - 0x90c2fff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90c30000 - 0x90c30ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90c31000 - 0x90c65ff7 libssl.0.9.8.dylib ??? (???) <679919E5-BF54-0A06-6CB4-27EB2B60AF87> /usr/lib/libssl.0.9.8.dylib
    0x90c7a000 - 0x90cbcfe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90d6c000 - 0x90d71ff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x90d72000 - 0x90f33ff7 com.apple.CalendarStore 4.0.1 (973) <E959BD58-B4FF-CD3B-78A0-F260851145E5> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x90f34000 - 0x90f81ff7 com.apple.ExchangeWebServices 1.1 (56) <E9538DF4-F348-51B8-C161-4F5AB983CDDC> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x90f82000 - 0x90fcbfe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90fcc000 - 0x9100bff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9100c000 - 0x9100fff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91010000 - 0x91021ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91022000 - 0x91046ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91058000 - 0x910d1ff7 com.apple.PDFKit 2.5 (2.5) <C1BC4E0C-E45B-A03E-69D3-DB7F85E9D23D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x910d2000 - 0x910d2ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x910d3000 - 0x910dcff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x910dd000 - 0x911cfff7 libcrypto.0.9.8.dylib ??? (???) <3B76DFFA-32E3-2F12-07DA-B5B02B781886> /usr/lib/libcrypto.0.9.8.dylib
    0x911dd000 - 0x91612ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91613000 - 0x91a29ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91a2a000 - 0x91b0eff7 com.apple.WebKit 6531.21 (6531.21.8) <0C45DB5C-D81F-BFFE-232D-7E6F647E597F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91b0f000 - 0x91b2ffe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x91b30000 - 0x91b4dfe7 com.apple.DotMacSyncManager 2.0.1 (446.3) <BD225ADB-29C9-B507-210D-2CFC53459EBD> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x91b4e000 - 0x91c5bff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x91c5c000 - 0x91ca2ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x91ca4000 - 0x91ca4ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91ca5000 - 0x91cdcff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91cdd000 - 0x91d4dff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91d4e000 - 0x91d63fff com.apple.ImageCapture 6.0 (6.0) <0E86F45E-E656-9015-7AD4-A2C5F8D8A2FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91d64000 - 0x91e3eff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91ebb000 - 0x91ef8ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91ef9000 - 0x9207bfe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x9207c000 - 0x920b1ff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x920b2000 - 0x923d1fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x923d2000 - 0x9249cfef com.apple.CoreServices.OSServices 352 (352) <554C9C81-3F9D-8BD3-F611-CE1C47A55E7B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9249d000 - 0x924adff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x924b3000 - 0x924b4ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x924b5000 - 0x92505fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92506000 - 0x92510fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92511000 - 0x9251eff7 libbz2.1.0.dylib ??? (???) <B955B937-D9EF-D5AD-9770-7F83B3FA91DC> /usr/lib/libbz2.1.0.dylib
    0x9251f000 - 0x9264dfe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9264e000 - 0x9266afe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x926a0000 - 0x926caff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x926cb000 - 0x92721ff7 com.apple.MeshKitRuntime 1.0 (49.0) <20DE8687-2A2B-62E2-1AD5-D1D54A3A7F76> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9275a000 - 0x9276fff7 com.apple.iChat.InstantMessage 5.0.1 (744) <F43695A6-A089-A00D-C6D8-6E22DF14E9F0> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x92789000 - 0x927d1fff com.apple.iCalendar 1.0.1 (51) <3FF8D7DB-CA31-ADC2-23E9-E1254EAF8BB2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x927d2000 - 0x92840ff7 com.apple.ISSupport 1.9.2 (50) <A9BDA884-D0AF-9F39-0840-8B7F5E8E2031> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92885000 - 0x92a22fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92a45000 - 0x92b5bfe3 com.apple.PubSub 1.0.4 (65.11) <7F349A71-C4E6-E645-B28D-03A7DD120AA6> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92b5c000 - 0x92d00feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x92d01000 - 0x92d36ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92d57000 - 0x92e06ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92e07000 - 0x92fc3fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92fc4000 - 0x93005ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93038000 - 0x9303cff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9303d000 - 0x93051fe7 libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x93052000 - 0x930d4ffb SecurityFoundation ??? (???) <9714B2B7-854E-834D-FEEC-07F85E10D557> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x930d5000 - 0x93115ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93116000 - 0x9318dfe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93190000 - 0x9319bff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9319c000 - 0x931a2ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x931a3000 - 0x932cffe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x932d0000 - 0x932d0ff7 com.apple.Carbon 150 (152) <BC5384B0-DFFE-6BED-1FD6-ECAD2902DBA7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x932d1000 - 0x932e3ff7 com.apple.syncservices.syncservicesui 5.1 (578) <9C72B435-21F3-DD39-A129-DB503258FE94> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x932e4000 - 0x93358fef com.apple.CoreSymbolication 2.0 (23) <8C63D09A-6DF5-082A-553B-3E7610604C5D> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x93360000 - 0x93431fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9343c000 - 0x93478fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93479000 - 0x934f9feb com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x934fa000 - 0x93507ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x93508000 - 0x93558ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93559000 - 0x9358cff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93590000 - 0x935caffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x935cb000 - 0x937cbfeb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x937cc000 - 0x9383dff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <4A9CBD16-1CD6-0528-8BA4-736175E6B0E7> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9383e000 - 0x93865ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93866000 - 0x938d0fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x938d1000 - 0x938d4ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9391c000 - 0x93923ff7 com.apple.KerberosHelper 2.1 (1.0) <2E28DB03-60AF-1C7B-28B0-2768DFBF44EB> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x93924000 - 0x93929ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9392a000 - 0x939a4fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93aad000 - 0x93bd1ff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x93bd2000 - 0x93dfdff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93dfe000 - 0x93e1efe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93e1f000 - 0x93ffaff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x93ffb000 - 0x9431efef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94338000 - 0x9434aff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9434b000 - 0x94386fe7 com.apple.DebugSymbols 1.1 (70) <1D0447CB-C221-A112-AA68-372951672A3D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x94387000 - 0x94835fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94836000 - 0x950194b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9503c000 - 0x9507aff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9507b000 - 0x9507cff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9507d000 - 0x9600bff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96166000 - 0x962a5fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x962a6000 - 0x96343fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96344000 - 0x963ecffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x963ed000 - 0x96445fe7 com.apple.datadetectorscore 2.0 (80.7) <D1644549-DBF1-A2DA-55A4-D3AFD5F8315A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96446000 - 0x96450ff7 com.apple.CrashReporterSupport 10.6.2 (239) <746DBA09-A901-E5FE-8605-F5EC3D9359FF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96451000 - 0x96454ffb com.apple.help 1.3.1 (41) <EF92C648-2085-C085-8EA7-A1AF37AE94F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96455000 - 0x964e6fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x964e7000 - 0x964edff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x964ee000 - 0x967e7fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x967e8000 - 0x97012fe7 com.apple.WebCore 6531.21 (6531.21.8) <60DEC7F3-954D-F4C4-360A-13575EDCC40A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97013000 - 0x9706dff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9706e000 - 0x9707bff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9707c000 - 0x970b2fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x970b3000 - 0x970e4ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x970e5000 - 0x97115ff7 com.apple.MeshKit 1.0 (49.0) <2F5D1A91-ACC8-C2F8-C242-CBBB6781AE05> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x97116000 - 0x97117ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97118000 - 0x9715cff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9715d000 - 0x97167ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97168000 - 0x971a8fe7 com.apple.DAVKit 4.0.1 (730) <2F07D7D0-9D31-67BC-8000-FAFF7EBB8643> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x971a9000 - 0x9740bff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9740c000 - 0x974b3fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x974b4000 - 0x974f4fe7 com.apple.IMCore 5.0.1 (744) <FF33F67F-9B91-1093-9BD0-0EEABFEBEBB4> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x975ea000 - 0x975feffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x975ff000 - 0x97601ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97602000 - 0x976b0ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x976b1000 - 0x97711fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97712000 - 0x9772aff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9772b000 - 0x9790dfff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x97927000 - 0x97995ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x97996000 - 0x979a2ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x979a3000 - 0x97a7eff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97a7f000 - 0x97bc0ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x97bc1000 - 0x97bc8ff7 com.apple.NSServerNotificationCenter 2 (1.0) <63EAE599-362C-CD27-CC18-1F211C12B8B8> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x97bc9000 - 0x97cbfff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97cc0000 - 0x97d03ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x97d04000 - 0x97d3cff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97d3d000 - 0x97d47ff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x97d48000 - 0x97d4afe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x97d4b000 - 0x97d71fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97d72000 - 0x97e2bfe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x97e2c000 - 0x97e2cff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97e2d000 - 0x97e9bff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <01471458-86B0-EFF3-1037-B5610E9B19DA> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x97e9c000 - 0x97ef6fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97ef7000 - 0x97ef7ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97ef8000 - 0x97fd5ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97fd6000 - 0x97ff8fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97ff9000 - 0x98003ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x98004000 - 0x98008ff7 IOSurface ??? (???) <B841647D-BC91-494A-8CF9-AA1F351B2065> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x98009000 - 0x98180fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9822a000 - 0x982d9fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x982da000 - 0x9838dfff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9838e000 - 0x98395fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x98396000 - 0x983faffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98425000 - 0x98476ff7 com.apple.HIServices 1.8.0 (???) <4EACE6E4-6E8B-5787-F36A-7958BB885629> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98477000 - 0x98479ff7 com.apple.securityhi 4.0 (36638) <28F1F6FF-E7B3-A1C4-C2F4-3FDD18BC4CD4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9847a000 - 0x98512fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x98513000 - 0x98521fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x98522000 - 0x98572ff7 com.apple.Symbolication 1.1 (67) <A173E87D-4F8D-C1F1-891C-48981656F84C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98573000 - 0x985acfe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x98617000 - 0x9861dfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9861e000 - 0x9863cff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9863d000 - 0x9864aff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9864b000 - 0x98666ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x98667000 - 0x9868fff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x98690000 - 0x98690ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98691000 - 0x98700ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98701000 - 0x989f5fe7 com.apple.MessageFramework 4.2 (1077) <47B00FD8-26E6-6AF4-1FFE-6B42DB3415A1> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x989f6000 - 0x98a43feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <52906E26-3D22-6F37-8C90-E50BBCDEA5D0> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x98a44000 - 0x98b46fef com.apple.MeshKitIO 1.0 (49.0) <B14C5987-EF67-0D1A-2B20-88922836D908> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x98b65000 - 0x98b8bfe3 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <EB422111-E732-2AE0-0CFD-1D8B713B2EC9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x98bd3000 - 0x98bd3ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98bd4000 - 0x98bd4ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98be5000 - 0x98c81fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98c82000 - 0x98c89ff7 com.apple.iChat.IMUtils 5.0.1 (744) <59F22006-D2AB-9D9F-E59C-BAC3AC073ED3> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x98c8a000 - 0x98ca8ff7 com.apple.iChat.IMFoundation 5.0.1 (744) <2B2A73FF-2178-45AD-518C-C79CBEA73290> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x98ca9000 - 0x98cadff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98cda000 - 0x995b8ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib

  • Speed between server and client when using FML

    I using FML between server and client, the server access oracle using only 5 ms, but when tranfer back to client, it about 100ms long. I tuned my hp-ux 11 kernel and tuxedo config file, but useless, Why?

    Hi Tumecan,
    Your expected information available here, check.
    Frontend Network Load - Network Integration Guide (BC-NET) - SAP Library
    few related SAP Notes:
    164102 - Network load between application server and front end
    500235 - Network Diagnosis with NIPING
    62418 - Network Load of SAPGUI Frontend Communication
    679918 - The front-end network time
    578118 - Long response times on the SAP GUI
    161053 - Using SAP GUI in WAN
    Regards,
    V Srinivasan

Maybe you are looking for

  • IPod Nano sound problem with bass

    Hello, I bought an iPod Nano 4Go few days ago. I used to have previously a Sony HBM30 that was very good in sound quality and especially with bass. With the iPod nano, I should say that the sound is not as good as the sony especially for bass (satura

  • Edge Reflow CC (Preview) does not work with Photoshop CC (2014)

    I mean, I'm not sure if that how it is or if I'm facing some sort of compatibility problem with Reflow (version 0.47.17127). I just can't get it to work with the newest Photoshop CC (2014). It only works on Photoshop CC.

  • Using Japanese Crop Marks

    I just downloaded the japanese crop marks from Indesign Secrets, saved them in the folder "C:\Program Files\Common Files\Adobe\PrintSpt" I've been using those files since CS3 but for some reason it is no longer working for CS6? Can anyone confirm thi

  • HELP!!! flash CS4 bone tool crash

    I am doing an animation, and i just saw videos of the BONE tool. so i decide to use it, but every time i use the bone tool, flash starts getting slow and laggy. if i insert a frame or pose it crashes, shutting down flash for me! what do i do? or what

  • How do i open pdf files attached to email so can print.

    I receive pdf files attahced to email but when they open they open in photoshop elements which I don't want.