Help with "parameter type not within its bounds"

Can someone please explain the behavior I'm seeing below?
public class Node<ChildType extends Node<ChildType>>
public class SubNode<ChildType extends SubNode<ChildType>> extends Node<ChildType>
  public static void main(String[] args)
    Node<Node> myNode; // ERROR: Node not within its bounds
    Node<SubNode> myNode2; // ERROR: SubNode not within its bounds
    Node<? extends Node> myNode3; // Works
    Node<? extends Node> myNode4 = new Node<Node>(); // ERROR: Node not within its bounds
    Node<? extends Node> myNode4 = new Node<SubNode>(); // ERROR: SubNode not within its bounds
}How do I get it to work the way I expect? I want to construct a Node with a parameterized children type so that if you construct a Node, the children would also be of type Node. If you construct a SubNode, the children would also be of type SubNode, etc.
Thank you,
Gili

I would make the "concrete" subclasses public:
import java.util.Collection;
import java.util.Collections;
public interface Node<C extends Node<C>> {
    Collection<C> getChildren();
public interface SubNode<C extends SubNode<C>> extends Node<C> {
    C getParent();
abstract class DefaultNode<C extends Node<C>> {
    Collection<C> children;
    DefaultNode(Collection<C> children) {
     this.children = Collections.unmodifiableCollection(children);
    public Collection<C> getChildren() {
     return children;
abstract class DefaultSubNode<C extends SubNode<C>> extends DefaultNode<C> {
    C parent;
    DefaultSubNode(Collection<C> children, C parent) {
     super(children);
     this.parent = parent;
    public C getParent() {
     return parent;
public class ConcreteNode extends DefaultNode<ConcreteNode>
                implements Node<ConcreteNode> {
    public ConcreteNode(Collection<ConcreteNode> children) {
     super(children);
public class ConcreteSubNode extends DefaultSubNode<ConcreteSubNode>
                   implements SubNode<ConcreteSubNode> {
    public ConcreteSubNode(Collection<ConcreteSubNode> children, ConcreteSubNode parent) {
     super(children, parent);
}

Similar Messages

  • Align type to center of type, not to its bounding box.

    I'm trying to align a line of type to a basic object by clicking on the align to center button. Illustrator aligns the type to its bounding box, wich in many cases depending on the font used, is not the center of the type. Is there a way to tell ai. to align to the center of the type and not to its bounding box?

    Kurt is right, without the effect path >> outline object, would look like this.
    I like kurt's method of doing this better, but another way is:
    Draw a dummy rectangle, exactly the height of the type. Scale this holding down shift so it is larger thatn the bounding box, group this with the type, then align.
    Make the rectangle stroke none when done.

  • Hyper-v replication Error Hyper-V received a digital certificate that is not valid from the Replica server 'burstingreplica'. Error: A required certificate is not within its validity period when verifying against the current system clock or the timestamp"

    Hi,
    When trying to initiate hyper-v replication from the main server i'm getting this error in the event logs.
    Hyper-V failed to enable replication for virtual machine 'RECADemo': A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (0x800B0101). (Virtual Machine ID 561591B6-567C-...)--I'm using certificate based auth and cert is installed/recognized on both machines.Please help.Thanks,Jaffer
    Jaf

    Hi,
    This error occurs because the Microsoft Certificate Trust List Publisher certificate expired. A copy of the CTL with an expired signing certificate exists in the CryptnetUrlCache
    folder. Please try to renew the Trust List Publisher certificate.
    The related KB:
    Event ID 4107 or Event ID 11 is logged in the Application log in Windows and in Windows Server
    http://support.microsoft.com/kb/2328240
    How to Renew the Site Server Signing Certificate (Microsoft Certificate Services)
    http://blogs.technet.com/b/configmgrteam/archive/2009/02/11/how-to-renew-the-site-server-signing-certificate-microsoft-certificate-services.aspx
    Manage Trusted Publishers
    http://technet.microsoft.com/en-us/library/cc733026.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • WINDOWS MANAGEMENT FRAMEWORK 4.0 - A required certificate is not within its validity period

    Hello, 
    I can't figure out if this is because the Root Certificates were updated in April 2014 then apparently expired by Microsoft or if the PowerShell installer signed this file with a bad software release signature??
    We were deploying PowerShell 4.0 (Windows6.1-KB2819745-x64-MultiPkg.msu) with ConfigMgr 2012 with a dependency of .NET Framework 4.5.1.  Everything was working fine until sometime around April 24 (exact date unknown).  Now any 
    Win 7 SP1 machines I try to update will not install WMF 4.0.  They installed .NET 4.5.1 without any trouble.. 
    The digital signature on it it states it was signed Sept 27 2013 and the certificate expires 4/24/2014. 
    Even if we change the system clock to April 1 2014 it still will not install.. but this shouldn't matter anyway.  They just can't sign new software with that certificate.. surely I can install it..
    As for a log... If I run as C:\Windows\ccmcache\3>wusa.exe Windows6.1-KB2819745-x64-MultiPkg.msu /log:c:\windows\ccmcache\3\broken.txt 
    In the broken.txt I see: 
    Install Worker.01194: Operation Result Code of the installation: 0X4        HRESULT of the installation: 0X80240022                Operation
    Result Code of the update:0X4 HRESULT of the update: 0X800b0101 
    Install Worker.01243: Failed install update Update for Windows (KB2819745) 
    Install Worker.01287: Exit with error code 0X800b0101 (A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.) 
    WINDOWS MANAGEMENT FRAMEWORK 4.0 FOR MICROSOFT OPERATING SYSTEM PRODUCTS 
    Windows6.1-KB2819745-x64-MultiPkg.msu 
    I also see this same event information in Setup event log..
    I don’t know what to do here.  Anyone else having this problem? 

    Hi,
    Have you ever seen this article?
    Event ID 4107 or Event ID 11 is logged in the Application log in Windows and in Windows Server
    http://support.microsoft.com/kb/2328240/en-us
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Need Help with data type conversion

    Hello People,
    I am new to java, i need some help with data type conversion:
    I have variable(string) storing IP Address
    IPAddr="10.10.103.10"
    I have to call a library function which passes IP Address and does something and returns me a value.
    The problem I have is that external function call in this library excepts IP Address in form of a byte array.
    Here is the syntax for the function I am calling through my program
    int createDevice (byte[] ipAddress).
    now my problem is I don't know how to convert the string  IPAddr variable into a byte[] ipAddress to pass it through method.

    Class InetAddress has a method
    byte[]      getAddress() You can create an instance using the static method getByName() providing the IP address string as argument.

  • I have a problem with a chart refreshing after its bound data provider changes.

    I have a problem with a chart refreshing after its bound data
    provider changes. After the subsetHighLowData.refresh() is called I
    would expect the chart to redraw, but it still looks the same. I
    even inspected the debugger to see if the slice had taken place and
    it had.
    Any ideas coding friends?

    "nikos101" <[email protected]> wrote in
    message
    news:gib6aa$prr$[email protected]..
    >I have a problem with a chart refreshing after its bound
    data provider
    >changes.
    > After the subsetHighLowData.refresh() is called I would
    expect the chart
    > to
    > redraw, but it still looks the same. I even inspected
    the debugger to see
    > if
    > the slice had taken place and it had.
    >
    > Any ideas coding friends?
    >
    > subsetHighLowData.source =
    >
    highLowData.source.slice(slider.values[0],slider.values[1]);
    Just use the ArrayCollection's removeItemAt, and it should
    handle the event
    dispatching for you.
    HTH;
    Amy

  • Help with error program not registered CPI-C error CM_ALLOCATE_FAILURE_RETR

    I have the following connection error in SM59 ...
    Connection error        program ZCCCOM_NZ_PMH01 not registered / CPI-C error CM_ALLOCATE_FAILURE_RETRY. 
    I have deleted and re-registered the program but still no connection. Any ideas as to what/where I am going wrong would be fantastic!!
    RFC Destin = CCCOM
    Type = T
    Gateway Host = ntchsapqas
    Gateway service = sapgw00
    ERROR                program ZCCCOM_NZ_PMH01 not registered      
    LOCATION             SAP-Gateway on host ntchsapqas / sapgw00    
    DETAIL               TP ZCCCOM_NZ_PMH01 not registered           
    COMPONENT            SAP-Gateway                                 
    COUNTER              19364                                       
    MODULE               gwr3cpic.c                                  
    LINE                 1593                                        
    RETURN CODE          679                                         
    SUBRC                    0                                       
    RELEASE              46D                                         
    TIME                 Tue Jun 10 14:47:28 2008                    
    VERSION              2

    Something helpful related to this
    The program in the above error should be registered in the gateway for this connection test to complete successfully. The server program rfcexec is responsible for its registration on the gateway.
    To register the program login into the OS level as sudo su - <sid>adm and execute the following command.
    rfcexec u2013g<program id> -a<gateway host name> -x<gateway service>
    rfcexec is the server program name, the <program id> can be obtained from SM59, it is case sensitive and should match with the entry in SM59. The <gateway host name> and <gateway service> can be obtained from the transaction SMGW. When this command is executed it goes to a hanging loop.
    The connection will fail once this command is terminated or the user executing this command logs off
    To avoid this, instead of using the above mentioned command an entry should be made in the file saprfc.ini
    To do this, execute the following command
    sudo su - <sid>adm
    rfcexec u2013D<destination name>
    <destination name> is the RFC destination name in SM59
    So now we are done with registering the server program, but how do we check it is registered, once a server program is registered it is displayed in the Logged on clients in SMGW.
    In transaction SMGW choose GOTO-> Logged on clients. There should be an entry for the server program in the screen that is displayed with system type Registered_TP (which indicates that the program is registered)

  • ORDS Template with parameter does not work

    Hello everybody,
    I can not get working a RESTful Service using the ORDS_SERVICES -API (ORDS version 3.0.0.343.07.58), same Query without parameter (hardcoded product_id) works fine.
    declare
    l_module_id number;
    l_template_id number;
    l_handler_id  number;
    l_parameter_id number;
    begin
    ORDS_SERVICES.delete_module(p_name => 'test_parameter');
    l_module_id := ORDS_SERVICES.create_module(p_name => 'test_parameter',
                                p_uri_prefix => '/test_parameter',
                                p_items_per_page => 10,
                                p_status => 'PUBLISHED',
                                p_comments => null);
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info_10/',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = 2',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    /* now same result but with parameter */
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info/{product_id}',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = :product_id',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    l_parameter_id := ORDS_SERVICES.add_parameter(p_handler_id => l_handler_id,
                               p_name =>  'product_id',
             p_bind_variable_name => 'product_id',
             p_source_type => 'URI',
             p_param_type => 'INT',
             p_access_method => 'IN',
             p_comments => null);
    commit;
    end;
    The first template works fine:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info_10/
    shows a jpeg image of a wallet.
    The second template does not work:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info/10/
    fails with error:
    mapped request using: BasePathMapper [basePath=/xxx/] to: SCHEMA:apex|XXX
    Choosing: oracle.dbtools.http.dispatch.DispatchMetaData as current candidate with score: MetaDataScore [score=0, matchedMethod=  GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    , matchedPattern= /test_parameter/demo_product_info/{product_id}
    common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=null, pagination=null, requiresPrivilege=null, transport=null]
    methods:
      GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    stack trace:
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: INT
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    at oracle.dbtools.http.filters.FilterChainImpl.doFilter(FilterChainImpl.java:51)
    at oracle.dbtools.http.cors.CORSFilter.doFilter(CORSFilter.java:35)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    I changed the add_parameter-call p_param_type => 'INT' to be  p_param_type => 'STRING'
    then error remains the same and strack trace says
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: STRING
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    Could you please confirm and fix,
    kind regards,
    Tom

    This is a guess, but I suspect that ords_services.add_parameter() is not required at all.
    Also, your URL /demo_product_info/10/ should not have the trailing slash (according to your template URI).
    For more information, I suggest you look here:
    ords.3.0.0.343.07.58.zip\ords.war\scripts\migrate\core\ords_migrate.plb
    The migration package will show what is usually done for templates that already exist within APEX 4.2. I checked my templates and the ones with URI variables {in-curly-brackets} contain no records in apex_040200.wwv_flow_rt$parameters.
    -Kris

  • Help with Parameter Form

    Hello, I have a somewhat complicated Report and I am hoping that I can create the Parameter Form in Reports (I would rather not use Forms because I don't know it as well)
    Here's my problem:
    Right now I have 2 fields that I need help with.
    The first one is called "Report Name" and I have it coded to a bind variable that will search for a series of "work units" such as 02% or 03%
    This works as coded, the problem comes with the other "Work Unit" field. What I have right now is a LOV that queries for work units that start in either 02 or 03. This variable will narrow down the report findings to the specific work unit selected. What I want is for this list to be dependant on what the user choses for report name.
    For example if the user choses ReportName1 the report query finds work units with 02%, but the "work unit" field still displays the list of work units 02% and 03% and the user must know to only chose the certain work units for the specific "Report Name" selected.
    If there is a way to somehow have the "Work Unit" field be dependant on the "Report Name" field please give me soem ideas of how to do it.

    Thats what I was worried about.
    Well I have been trying to learn forms for some time now but I can't quite get the hang of it yet.
    I don't really have anyone who knows it here, so I'm kind of learning on my own.
    Thanks for the response.
    Arin

  • Need help with parameter fields and report selection.

    Hi all:
    I hope some one can help me with the problem I am having with my parameter field and record selection.
    First, can anyone explain to me why my parameter field CustStart, which is dynamic and is based on the field Customer in the table CustMaster.  There are over 1800 records in the CustMaster table but the drop down list only shows maybe about half of them and there is no way to scroll down to the last customer record.  What am I doing wrong?
    Second, is there any way to base a parameter field on a formula field on my report?  On my report I have created a field Cust that is the customer name and number joined together in one field.  I would very much llike to use this formula in my record selection and in my parameter field.  Can it be done?
    All help is greatly appreciated
    Thanks,
    FatMan

    Hi,
    You can use the following for changin increasing the LOV.
    Crystal Reports XI BusinessObjects Enterprise XI
    For performance reasons, in Crystal Reports XI Release 1 and Release 2 the maximum number of values that are returned for a list of values is set to 1000. If you have a cascading List of Values (for example Country > Region > City), the lowest level (in this case City) will only display a maximum of 1000 values. This means that the higher-level prompts may display far fewer values than you expect. The list of values provides the data for the dynamic parameter list.
    How can you modify the maximum number of values available in a dynamic parameter list?
    Resolution
    To increase the maximum number of values available in a dynamic parameter list, you must add a registry key.
    CAUTION     The following resolution involves editing the registry. Using the Registry Editor incorrectly can cause serious problems that may require you to reinstall the Microsoft Windows operating system. Use the Registry Editor at your own risk. For information on how to edit the registry key, view the 'Changing Keys and Values' online Help topic in the Registry Editor (Regedit.exe).
    It is strongly recommended that you make a backup copy of the registry files (System.dat and User.dat on Win9x computers) before you edit the registry.
    Crystal Reports XI Release 1
    1.     Create a registry key HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\DatabaseOptions\LOV.
    NOTE     Alternatively, you can create the registry key HKEY_CURRENT_USER\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\DatabaseOptions\LOV and that key will override the settings of the HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\DatabaseOptions\LOV key.
    2.     Add a string value "MaxRowsetRecords" and set the value to the maximum number of values that you desire for your report. For example, a value of 2000 will return up to 2000 values in the lowest level of a cascading parameter. NOTE: The value 0 (Unlimited) will not work with BusinessObjects Enterprise XI or Crystal Reports Server XI, you must specify another value.
    NOTE     The higher the number of values is, the longer it will take the Enter Values dialog box to populate with values.
    3.      After making changes to the registry, restart the affected service or application as required.
    Crystal Reports XI Release 2
    1.     Create a registry key HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.5\Crystal Reports\DatabaseOptions\LOV.
    NOTE     Alternatively, you can create the registry key HKEY_CURRENT_USER\SOFTWARE\Business Objects\Suite 11.5\Crystal Reports\DatabaseOptions\LOV and that key will override the settings of the HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.5\Crystal Reports\DatabaseOptions\LOV key.
    2.     Add a string value "MaxRowsetRecords" and set the value to the maximum number of values that you desire for your report. For example, a value of 2000 will return up to 2000 values in the lowest level of a cascading parameter. 
    NOTE     The value 0 (Unlimited) will not work with BusinessObjects Enterprise XI or Crystal Reports Server XI, you must specify another value.
    3.     After making changes to the registry, restart the affected service or application as required.
    I hope this helps you.
    Regards,
    Prashant

  • Help with Flash Player- Not Playing

    I recently went to a website where it said that i needed to
    download the latest version of Flash Player. I followed the
    directions and installed it, and the movie came up after
    installation, but on the website it still said i needed to install
    flash player again. I went through the other forum posts and tried
    everything, but it still wouldn't show up. Then today i was on the
    website and finally the video came up, but then when i refreshed
    the page the video was gone and it again said i needed to install
    the latest version of Flash Player. The video has shown up twice in
    the past day, then says i need to reinstall again. I've tried
    everything, but the videos just wont show up. Does anyone know how
    to fix this for good?

    JDB... your problems and solutions are different (and much
    more complex). Read this CAREFULLY.
    Printable, lovingly formatted versions of these steps, valid
    as of 9/15/2007 are available. I recommend printing them and
    following along with the print version:
    .doc:
    http://www.supportflash.com/bent/flash_player_ocx_troubleshooting.doc
    .pdf:
    http://www.supportflash.com/bent/flash_player_ocx_troubleshooting.pdf
    The issue is this: You have multiple accounts on your XP
    machine. One account plays Flash no problem, the other doesn't,
    although both are Administrator accounts. Or possibly you have only
    one account, and that account fails to play any Flash content. In
    any case if you have ANY odd trouble with the Flash Player ActiveX
    control for Windows as of September 2007, these should be your
    steps. And yes, you need to do both sets of steps, in order!
    The cause: This is usually caused by either or BOTH of the
    following problems:
    1. Leftover locked bits of an old Flash Player installation
    2. Registry permission errors (aka 'ACL's)
    OK so what do you do about this?
    ONE: Identify possibly leftover Flash player bits
    a. Open C:\WINDOWS\system32\Macromed\Flash folder.
    b. Download the latest FP uninstaller from
    http://www.adobe.com/go/tn_14157.
    c. Run the uninstaller. If you get a notice saying you need
    to reboot, then reboot.
    d. Look at C:\WINDOWS\system32\Macromed\Flash folder.
    e. Does any file ending in .ocx remain? (flash.ocx,
    flasha.ocs, flash9d.ocx etc...)
    e1. If no, then you don't usually have any leftover locked
    bits.
    You're done with this part of the problem, proceed to TWO.
    e2. If yes, then that remaining .ocx file may be locked.
    Right click it
    and select properties and look at the version tab.
    What is the version number?
    f. Is the version number Flash Player 9.0.16.0 or earlier?
    f1. Use the uninstaller instructions from this technote:
    http://www.adobe.com/go/4da116d3
    -- section "Flash Player 9.0.16.0 and earlier"
    -- DO NOT re-register the uninstaller. ONLY do this
    UninstFl.exe part.
    Yes, you'll need to know how to use the command line to do
    this. If you're not
    comfortable with that then take your machine to someone who
    is!
    g. Is the version number Flash Player 9.0.28.0 or higher?
    g1. Use the uninstaller instructions from this technote:
    http://www.adobe.com/go/4da116d3
    -- section "Flash Player 9 (9.0.28.0) and later"
    -- DO NOT re-register the uninstaller. ONLY do this
    UninstFl.exe part.
    In both the D and E sections above you'll need to use the
    specific name of the control that remains
    in the C:\WINDOWS\system32\Macromed\Flash. So if you had a
    stuck flash9b.ocx[DJM1] in the folder
    and version was 9.0.28.0, your uninstall command would look
    like this:
    UninstFl.exe -u
    c:\windows\system32\Macromed\Flash\Flash9b.ocx
    That said, if you have trouble running these commands it
    really is necessary to find someone who knows how
    to use the command line, either a friend or a local
    professional. Or spend some time learning about the
    command line yourself.
    h. RERUN the uninstaller you downloaded earlier. This should
    get rid of the remaining (now unlocked) .ocx file and fix any
    registry keys associated with it.
    ALL of section "ONE: Identify possibly leftover Flash player
    bits" is important. BUT this locked bit problem only happens on
    maybe one out of 50 machines. So most people with installation
    problems such as this are not going to have locked bits.
    AND even after reinstalling you may still have continued
    problems with Flash Player not being recognized.
    Then we have to move on to section two..
    TWO: Registry Permission Problems
    We have been working on Flash Player failures caused by
    Windows System Registry issues. We have not been able to determine
    what’s causing these permissions to change. But that change
    prevents the successful installation of Flash Player ActiveX
    control (used by IE Windows).
    Registry permission problems can be resolved using a tool
    called SubInACL, built by Microsoft to correct system registry
    issues.
    Symptoms: What to look for:
    1. If you install Flash Player on IE and are unable to see
    Flash content on any webpage
    2. After installation C:\WINDOWS\system32\Macromed\Flash
    will have flash 9c.ocx in it but it failed to register
    3. It appears that Flash Player installed correctly, but
    unable to view Flash content
    4. Flash Player works on other browsers, but NOT Internet
    Explorer
    5. If you are missing groups in HKEY_CLASSES_ROOT Advanced
    Permissions
    6. If you have run registry cleaners in the past, this may
    have corrupted your system
    Warning: The following solution involves the Windows System
    Registry. Editing or manipulating the registry incorrectly can
    result in serious system damage which may require re-installation
    of the operating system. If you are not comfortable editing the
    registry, then take your system to a professional. If you choose to
    proceed, then it is essential that you create a complete system
    backup and a Windows System Restore Point before proceeding. Adobe
    Systems cannot be held responsible for damage resulting from this
    information.
    1. Select Start > Run
    2. Type in “regedit”
    3. Right click on HKEY_CLASSES_ROOT
    4. Select Permissions
    5. Select Advanced
    For Vista
    Compare your permissions with the ones in this screenshot.
    http://www.supportflash.com/vista_key.png
    For Window XP Pro or other flavors of XP
    Compare your permissions with the ones in this document
    “Troubleshooting system registry issues that prevent Flash
    Player installation” (scroll down to the bottom of page).
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=kb400116
    Notice any major differences, missing groups, incorrect
    permissions?
    How can you repair the System Registry, what's the fix
    Download SubInACL from Microsoft to fix permission issues
    that prevent the Flash Player Installation.
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=fb1634cb
    NOTE: The Microsoft version of the .cmd script run by
    SubInACL is not be run on any XP version other than Pro. HOWEVER,
    the Adobe .cmd script in the above technote is tested safe for ALL
    VERSIONS OF XP!!!
    If you have a Windows System Registry permission issue that
    sounds like the one described above, SubINACL may be the solution.
    Please note that if you have this issue on multiple accounts on one
    machine you’ll need to fix each machine individually.

  • Help with Spry Rating Widget within a Spry Repeating Region

    My link  http://www.youthinkyougotitbad.com
    This is a long question, but it seems to me if answered somewhere it could help alot of people in the spry community creating comment boards as it uses three important spry widgets: rating, repeating, and tabbed panels. I am trying to use spry rating widget within a spry repeating region within a spry tabbed panel with xml. I was trying to go with the pulse light script (http://forums.adobe.com/message/3831721#3831721) but Gramps told me about the spry rating widget. But I have ran into a couple more problems. First, I couldnt find that much information on the forums or online about how to do the php page with the spry rating widget. None of these have any information on how to do it:
    http://labs.adobe.com/technologies/spry/articles/rating_overview/index .html
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/rating. html
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.ht ml
    And it seems that the official examples are so poor (or I am just ignorant, which def could be a possiblity) it shows
    to set the initial rating value from the server, but uses a static value of 4
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.html
    <span id="initialValue_dynamic" class="ratingContainer">
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>      
             <input id="spryrating1_val" type="text" name="spryrating1" value="4" readonly="readonly" />
             <span class="ratingRatedMsg sample">Thanks for your rating!</span>
    </span>
    <script>
    var initialValue_dynamic = new Spry.Widget.Rating("initialValue_dynamic", {ratingValueElement:'spryrating1_val'});
    </script>
    I finally found a site that has the php and mysql setup.
    http://www.pixelplant.ro/en/articles/article-detail/article/adobe-widgets-for-download.htm l
    But its not perfect. It has the same problem that I ran into with Pulse light, that you had to use php echo within the spry repeating region to set the initial value from the server:
    <span id="spryrating1" class="ratingContainer">
             <span class="ratingButton"></span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="<?php echo $row['average']?>"/>
            </span>
            <script type="text/javascript"
                var rating1 = new Spry.Widget.Rating("spryrating1", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id=spryrating1&val=@@ratingValue@@'});
            </script>
    So instead, I tried with three of my panels (www.youthinkyougotitbad.com) to get the average rating from xml by using the following queries:
    Recent
    Returns the blurts in most recent order along with average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC
    Wet Eyed
    Returns the blurts in highest ratings order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r Desc
    Dry Eyed
    Returns the blurts in lowest rating order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r
    These all return the correct xml in the correct order.And they return the average rating of each blurt which I can send to my page with xml.
    My first question is that I dont know how to configure the query on my fourth panel Empathized & Advised the same way because it already has a Group By for the Comment Id.
    SELECT `Comment`.id_Blurt, COUNT(*) as frequency, Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt, `Comment` WHERE Blurt.Id_blurt = `Comment`.id_Blurt GROUP BY `Comment`.id_Blurt ORDER BY COUNT(*) DESC";
    Not sure if you guys need more information to understand that all, if so just ask.
    So after I get my average value through xml to the first three panels, I set my spry repeating region up like this:
    (Blurt panel)
    <div spry:region="pv1" spry:repeatchildren="pv1">           
               <div class="blurtbox">
                <!--  most recent blurt tab-->
                <h3> "{pv1::Blurt}"</h3>
                <p> Blurted from {pv1::Location} at {pv1::Date}</p>
                <p>Empathize or Advise about {pv1::Name}'s Blurt #<a href="detailblurt.php?blurtid={pv1::Id_blurt}"> {pv1::Id_blurt}</a></a></p>
               <span id="{pv1::Id_blurt}" class="ratingContainer">
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingRatedMsg">Thank You! Your tears have been tallied.</span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="{pv1::average_r}"/>
            </span>
            <script type="text/javascript">
                // overview of available options and their values:
                // http://labs.adobe.com/technologies/spry/articles/rating_overview/index.html
                var rating1 = new Spry.Widget.Rating("{pv1::Id_blurt}", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id={pv1::Id_blurt}&val=@@ratingValue@@'});
            </script>
                 <br/>
               </div>
              </div>
    Ok, it registers the right vote in the database with the right blurt id each time. But I am having two problems so far:
    One, even though {pv1::average_r} returns the correct average through xml, it doesn't show the initial rating value for each of the repeating blurts. It seems to show the first one correct, and then just repeat that same value to the other ones that follow. I just dont understand since it can get the correct server value right after you vote (afterRating:'serverValue), that I can't manipulate spryrating.js in some way that I could just replace 'ratingValue' in ratingValueElement:'ratingValue' with something to give me the initial server value.
    Two: Is even more mysterious to me, if you play around with voting on the site, sometimes you are unable to vote on different blurts. Its weird. It seems like that the javascript is completely off just on those blurts. And sometimes its a whole row, sometimes none. But so far its never a problem on the first tabbed panel (Recent), only on the other three. As far as I know, the coding is exactly the same in each tab's repeating region except for the different xml input.
    And, now on the live server, sometimes the pics of tears used to voting dont show up until you click.
    Any help on those three questions (how to query the fourth panel, how to show the initial server value, and the glitches with voting) would be greatly appreciated!! I looked pretty hard on adobe forums and other sites, and didnt see much on how to really use the spry rating widget with php and xml.
    Thanks!!

    Update:
    Ok, the first query on the Recent tab doesnt work for me because it wont show unless its already voted, and since these are supposed to be new blurts, that kind of breaks the whole site:
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC";
    So I replaced it with what I originally had.
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt ORDER BY Blurt.`Date` DESC";
    But this doesn't provide me with the initial average rating:(

  • Need help with DOC type web service

    hi,
    I am trying to write a simple message style ( doc type ) web service but no success so far. I have tried to search for examples but no use. I already implemented some simple RPC style web services like calculator etc and able to use them. I am more interested in the DOC type ( which sends SOAP message and receives SOAP message back). Can Anybody give me an example for implementing this type of service ( very-simple say HellowWorld ) or point me to some website . I am not able to generate the response envelope. I can write the client program which will send a SOAP Envelope to this services with one parameter NAME and the services should return Hello Name but in a SOAP envelope form. I can create a SOAP message in this Client using SOAPConnection and MessageFactory etc. Your help will be really appreciated. There is very little stuff about webservices on the internet as well on this forum.
    Thanks
    Vinod

    Hello kwilding2,
    Thanks for the quick response and pointing to some useful websites. I downloaded the code from web service essentials BUT all the examples are using SOAP RPC calls. They create a call object and call one of the service methods and a response is returned. I am little confused about this stuff. I am looking for something which returns the response in a SOAP envelope for which i think i need to use JAXM API which I already have downloaded. I have created a client which composes a SOAP envelope using SOAPConnection and other MessageFactory classes etc and can send this SOAP envelope to a web service. In return I want the web service to give the SOAP envelope.
    I have gone thru xmethods.net and picked the following stock quote request and response:
    Sample Request envelope:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <symbol xsi:type="xsd:string">IBM</symbol>
    </ns1:getQuote>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Sample Response Envelope:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:getQuoteResponse xmlns:ns1="urn:xmethods-delayed-quotes" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <return xsi:type="xsd:float">133.625</return>
    </ns1:getQuoteResponse>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I also want the things in this order. This webservice at xmethods just returns the price for a stock, so how they say it returns this Response Envelope. Is this Envelope something implied. I am getting more confused.
    any help will be appreciated.
    Thanks
    Vinod

  • Still trying to get help with Acrobat Reader - not printing

    I have tried printing from Acrobat Reader 10.1 both as regular printout and also printing as image and neither way is working. Any assistance would be greatly appreciated. Here's are the log files:
    As PDF:
    Process:         AdobeReader [3790]
    Path:            /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier:      com.adobe.Reader
    Version:         10.1.0 (10.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-06-18 22:26:15.888 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          834391 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  491 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      A53C6811-1170-42FB-B252-FDD6EF1FC1AD
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation      0x95209440 CFURLCopyAbsoluteURL + 48
    1   com.apple.CoreFoundation      0x95251741 _CFBundleAddPreferredLprojNamesInDirectory + 257
    2   com.apple.CoreFoundation      0x95251230 _CFBundleGetLanguageSearchList + 160
    3   com.apple.CoreFoundation      0x9525107a CFBundleCopyResourceURL + 26
    4   com.apple.CoreFoundation      0x95261526 CFBundleCopyLocalizedString + 694
    5   ...e.print.framework.PrintCore 0x905e6fcd OpaquePMPaper::CreateLocalizedPaperName(OpaquePMPrinter*) + 355
    6   ...e.print.framework.PrintCore 0x905e9e7a PMPaperCreateLocalizedName + 202
    7   AdobeAGM                      0x01c863d7 AGMTerminate + 1732436
    8   AdobeAGM                      0x01bd463b AGMTerminate + 1003960
    9   AdobeAGM                      0x01bd4bbe AGMTerminate + 1005371
    10  AdobeAGM                      0x01bd4e5d AGMTerminate + 1006042
    11  AdobeAGM                      0x01af8c6a AGMTerminate + 104423
    12  AdobeAGM                      0x01afa1f1 AGMTerminate + 109934
    13  com.adobe.Acrobat.framework   0x0028d584 RunAcrobatInBrowser + 158795
    14  com.adobe.Acrobat.framework   0x0028b276 RunAcrobatInBrowser + 149821
    15  com.adobe.Acrobat.framework   0x0028bc47 RunAcrobatInBrowser + 152334
    16  com.adobe.Acrobat.framework   0x0028bfe2 RunAcrobatInBrowser + 153257
    17  com.adobe.Acrobat.framework   0x0028c0fe RunAcrobatInBrowser + 153541
    18  com.adobe.Acrobat.framework   0x00505404 AcroSecurityBailOutImpl + 2525809
    19  com.adobe.Acrobat.framework   0x004657cc AcroSecurityBailOutImpl + 1871417
    20  com.adobe.Acrobat.framework   0x0067ee8b AcroSecurityBailOutImpl + 4072696
    21  com.adobe.Acrobat.framework   0x004925d2 AcroSecurityBailOutImpl + 2055231
    22  com.adobe.Acrobat.framework   0x00492718 AcroSecurityBailOutImpl + 2055557
    23  com.adobe.Acrobat.framework   0x0088eaac AcroSecurityBailOutImpl + 6234393
    24  com.adobe.Acrobat.framework   0x0088e85c AcroSecurityBailOutImpl + 6233801
    25  com.adobe.Acrobat.framework   0x00242a4e RunAcrobat + 2291709
    26  com.apple.AppKit              0x96c30c46 -[NSApplication sendAction:to:from:] + 112
    27  com.apple.AppKit              0x96c30af9 -[NSMenuItem _corePerformAction] + 435
    28  com.apple.AppKit              0x96c307eb -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    29  com.apple.AppKit              0x96c306da -[NSMenu performActionForItemAtIndex:] + 65
    30  com.apple.AppKit              0x96c3068d -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    31  com.apple.AppKit              0x96c305f3 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    32  com.apple.AppKit              0x96c30537 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    33  com.apple.AppKit              0x96c24c61 NSSLMMenuEventHandler + 404
    34  com.apple.HIToolbox           0x94884c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    35  com.apple.HIToolbox           0x94883ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    36  com.apple.HIToolbox           0x948a67f3 SendEventToEventTarget + 52
    37  com.apple.HIToolbox           0x948d2e87 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    38  com.apple.HIToolbox           0x948f7b90 SendMenuCommandWithContextAndModifiers + 66
    39  com.apple.HIToolbox           0x948f7b47 SendMenuItemSelectedEvent + 121
    40  com.apple.HIToolbox           0x948f7a5d FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    41  com.apple.HIToolbox           0x948c7160 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 454
    42  com.apple.HIToolbox           0x948c68bb _HandleMenuSelection2 + 465
    43  com.apple.HIToolbox           0x948c66d9 _HandleMenuSelection + 53
    44  com.apple.AppKit              0x96c1e1a2 _NSHandleCarbonMenuEvent + 285
    45  com.apple.AppKit              0x96bf2d3e _DPSNextEvent + 2304
    46  com.apple.AppKit              0x96bf1fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    47  com.apple.AppKit              0x96bb4247 -[NSApplication run] + 821
    48  com.adobe.Acrobat.framework   0x000149d5 RunAcrobat + 6020
    49  com.adobe.Acrobat.framework   0x0001338d RunAcrobat + 316
    50  com.adobe.Reader              0x00001e92 main + 94
    51  com.adobe.Reader              0x00001e16 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x95d97922 kevent + 10
    1   libSystem.B.dylib             0x95d9803c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x95d974f9 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x95d9729e _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x95d96d21 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x95d96b66 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x95d710fa semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x95d9ec85 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x95dcdaa8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x90f78e3d TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    5   com.adobe.Acrobat.framework   0x00066a2d RunAcrobat + 341980
    6   com.adobe.Acrobat.framework   0x00064126 RunAcrobat + 331477
    7   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    8   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    9   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x95d97922 kevent + 10
    1   com.adobe.Acrobat.framework   0x00edc352 AcroSecurityBailOutImpl + 12843455
    2   com.adobe.Acrobat.framework   0x00e44d7f AcroSecurityBailOutImpl + 12223468
    3   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    4   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 10:  com.apple.CFSocket.private
    0   libSystem.B.dylib             0x95d90066 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x9527bc83 __CFSocketManager + 1091
    2   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    3   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95dcaec5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib             0x95dcae03 usleep$UNIX2003 + 61
    3   com.apple.AppKit              0x96d5bfe1 -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation          0x978a1ad0 -[NSThread main] + 45
    5   com.apple.Foundation          0x978a1a80 __NSThread__main__ + 1499
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 12:
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xa06118ac  ebx: 0x9520941e  ecx: 0x00000000  edx: 0x0000001d
      edi: 0xa0612294  esi: 0x00000000  ebp: 0xbfffcf18  esp: 0xbfffced0
       ss: 0x0000001f  efl: 0x00010287  eip: 0x95209440   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -     0x1fff +com.adobe.Reader 10.1.0 (10.1.0) <C103209A-BE79-55CF-8297-9635C3F28BFD> /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
        0x6000 -  0x16f6ff7 +com.adobe.Acrobat.framework 10.1.0 (10.1.0) <B3A2F0C5-6AAF-C7F4-2D67-804B86FC7FAC> /Applications/Adobe Reader.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x1920000 -  0x1a41fff +AdobeACE ??? (???) <8764F712-6333-8E08-EDF7-4414F1A9CE1C> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1a64000 -  0x2029feb +AdobeAGM ??? (???) <7A72C679-CC12-2C8A-717C-C595E294E688> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x20dc000 -  0x20f9ff7 +AdobeBIB ??? (???) <83F5EE67-C9F9-DC7C-681B-F2EEA04DD6D1> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2100000 -  0x2424fe3 +com.adobe.CoolType AdobeCoolType 5.08.106.1 (5.08.106.1) <DFA9738F-6A52-52AC-4455-098271C8F0E1> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x15300000 - 0x154f7feb +com.adobe.Acrobat.adm 10.1.0 (10.1.0) <8A8094B3-FEB9-ABF1-ED78-8B041CE5A4E1> /Applications/Adobe Reader.app/Contents/Frameworks/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x15630000 - 0x1568ffe7 +AcroSQLite ??? (???) <5C62F963-9742-B74F-CC84-E734E1DC7610> /Applications/Adobe Reader.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x19a7f000 - 0x19aa3fe7  GLRendererFloat ??? (???) <0C6A1BCF-97F0-F7D6-C840-2991681BB67C> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x19adc000 - 0x19ae4ff7  com.apple.qldisplay.PDF 2.3 (327.6) <9026F23B-3D1B-DDC4-D863-A8A833FE2973> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/Resources/DisplayBundles/PDF.qldisplay/Contents/MacOS/PDF
    0x19e60000 - 0x1a066feb +com.adobe.AcrobatPlugin.EScript 10.1.0 (10.1.0) <B30B6091-2C3D-897F-D860-A1D975AA0E3A> /Applications/Adobe Reader.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0x1b6c2000 - 0x1b83afe7  GLEngine ??? (???) <0E1DF3E4-0EEE-9FD8-8F52-FFFCF0DF23A7> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1b86c000 - 0x1bc6affb  com.apple.ATIRadeonX2000GLDriver 1.6.26 (6.2.6) <496702B6-1B8D-0FCE-E3DB-707FFA7D5EE0> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
    0x1bc9a000 - 0x1bcf7fff +AdobeXMP ??? (???) <E3A59E8C-A514-8A4A-F965-E9C043C7AC96> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x1c861000 - 0x1c887ffb +AdobeBIBUtils ??? (???) <B9888BEE-A939-50E3-1CD3-3313AC14A073> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1cc2f000 - 0x1d2bbff3 +com.adobe.AcrobatPlugin.Comments 10.1.0 (10.1.0) <60934D21-72D2-1CBD-064F-03C3F953B262> /Applications/Adobe Reader.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <28F0312C-0678-159E-34E2-9A4E3DEADB20> /usr/lib/dyld
    0x90003000 - 0x9009bfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9009c000 - 0x9014aff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x9014b000 - 0x9032dfff  com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x90484000 - 0x9049cff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9049d000 - 0x9049dff7  com.apple.Carbon 150 (152) <BD34A993-AF6F-10EE-ACDA-6D11E21A8F37> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9049e000 - 0x904a0ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x904da000 - 0x904e4ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x904e5000 - 0x90582fe3  com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x90583000 - 0x905c7ff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x905c8000 - 0x9065afe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9067d000 - 0x90682ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90683000 - 0x9069ffe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x906a0000 - 0x90e8f557  com.apple.CoreGraphics 1.545.0 (???) <8A4CB0D9-1001-0F62-4DA4-B8AB3B45E226> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x90e90000 - 0x90ec1ff7  libGLImage.dylib ??? (???) <1AF72191-087A-5D75-B3B9-3F537315F635> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x90ec2000 - 0x90f09ffb  com.apple.CoreMediaIOServices 134.0 (1160) <4CD78557-3CDA-A4B5-33CB-BBB876B4463D> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
    0x90f0a000 - 0x90f2afe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x90f32000 - 0x91252ff3  com.apple.CoreServices.CarbonCore 861.34 (861.34) <3DA9098F-B71B-4BDE-5DE5-4B76C49158EB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x912cc000 - 0x916e2ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x916e3000 - 0x91826fef  com.apple.QTKit 7.6.6 (1756.15) <32C49374-14BC-53E7-FBFF-E11B42A41F56> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91827000 - 0x91842ff7  libPng.dylib ??? (???) <65E824F7-523A-CC34-ABDD-2A3B12DE1CA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x91843000 - 0x9184bff7  com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9184c000 - 0x9188eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9188f000 - 0x9189bff7  libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x9189c000 - 0x918d5ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <90C5DE81-1BEF-D807-A898-0FC19BDD14EC> /usr/lib/libcups.2.dylib
    0x918d6000 - 0x918d8ff7  libRadiance.dylib ??? (???) <B83179D4-E41C-D2BA-1E4C-A64CB45C15E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x918d9000 - 0x91916ff7  com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9191d000 - 0x91923ff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <218EC7C4-0520-2D8C-62EE-AA82D35448FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x91924000 - 0x91934ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x91935000 - 0x91942ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91943000 - 0x919bcff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x919bd000 - 0x919c8ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <4560936D-7730-5DD2-BFD7-95270DDC210A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b72000 - 0x91b76ff7  libGFXShared.dylib ??? (???) <4F2199F0-320F-0B59-0380-D3131D644CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x92acb000 - 0x92b06feb  libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92b20000 - 0x92c22fef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
    0x92c30000 - 0x92c73ff7  libGLU.dylib ??? (???) <2C7B2727-26F6-F29D-9D15-33044E87359F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92c74000 - 0x92e72ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92e73000 - 0x92e85ff7  com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x92e91000 - 0x92ec7fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x92ec8000 - 0x92ed8ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x92ed9000 - 0x92f2fff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
    0x92f30000 - 0x92f33ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B84D7376-EE9C-2B7F-04FA-D622E2C10CA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x92f39000 - 0x92fe6fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x92fe7000 - 0x93115fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9323b000 - 0x9323fff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93240000 - 0x9334ffe7  com.apple.WebKit 6533.21 (6533.21.1) <4FBCE2F9-84EB-302C-FD1F-DAD2422A219E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93350000 - 0x933a1ff7  com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x933a2000 - 0x933caff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x933cb000 - 0x93448ff7  com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowse r
    0x936d7000 - 0x936d7ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936d8000 - 0x93b0fff3  com.apple.RawCamera.bundle 3.6.4 (561) <DBA5D7C1-CD82-CE7F-5AE5-A0E4E128236F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x93b10000 - 0x93c14fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x93c15000 - 0x93c3fff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93c40000 - 0x94693ff7  com.apple.WebCore 6533.21 (6533.21.1) <09CE6602-4DB5-6E93-8593-4E1C57CB202F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x947f7000 - 0x94879ffb  SecurityFoundation ??? (???) <006B3166-E7E2-F763-04FC-3DD458C14F5F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9487d000 - 0x94ba1fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x94ba2000 - 0x94bc8ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x94bc9000 - 0x94ccafe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x94ccb000 - 0x94ccbff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94ccc000 - 0x94ccdff7  com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x94cce000 - 0x94cdfff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x94cf9000 - 0x94cfcfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94cfd000 - 0x94d00ffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x94d01000 - 0x94d6fff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x94d70000 - 0x94da3ff7  com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x94da4000 - 0x94f5efeb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <C96F11A7-2569-3037-C4C3-0342708FA3CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x94f5f000 - 0x94f73ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x94f74000 - 0x94f9bff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x94f9c000 - 0x95046fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <BE832CCE-B692-F55F-F5F8-3973649AFEA1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x951bb000 - 0x951feff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x951ff000 - 0x9537afe7  com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95385000 - 0x95385ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x955cf000 - 0x9560cff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x9560d000 - 0x95677fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x959b5000 - 0x95a50ff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <FD63F92B-8DDE-4DBA-A7A5-0294E3607083> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x95a51000 - 0x95b7dffb  com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x95b7e000 - 0x95b82ff7  libGIF.dylib ??? (???) <447BC6E8-4C56-3D5D-983B-6BEA0D26F319> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x95bbc000 - 0x95c2bff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x95d70000 - 0x95f17ff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    0x95ff5000 - 0x95ff6ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x96075000 - 0x9607bfe7  com.apple.CommerceCore 1.0 (9) <928FCA4F-1366-AE18-CF67-87C79F5DAC21> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x9607c000 - 0x96135fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x96136000 - 0x96144fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x96145000 - 0x9614cff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x9614d000 - 0x9614dff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9614e000 - 0x9617eff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96251000 - 0x962a9fe7  com.apple.datadetectorscore 2.0 (80.7) <58C659CA-72CC-31D2-9732-09BF1A0CAAF6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x962aa000 - 0x962cbfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x962cc000 - 0x9644efe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D375C1CF-C88D-C5F6-3C49-CD429023FBAC> /usr/lib/libicucore.A.dylib
    0x9644f000 - 0x96450ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <253E9552-5CEA-0D5A-1EDA-3B8F669B79EA> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x964ac000 - 0x964afff7  libCoreVMClient.dylib ??? (???) <12EF6056-7AC7-6691-75A2-BD0675C56A35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x964b0000 - 0x964d4ff7  libJPEG.dylib ??? (???) <A50127EB-C202-0436-E62D-41E2E893E436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x9660d000 - 0x96749ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <781018FB-474B-E09C-D419-5BFF80590A10> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9674a000 - 0x9678efe7  com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x967a3000 - 0x967acff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x967ad000 - 0x967adff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x96865000 - 0x96945fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x969f0000 - 0x96acaffb  com.apple.DesktopServices 1.5.10 (1.5.10) <2BA08DD4-35A2-A0FF-ADEA-B381F0CEEB81> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x96acb000 - 0x96b96fef  com.apple.CoreServices.OSServices 359 (359) <EC340F74-8192-C9DD-40B3-AE4E519A38D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x96baa000 - 0x9748aff7  com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97499000 - 0x97804ff7  com.apple.QuartzCore 1.6.3 (227.36) <8E927524-EB0A-D5BA-C2E4-FA26FE4C428A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97805000 - 0x97885feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9788b000 - 0x97afefe7  com.apple.Foundation 6.6.6 (751.53) <C73FDD37-000B-C505-FD8D-80D1C9D17965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97aff000 - 0x97b32ff3  libTrueTypeScaler.dylib ??? (???) <E5E16584-870F-CBCD-F861-3BB45324DE16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x97b3b000 - 0x97f70ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x97f7f000 - 0x97fd9fe7  com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98020000 - 0x981fcfe7  libType1Scaler.dylib ??? (???) <CB930F73-3CD3-BF41-645B-470660F57FF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x981fd000 - 0x981fdff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x981fe000 - 0x982b4ffb  libFontParser.dylib ??? (???) <D85C1840-0FA8-27A2-54B7-FF336099EBC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x982bf000 - 0x982e1fef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x982e2000 - 0x982edff7  libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x982ee000 - 0x98553feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x985a2000 - 0x9864affb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9864b000 - 0x98691ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x98692000 - 0x986efff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x986f0000 - 0x98751fe7  com.apple.CoreText 3.151.8 (???) <6F5D6C49-4693-B9B7-6612-832E8F155747> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x9877d000 - 0x987e1ffb  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
    0x98857000 - 0x98857ff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9899a000 - 0x989affff  com.apple.ImageCapture 6.0.2 (6.0.2) <E9F4B952-27A1-5BFC-CA8D-DADA055D30E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x989b0000 - 0x98bdbff3  com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x98bdc000 - 0x98c25fe7  libTIFF.dylib ??? (???) <5CE284EC-F637-EDBB-FDB3-61E86407CBB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x98c32000 - 0x98d3eff7  libGLProgrammability.dylib ??? (???) <2D172B4E-432F-D18E-EA99-3BD56DBE7649> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x98d6b000 - 0x98dacff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <95079B56-0B7B-F114-5C43-5220DBE0FBB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x98dee000 - 0x98eaafff  com.apple.ColorSync 4.6.6 (4.6.6) <D00B95AE-2379-CB8E-B18C-FF5B66741C23> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x98eab000 - 0x98f25fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98fba000 - 0x98ffaff7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <CE815114-CEFA-4AF4-7365-7908428AB733> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x9906a000 - 0x9907efe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9907f000 - 0x9908dff7  com.apple.opengl 1.6.12 (1.6.12) <81AEF74E-E33A-B021-9CDB-6199104105FF> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9913f000 - 0x99149fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9914a000 - 0x99443fef  com.apple.QuickTime 7.6.6 (1756.15) <C2567783-4EAC-6803-522B-D701B95C4DAE> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99444000 - 0x9944afff  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
    0x9944b000 - 0x9949bff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9949c000 - 0x99517fff  com.apple.AppleVAFramework 4.10.23 (4.10.23) <57B7C626-F344-AB15-8556-00425FA765DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x99518000 - 0x99556ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x99557000 - 0x99576ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9957f000 - 0x9957fff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x99580000 - 0x99a39ffb  com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x99a3a000 - 0x99a87feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x99ac0000 - 0x99acaff7  com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: SAMSUNG HD502HJ, 465.76 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000
    Printing as image:
    Process:         AdobeReader [3814]
    Path:            /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier:      com.adobe.Reader
    Version:         10.1.0 (10.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-06-18 22:29:49.584 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          834604 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  534 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      A53C6811-1170-42FB-B252-FDD6EF1FC1AD
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation      0x95209440 CFURLCopyAbsoluteURL + 48
    1   com.apple.CoreFoundation      0x95254624 _CFFindBundleResources + 740
    2   com.apple.CoreFoundation      0x952510f3 CFBundleCopyResourceURL + 147
    3   com.apple.CoreFoundation      0x95261526 CFBundleCopyLocalizedString + 694
    4   ...e.print.framework.PrintCore 0x905e6fcd OpaquePMPaper::CreateLocalizedPaperName(OpaquePMPrinter*) + 355
    5   ...e.print.framework.PrintCore 0x905e9e7a PMPaperCreateLocalizedName + 202
    6   AdobeAGM                      0x01c863d7 AGMTerminate + 1732436
    7   AdobeAGM                      0x01bd463b AGMTerminate + 1003960
    8   AdobeAGM                      0x01bd4bbe AGMTerminate + 1005371
    9   AdobeAGM                      0x01bd4dec AGMTerminate + 1005929
    10  AdobeAGM                      0x01c19a80 AGMTerminate + 1287677
    11  AdobeAGM                      0x01c0e729 AGMTerminate + 1241766
    12  AdobeAGM                      0x01c090a3 AGMTerminate + 1219616
    13  AdobeAGM                      0x01c00114 AGMTerminate + 1182865
    14  AdobeAGM                      0x01c00830 AGMTerminate + 1184685
    15  AdobeAGM                      0x01af9388 AGMTerminate + 106245
    16  AdobeAGM                      0x01af9bf2 AGMTerminate + 108399
    17  com.adobe.Acrobat.framework   0x00d30066 AcroSecurityBailOutImpl + 11089619
    18  com.adobe.Acrobat.framework   0x00ca1583 AcroSecurityBailOutImpl + 10505200
    19  com.adobe.Acrobat.framework   0x00ca3230 AcroSecurityBailOutImpl + 10512541
    20  com.adobe.Acrobat.framework   0x0028b82d RunAcrobatInBrowser + 151284
    21  com.adobe.Acrobat.framework   0x0028bc47 RunAcrobatInBrowser + 152334
    22  com.adobe.Acrobat.framework   0x0028bfe2 RunAcrobatInBrowser + 153257
    23  com.adobe.Acrobat.framework   0x0028c0fe RunAcrobatInBrowser + 153541
    24  com.adobe.Acrobat.framework   0x00505404 AcroSecurityBailOutImpl + 2525809
    25  com.adobe.Acrobat.framework   0x004657cc AcroSecurityBailOutImpl + 1871417
    26  com.adobe.Acrobat.framework   0x0067ee8b AcroSecurityBailOutImpl + 4072696
    27  com.adobe.Acrobat.framework   0x004925d2 AcroSecurityBailOutImpl + 2055231
    28  com.adobe.Acrobat.framework   0x00492718 AcroSecurityBailOutImpl + 2055557
    29  com.adobe.Acrobat.framework   0x0088eaac AcroSecurityBailOutImpl + 6234393
    30  com.adobe.Acrobat.framework   0x0088e85c AcroSecurityBailOutImpl + 6233801
    31  com.adobe.Acrobat.framework   0x00242a4e RunAcrobat + 2291709
    32  com.apple.AppKit              0x96c30c46 -[NSApplication sendAction:to:from:] + 112
    33  com.apple.AppKit              0x96c30af9 -[NSMenuItem _corePerformAction] + 435
    34  com.apple.AppKit              0x96c307eb -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    35  com.apple.AppKit              0x96c306da -[NSMenu performActionForItemAtIndex:] + 65
    36  com.apple.AppKit              0x96c3068d -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    37  com.apple.AppKit              0x96c305f3 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    38  com.apple.AppKit              0x96c30537 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    39  com.apple.AppKit              0x96c24c61 NSSLMMenuEventHandler + 404
    40  com.apple.HIToolbox           0x94884c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    41  com.apple.HIToolbox           0x94883ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    42  com.apple.HIToolbox           0x948a67f3 SendEventToEventTarget + 52
    43  com.apple.HIToolbox           0x948d2e87 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    44  com.apple.HIToolbox           0x948f7b90 SendMenuCommandWithContextAndModifiers + 66
    45  com.apple.HIToolbox           0x948f7b47 SendMenuItemSelectedEvent + 121
    46  com.apple.HIToolbox           0x948f7a5d FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    47  com.apple.HIToolbox           0x948c7160 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 454
    48  com.apple.HIToolbox           0x948c68bb _HandleMenuSelection2 + 465
    49  com.apple.HIToolbox           0x948c66d9 _HandleMenuSelection + 53
    50  com.apple.AppKit              0x96c1e1a2 _NSHandleCarbonMenuEvent + 285
    51  com.apple.AppKit              0x96bf2d3e _DPSNextEvent + 2304
    52  com.apple.AppKit              0x96bf1fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    53  com.apple.AppKit              0x96bb4247 -[NSApplication run] + 821
    54  com.adobe.Acrobat.framework   0x000149d5 RunAcrobat + 6020
    55  com.adobe.Acrobat.framework   0x0001338d RunAcrobat + 316
    56  com.adobe.Reader              0x00001e92 main + 94
    57  com.adobe.Reader              0x00001e16 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x95d97922 kevent + 10
    1   libSystem.B.dylib             0x95d9803c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x95d974f9 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x95d9729e _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x95d96d21 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x95d96b66 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x95

    First of all, it is important to remember that "sometimes, things happen" to computers, and that a problem that you are experiencing may be a unique set of circumstances, and not necessarily a defect in the software.
    1. Is your printer driver up-to-date? If you create another printer queue for a Generic PostScript Printer, does the problem still occur?
    2. Create a brand new user account and test the problem there. If printing works, then the cause of the problem is something inside your original user account, like a preference file or a cache. Use a utility like Onyx to clear cache files and test removing any preference files in <user>/LibraryPreferences that seem relevant to printing. Remove the preference to the Desktop. If the problem persists, replace the preference file. If it goes away, trash it. Note that you may need to restart after removing a pref file.
    3. Reset the Printing System. In System Preferences > Print & Fax, right click on the list of printers. There will be a menu command "Reset Printing System". Note that this will delete all your print queues, and you will need to add them again.
    4. Is there a crash with every document? Try changing some of the print menu options. Any reason that you are printing as an image? Try not doing that.
    5. There doesn't seem to be anything reported in the crash logs, but do you have any third-party software that runs at startup, or in the background? Very often these things can interfere with many processes.

  • Help with iPhone 3GS (not restoring, seems to be in loop)

    Good morning!
    My phone has not warranty and before taking the next step of having to replace it I would like to read your suggestions or possible solutions for the problems I'm experiencing with my iPhone:
    I have an iPhone 3GS that fell into a cup of coffee. It didn't submerge completely and I was able to open it and dry it very quickly. When I opened it only the dock connection was wet (nothing on the battery or the motherboard). Either way I made sure to check every connection and made sure no coffee drops were left on the inside of the device.
    Here are the issues I've encountered since then:
    1. Afterwards I check the phone by plugin it into the wall charger. I turned on, screen looked OK and I was even prompted with the "Enter passcode" screen. I entered the password and immediately the screen went black and reset to the Apple logo. So long as I had the phone charging through the wall charger the Apple logo will constantly appear. No longer the password screen will show up and the phone seemed to be in a loop that started and ended with the blinking Apple logo. Once unplugged from the wall the iPhone will turn off and make no sound or show any signs of turning on again. 
    2. When connecting to the computer on the first attempt the iPhone will enter recovery mode (showing the connector and iTunes logo) and be recognized by both the computer and iTunes. iTunes will then prompt me to do a restore of the phone. I will follow the steps and "Restore and update" my iPhone. After "extracting the software" and "Verifying with Apple" to start the installation iTunes will prompt me with an error (I've repeated this step several times so there are several different errors I've encountered. Some of the errors include: 20, 21, 3194, 1600, 2001, 2003). After receiving the error iTunes will eject and no longer recognize the device. The iPhone (still connected to the computer) will no longer show the "Recovery Mode" logos and will start working in a loop (blinking Apple logo that appears to turn on and off as in a loop). The computer (device manager) will not recognize the iPhone either (no USB or ports showing the iPhone is still connected).
    My iPhone is not unlocked or jailbroken. Before the incident with the coffee I managed to synchronize and update its firmware as indicated by iTunes. The latest update for my iPhone was 5.0.1. firmware.  My intent is not to unlock or jailbrake the device, just to make it work again.
    Here are some things I've tried since:
    1. Exiting recovery mode via iReb, Tinyumbrella
    2. Entering DFU mode via iReb, Sn0wbreeze,
    3. Shift + Restore and using firmwares from 3.0 to 5.0 to downgrade or upgrade my iPhone.
    4. Add new hosts to my Host file
    5. Try sn0wbreeze and use IPSW to see if it is recognized by iTunes (iTunes recognizes the iPhone but then at the very last minute shows error 20, 21, 3194 or 1600.
    6. Save SHSH files and use Tinyumbrella to uploaded them to my iPhone.
    I would really appreciate if someone can help me on this. I might be doing something wrong or maybe not even considering the right steps to solve this issue. I don't know if there are missing drivers that are preventing the device from communicating with iTunes properly. Of some tool that can be used to correct this problem. It may or may not be fixable but I think it is worth the try.
    Thanks very much.

    I have the exact same problem as you (minus the coffee incident) where the phone just turned off. Tried everything you have too and now the above link is showing a 404 page... Can you help me out?

Maybe you are looking for

  • Trackpad on MBP randomly stops responding

    Hi In the last few days I've had a recurring problem: Randomly and without any obvious context in terms of actions, apps etc, my trackpad simply stops responding. I have all options enabled on the trackpad, such as soft click+drag, and the problem ha

  • How to Access Website emails?

    When I used to subscribe to MSN but would use other browsers because I liked them better and went to a website that had "click here to email us," I would have to restart the computer and reopen in MSN to access the email. Now I subscribe to Vonage, s

  • Getting error in ASLFoundation.dll when trying to start Premiere Pro 4

    When I try to start up Premiere Pro CS4 I get the error The procedure entry point ?GetContainedFilePaths@Directory@ASL@@QBEXABV[very long string continues for six lines] could not be located in the dynamic link library ASLFoundation.dll. then it tell

  • Deploying EJB with RAD

    Hello, I have an EJB application which uses several external JARs. I added them as a library to the project so that the bean will be able to pass the compilation. However, when I start the server (WebSphere 5.1 Test Environment), I get the exception:

  • I can't install VISA driver and USB GPIB driver on my PC with VISTA... help me...

    I have LabVIEW7 and VISTA, it's ok, but I can't install VISA driver and USB GPIB driver on my pc... it's necessary to connect my pc with instruments? Or LabVIEW7 have this files??? Thanks, Vanny. Thanks, Vanny Sweet, Beautiful and Young Female Physic