Javax.annotation.processing.Processor not recognized

Hi,
I'm currently experimenting with the javax.annotation.processing API. Thus I created a simple Annotation and a related simple processor.
Another sample program uses the annotation. When compiling this program everything works fine as long as I specify the processor class
on the command line. But when I try to simply use a javax.annotation.processing.Processor file, the compiler doesn't seem to find the processor.
What am I doing wrong?
Here come the details:
I use Java6 and the sun java compiler javac.
The annotation and processor class are packed into a JAR file together with the javax...Processor file. The JAR looks like this:
     hello/HelloProcessor.class
     hello/annotations/Hello.class
     META-INF/services/javax.annotation.processing.Processor
     META-INF/MANIFEST.MF     The javax.annotation.processing.Processor file is UTF-8 encoded and contains a single line:
     hello.HelloProcessorwithout the leading spaces.
My processor looks like this:
     @SupportedAnnotationTypes (value = {"hello.annotations.Hello"})
     public class HelloProcessor extends AbstractProcessor {
         private int mCounter = 0;
         /* (non-Javadoc)
          * @see javax.annotation.processing.AbstractProcessor#process(java.util.Set, javax.annotation.processing.RoundEnvironment)
         @Override
         public boolean process(Set<? extends TypeElement> aAnnotations, RoundEnvironment aRoundEnv) {
          Messager vMessager = processingEnv.getMessager();
          vMessager.printMessage(Kind.NOTE, "Runde " + ++mCounter);
          vMessager.printMessage(Kind.NOTE, "Hello World!");
          return false;
     }The following call works...
     javac -processor hello.HelloProcessor -d bin -sourcepath src -cp lib/helloap.jar src/hello/examples/SimpleClass.javaand leads to the following output:
     warning: No SupportedSourceVersion annotation found on hello.HelloProcessor, returning RELEASE_6.
     Note: Runde 1
     Note: Hello World!
     Note: Runde 2
     Note: Hello World!          And this call does not seem to work:
     javac -d bin -sourcepath src -cp lib/helloap.jar src/hello/examples/SimpleClass.javaas it does not produce any output.
And when I try to configure the processor in eclipse, the processor simply is not found, when I define the helloap.jar on the factory path.
I'd be happy about every hint.
Greetings
yawah

It sounds like your META-INF/services information is bad.
Outside of javac, I suggest trying to find your processor from its jar file using java.util.ServiceLoader.
I'd also try making sure your META-INF/services file ends with a newline character rather than just ends.

Similar Messages

  • [Migration Accelerator] Process Server not recognized in CX.

    Team,
    I have configured CX, MT and PS. When I navigate to Monitor -> Agent Heartbeat; I see "Unknown" value under Machine and Agent Role tab. Looks like I am missing something? Please advice. Many thanks!

    Hi Avihai,<o:p></o:p>
    Problem 1: Machine & Agent role shown Unknown.<o:p></o:p>
    This is normal behavior. This kind of status will be
    shown for Configuration server (CS) & Process server (PS) only.<o:p></o:p>
    You will see the time stamp under "Process Server
    (PS)" only if an server is installed with that role.<o:p></o:p>
    Problem 2:
    Could you please check the 'amethyst.conf'  file in the following location "C:\home\svsystems\etc"
    is provided with the right Configuration server IP (CS).<o:p></o:p>
    PS_CS_IP = "CS_IP"<o:p></o:p>
    PS_CS_PORT = "HTTP/HTTPS_port number"<o:p></o:p>
    Also please check which method of communication is
    selected while installing CS.<o:p></o:p>
    Thanks & Regards,
    Navaharsha Gutta

  • Process Server not recognized in CX. - Help

    Hi Team,
    I have configured CX, MT and PS for scenrio of VMWare to VMWare. When I navigate to Monitor -> Agent Heartbeat; I see "Unknown" value under Machine, Agent Role and Process Server tab and the PS server are unregister with timestamp.
    But in the Push Server tab I see the PS server
    Looks like I am missing something?
    the InMage Version: v8.0.1.0_GA_3708
    Please advice. Many thanks!

    Hi Avihai,<o:p></o:p>
    Problem 1: Machine & Agent role shown Unknown.<o:p></o:p>
    This is normal behavior. This kind of status will be
    shown for Configuration server (CS) & Process server (PS) only.<o:p></o:p>
    You will see the time stamp under "Process Server
    (PS)" only if an server is installed with that role.<o:p></o:p>
    Problem 2:
    Could you please check the 'amethyst.conf'  file in the following location "C:\home\svsystems\etc"
    is provided with the right Configuration server IP (CS).<o:p></o:p>
    PS_CS_IP = "CS_IP"<o:p></o:p>
    PS_CS_PORT = "HTTP/HTTPS_port number"<o:p></o:p>
    Also please check which method of communication is
    selected while installing CS.<o:p></o:p>
    Thanks & Regards,
    Navaharsha Gutta

  • Processor not recognized correctly

    hi everyone. i hope you can help me..
    i just got done building a pc for the first time. its boots up fine. i have a Amd Athlon XP 2400+ that runs at 1.8 ghz. but my computer is saying it is a Athlon XP 1500+ and its running at that speed, 1.4ghz.
    i have a MSI Kt3 Ultra2 motherboard. i try upping the clock in the bios, but it crashes my system. please anyhelp to configure the MB right would be appreciated.
    email me or reply here.
    [email protected]

    Have you set the FSB to 133?  The BIOS defaults at 100, which will give you a slower reported speed for the cpu.  Bump it up to 133 and you should see your correct speed.

  • Code Generation Using Annotation Processing

    I'm trying to figure out how to do something like thus:
    Given this source file with the following custom annotation:
    @Composite(interfaces=Mammal.class)
    public class Dog implements IComposite
    };I want to create an annotation processor that inserts a data member, implementation into the constructor, and a public method into this class:
    @Composite(interfaces=Mammal.class)
    public class Dog implements IComposite
        IComponent[] m_inner_objects;
        public Dog()
            m_inner_objects = new IComponent[1];
            m_inner_objects[0] = Mammal.compose(this);
        public IComponent getComponent(Class<?> inInterface)
            if(inInterface == Mammal.class)
               return m_inner_objects[0];
            return null;
    };Are all three tasks possible? Are any of the three tasks possible? If yes to any of my questions how would I go about this. I've gotten just past the 'hello world' state in writing a custom annotation processor so I just need the more advanced knowledge of how to actually affect the code once I'm actively processing it.
    cheers,

    brucechapman wrote:
    sednivo wrote:
    I can get the CompilationUnitTree. Yes
    Then I can modify it with Compiler Tree API.Really?
    Where is a pitfall in my train of thought?The Tree API is an immutable API, you can look, but not modify.Here is example of modifying compiler tree.
    http://svntrac.hanhuy.com/repo/browser/hanhuy/trunk/panno/src/com/hanhuy/panno/processing/PropertyProcessor.java
    Also, the javax.annotation.processing.Filer will not allow you to overwrite an existing compilation unit, and you must use the Filer if you wish a generated class to be compiled in the next round.I don't use Filer class. Method writeCompilationUnit that I've wrote works well for existed files.
    There is a fundamental principle of java that the same program always has the same meaning. See the 3rd paragraph of the Preface to the first edition of the Java Language Spec . >This is the reason why you can't modify existing source code.We can mark generated methods in a class with @Generated annotation.

  • Is annotation processing the same for Java 5 and Java 6?

    I've been trying to use a package of annotations and processors that was evidently originally designed to be used with "apt" and Java 5. When I try to use this stuff with Java 6 I was assuming that, since the Java 6 javac handles annotations, I could just use javac instead of apt - but it doesn't work; the annotation processors don't appear to be getting executed. It looks like I have to use apt for the Java 6 build after all.
    The question is, did the annotation mechanism change significantly between 5 and 6 that would account for this? Is there a way to adapt an annotation package (i.e. annotation classes and processors) that works with 5 so that it will work with 6 using javac instead of apt (or alternatively, is there a way to tell javac to process the older annotations in the same way that apt would)?

    PeteFord wrote:
    I've been trying to use a package of annotations and processors that was evidently originally designed to be used with "apt" and Java 5. When I try to use this stuff with Java 6 I was assuming that, since the Java 6 javac handles annotations, I could just use javac instead of apt - but it doesn't work; the annotation processors don't appear to be getting executed. It looks like I have to use apt for the Java 6 build after all.
    The question is, did the annotation mechanism change significantly between 5 and 6 that would account for this? Is there a way to adapt an annotation package (i.e. annotation classes and processors) that works with 5 so that it will work with 6 using javac instead of apt (or alternatively, is there a way to tell javac to process the older annotations in the same way that apt would)?If you have apt annotation processors, you can use the apt command in JDK 6.
    However, the javac in JDK 6 support standardized JSR 269 annotation processing; see the javax.annotation.processing package. JSR 269 annotation processing is significantly redesigned and improved based on experiences with apt.
    It would be "a small matter of programming" to port an apt annotation processor to JSR 269.
    Using apt in JDK 6, you can also run both apt and javac processors from a single command line invocation.

  • Is it possible to stop compiling process in annotations processing?

    Hi all.
    I'm doing annotations processing with javac.
    Is it possible to stop compilation if an error occurs during annotations processing?
    Thank you!

    francadaval wrote:
    Hi all.
    I'm doing annotations processing with javac.
    Is it possible to stop compilation if an error occurs during annotations processing?If you raise an error with the Messager:
    http://java.sun.com/javase/6/docs/api/javax/annotation/processing/Messager.html
    no class files will be generated. This is the recommended way to start winding things down; from the Processor class:
    "If a processor throws an uncaught exception, the tool may cease other active annotation processors. If a processor raises an error, the current round will run to completion and the subsequent round will indicate an error was raised. Since annotation processors are run in a cooperative environment, a processor should throw an uncaught exception only in situations where no error recovery or reporting is feasible."

  • New com.sun.mirror.* packages - annotation processing

    Hello,
    i would like to use annotation processing tool (APT), but there is much to learn yet.
    So, please help me.
    Let�s have an annotation that can be apllied to all code declarations (source code entities).I want to process some *.java files (their proper source code) via APT.From this code i wanna gain (in any way) those declarations (classes, ifaces, methods, constructors, etc.) that are annotated just with the only one annotation that i have.
    i was already going through the API, but not well-understood.
    As written, i created AnnotationProcessorFactory (just my annotation should be processed by this factory) with an appropriate AnnotationProcessor.
    I�ve already done some steps to succeed, but you know, that�s not that i want
    Of course, all is performed in build-time, after i call apt command with the option factory with the appropriate factory class
    Thank you a lot

    Hi,
    I am new to this forum and also just started
    working on apt can u plz tell me where do i get
    com.sun.mirror package and its sub-packages
    hanksIf you can use JDK 6, I strongly recommend using the standardized annotation processioning in javac and the packages javax.annotation.processing and javax.lang.model..* instead of apt and its com.sun.mirror.* API. To get started, take a look at
    sample/javac/processing/src/CheckNameProcessor.java
    under the JDK 6 install directory.
    If you just need to compile against the apt API, it is found in the tools.jar file in Sun's JDK; see http://java.sun.com/j2se/1.5.0/docs/guide/apt/GettingStarted.html
    You can find a jar file with just the API definition from https://aptmirrorapi.dev.java.net/.

  • Ipod not recognized unless fully charged.

    Hi, I recently changed my PC, I was using windows xp and everything was fine. Now, I am using Windows 7 and my Ipod is not recognized neither by my PC nor Itunes, unless it is fully charged. I did not have this issue before. Any solutions?

    Hi there,
    I would recommend taking a look at the article below for some troubleshooting steps. While the article isn't for troubleshooting this specific issue, it can be useful in finding out if any of the settings have changed during the upgrade process.
    iPod not recognized in 'My Computer' and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Hope that helps,
    Griff W.

  • CD drive not recognized & Very slow boot process.

    (I posted this in the newbie forum, but got no answer, so I give it another go)
    Hi all,
    After a few years alternating between gentoo and debian, feeling they were ok, but not exactly what I wanted, I found Arch, and now I am happy. It feels just right. I am still very new, but I am already quite sure I'll settle here.
    But happyness and warm feelings asides, I have a 2 problems I'd like to get some help about.
    problem 1: my CD drive is not recognized. my hard drive and its partitions show up correctly, but I don't get a cd drive.
    problem 2: On the boot process, a lot of time (2 minutes or so) is spend scanning the ATA bus. relevant messages are as follow (plus a few lines before and after just to give context)
    Code:
    Freeing unused kernel memory: 256k freed
    Time: acpi_pm clocksource has been installed.
    ACPI: Unable to derive IRQ for device 0000:00:10.0
    ACPI: PCI Interrupt 0000:00:10.0[A]: no GSI
    ata1: PATA max UDMA/133 cmd 0x1F0 ctl 0x3F6 bmdma 0x2000 irq 14
    ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x2008 irq 15
    scsi0 : pata_ali
    ata1.00: ATA-5, max UDMA/100, 78140160 sectors: LBA
    ata1.00: ata1: dev 0 multi count 16
    ata1.00: configured for UDMA/100
    scsi1 : pata_ali
    ata2.00: ATAPI, max UDMA/33
    ata2.00: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access     ATA      IC25N040ATCS04-0 CA4O PQ: 0 ANSI: 5
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
    ata2: port is slow to respond, please be patient (Status 0xd0)
    ata2: soft resetting port
    ata2.00: model number mismatch 'QSI CD-RW/DVD-ROM SBW-241' != ''
    ata2.00: disabled
    ata2: soft resetting port
    ata2.00: ATAPI, max UDMA/33
    ata2.00: configured for UDMA/33
    ata2: EH complete
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
    ata2: port is slow to respond, please be patient (Status 0xd0)
    ata2: soft resetting port
    ata2.00: configured for UDMA/33
    ata2: EH complete
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
    ata2: port is slow to respond, please be patient (Status 0xd0)
    ata2: soft resetting port
    ata2.00: configured for UDMA/33
    ata2: EH complete
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
    ata2: port is slow to respond, please be patient (Status 0xd0)
    ata2: soft resetting port
    ata2.00: configured for UDMA/33
    ata2: EH complete
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    problem 2 and 3 are probably related, and linked to the new pata system in the kernel, but I don't really know anything about it, and my understanding of the mkinitcpio is very very limited. here is mine anyway, comments stripped.
    Code:
    MODULES="pata_ali"
    BINARIES=""
    FILES=""
    HOOKS="base udev autodetect pata usbinput keymap filesystems"
    I had it with
    Code:
    MODULES="pata_ali ata_generic"
    and with scsi in the HOOKS as the result of the install, but the behavior was exactly the same.
    Oh, and the machine I am using is a 4 year old laptop. Nothing in there is scsi or sata.
    I hope anyone can help me with those.
    Thanks

    Hi, I'm a "newbie" too. Coming from Gentoo/Debian. Installed Arch this week and I think it could be just the distro I have been looking for.
    I too had the same problem and think it's related to the pata modules. ¿Did you have to use the legacy-ide option when installing from the CD? I'm using old hardware (4 year old laptop) and had the same symptoms you are describing. I exchanged pata with ide in mkinitcpio.conf. My MODULES and HOOKS looks like this:
    MODULES="ide_disk ata_generic"
    HOOKS="base udev autodetect ide keymap filesystems" (deleted scsi and sata also because I don't think I need them).
    Then run mkinitcpio.
    I also had to change my device names in /etc/fstab from:
    /dev/sda2 / ext3 defaults 0 1
    /dev/sda5 swap swap defaults 0 0
    to:
    /dev/hda2 / ext3 defaults 0 1
    /dev/hda5 swap swap defaults 0 0
    And finally /boot/grub/menu.lst from:
    kernel /boot/vmlinuz26 root=/dev/sda2 ro
    to
    kernel /boot/vmlinuz26 root=/dev/hda2 ro
    ¿Any experienced user can confirm that I'm doing the right thing? I didn't find documentation in the wiki for old systems. Only the mention of an ide-legacy option.
    Hope it helps.
    Last edited by Malakin (2007-04-29 02:29:31)

  • While I was restoring the ipod touch the battery on the computer died. Ipod was in the middle odf the process, now It's not recognized at all.

    I was restoring my ipod on Itunes to a factory settings, in the middle of the process the battery on my PC died. When I pluggled it back on the power, the ipod touch is not recognized on the Itunes.

    Take a look at this, and try this: http://www.iclarified.com/entry/index.php?enid=1034

  • Method contains javax.jws.WebResult annotation but is not a WebMethod

    Hello,
    I am trying to create a JAXWS web service from a JWS file using jwsc ant task (for WebLogic 10.0). The JWS file uses an endpoint interface. In the interface I have the following web method declaration:
         @WebMethod
         @WebResult(name="DataSet") String queryTable(
                   @WebParam(name="User") SecurityToken a_user,
                   @WebParam(name="DataSourceID") long a_dataSourceID,
                   @WebParam(name="TableName") String a_tableName,
                   @WebParam(name="Query") String a_query) throws RemoteException;
    Running jwsc fails with the following message:
    [ERROR] - Method contains javax.jws.WebResult annotation but is not a WebMethod. Add the javax.jws.WebMethod annotation to the method definition.
    Apparently the WebMethod annotation is there. I found a similar problem in this forum but the solutions does not work for me - Webservices: jwsc is unable to compile wsdlc-generated classes .
    Can anybody help me resolve this issue?
    Thank you in advance,
    JBoris

    After trying to fix the problem for a few hours I came to the following conclusions:
    First, the interface that contains the web method declaration in the post above is a parent interface of the endpoint interface. We have common web methods shared by more than one web service. Their declarations are in a common interface which is extended by the endpoint interfaces. This works fine if there are no @WebResult annotations. So there are two workarounds for now:
    1. Web methods that have @WebResult annotations can be copied to the endpoint interface.
    2. @WebResult annotations can be removed from the declarations.
    Is there any other way that this can be fixed?
    Thanks.
    JBoris

  • Receiving Transaction Processor not processing PENDING records

    Good day,
    I have pending records sitting in the RCV_HEADERS_INTERFACE, RCV_TRANSACTIONS_INTERFACE and MTL_SERIAL_NUMBERS_INTERFACE. The PROCESSING_STATUS_CODE is set to "BATCH". But when I run the Receiving Transaction Processor nothing happens. The records are still in the interface tables as pending and the PO_INTERFACE_ERRORS table does not get populated with errors.
    Kindly help by suggesting what I'm doing wrong. Why is the processor not picking up the records?
    Thanking you in advance.

    How are you trying to receive the items. Is it through iProcurement or Core Purchasing Forms?

  • Annotation processing using JDK 1.6 and Apache Ant

    Hello,
    I am trying to run my annotation processor using ant.
    I already built the processor, the javax.annotation.processor.Processor file is in the correct place with the correct content.
    The jar with the processor is in the classpath (i can see it in ant -v), but it does not process my classes. in fact, i get the warning:
    warning: Annotation processing without compilation requested but no processors were found.Do i have to specify -processor or -processorpath or can i just leave it to the default classpath scanning?
    I think everything is in the correct place, because when i compile with maven instead of ant, specifying the processor, it runs nicely. My pom contains:
                   <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-compiler-plugin</artifactId>
                        <configuration>
                             <source>1.6</source>
                             <target>1.6</target>
                             <compilerArguments>
                                  <processor>br.com.sonner.infra.seguranca.SegurancaAnnotationProcessor</processor>
                             </compilerArguments>
                        </configuration>
                   </plugin>i am using jdk 1.0.6_02 and ant 1.7.0.
    Can anyone help me find out what am i doing wrong?

    Julio.Faerman wrote:
    Hello,
    I am trying to run my annotation processor using ant.
    I already built the processor, the javax.annotation.processor.Processor file is in the correct place with the correct content.
    The jar with the processor is in the classpath (i can see it in ant -v), but it does not process my classes. in fact, i get the warning:
    warning: Annotation processing without compilation requested but no processors were found.Do i have to specify -processor or -processorpath or can i just leave it to the default classpath scanning?When -processor is not given, a service loader is used to find the annotation processors (if any). In addition to the class files of the process, to allow your processor to be found as a service, make sure you've also provided the needed META-INF data in the jar file. The general service file format is described in
    http://java.sun.com/javase/6/docs/api/java/util/ServiceLoader.html
    That said, I'd recommend setting an explicit processor path separate from your general classpath.

  • Isight not recognized by Skype, Google Video Chat, Logitech VID and ichat.

    MacBook4,1 Firewire
    Leopard 10.5.8
    Skype 2.8.0.866
    Quicktime Plug in 7.6.9
    QUictime player MIA
    Here is my story. I will try and make it as brief as possible.
    The other day, I put a rented DVD into my dvd drive, and it didn't load. I checked for updates for Mac or quicktime. Nothing available. I did some googlin, and someone suggested I zap pram, repair permissions. I blindly obeyed. That didn't help. Then I messed around with quicktime. Not sure what I did. Finally, I had to download the latest version of VLC to watch my movie. I have no idea of my problems with QT have anything to do with my isight issues with Skype and the like, but I mentioned it just in case.
    The next morning, when I went to skype, my video wasn't sending. I'm not sure if my chat partners video was working, we usually only do it one way. Me sending.
    I checked to see if my video was working in photobooth. Indeed it was (and still does).
    I have to date:
    Downloaded the latest version of QT (7.6.9 for Leopard)- the web plug-in for watching QT online is installed and running properly.
    After install, the QT player does not show up in applications, or anywhere else on the hard drive.
    I Messed around with QT in ways I can't describe. Trying to install older versions, removing who knows what files. Installing again.
    zapped PRAM
    Cleared preferences for Skype by removing skype plist
    download latest version skype
    deleted all skype files I could find
    reinstall Skype
    repaired permissions (FIRST THING I DID)
    Put your Mac to sleep
    Wake the computer after it has gone to sleep.
    Restart your Mac by by choosing the Apple
    Shut down your Mac
    Start up mac
    Shutting down, disconnecting power supply, taking out batter, putting dumte mac together again
    changed permissions on skype specifically to make sure all accounts were read/write
    tried setting using skype with a new account
    tried using skype, google video and logitech using wifi at my work
    uninstalled PREY video security app plug in
    removed and uninstalled divx
    removed and uninstalled perian
    Checked Preferences>Video show a black screen that says "No Video Camera Connected" and does not show ANY cameras in the video camera chooser drop down"
    NOTE: Google Video Chat does show the isight cam, but a black screen. Logitech just has a black screen and asks "where in the interweb is your cam buddy?
    I have searched and failed to find CamCamX5.component
    Tested video in Google Chat and Logitech VID chat. built-in isight not recognized
    Tested video in iChat - I chat crashed when opening. (i posted the crash report at the end of this post)
    I'm sure I'm missing some.......
    SOME THINGS I HAVE NOT YET TRIED
    ROSETTA - in the Skype info pane, Rosetta is greyed out. I don't know if I have it, don't know where to get it. Don't know if I need.
    Installing Skype while playing Stairway to Heaven backwards
    Reset SMC or PMU
    Done disk repair - I'm not sure how to do that, I used to have a disc for my old mac for that
    Deleted iPhotoPhotocast and/or QuartzComposer.
    Closing Firefox and starting Skype
    install older version of skype
    ICHAT CRASH REPORT
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: kHW_IntelGMA965Item, GMA X3100, spdisplays_builtin, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.21)
    Bluetooth: Version 2.1.9f10, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2160BH, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Built-in iSight, (null) mA
    USB Device: Apple Internal Keyboard / Trackpad, (null) mA
    USB Device: IR Receiver, (null) mA
    USB Device: Bluetooth USB Host Controller, (null) mA
    Process: iChat [191]
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: ??? (???)
    Build Info: iChat-6220000~1
    Code Type: X86 (Native)
    Parent Process: launchd [67]
    Interval Since Last Report: 7034092 sec
    Crashes Since Last Report: 37
    Per-App Interval Since Last Report: 0 sec
    Per-App Crashes Since Last Report: 2
    Date/Time: 2011-01-17 20:32:51.126 -0800
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: A12CF9D7-D5A7-4ED6-8488-B9B5FD597DC4
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Couldn't load DefaultDefaults'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9313ae94 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x92f2ae3b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x9313adcb +[NSException raise:format:arguments:] + 155
    3 com.apple.Foundation 0x9530ef35 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 101
    4 iChatCommonGUI 0x009e135d RegisterDefaults + 232
    5 com.apple.iChat 0x0013c10c 0x1000 + 1290508
    6 com.apple.iChat 0x0000341e 0x1000 + 9246
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa03560f0 ebx: 0x92f2ae1c ecx: 0xa03551a0 edx: 0x00a2a000
    edi: 0x00000000 esi: 0x009f71b0 ebp: 0xbffffa38 esp: 0xbffffa38
    ss: 0x0000001f efl: 0x00000282 eip: 0x9313ae94 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0231e000
    Binary Images:
    0x1000 - 0x23cfef com.apple.iChat 4.0.9 (622) <deb92a6fd826a5eb82f1d8991748ef59> /Applications/iChat.app/Contents/MacOS/iChat
    0x2b1000 - 0x326ff7 com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x375000 - 0x391fff com.apple.IMFramework 4.0.8 (584) <49551f914cd1c3ba154f15f3765803a9> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x3aa000 - 0x4ddff6 com.apple.viceroy.framework 363.57 (363.59) <3de89d35cae265ca45b876897be26679> /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x54e000 - 0x58dfff com.apple.vmutils 4.1 (104) <9009c24d9279b0794970d8eea4134201> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x5af000 - 0x6b6ff7 com.apple.WebKit 5533.19 (5533.19.4) <9299024ba5d2d796781e6d7312fae16a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x76a000 - 0x783fff com.apple.frameworks.preferencepanes 12.2 (12.2) <090decd2f1c3f48031e43fdf2171469f> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x79d000 - 0x79fffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7a6000 - 0x7d8fff com.apple.remotedesktop.screensharing 1.0.3 (1.0.3) <a6a5cd9d317cc6606b6b02c96df076fb> /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x7eb000 - 0x7ffff7 com.apple.ScreenSaver 2.2 (2.2) <e8b7c717976f8af3ec1f255c5ad04caf> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x810000 - 0x823fff com.apple.IMUtils 4.0.8 (584) <2105663d09d2bee0d8742159d0581a3e> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x832000 - 0x850fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x858000 - 0x86ffff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x883000 - 0x8d1ff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x902000 - 0x975fff com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9c3000 - 0x9f5ff7 iChatCommonGUI ??? (???) <eaba5e1e294f518db1b573b7fee6ff87> /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0xa20000 - 0xa22fff com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1110000 - 0x1c0afff com.apple.WebCore 5533.19 (5533.19.4) <9b91bb00c553ec746fdbe51abca306af> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90032fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90036000 - 0x901b6fff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x901b7000 - 0x901befe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x901bf000 - 0x90218ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90219000 - 0x90253fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90254000 - 0x902a2fe3 com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x902a3000 - 0x90427fef com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x905b8000 - 0x905b8fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x905b9000 - 0x90633ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90634000 - 0x90673fef libTIFF.dylib ??? (???) <a5991d757f0c17a9bb8b1bcb14ab9ec0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90674000 - 0x90724fff edu.mit.Kerberos 6.0.14 (6.0.14) <673f107cdae80c084774a27bc7bc46c1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90725000 - 0x90769feb com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9076a000 - 0x90779ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9077a000 - 0x90804ff7 com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90805000 - 0x9093dfe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9093e000 - 0x90940ff5 libRadiance.dylib ??? (???) <276f13ab6429e05b093a8dda251e3b53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90941000 - 0x90c6cff6 com.apple.QuickTime 7.6.9 (1680.9) <024f122335016a54f8e59ddb4c79901d> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90c6d000 - 0x90e3eff3 com.apple.security 5.0.6 (37592) <0b25e1e4cc34431630f01edb3fdf54d1> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e3f000 - 0x90e88fef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90e89000 - 0x90e89ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90e8a000 - 0x90f1dfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90f1e000 - 0x915befef com.apple.CoreGraphics 1.409.7 (???) <7b65edcce394f39b6a1954d5e30bc34c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x915bf000 - 0x91726ff3 libSystem.B.dylib ??? (???) <c8f52e158bf540cc000146ca8a705958> /usr/lib/libSystem.B.dylib
    0x91727000 - 0x9172cffc com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9172d000 - 0x917c0ff3 com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x917c1000 - 0x917cefe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x917cf000 - 0x917d3fff com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x917d4000 - 0x91b90ff4 com.apple.VideoToolbox 0.484.2 (484.2) <46c37a5fead4e4f58501f15a641ff476> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x91b91000 - 0x91e6bff3 com.apple.CoreServices.CarbonCore 786.16 (786.16) <60b518e4ad02b91826240199a6311286> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91e6c000 - 0x91e6cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91e6d000 - 0x91eabfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91eac000 - 0x91f39ff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91f3a000 - 0x922d7fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x922d8000 - 0x922d8ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x922d9000 - 0x9234bfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9234c000 - 0x923feffb libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x923ff000 - 0x9247cfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9247d000 - 0x92487feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92488000 - 0x9248cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9248d000 - 0x92c8bfef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c8c000 - 0x92ca8ff3 com.apple.CoreVideo 1.6.1 (48.6) <186cb311c17ea8714e918273c86d3c13> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92ca9000 - 0x92cebfef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92cec000 - 0x92d93feb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92d94000 - 0x92db1ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92db2000 - 0x92efaff7 com.apple.ImageIO.framework 2.0.7 (2.0.7) <acf821a3c418fdc86ef02b654366f5f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92efb000 - 0x92efffff libGIF.dylib ??? (???) <36f7b0255a81d97c7b360c3b11b4e462> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92f00000 - 0x92f16fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92f21000 - 0x93001fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x93002000 - 0x9304dfe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9304e000 - 0x93181fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93182000 - 0x93182ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93183000 - 0x93541fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9356b000 - 0x936a4ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x936a5000 - 0x936f0ff7 com.apple.CoreMediaIOServices 130.0 (935) <e7c6d794bbec49f9d1ee8261c3f9ff0e> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x936f1000 - 0x936f9fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x936fa000 - 0x93756ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93757000 - 0x93763ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93764000 - 0x9384cff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9384d000 - 0x9385dffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9385e000 - 0x9385effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x949f9000 - 0x94a09fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94a0a000 - 0x94a59fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94a5a000 - 0x94e6afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94e6b000 - 0x94e8affa libJPEG.dylib ??? (???) <d23f3f3b9d168bf32f89449f83fa07f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94e8b000 - 0x94eaffeb libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x94eb8000 - 0x94ecdffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94ece000 - 0x94ed3fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94ed4000 - 0x94f7bfec com.apple.CFNetwork 438.16 (438.16) <dbf00ca36a09edfae60ec44f9d7a9ef9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94f7c000 - 0x95003ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x95004000 - 0x95004ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95005000 - 0x9500cffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9500d000 - 0x95047ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95048000 - 0x950c7ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x950c8000 - 0x950cefff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x950cf000 - 0x95106fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95131000 - 0x95133fff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95134000 - 0x951effe3 com.apple.CoreServices.OSServices 228.1 (228.1) <76fdc146b4d9937f9c5cbaa1512e0023> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x951f0000 - 0x951f0ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x951f1000 - 0x9546dfe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95480000 - 0x95481ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x95482000 - 0x95563ff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib
    0x95571000 - 0x95769fff com.apple.JavaScriptCore 5533.19 (5533.19.1) <a099821bc9203b1bba37aee855280e28> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x958a1000 - 0x958aafff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x958ab000 - 0x958fcfeb com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x959c7000 - 0x959d6fff libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x959d7000 - 0x95a00fff libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x95a0d000 - 0x95a0dffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95a0e000 - 0x95a26fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95a27000 - 0x95a38ffe com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x95ade000 - 0x95ae3fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95ae4000 - 0x95b24fef com.apple.CoreMedia 0.484.2 (484.2) <81221976abdc19f30723c81c5669bbc9> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95b25000 - 0x95ce1ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95ce2000 - 0x961b3fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x961b4000 - 0x96211ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96212000 - 0x96263ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96264000 - 0x96267fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96268000 - 0x96268ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96269000 - 0x9629bfff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9629c000 - 0x963eeff3 com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x963f7000 - 0x966fffe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96700000 - 0x9672bfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9672c000 - 0x96876feb com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96877000 - 0x96895ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96896000 - 0x9689bfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9689c000 - 0x968c0fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x968c1000 - 0x96988ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96989000 - 0x96997ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96998000 - 0x969c9ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x969ca000 - 0x96a24ff7 com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96a25000 - 0x96a43fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x96a44000 - 0x96a5fff3 libPng.dylib ??? (???) <c0791798fb92acc136c250a373449359> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96a60000 - 0x96a60ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a61000 - 0x96a8efeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96a8f000 - 0x96b0cfeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96b0d000 - 0x96b9aff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96b9b000 - 0x96c66fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I know this is a lot of info. I hope I didn't miss anything. I use skype with three people. Three very important people. Two of which, meh, the video isn't important. ONe where the video option is paramount.
    I'm just a little frustrated. Thanks in advance for any help.

    Hi,
    We will come back to iChat if required.
    It does prefer an Screen Name to be added as you go through the Start Up Screens (First Run) but you can click through these and just access the iChat > Preferences > Video Section to view a Preview.
    I must admit to not seeing a Crash Log when the known chosen Mic/Audio Input has not been listed.
    However if the External Audio was Firewire connected that may explain things.
    NOTE:-
    mAudio and other Firewire Audio Devices do tend to need the Most up-to-date drivers to work properly.
    Sometimes it pays not to do a COMBO or other Software Update until you know the drivers are ready for it.
    With any OS update above the 10.x.1 point will also have a COMBO version.
    The COMBO then includes all the updated items between the base level OS and the latest Update.
    So for 10.6 there is only what is called a Delta for 10.6.1
    There is a delta (10.6.1 to 10.6.2 only) and a COMBO (10.6 to 10.6.2) for the next update and this is repeated through 10.6.6
    The Deltas only include those things that are Updated on that occasion (As in the 10.6.1 to 10.6.2 example - 10.6.5 to 10.6.6 would not include the stuff in 10.6.4 or earlier)
    COMBOs can be installed "Over-the-Top" of what you have already installed.
    It is certainly needed when you Re-install something (Apple apps/Files etc) from the Install Disk you have when your OS has been updated beyond that point.
    Some apps like iChat Get their Updates in the OS Updates and need to "Match" the progression.
    The 10.5.8 COMBO (Your specs say 10.5.8) is Here
    For others the 10.6.5 COMBO is here
    and 10.6.6 COMBO IS here
    <hr>
    Quicktime.
    The Download and Install should be all the parts of Quicktime.
    Internet Plug-ins for Browsers, various System Files to make Quicktime work for other apps, various Components to play various formats and of course the Player itself.
    The Player should be in the Applications Folder with this icon:-
    The OS 10.6 version (Quicktime X has a big blue X icon)
    If you mean it has disappeared from the DOCK you can Drag the Application back to the DOCK to make the icon (and link to app) again (The app stays in the Applications folder the OS just makes an icon and links it for you by doing this)
    One of the biggest causes of many apps not working is turning Off/Disabling certain Fonts the apps need.
    Follow the Link in this Users Tip by Kurt Lang. Make sure that the Correct System Fonts are ON.
    9:53 PM Tuesday; January 25, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Maybe you are looking for

  • Calling the JSP cartridge directly

    I am using OAS 4.0.8.1. I need to be able to call the jservlet cartridge directly, without the virtual path. That is, I want people to be able to type www.host.com and be presented with the jsp pages immediately. It seems that I always have to use so

  • Display HTML data on RTF Template - EBS R12

    Hi, I have a requirement where I would like to display the data from a Rich text format to a XML Publisher report Output. The XML Tag is currently showing all the HTML tags in its data. Please can anyone help as too how can I display the HTML data on

  • Maximun no of data stored in a internal table

    Hello experts, I need two things, Maximum no of data can be stored to an internal table, as per my knowledge it probably max 2 GB, and the number of records depends on the table line type also. Can anyone give any tentaive maximum no ? again i need t

  • I can't set SPPrmsLOB

    I am running a Visual Basic 6 program that connects to an Oracle database and works OK until I try to store a clob via a package. When attemting to set .. cmd.Properties("SPPrmsLOB") = True .. I get the error "Item cannot be found in the collection c

  • About field status table

    I want to download the GL account field status info from SAP table in the following path:IMG -> Financial Accounting(New) -> Financial Accounting Global Settings(New) -> Ledgers -> Fields -> Define Field Status Variants.I need each field status info(