JDK Logging help

Hi,
Question 1:
JDK loggings properties can be set using logging.properties file. Assume
I have written a servlet and deployed it under tomcat or any servlet engine which uses its own logging.properties. I want my servlet to use my logging.properites and don't want to interfere with tomcat's properties. How to do this? (For now tomcat is using log4j -- but if they switch how to do this)
Question 2:
My standalone program uses logging.properties which comes with JDK1.4.
No change to it.
When i use the methods logp(level,soourceClass, sourceMethod, message, object)
Everything is printed except argument. Does any one know what is the problem
Thanks,
Haneef

Thanks for your response.
For the second question , the log message is printed , but the parameter is not printed ( fourth parameter).
Note:
logp(level,sourceclass,method, messsge, params); is the signature of the method iam using,
except the params everything is printed.
I digged bit into the source code and
and in the MessageFormat class -- which is used for formatting
<--
} else if (formats[i] != null) {
subFormatter = formats;
--->
It is going into the above block , because by default messageformat is constructed with two formatters.
Can any one point me why the "param" is not printed .
Thanks
Haneef

Similar Messages

  • JDK Logging configuration

    Hi ,
    trying to configure logging for an EAR application.
    Environment:
    ============
    Oracle fustion middlware 11g (Weblogic 10.3)
    OS: 64bit RH linux
    Deployment target for the application is the AdminServer in the ECM domain. This domain constains the managed server UCM_server1 and IBR_server1.
    WL Startup params for logging:
    -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger
    -Djava.util.logging.config.file=/opt/oracle/middleware/user_projects/domains/ecm_domain/logging.properties
    admin console settings:
    ==============================
    Environment->Servers->AdminServer->Logging the logging implementation is set to JDK
    logging.properties
    ==================
    handlers=weblogic.logging.ServerLoggingHandler,java.util.logging.FileHandler
    .level=INFO
    #default file output is in user's home directory.
    java.util.logging.FileHandler.pattern = /opt/oracle/middleware/user_projects/domains/ecm_domain/cust.log
    java.util.logging.FileHandler.limit = 50000
    java.util.logging.FileHandler.count = 1
    java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
    # Limit the message that are printed on the console to INFO and above.
    java.util.logging.ConsoleHandler.level = FINE
    java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
    weblogic.logging.ServerLoggingHandler.level=FINE
    # set 3rd party libs to SEVERE
    org.apache.commons.level=SEVERE
    org.apache.commons.httpclient.level=SEVERE
    httpclient.wire.level=SEVERE
    org.apache.struts2.level=SEVERE
    # com.opensymphony.level=SEVERE
    com.opensymphony.level=SEVERE
    org.apache.tiles.level=SEVERE
    org.apache.axis.level=SEVERE
    org.apache.tiles.level=SEVERE
    freemark.level=SEVERE
    com.<our own package>.level=FINE
    com.<our other package>.level=INFO
    jar file setup: (according to doc http://download.oracle.com/docs/cd/E14571_01/web.1111/e13739/config_logs.htm#i1015532)
    ===============
    placed
    com.bea.core.apache.commons.logging_1.1.0.jar (found this file in modules, although the docs say wl does not ship these . . . )
    com.bea.core.weblogic.commons.logging_1.4.0.0.jar (the documentation specified 1.3.0.0 but i couldn't find that one)
    checked that the wlcommons-logging.jar exists in /opt/oracle/middleware/wlserver_10.3/server/lib
    The deployment unit is a standard EAR file with WEB and EJB modules. Packages within APP-INF/lib and WEB-INF/lib
    are various thirdparty jars (commons, struts, tiles etc.)
    Unfortunately, I don't see any of the FINE (commons.Logger.debug) messages. All messages from the 3rd party packages seem to be ignored, when the severity levels were set to INFO, FINE etc.
    What am i missing something in the configuration ? Are the messages (debug,info, 3rd party messages) written to another logfile ? I've checked
    the console, the AdminServer.log and the cust.log files.
    thanks
    Michael

    Hi,
    i gave up on jdk logging and attepted log4j.
    Found an interesting article: http://www.theserverlabs.com/blog/2010/04/22/dynamically-changing-log-level-with-weblogic-log4j-jmx-and-wlst/
    and forcing JCL and log4j to read from the app classpath worked.
    in the weblogic-application.xml
         <wls:prefer-application-packages>
    <wls:package-name>org.apache.commons.logging.*</wls:package-name>
              <wls:package-name>org.apache.log4j.*</wls:package-name>
         </wls:prefer-application-packages>
    basically this works (haven't tried the dynamic changing of loglevels). But this led to further problems.
    I'm using struts2 (2.2.1) with tiles (2.0.6) plus various other 3rd party libraries. One of these libs depends on an XML implementation (xerces). When deploying with the above configuration deployment failed when the tiles container tried to initialise the definitions while reading the tiles.xml file. The problem was that it was loading the xercesImpl.jar shipped for one of the 3rd party apps.
    Removing xercesImpl.ja from APP-INF/lib fixed that problem but caused the 3rd party app to fail. Upgrading the xercesImpl caused the deployment to fail (stacktrace below)
    I guess i'm delving into the reamlms of classloading within weblogic. What i don't quite understand yet is if the packages org.apache.commons, and log4j where specified as those to be preferred from the local classpath why would that effect the loading of the XML parser ?
    I would have thought that the instructiosn above mean 'only prefer those packages from the APP-INF/lib dir' ...
    any help in this matter would be greatly appreciated.
    thanks,
    Michael
    weblogic.management.DeploymentException: javax.xml.stream.XMLStreamException: Premature end of file encountered
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:188)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         Truncated. see log file for complete stacktrace
    Caused By: javax.xml.stream.XMLStreamException: Premature end of file encountered
         at weblogic.xml.stax.XMLStreamReaderBase.prime(XMLStreamReaderBase.java:69)
         at weblogic.xml.stax.XMLStreamReaderBase.setInput(XMLStreamReaderBase.java:99)
         at weblogic.xml.stax.XMLStreamInputFactory.createXMLStreamReader(XMLStreamInputFactory.java:316)
         at weblogic.xml.stax.XMLStreamInputFactory.createXMLStreamReader(XMLStreamInputFactory.java:49)
         at weblogic.application.descriptor.BasicMunger2.<init>(BasicMunger2.java:111)
         Truncated. see log file for complete stacktrace
    >
    <09.05.2011 10:17 Uhr MESZ> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1304929068317' for task '0'. Error is: 'weblogic.management.DeploymentException: javax.xml.stream.XMLStreamException: Premature end of file encountered'
    weblogic.management.DeploymentException: javax.xml.stream.XMLStreamException: Premature end of file encountered
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:188)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         Truncated. see log file for complete stacktrace
    Caused By: javax.xml.stream.XMLStreamException: Premature end of file encountered
         at weblogic.xml.stax.XMLStreamReaderBase.prime(XMLStreamReaderBase.java:69)
         at weblogic.xml.stax.XMLStreamReaderBase.setInput(XMLStreamReaderBase.java:99)
         at weblogic.xml.stax.XMLStreamInputFactory.createXMLStreamReader(XMLStreamInputFactory.java:316)
         at weblogic.xml.stax.XMLStreamInputFactory.createXMLStreamReader(XMLStreamInputFactory.java:49)
         at weblogic.application.descriptor.BasicMunger2.<init>(BasicMunger2.java:111)

  • Configure JDK logging per EAR

    I try to find out how to configure the JDK logging for one application (EAR). You can't initialize it your own because you don't have a main method or something similar. Is there any configuration option to set environment settings for an application, or how to configure logging for one application.

    Hi Jan,
    thanks for your answer. I've already read these, but I can't exactly see how it helps me, so I redefine my needs:
    - the application already has some logging implemented (using various log levels),
    - I don't have admin access to the target OC4J(s),
    - I'd like to define default logging levels per package, so that after deployment no configuration will be needed.
    Is it possible, e.g. by packaging j2ee-logging.xml into the EAR? (I've already tried that without success.)
    Thanks,
    Patrik

  • Event Log Help Links No Longer Working?

    Have the help links in the Windows XP event log entries been discontinued?
    They used to open up the Help and Support Center with further information about the Event Log error if it was available.
    For some time now they have all just given a "page not found" error, which then re-directs to Bing with offered results that are no use at all!
    This happens now on every XP system I've tried it on.
    As a user of Windows 8.1 as well as XP, I'm well aware that the Windows 8 Event Log help links have never worked so far, but the XP ones always did, and despite the looming "End of Support" I can see no reason for all that information to have been
    removed.
    Any explanation for this?
    Thanks, Dave Hawley.

    Hi - thank you DaveHawley for the report. Just wanted to confirm that I've passed this on to the team that looks after the redirect service behind the "More Info" link.
    There have been some major changes in how this redirection works over the years as well as in the last months. The most recent efforts added the option to enable use of the TechNet Wiki [sample]
    to allow the community to comment & contribute for a given component. I'm only guessing here, but this might have accidentally impacted XP.
    Thanks
    Bruno

  • How to configure WL 10.3 to used log4j instead of jdk logging

    Hi,
    How can I configure WL 10.3 to use log4j instead of jdk default logging. I did changed the logging to log4j through the console for the AdminServer and one of the Managed Instance. I try to deploy axis2.war but it fails and complains about apache logger class not found. So wondering what other settings do I need. I even copied log4j-1.2.15.jar & wllog4j.jar in WL_DOMIAN\lib and restaretd the server but still gets the following error is
    'weblogic.application.ModuleException: [HTTP:101216]Servlet: "AxisServlet" failed to preload on startup in Web application: "axis".
    java.lang.ExceptionInInitializerError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.servlet.internal.WebComponentContributor.getNewInstance(WebComponentContributor.java:223)
         at weblogic.servlet.internal.WebComponentContributor.createServletInstance(WebComponentContributor.java:247)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:255)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:521)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1913)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1887)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1805)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3041)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1374)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:452)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:629)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:206)
         at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:40)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:140)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:106)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@70b01a for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger) (Caused by org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@70b01a for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger))
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:543)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:235)
         at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:209)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:351)
         at org.apache.axis2.transport.http.AxisServlet.<clinit>(AxisServlet.java:83)
         ... 50 more
    Caused by: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@70b01a for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Logger)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:413)
         at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:529)
         ... 54 more
    Caused by: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
         at java.lang.Class.getConstructor0(Class.java:2699)
         at java.lang.Class.getConstructor(Class.java:1657)
         at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:410)
         ... 55 moreThanks

    Go to Environments >> servers>> adminServer >> logging >> advanced
    change the default JDK logging to log4j
    by default weblogic provides two types of logging JDK and log4j

  • New handlers for JDK Logging

    Does anyone know of any OpenSource Handlers for JDK Logging such as a JMS Handler, JDBC Handler, SMPT Handler or Daily Rolling File Handler? I would love to use JDK instead of Log4J, but the latter supplies these handlers (appenders) out of the box.

    Huh?
    If you are looking for open source anyways then why not just use log4j?

  • Jdk logging api

    iam using jdk logging api. I've a scenario,
    where there are two subclasses for a parent one.
    is it suffice to use Logger.getLogger("packagename.superclass");
    in the parent class, for all the subclasses to use the same logging medium.
    Thanks

    What happened when you tried that?

  • How doest jdk docs help as in writing java code?

    hi i wonder how does jdk docs help as in writing java code because if i google a java code the jdk docs always becomes the result of my search but in my experience jdk docs never helps me.
    is there any one know how to use jdk docs? and how to get the code from there.
    im telling about jdk docs from here http://download.oracle.com/javase/1.4.2/docs/api/
    cross posted from http://www.thenewboston.com/forum/viewtopic.php?f=119&t=13778
    Edited by: 871484 on Jul 18, 2011 4:18 PM

    871484 wrote:
    ok can any one give me example how to use jdk docs? for example this code
    Your question still does not make any sense, and you still haven't clarified what you're not understanding.
    However, if you think that just by reading the API docs, with no other training or study, that you will be able to write that code, then you are seriously misunderstanding the purpose of the docs.
    Obviously English is not your native language. You grew up speaking some other language at home and with your friends, and at some point in school or as private study, you started to learn English. You learned about the grammar and the alphabet and pronunciation, sentence structure, word order, etc. Now you have the basics of how the language works, and you know some words. When you want to learn new words to fit into the structure you have learned, you use a dictionary.
    If you didn't study the grammar, sentence structure, etc., and just said, "I want to learn English. I will look at a dicationary," clearly that would not work.
    Right?
    So, since you now understand and agree with the English example, let me state something that I hope is obvious to you by now: The API docs are your dictionary. They are not a substitute for learning the language basics.
    Furthermore, once you know the language basics in English and have your dictionary, you still won't know how to write a resume (which you may know as a CV). You will look at examples and perhaps take a course on resume (CV) writing. Just reading a dictionary won't help you write a resume(CV). Similarly, if you know some Java basics, you can't learn how to write a Swing app just by reading the Javadocs. You'll look at tutorials and examples. Then, once you know the basic structure of a Swing app, you'll look to the javadocs for more details about more kinds of GUI classes--different buttons and windows and panes and panels and layout managers, etc.

  • Mac OS X 10.5.8 - 15 minutes to Startup / Boot - error log help?

    Found an older thread that advised me to check out Console Messages Error Log, which I did, and I have pasted the notable entries below.
    4/22/11 6:57:56 PM com.apple.launc
    hd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    4/22/11 6:57:56 PM com.apple.launchd[1] (org.x.privileged_startx) Unknown key for boolean: EnableTransactions
    4/22/11 6:58:23 PM com.apple.SystemStarter[18] Starting HP IO Monitor
    4/22/11 6:58:25 PM com.apple.SystemStarter[18] Starting HP Trap Monitor
    4/22/11 6:59:05 PM com.apple.launchd[1] ([0x0-0x5005].com.wacom.TabletDriver[96]) Exited with exit code: 1
    4/22/11 6:59:05 PM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[92]) Exited: Terminated
    4/22/11 6:59:05 PM com.apple.launchd[99] (com.apple.AirPortBaseStationAgent) Unknown key for boolean: EnableTransactions
    4/22/11 6:59:05 PM com.apple.launchd[99] (org.x.startx) Unknown key for boolean: EnableTransactions
    4/22/11 6:59:24 PM Software Update[128] arguments=(null)
    4/22/11 7:13:13 PM [0x0-0x7007].com.wacom.TabletDriver[112] DeviceAddedCallback(): iterator=2003, retain count=2
    4/22/11 7:13:13 PM [0x0-0x7007].com.wacom.TabletDriver[112] device 5617 (IOHIDPointingDevice) found.
    4/22/11 7:13:13 PM [0x0-0x7007].com.wacom.TabletDriver[112] device 5617 (IOHIDPointingDevice) found.
    any help on how to fix this 13+ minute gap would be MOST appreciated - thanks!

    Roam has made a good catch.
    It looks like the long lag begins from Software Update. (Booting in Verbose mode or looking in system.log might give more clues as to what's going on.) Is Sys Prefs>Software Update set to automatically check for, or download, updates (daily?) If it is, it may, for some reason, be getting hung up there. Uncheck that preference and see what the boot time looks like.
    I would create another admin account (I always have one set up for testing purposes) and see if the boot up is the same.
    You may have a problem with Software Update
    Delete the contents (not the enclosing folder) of this folder
    /Users/yourusername/Library/Caches/com.apple.SoftwareUpdate
    And move this file to the Desktop:
    /Users/yourusername/Library/Preferences/com.apple.SoftwareUpdate.plist
    (there may be several more nearby titled "by host," with a long string of numbers; get those, as well.)
    They are both in your Home Folder Library.
    Then restart.

  • Apache commons logging help

    Hello,
    I am trying to use castor beans in a back end java
    application that I instantiate from within a cold fusion page using
    the cfobject tag. Castor beans has a dependency on a newer version
    of apache commons logging than is shipped with Cold Fusion. I found
    the following knowledgebase article that describes the issue, but I
    can't seem to get it to work. The first thing is that I don't have
    a WEB-INF/cfusion/lib directory, and secondly, if I create it (to
    put the thirdparty directory in it) then I can no longer access my
    applications main web page (this page is a simple cfm file with no
    java calls or anything). Any help is appreciated.
    knowledge base article:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=98b79ee8
    thanks.

    after looking into this further it appears that the solution
    outlined in the knowledgebase article is geared toward the
    multi-server configuration rather than in the self contained
    configuration. Since I have ColdFusion Standard edition, it isn't
    an option for me to use the multi-server configuration. Does anyone
    know how to accomplish the same thing in Cold Fusion MX7 Standard
    Edition?
    thanks.

  • Info about logging.xml in JDeveloper weblogic domains? JDK Logging Control

    Is there any documentation on the file <DomainDir>/config/fmwconfig/servers/<ServerName>/logging.xml?
    It seems to control JDK 1.4 logging for my weblogic server and overrides settings from the logging.properties file.
    This is important new behaviour!
    Is it documented somewhere?

    I see some message about a proxy. Have you checked that you can use the proxy from you network?
    If not you should turn the proxy off.
    Timo

  • Photoshop Crash Log help

    HI there, recently transfered my data across macs and i lost the functionality of some of my aps. in particular photoshop. i have a crash log and was wondering if anyone was kind enough to help me disipher this:
    Process: Adobe Photoshop CS3 [1560]
    Path: /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3
    Identifier: com.adobe.Photoshop
    Version: 10.0 (10.0x20070321 [20070321.m.1480 2007/03/21:16:39:00 cutoff; m branch]) (10.0)
    Code Type: X86 (Native)
    Parent Process: launchd [75]
    Date/Time: 2009-10-25 22:47:11.053 +1100
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Interval Since Last Report: 1081414 sec
    Crashes Since Last Report: 11
    Per-App Interval Since Last Report: 122 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: 4CF2DB24-DA72-42DD-9F08-1FCD176C5ED5
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000023fd31b4
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.adobe.Photoshop 0x00a1a6c4 0x1000 + 10589892
    1 com.adobe.Photoshop 0x00a1a794 0x1000 + 10590100
    2 com.adobe.Photoshop 0x00a1ca3d 0x1000 + 10598973
    3 com.adobe.Photoshop 0x00a1cddb 0x1000 + 10599899
    4 com.adobe.Photoshop 0x000593b4 0x1000 + 361396
    5 com.adobe.Photoshop 0x00a168a4 0x1000 + 10573988
    6 com.adobe.Photoshop 0x000593b4 0x1000 + 361396
    7 com.adobe.Photoshop 0x00020775 0x1000 + 128885
    8 AdobeACE 0x01f4617a ACEHasFeature + 106650
    9 AdobeACE 0x01f090e2 0x1ec4000 + 282850
    10 AdobeACE 0x01f7997b ACEHasFeature + 317595
    11 AdobeACE 0x01f2de3c ACEHasFeature + 7516
    12 com.adobe.Photoshop 0x0001ca92 0x1000 + 113298
    13 com.adobe.Photoshop 0x000593b4 0x1000 + 361396
    14 libSystem.B.dylib 0x94f4388f _cxafinalize + 208
    15 libSystem.B.dylib 0x94f437a4 exit + 33
    16 com.apple.HIServices 0x940f7dc3 _GetApplicationDesiresAttention + 0
    17 com.adobe.Photoshop 0x00bb53b4 0x1000 + 12272564
    18 com.adobe.Photoshop 0x00bb4554 0x1000 + 12268884
    19 com.adobe.Photoshop 0x00bb46e0 0x1000 + 12269280
    20 com.adobe.Photoshop 0x00b6d3cf 0x1000 + 11977679
    21 com.adobe.Photoshop 0x001ca093 0x1000 + 1872019
    22 com.adobe.Photoshop 0x002b8537 0x1000 + 2848055
    23 com.adobe.Photoshop 0x004c7df6 0x1000 + 5008886
    24 com.adobe.Photoshop 0x004e19bb 0x1000 + 5114299
    25 com.adobe.Photoshop 0x004e19e2 0x1000 + 5114338
    26 com.adobe.Photoshop 0x0079f46c 0x1000 + 7988332
    27 com.adobe.Photoshop 0x000660f9 0x1000 + 413945
    28 com.adobe.Photoshop 0x00066078 0x1000 + 413816
    29 com.adobe.Photoshop 0x00060265 0x1000 + 389733
    30 com.adobe.Photoshop 0x0021998e 0x1000 + 2197902
    31 com.adobe.Photoshop 0x002199e9 0x1000 + 2197993
    32 com.adobe.Photoshop 0x00002fd2 0x1000 + 8146
    33 com.adobe.Photoshop 0x00002ef9 0x1000 + 7929
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x94f4b03a kevent + 10
    1 libSystem.B.dylib 0x94f4b768 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x94f4abf9 dispatch_queueinvoke + 183
    3 libSystem.B.dylib 0x94f4a98a dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x94f4a401 pthreadwqthread + 390
    5 libSystem.B.dylib 0x94f4a246 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x94f247da machmsgtrap + 10
    1 libSystem.B.dylib 0x94f24f47 mach_msg + 68
    2 ...ple.CoreServices.CarbonCore 0x909be2d8 TSexception_listenerthread + 160
    3 libSystem.B.dylib 0x94f51f39 pthreadstart + 345
    4 libSystem.B.dylib 0x94f51dbe thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x94f2483a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x94f523c1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x94f81208 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x96160aec -[NSCondition waitUntilDate:] + 453
    4 com.apple.Foundation 0x96119881 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5 com.apple.Foundation 0x96119764 -[NSConditionLock lockWhenCondition:] + 69
    6 com.adobe.Photoshop 0x00e70209 0x1000 + 15135241
    7 com.adobe.Photoshop 0x00e0ba65 0x1000 + 14723685
    8 com.adobe.Photoshop 0x00e6e734 0x1000 + 15128372
    9 com.apple.Foundation 0x96124964 -[NSThread main] + 45
    10 com.apple.Foundation 0x96124914 _NSThread__main_ + 1499
    11 libSystem.B.dylib 0x94f51f39 pthreadstart + 345
    12 libSystem.B.dylib 0x94f51dbe thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x94f2482e semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x9092914e MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x231af06b 0x23179000 + 221291
    3 ...ple.CoreServices.CarbonCore 0x908f69fa PrivateMPEntryPoint + 68
    4 libSystem.B.dylib 0x94f51f39 pthreadstart + 345
    5 libSystem.B.dylib 0x94f51dbe thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x94f52782 _semwaitsignal + 10
    1 libSystem.B.dylib 0x94f5243e pthread_condwait + 1191
    2 libSystem.B.dylib 0x94f540d8 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x9092ba2a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x9091740d TSWaitOnConditionTimedRelative + 202
    5 ...ple.CoreServices.CarbonCore 0x90912d2f MPWaitOnQueue + 250
    6 AdobeACE 0x01ef4803 0x1ec4000 + 198659
    7 AdobeACE 0x01ef4031 0x1ec4000 + 196657
    8 ...ple.CoreServices.CarbonCore 0x908f69fa PrivateMPEntryPoint + 68
    9 libSystem.B.dylib 0x94f51f39 pthreadstart + 345
    10 libSystem.B.dylib 0x94f51dbe thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x94f248ee machwaituntil + 10
    1 libSystem.B.dylib 0x94facbe5 nanosleep + 345
    2 com.adobe.PSAutomate 0x25f4252b ScObjects::Thread::sleep(unsigned int) + 79
    3 com.adobe.PSAutomate 0x25f329b5 ScObjects::BridgeTalkThread::run() + 153
    4 com.adobe.PSAutomate 0x25f42615 ScObjects::Thread::go(void*) + 167
    5 libSystem.B.dylib 0x94f51f39 pthreadstart + 345
    6 libSystem.B.dylib 0x94f51dbe thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x23fd31a0 ebx: 0x23fd31a0 ecx: 0x238bfd60 edx: 0x01b492a0
    edi: 0x00000000 esi: 0x00000000 ebp: 0xbfffed68 esp: 0xbfffed50
    ss: 0x0000001f efl: 0x00010286 eip: 0x00a1a6c4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x23fd31b4
    Binary Images:
    0x1000 - 0x16e0ffd +com.adobe.Photoshop 10.0 (10.0x20070321 [20070321.m.1480 2007/03/21:16:39:00 cutoff; m branch]) (10.0) <5F5DAD12-A7A4-42E6-B45C-FA9D92FE2CC3> /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3
    0x1b9a000 - 0x1e1afe7 +AdobeAGM ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1ec4000 - 0x1fc4fe7 +AdobeACE ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1fe3000 - 0x2004ff7 +AdobeBIBUtils ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x2011000 - 0x202afff +AdobeBIB ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2034000 - 0x2298fc7 +AdobeCoolType ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2314000 - 0x2337ff6 +AdobeAXE8SharedExpat ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0x2349000 - 0x239effd +AdobeXMP ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x23ac000 - 0x23c7ff9 +AdobePDFSettings ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetti ngs
    0x23e0000 - 0x2496fcc +FileInfo ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x24c4000 - 0x24caff7 org.twain.dsm 1.9.4 (1.9.4) <1EF840DB-CB48-5207-7535-D82EBC0FCD5F> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x24d1000 - 0x263cff7 +AdobeOwl ??? (???) <E228E1B1-8BDB-47AC-9DBF-B4CF705A58D5> /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2695000 - 0x269bfff +com.adobe.AdobeCrashReporter 2.5 (2.5.02272007) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
    0x26a2000 - 0x26befd7 +com.adobe.LogTransport 1.0 (1.0) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x26c9000 - 0x2a1efc7 +com.adobe.linguistic.LinguisticManager 3.1.0 (3.1RC) <8111F571-D718-411E-9624-6FB83187D84A> /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguisti c
    0x2bb7000 - 0x2bfefc7 +com.adobe.adobe_caps adobe_caps 0.0.120.0 (0.0.120.0) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobecaps.framework/Versions/A/adobecaps
    0x2c0e000 - 0x2c4eff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2ce7000 - 0x2ce8ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x18753000 - 0x18761fe7 libSimplifiedChineseConverter.dylib ??? (???) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x18765000 - 0x18777ff7 libTraditionalChineseConverter.dylib ??? (???) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1877b000 - 0x1877cff7 ATSHI.dylib ??? (???) <251A0D44-8909-BC8C-49DF-477BA8304FDC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1f686000 - 0x1f686ff7 libmx.A.dylib ??? (???) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x23053000 - 0x2305efff +Enable Async IO ??? (???) <BD4972BD-A5F8-44E5-A947-992A78279F57> /Library/Application Support/Adobe/Adobe Photoshop CS3/Plug-Ins/Extensions/Enable Async IO/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x23063000 - 0x23070fff +FastCore ??? (???) <89886F06-BADB-4722-8297-D045DE9AF525> /Library/Application Support/Adobe/Adobe Photoshop CS3/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x23076000 - 0x230dbff3 +MMXCore ??? (???) <9D508DE5-BB20-4C19-8E42-A30BEF95CD5E> /Library/Application Support/Adobe/Adobe Photoshop CS3/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x23179000 - 0x231c5ffb +MultiProcessor Support ??? (???) <54150AF0-3762-4F8A-AE90-42C9308905D0> /Library/Application Support/Adobe/Adobe Photoshop CS3/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x231d0000 - 0x23322fc7 +com.adobe.coretech.adm 3.10x16 (3.1) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Required/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x236f2000 - 0x236f5fff com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x236fb000 - 0x23760fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x25e00000 - 0x260bcfc2 +com.adobe.PSAutomate 10.0 (10.0) <0F80F741-B786-4DE6-AC30-6E1C3071048D> /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Required/ScriptingSupport.plugin/Contents/MacOS/ScriptingSuppo rt
    0x40000000 - 0x400a6fe0 +AdobeJP2K ??? (???) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90007ff7 libGIF.dylib ??? (???) <51848EBF-27D4-0F85-C22A-D1AE10D328F3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9000a000 - 0x900b9fef com.apple.ColorSync 4.6.0 (4.6.0) <66ABAE86-B0EC-D641-913D-08ACA965F9FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90101000 - 0x901b3ffb libFontParser.dylib ??? (???) <EB089832-660F-0B34-3AC8-CCDA937987D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x903b6000 - 0x906d9fef com.apple.HIToolbox 1.6.0 (???) <6F95AF67-678A-D8BC-FFC2-029C9AA2F44A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9088b000 - 0x908cfff3 com.apple.coreui 0.2 (112) <A810DFFD-6314-5E2B-93A4-D5626634B1EE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x908d0000 - 0x90beffe7 com.apple.CoreServices.CarbonCore 859.1 (859.1) <2E72AF56-4BE6-294A-7372-19C360688B8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90bf0000 - 0x90bf4ff7 libGFXShared.dylib ??? (???) <ED62E870-E219-C873-88AA-9CE08108F811> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90d35000 - 0x90d35ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90d36000 - 0x90dafff3 com.apple.audio.CoreAudio 3.2.0 (3.2) <91AE891E-6015-AABE-3512-2D5EBCA0937B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90db0000 - 0x90eb1fe7 libxml2.2.dylib ??? (???) <C242A74D-280A-90C3-3F79-891624AA45D2> /usr/lib/libxml2.2.dylib
    0x90fa6000 - 0x90fe3ff7 com.apple.SystemConfiguration 1.10 (1.10) <897AEEAF-CF5D-2843-C33B-31A0A7C98A6A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90ffc000 - 0x9100dff7 com.apple.LangAnalysis 1.6.5 (1.6.5) <E77440D0-76EE-EB4C-3D00-9EDE417F13CF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9104d000 - 0x9104dff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91059000 - 0x910b3ff7 com.apple.framework.IOKit 2.0 (???) <7618DDEC-2E3B-9C6E-FDC9-15169E24B4FB> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x912d0000 - 0x913c6ff7 libGLProgrammability.dylib ??? (???) <B8E40851-3A01-7D01-2F96-537BF7FA63B5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9140e000 - 0x9146efe7 com.apple.CoreText 3.0.0 (???) <8F4FCAE2-8E6F-F0DE-A6AA-15D0228B7F13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9147a000 - 0x914e9ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x914ea000 - 0x91502ff7 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
    0x91503000 - 0x91715fff com.apple.RawCamera.bundle 2.2.1 (477) <10937A0D-0856-1B69-AE27-43BC15B7DD21> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9171b000 - 0x9175ffe7 com.apple.Metadata 10.6.0 (507.1) <CBD1B22B-5F10-C784-03A2-35106B97DF3F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91779000 - 0x91798fe7 com.apple.opencl 11 (11) <372A42E7-FB10-B74D-E1A0-980E94D07021> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91bc3000 - 0x91be9fff com.apple.DictionaryServices 1.1 (1.1) <07694B30-56A9-5C98-B8BC-DA0628715FA8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91bea000 - 0x91ca3fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x91ca4000 - 0x91cccff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x91d1e000 - 0x91d27ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91d76000 - 0x91d7dff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91f5e000 - 0x9200bfe7 libobjc.A.dylib ??? (???) <410DD065-A18F-F054-0457-65525F4D1039> /usr/lib/libobjc.A.dylib
    0x9204d000 - 0x92346fef com.apple.QuickTime 7.6.3 (1584) <687233E1-F428-5224-08D5-5874BEA2300D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92347000 - 0x92347ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92348000 - 0x92398ff7 com.apple.framework.familycontrols 2.0 (2.0) <50617342-E578-4C1C-938A-19A37ECA91CA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x923c4000 - 0x92626ff3 com.apple.security 6.0 (36910) <F045B57C-054F-F06F-EF7E-EABEC2700274> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92627000 - 0x9265bff7 libcups.2.dylib ??? (???) <9078BA07-DEE1-6597-D15D-7BE3A20CB5A0> /usr/lib/libcups.2.dylib
    0x9265c000 - 0x926f4fe7 edu.mit.Kerberos 6.5.8 (6.5.8) <BA9BD282-FF56-3BFD-E78C-7DBE73B48480> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92715000 - 0x928f0ff3 libType1Scaler.dylib ??? (???) <BD3674DE-EAD9-C57A-0072-3C18970DCC1C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x928f1000 - 0x929c2ff3 ColorSyncDeprecated.dylib ??? (???) <AFD6DAC8-12EF-B2A0-5322-E902D5B48B0A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x929c3000 - 0x929c6fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x929c7000 - 0x92a08ff7 libRIP.A.dylib ??? (???) <6DB158C6-A84D-98C9-1D48-868A3DB17D09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92eb8000 - 0x92eb8ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92ee0000 - 0x92fd2ff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x92fd3000 - 0x92fd3ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93008000 - 0x930e5ff7 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
    0x93128000 - 0x93132ffb com.apple.speech.recognition.framework 3.10.10 (3.10.10) <E106CC3A-7633-5587-0B29-64E19FCBC613> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93256000 - 0x93258ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93259000 - 0x9325eff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9325f000 - 0x93675ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93676000 - 0x93676ff7 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
    0x93677000 - 0x93f54ff7 com.apple.AppKit 6.6.1 (1038.2) <27C304F6-0045-160B-7591-E57ECF19BDDB> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93f55000 - 0x940ccfef com.apple.CoreFoundation 6.6 (550) <193E33D6-2E92-3452-773B-60A1A9CCC573> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x940cd000 - 0x9411eff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9411f000 - 0x94554ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94555000 - 0x945a2feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x949d1000 - 0x94a1afe7 libTIFF.dylib ??? (???) <6EF87001-6FB4-1405-C588-F6D8042D3534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94a1b000 - 0x94b44fe7 com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <62BEEBE6-68FC-4A48-91CF-39DA2BD793F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94b45000 - 0x94b45ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94b46000 - 0x94b6aff7 libJPEG.dylib ??? (???) <265DBF67-994E-E320-4CB1-9C3DE792C3B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94b94000 - 0x94b9efe7 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
    0x94b9f000 - 0x94cc7fe7 com.apple.CoreData 102 (246) <E7E6CE39-9B51-13C8-FE31-8FE57CF7BDE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94d75000 - 0x94daffe7 libFontRegistry.dylib ??? (???) <EE633CF6-8827-EF05-10A4-5F2937120227> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x94db0000 - 0x94e14ffb 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
    0x94e15000 - 0x94eeffff com.apple.DesktopServices 1.5.1 (1.5.1) <D9C18268-699B-A996-1035-4EA3695F4074> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94f24000 - 0x950c8feb libSystem.B.dylib ??? (???) <E58B649F-FFDC-AB09-2028-8B706BEF7C0F> /usr/lib/libSystem.B.dylib
    0x950c9000 - 0x950defff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x950ef000 - 0x950efff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x95124000 - 0x95127ff7 libCGXType.A.dylib ??? (???) <3FB5E457-EABF-B33E-E01B-C695FB2D72EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95128000 - 0x9512efff 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
    0x9512f000 - 0x95171fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9597c000 - 0x9597dff7 com.apple.audio.units.AudioUnit 1.6 (1.6) <68180B96-381C-A09D-5576-606A134FD953> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95a28000 - 0x95a35ff7 com.apple.opengl 1.6.3 (1.6.3) <59D86286-B46F-B0E4-68F8-E5CDCADE393E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95a36000 - 0x95addfe7 com.apple.CFNetwork 454.4 (454.4) <7C563385-9893-3B48-8607-5BC81DA2C4CF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95ade000 - 0x95b60ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95b61000 - 0x95b71ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x95b72000 - 0x95b76ff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95b77000 - 0x95c41fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95c42000 - 0x95cdfff3 com.apple.LaunchServices 360.3 (360.3) <C8590D53-E46A-F58A-7CF2-03A8159D8569> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95ce0000 - 0x95d8fff3 com.apple.ink.framework 1.3 (104) <8526D880-D367-3EF9-DBFD-9A6AB240F57A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95da9000 - 0x9610dff7 com.apple.QuartzCore 1.6.0 (226.0) <7E29DD09-BE04-AA06-5C81-5C093F16901B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9610e000 - 0x9637effb com.apple.Foundation 6.6 (751) <A61B645E-1A15-5BCA-3043-C8AB85C6AD30> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x963eb000 - 0x963f9fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x96422000 - 0x96444ff3 com.apple.DirectoryService.Framework 3.6 (621) <61569C79-6567-BE8F-4F76-BAC04E5FBF79> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96492000 - 0x964adff7 libPng.dylib ??? (???) <38DD4AA1-0643-85A0-F2F5-EE9269729975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x964ae000 - 0x964b1ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x964b2000 - 0x964c6fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x964c7000 - 0x964faff7 com.apple.AE 496 (496) <B638FDD4-7322-F0E4-ACEB-777D8A1399E1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x964fb000 - 0x96541ff7 libauto.dylib ??? (???) <FAB17F30-A28B-E33D-6E21-C7119C9C83ED> /usr/lib/libauto.dylib
    0x96687000 - 0x96723fe7 com.apple.ApplicationServices.ATS 4.0 (???) <81700C90-2614-F7E2-CC6A-B01C24A2BD75> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96724000 - 0x96731ff7 com.apple.NetFS 3.2 (3.2) <E6FD80B0-0238-0C42-A3EC-EBDEC107A1C3> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96750000 - 0x96859fe7 com.apple.CoreAUC 4.10.0 (4.10.0) <34606DCE-1257-8FB9-E633-AC56DD263EAB> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96862000 - 0x96893ff7 libGLImage.dylib ??? (???) <0FB347C7-A579-4E51-4733-39AB28064554> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x968c8000 - 0x96a4afe7 libicucore.A.dylib ??? (???) <FBB66376-CBA9-8149-A1AA-10AB8578C3B3> /usr/lib/libicucore.A.dylib
    0x96b05000 - 0x96b48ff7 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
    0x96c73000 - 0x96c91ff7 com.apple.CoreVideo 1.6.0 (43.0) <3A853574-DD9E-08D8-FD2C-6221B55C3E08> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96c92000 - 0x96c93ff7 com.apple.TrustEvaluationAgent 1.0 (1) <71E2DA16-83EC-6056-FFEE-862A04B5599F> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x96c94000 - 0x96cb4fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x96cb5000 - 0x96cb8ff7 libCoreVMClient.dylib ??? (???) <16BB2178-B32D-E57E-F1E4-D177F7754232> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x96cc4000 - 0x96cd8ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96cd9000 - 0x96ce5ff7 libkxld.dylib ??? (???) <152C8DBB-0149-5827-3240-E57CA85CFE5F> /usr/lib/system/libkxld.dylib
    0x96ce6000 - 0x96d8eff7 com.apple.QD 3.31 (???) <40FCAC85-4E4F-2290-90D4-F66D550ADFDC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96d8f000 - 0x97d1dff7 com.apple.QuickTimeComponents.component 7.6.3 (1584) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x97e5f000 - 0x97edffeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x97fbb000 - 0x980affe7 libiconv.2.dylib ??? (???) <0C578460-3929-29DD-585A-DB1E0C977425> /usr/lib/libiconv.2.dylib
    0x980e8000 - 0x988c9497 com.apple.CoreGraphics 1.535.5 (???) <0B93D29C-D957-AD00-10F3-94112D75D6D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x988ca000 - 0x9895bfe3 com.apple.print.framework.PrintCore 6.0 (312) <C588530A-0F2C-DD72-E308-3B8735125189> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9895c000 - 0x98b18fef com.apple.ImageIO.framework 3.0.0 (3.0.0) <A37E541F-3D6A-2BE9-AB32-F60CCDE13608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98c78000 - 0x98c7ffff 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
    0x98c80000 - 0x98cb1ff3 libTrueTypeScaler.dylib ??? (???) <F326E053-7425-2F10-F883-CBD56A1E1B72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98db2000 - 0x98dbcff7 libGL.dylib ??? (???) <B375A3B6-2983-A4E4-50FB-9087FD606FD6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98e5d000 - 0x98e79fe3 com.apple.openscripting 1.3 (???) <D2FF4419-FD71-5D4A-F397-B03E82085232> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98eaf000 - 0x98eb1ff7 libRadiance.dylib ??? (???) <0E03CF64-0931-7B9A-F617-4387B809D6D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x98eb2000 - 0x98f02fe7 libGLU.dylib ??? (???) <55A69DCE-1237-341E-F239-CDFE1F5B19BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98f22000 - 0x98f8cfe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x98fe8000 - 0x98ffaff7 com.apple.MultitouchSupport.framework 200.20 (200.20) <1D7EE15B-ADDD-1F57-F1FB-FB5252910D5A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x99422000 - 0x9942cff7 libCSync.A.dylib ??? (???) <A05BB12D-CD51-DE43-323B-3A3E99A3EED5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0xb0000000 - 0xb0004fd8 com.apple.carbonframeworktemplate 1.1 (1.1.0) /Library/Application Support/Adobe/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib ??? (???) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <E58B649F-FFDC-AB09-2028-8B706BEF7C0F> /usr/lib/libSystem.B.dylib
    Model: iMac7,1, BootROM IM71.007A.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.21f4
    Graphics: ATI Radeon HD 2600 Pro, ATI,RadeonHD2600, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.1f7, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD3200AAJS-40RYA0, 298.09 GB
    Parallel ATA Device: OPTIARC DVD RW AD-5630A
    USB Device: iPod, 0x05ac (Apple Inc.), 0x1209, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfa400000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0304, 0xfa430000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfa420000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x1a100000
    any help would be great. i seem to be missing the application support. is there any way to recover without doing a fresh install?
    thanks

    HI and Welcome to Apple Discussions...
    Might want to read here. http://blogs.adobe.com/jnack/2009/08/pscs3onsnowleopard.html
    http://www.cultofmac.com/adobe-cs3-not-tested-on-snow-leopard-many-industry-pros -could-halt-snow-leopard-upgrades/15143
    http://arstechnica.com/apple/news/2009/08/adobe-creative-suite-and-snow-leopard- what-you-should-know.ars
    Seems to be an incompatibility issue between Adobe and Snow Leopard.
    Carolyn

  • EtreCheck log - help needed please!

    Hi,
    lately my iMac has slowed down very noticeably. I have tried many things but it does not seem to help). I was wondering if one of you could assist me with decoding the EtreCheck log? Thank you!
    Hardware Information:
              iMac (21.5-inch, Mid 2011)
              iMac - model: iMac12,1
              1 2.8 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              AMD Radeon HD 6770M - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    Startup Items:
              HWNetMgr: Path: /Library/StartupItems/HWNetMgr
              HWPortDetect: Path: /Library/StartupItems/HWPortDetect
              StartOuc: Path: /Library/StartupItems/StartOuc
    System Software:
              OS X 10.9 (13A603) - Uptime: 3 days 1:45:19
    Disk Information:
              Hitachi HDS722020ALA330 disk0 : (2 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 2 TB (926.77 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-STDVDRW  GA32N 
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Internal Memory Card Reader
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.google.keystone.daemon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
              [loaded] com.google.keystone.agent.plist
    User Launch Agents:
              [failed] com.google.GoogleContactSyncAgent.plist
              [loaded] com.nero.HSMMonitor.plist
    User Login Items:
              Sparrow
              Skype
              Caffeine
              Android File Transfer Agent
              Google Chrome
    3rd Party Preference Panes:
              Flash Player
              Perian
    Internet Plug-ins::
              FlashPlayer-10.6: Version: 11.9.900.117 - SDK 10.6
              Default Browser: Version: 537 - SDK 10.9
              Flash Player: Version: 11.9.900.117 - SDK 10.6 Outdated! Update
              LogMeIn: Version: 1.0.660
              QuickTime Plugin: Version: 7.7.3
              LogMeInSafari32: Version: 1.0.660
              F5 Inspection Host Plugin: Version: 6031.2010.0629.1
              LogMeInSafari64: Version: 1.0.660
              SharePointBrowserPlugin: Version: 14.3.8 - SDK 10.6
              Silverlight: Version: 5.1.20913.0 - SDK 10.6
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
    User Internet Plug-ins::
              Picasa: Version: 1.0
              Google Earth Web Plug-in: Version: 7.1
    Bad Fonts:
              None
    Old applications:
              Aimersoft Helper Compact:          Version: 2.2.5.6 - SDK 10.5
                        /Users/MayaTheBee/Library/Application Support/Helper/Aimersoft Helper Compact.app
              Microsoft Alerts Daemon:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Chart Converter:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
              Microsoft Clip Gallery:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
              Microsoft Database Daemon:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
              Microsoft Database Utility:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
              Microsoft Document Connection:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Document Connection.app
              Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
              Microsoft Excel:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Excel.app
              Microsoft Graph:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
              Microsoft Language Register:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Microsoft Office Reminders:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
              Microsoft Outlook:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Outlook.app
              Microsoft PowerPoint:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
              Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
              Microsoft Upload Center:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
              Microsoft Word:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Word.app
              My Day:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/My Day.app
              Open XML for Excel:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
              Picasa:          Version: 3.9.16 - SDK 10.4
                        /Applications/Picasa.app
              SLLauncher:          Version: 1.0 - SDK 10.5
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Solver:          Version: 1.0 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              SyncServicesAgent:          Version: 14.3.8 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
              smcFanControl:          Version: 2.3 - SDK 10.4
                        /Applications/Utilities/smcFanControl.app
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 2  Disk used: 999.10 GB
              Destinations:
                        Data [Network] (Last used)
                        Total size: 2 
                        Total number of backups: 74
                        Oldest backup: 2013-02-21 07:03:24 +0000
                        Last backup: 2013-12-06 12:50:32 +0000
                        Size of backup disk: Too small
                                  Backup size 2  < (Disk used 999.10 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  25%          iPhoto
                  4%          WindowServer
                  2%          com.apple.security.XPCKeychainSandboxCheck
                  1%          com.apple.WebKit.WebContent
                  1%          EtreCheck
    Top Processes by Memory:
              958 MB          iTunes
              591 MB          iPhoto
              459 MB          com.apple.WebKit.WebContent
              238 MB          Sparrow
              156 MB          softwareupdated
    Virtual Memory Statistics:
              45 MB          Free RAM
              3.47 GB          Active RAM
              3.43 GB          Inactive RAM
              1.05 GB          Wired RAM
              5.85 GB          Page-ins
              0 B          Page-outs

    Actually I had a hunch this was iPhoto related as this app has become very very slow. Yes things are faster when iPhoto is off but not by much. Clearly nothing like it was 6 months ago and that included very slow startups and shutdowns...

  • Data log format like JDK logging

    Hello:
    I'm working with SUNONE AS
    Source classes belong my application use Java logging ( JDK 1.4.2 ) , but logs ( in instance's server.log ) don't be written in Java logging format, i.e, class name & method name where log method ( by example, info() ) call is invokated
    How can I do for logging calls into my code to write in Java logging format ? How I can to configure my SUNONE AS ? Must I change logging properties file in jre/lib ?
    Thanks in advance
    Best regards

    Hi,
    I think you change the format as you using TraceFormatter class.
    According to the pattern you give in the constructor your format will change.
    It is that pattern that determines.
    Regards,
    Srinivasan Subbiah

  • NWDS: Writing to a log help!

    Is it possible to use a print command (or somthing similar) to write a value of a variable to the log. I am trying to write a service and I want to debug the program so that I can catch the values that are being passed between objects.
    Can anyone help, please!

    Hi Phil,
    to answer your original question: See logging for using the internal portal logger as well as for using the "new" common J2EE logger.
    Hope it helps
    Detlev

Maybe you are looking for

  • Assigning size of the text field for Globalization

    Hi, For my project, we are using same column for storing both English and Arabic text. My database is currently configured to UTF8 Language support. To store the arabic text in a varchar2 column, do I need to increase the size of the column? For exam

  • Is it possible to customize the playback controls bar in a dvd flash?

    Is it possible to customize the playback controls bar in a dvd flash? I mean is it possible to change the size of the bar? and the size of the controls? Is it possible to remove (not hide or disable but remove from the bar) some controls as "search",

  • Why won't .pdf images display in safari

    New to Mac. I have a macbook pro and the current update of Lion OS X 10.7.1 I may have done something but when i try to view a website that takes me to a .pdf document the image wont display. Works fine on my office destop PC

  • Pdfcreator invokes LabVIEW run-time engine installer!

    Okay, so I'm a desktop tech, know little about LabView, but can at least install it.  We also use pdfcreator on our desktops.  For some reason, however, whenever pdfcreator is used (for ANYTHING, not just LabView stuff), a windows installer fires up,

  • Authrate parameter 'Login Data File URL'

    Hi there, Any one have idea what format this parameter value should be? I am trying to use SLAMD for authrate and not sure what format i should specify the values for 'Login Data File URL' The document says 'The URL (FILE or HTTP) of the file contain