Why PageController method invoked multiple times per request

I have a page with a customized PageController to override the "prepareModel(LifecycleContext)" method to create bindings dynamically for the page.
I expected the overridden method only invoked once per loading/refresh of the page.
From debugging, I found the overridden method actually invoked 3 times before the page was loaded.
When I put some logic so that bindings only created the 1st time the overridden method invoked, then the page failed to show the data properly as if the binding was missing.
With some debugging, I noticed the PageController invoked multiple times when I added the af:table to the page.
Any idea why prepareModel() got invoked multiple time per loading of a page with af:table ?
How do I determine when to create bindings within prepareModel() so that bindings only created once and the page can use the binding to show the data properly?

<executables>
<invokeAction id="onpageLoadClearTable" Binds="clearViewObject"
RefreshCondition="#{adfFacesContext.postback == false}"/> --------added this into your pagedef.
</executables>
<bindings>
<methodAction IterBinding="XXXXXXXXViewIterator" id="clearViewObject"
MethodName="clearViewObject" RequiresUpdateModel="true"
Action="999" IsViewObjectMethod="true"
</bindings>

Similar Messages

  • CommandButton action method invoked multiple times in standalone OC4J

    Hi,
    We've developed an application in JDeveloper 10.1.3.3.0 (ADF Business Components version 10.1.3.41.57). In one page we have a commandButton with an action method:
    <af:commandButton action="#{MyBean.myActionMethod}"
    blocking="false"
    textAndAccessKey="#{nls['MY_LABEL']}"
    id="myButtonId" >
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
    </af:commandButton>
    This method is defined in a managed bean:
    public String myActionMethod() {
    /* some code */
    return "indexPage";
    There is a navigation-rule for outcome "indexPage". When we run our application in the JDeveloper embedded OC4J instance and click on the commandButton, the action method is invoked once and then the .jspx in the navigation-rule is navigated to.
    We deployed our application to a standalone OC4J instance. Both embedded and standalone OC4J have version: Oracle Containers for J2EE 10g (10.1.3.3.0) (build 070610.1800.23513)
    When we run our application in the standalone OC4J and click on the commandButton, the action method is repeatedly invoked in a seemingly infinite loop.
    We'd appreciate it if someone could shed some light on the matter. Please note that we cannot use <redirect /> in our navigation-rule for "indexPage" because in production we have an Oracle webcache server upstream of our OC4J. Users can only submit HTTPS requests to the webcache, which in turn forwards these requests as HTTP requests.
    Kind regards,
    Ibrahim

    Dear All,
    We'd really appreciate it if somebody would suggest some possible causes even if these might seem fare-fetched. Perhaps compare certain .jar files or something to that effect.
    Anything ????
    Thanks and regards,
    Ibrahim

  • ADF11g: methodAction being invoked multiple times without control...

    Hi,
    I have a page that displays different data took from a single data control.
    This datacontrol is invoked by a methodAction, and the resulting bean contains both plain attributes and List of objects.
    I created my page with JDev 11.1.1.3.0, using drag and drop.
    What happens (seeing the log files) is that the page calls multiple times the methodAction instead of "recognizing" it only needs to call it 1 time to have all the data bound to the page,
    and of course the page does not work. I don't see the data even if the dataControls retrieve it.
    Here is my code:
    Page:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:c="http://java.sun.com/jsp/jstl/core">
      <c:set var="viewcontrollerBundle"
             value="#{adfBundle['sop.view.ViewControllerBundle']}"/>
      <af:pageTemplate viewId="/WEB-INF/templates/dettagliOggettoCoinvoltoTemplate.jspx"
                       id="pt1">
        <f:attribute name="dataOraUltimoAggiornamento"
                     value="#{pageFlowScope.stazione.currentDateTime}"/>
        <f:attribute name="drillDownTab1Title" value="Treni In Arrivo"/>
        <f:facet name="overviewOggettoCoinvoltoArea">
          <af:panelGroupLayout id="pgl3" valign="middle" halign="left"
                               layout="horizontal">
            <!-- rendered="#{bindings._stazione.inputValue != null}"-->
            <af:panelGroupLayout id="pgl5" layout="vertical">
              <af:panelBox text="Info Stazione" id="pb1">
                <af:panelGroupLayout id="pgl8" layout="vertical">
                  <af:panelLabelAndMessage label="Stazione:" id="plam1">
                    <af:outputFormatted value="#{bindings._stazione.inputValue}"
                                        id="of1"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Situazione:" id="plam2">
                    <af:outputFormatted value="#{bindings.situazione.inputValue}"
                                        id="of2"/>
                  </af:panelLabelAndMessage>
                </af:panelGroupLayout>
              </af:panelBox>
              <af:panelBox text="Info TVM" id="pb3">
                <f:facet name="toolbar"/>
                <af:panelGroupLayout id="pgl10" layout="vertical">
                  <af:panelLabelAndMessage label="Numero TVM:" id="plam10">
                    <af:outputFormatted value="#{bindings.numTVM.inputValue}"
                                        id="of10"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Allarmi TVM:" id="plam11">
                    <af:outputFormatted value="#{bindings.numAllarmiTVM.inputValue}"
                                        id="of11"/>
                  </af:panelLabelAndMessage>
                </af:panelGroupLayout>
              </af:panelBox>
            </af:panelGroupLayout>
            <af:panelGroupLayout id="pgl6" layout="vertical">
              <af:panelBox text="Info RFI" id="pb2">
                <f:facet name="toolbar"/>
                <af:panelGroupLayout id="pgl9" layout="vertical">
                  <af:panelLabelAndMessage label="Tel RFI:" id="plam6">
                    <af:outputFormatted value="#{bindings.telRFI.inputValue}"
                                        id="of6"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Cell RFI:" id="plam3">
                    <af:outputFormatted value="#{bindings.cellRFI.inputValue}"
                                        id="of3"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Fax RFI:" id="plam5">
                    <af:outputFormatted value="#{bindings.faxRFI.inputValue}"
                                        id="of5"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Email RFI:" id="plam4">
                    <af:outputFormatted value="#{bindings.emailRFI.inputValue}"
                                        id="of4"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Tel PRM:" id="plam7">
                    <af:outputFormatted value="#{bindings.telPRM.inputValue}"
                                        id="of7"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Fax PRM:" id="plam8">
                    <af:outputFormatted value="#{bindings.faxPRM.inputValue}"
                                        id="of8"/>
                  </af:panelLabelAndMessage>
                  <af:panelLabelAndMessage label="Email PRM:" id="plam9">
                    <af:outputFormatted value="#{bindings.emailPRM.inputValue}"
                                        id="of9"/>
                  </af:panelLabelAndMessage>
                </af:panelGroupLayout>
              </af:panelBox>
            </af:panelGroupLayout>
            <af:panelGroupLayout id="pgl4" layout="vertical">
              <af:panelBox text="News" id="pb8">
                <f:facet name="toolbar"/>
                <af:panelGroupLayout id="pgl16">
                  <af:panelFormLayout id="pfl1">
                    <af:iterator id="i1" value="#{bindings.result1.collectionModel}"
                                 var="current">
                      <af:panelLabelAndMessage label="Titolo" id="plam15">
                        <af:outputFormatted value="#{current.title}" id="of15"/>
                      </af:panelLabelAndMessage>
                      <af:panelLabelAndMessage label="Autore" id="plam14">
                        <af:outputFormatted value="#{current.author}" id="of12"/>
                      </af:panelLabelAndMessage>
                      <af:panelLabelAndMessage label="Data Pubblicazione"
                                               id="plam12">
                        <af:outputFormatted value="#{current.pubDate}" id="of14">
                          <af:convertDateTime pattern="yyyy-MM-dd HH:mm"/>
                        </af:outputFormatted>
                      </af:panelLabelAndMessage>
                      <af:panelLabelAndMessage label="Contenuto" id="plam13">
                        <af:outputText escape="false"
                                       value="#{current.description.value}"
                                       id="ot13"/>
                      </af:panelLabelAndMessage>
                    </af:iterator>
                  </af:panelFormLayout>
                </af:panelGroupLayout>
              </af:panelBox>
            </af:panelGroupLayout>
          </af:panelGroupLayout>
        </f:facet>
        <f:facet name="drillDownView1Area">
          <af:panelGroupLayout id="pgl12">
          </af:panelGroupLayout>
        </f:facet>
        <f:facet name="drillDownView2Area">
          <af:panelGroupLayout id="pgl13">
          </af:panelGroupLayout>
        </f:facet>
        <f:attribute name="drillDownTab2Title" value="Treni In partenza"/>
        <f:attribute name="drillDownTab3Title" value="Personale"/>
        <f:attribute name="drillDownTab4Rendered" value="true"/>
        <f:attribute name="drillDownTab4Title" value="Allarmi"/>
        <f:attribute name="overviewOggettoCoinvoltoAreaTitle"
                     value="Agenda Servizio Stazione"/>
        <f:facet name="drillDownView4Area">
      /af:table>
          -->
        </f:facet>
        <f:facet name="drillDownView3Area">
        </f:facet>
      </af:pageTemplate>
    </jsp:root>PageDef:
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                    version="11.1.1.56.60"
                    id="visualizzazioneDettagliStazionePageDef" Package="fragments">
      <parameters/>
    <executables>
      <variableIterator id="variables"/>
      <methodIterator Binds="generaAgendaServizioStazione.result"
                      DataControl="StazioniServicePojo" RangeSize="25"
                      BeanClass="sop.model.beans.agendaServizioStazione.BeanAgendaServizioStazione"
                      id="generaAgendaServizioStazioneIterator"/>
      <accessorIterator MasterBinding="generaAgendaServizioStazioneIterator"
                        Binds="datiStazione" RangeSize="25"
                        DataControl="StazioniServicePojo"
                        BeanClass="sop.model.beans.agendaServizioStazione.BeanStazione"
                        id="datiStazioneIterator"/>
      <accessorIterator MasterBinding="datiStazioneIterator" Binds="infoTVM"
                        RangeSize="25" DataControl="StazioniServicePojo"
                        BeanClass="sop.model.stazioniService.InfoTVM"
                        id="infoTVMIterator"/>
      <accessorIterator MasterBinding="datiStazioneIterator" Binds="infoRFI"
                        RangeSize="10" DataControl="StazioniServicePojo"
                        BeanClass="sop.model.stazioniService.InfoRFI"
                        id="infoRFIIterator"/>
      <methodIterator id="readRSSStazioneIter" Binds="readRSSStazione.result"
                      DataControl="RssServicePojo" RangeSize="25"
                      BeanClass="com.sun.syndication.feed.rss.Item"/>
    </executables>
    <bindings>
      <methodAction id="generaAgendaServizioStazione" RequiresUpdateModel="true"
                    Action="invokeMethod" MethodName="generaAgendaServizioStazione"
                    IsViewObjectMethod="false" DataControl="StazioniServicePojo"
                    InstanceName="StazioniServicePojo.dataProvider"
                    ReturnName="StazioniServicePojo.methodResults.generaAgendaServizioStazione_StazioniServicePojo_dataProvider_generaAgendaServizioStazione_result">
       <NamedData NDName="locationCode"
                  NDValue="#{pageFlowScope.stazione.stazione.locationCode}"
                  NDType="java.lang.String"/>
       <NamedData NDName="dataRichiesta"
                  NDValue="#{pageFlowScope.stazione.dataRichiesta}"
                  NDType="java.util.Calendar"/>
      </methodAction>
      <attributeValues IterBinding="datiStazioneIterator" id="situazione">
       <AttrNames>
        <Item Value="situazione"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="datiStazioneIterator" id="_stazione">
       <AttrNames>
        <Item Value="_stazione"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoTVMIterator" id="numTVM">
       <AttrNames>
        <Item Value="numTVM"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoTVMIterator" id="numAllarmiTVM">
       <AttrNames>
        <Item Value="numAllarmiTVM"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="telRFI">
       <AttrNames>
        <Item Value="telRFI"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="faxRFI">
       <AttrNames>
        <Item Value="faxRFI"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="cellRFI">
       <AttrNames>
        <Item Value="cellRFI"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="emailRFI">
       <AttrNames>
        <Item Value="emailRFI"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="telPRM">
       <AttrNames>
        <Item Value="telPRM"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="faxPRM">
       <AttrNames>
        <Item Value="faxPRM"/>
       </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="infoRFIIterator" id="emailPRM">
       <AttrNames>
        <Item Value="emailPRM"/>
       </AttrNames>
      </attributeValues>
      <methodAction id="readRSSStazione" InstanceName="RssServicePojo.dataProvider"
                    DataControl="RssServicePojo" RequiresUpdateModel="true"
                    Action="invokeMethod" MethodName="readRSSStazione"
                    IsViewObjectMethod="false"
                    ReturnName="RssServicePojo.methodResults.readRSSStazione_RssServicePojo_dataProvider_readRSSStazione_result">
       <NamedData NDName="stazioneLocationCode"
                  NDValue="#{pageFlowScope.stazione.stazione.locationCode}"
                  NDType="java.lang.String"/>
      </methodAction>
      <tree IterBinding="readRSSStazioneIter" id="result1">
       <nodeDefinition DefName="com.sun.syndication.feed.rss.Item" Name="result10">
        <AttrNames>
         <Item Value="title"/>
         <Item Value="author"/>
         <Item Value="uri"/>
         <Item Value="pubDate"/>
        </AttrNames>
        <Accessors>
         <Item Value="description"/>
        </Accessors>
       </nodeDefinition>
       <nodeDefinition DefName="com.sun.syndication.feed.rss.Description"
                       Name="result11">
        <AttrNames>
         <Item Value="type"/>
         <Item Value="value"/>
        </AttrNames>
       </nodeDefinition>
      </tree>
    </bindings>
    </pageDefinition>The datacontrols are standard pojo data controls.
    Can someone point me out to the solution ? Why methodAction is called multiple times ?

    Does someone has any clues ?!

  • Firefox crashes multiple times per day

    Hello all!
    As of the last month or two, Firefox now crashes multiple times per day (even in Safe Mode). Firefox is fully updated, as are my Add-ons and Extensions.
    Yesterday alone, it crashed 14 times (which is about average).
    System Info:
    Windows 7 Home Premium
    Intel Core i7-3610QM CPU @ 2.30 GHz
    8.00 GB RAM
    64-bit OS
    Troubleshooting details:
    "application": {
    "name": "Firefox",
    "version": "30.0",
    "userAgent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0",
    "supportURL": "https://support.mozilla.org/1/firefox/30.0/WINNT/en-US/"
    "crashes": {
    "submitted": [
    "id": "bp-56f4b9d3-7646-4804-b1f0-6b86a2140712",
    "date": 1405205216202,
    "pending": false
    "id": "bp-252f490e-dbc4-4b6c-89bb-abc7a2140712",
    "date": 1405205139899,
    "pending": false
    "id": "bp-728dabc3-d5ae-42cc-a7b3-5ef922140712",
    "date": 1405204414387,
    "pending": false
    "id": "bp-f4cf2971-3a0d-4737-b3e4-81c2f2140712",
    "date": 1405204325838,
    "pending": false
    "id": "bp-717ff5d6-7edf-49c7-956f-247e52140712",
    "date": 1405204300027,
    "pending": false
    "id": "bp-e0f0c131-39c9-40e3-b6aa-45c312140712",
    "date": 1405184955514,
    "pending": false
    "id": "bp-8f6e4e47-0363-48d2-a7ff-875b92140712",
    "date": 1405184937698,
    "pending": false
    "id": "bp-9245429c-ccfc-41fa-9edd-79baa2140712",
    "date": 1405184884426,
    "pending": false
    "id": "bp-5e91822b-8fc3-411c-bcf7-c753f2140712",
    "date": 1405184798033,
    "pending": false
    "id": "bp-db406fb0-7045-41a5-b42c-522db2140712",
    "date": 1405183704121,
    "pending": false
    "id": "bp-6c913909-d1ef-4773-9712-fa1b92140712",
    "date": 1405183678385,
    "pending": false
    "id": "bp-65a30f3e-da4a-406b-9bfa-8cec72140712",
    "date": 1405178435488,
    "pending": false
    "id": "bp-11fbb2a8-923f-4ab3-b577-6dbe32140712",
    "date": 1405178411720,
    "pending": false
    "id": "bp-968183f6-086d-430a-a993-f1d892140712",
    "date": 1405127322874,
    "pending": false
    "id": "bp-017688f8-afc7-4b90-8fa7-2be692140711",
    "date": 1405040514173,
    "pending": false
    "id": "bp-342b9f6c-3ffd-489e-ae1c-b5ac62140711",
    "date": 1405037808744,
    "pending": false
    "id": "bp-62c1ea5a-24da-421f-9983-9b09c2140711",
    "date": 1405037772426,
    "pending": false
    "id": "bp-a7227128-b4dd-4cd5-997c-b9f132140711",
    "date": 1405037229671,
    "pending": false
    "id": "bp-2d0b1114-0d86-4f2b-ba7d-20f902140711",
    "date": 1405037207333,
    "pending": false
    "pending": 1
    "modifiedPreferences": {
    "accessibility.typeaheadfind.flashBar": 0,
    "accessibility.browsewithcaret": true,
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.disk.smart_size.use_old_max": false,
    "browser.cache.disk.smart_size_cached_value": 358400,
    "browser.places.smartBookmarksVersion": 7,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20140605174243",
    "browser.startup.homepage_override.mstone": "30.0",
    "browser.startup.homepage": "https://www.bing.com/",
    "browser.startup.homepage_override.buildID": "20140605174243",
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "30.0",
    "font.internaluseonly.changed": false,
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "network.cookie.prefsMigrated": true,
    "network.cookie.cookieBehavior": 2,
    "places.database.lastMaintenance": 1405257179,
    "places.history.expiration.transient_current_max_pages": 104858,
    "plugin.state.npitunes": 0,
    "plugin.state.npesnsonar": 0,
    "plugin.state.npesnlaunch": 0,
    "plugin.importedState": true,
    "plugin.state.npsitesafety": 0,
    "plugin.state.npauthz": 0,
    "plugin.disable_full_page_plugin_for_types": "application/pdf,application/vnd.adobe.xfdf,application/vnd.fdf,application/vnd.adobe.xdp+xml",
    "plugin.state.npwlpg": 0,
    "plugin.state.npffwloplugin": 0,
    "plugin.state.npdeployjava": 0,
    "plugin.state.np_wtapp": 0,
    "privacy.cpd.offlineApps": true,
    "privacy.cpd.sessions": false,
    "privacy.donottrackheader.enabled": true,
    "privacy.sanitize.migrateFx3Prefs": true,
    "storage.vacuum.last.places.sqlite": 1405258871,
    "storage.vacuum.last.index": 0
    "graphics": {
    "numTotalWindows": 2,
    "numAcceleratedWindows": 2,
    "windowLayerManagerType": "Direct3D 10",
    "windowLayerManagerRemote": false,
    "adapterDescription": "Intel(R) HD Graphics 4000",
    "adapterVendorID": "0x8086",
    "adapterDeviceID": "0x0166",
    "adapterRAM": "Unknown",
    "adapterDrivers": "igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32",
    "driverVersion": "9.17.10.2843",
    "driverDate": "8-21-2012",
    "adapterDescription2": "NVIDIA GeForce GT 650M ",
    "adapterVendorID2": "0x10de",
    "adapterDeviceID2": "0x0fd1",
    "adapterRAM2": "2048",
    "adapterDrivers2": "nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um",
    "driverVersion2": "9.18.13.3788",
    "driverDate2": "5-19-2014",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.2.9200.16571",
    "clearTypeParameters": "Gamma: 2200 Pixel Structure: R ClearType Level: 100 Enhanced Contrast: 100 ",
    "webglRenderer": "Google Inc. -- ANGLE (Intel(R) HD Graphics 4000 Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": false,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.6",
    "version": "4.10.6"
    "NSS": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.16",
    "version": "3.16"
    "NSSSSL": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "userJS": {
    "exists": false
    "extensions": [
    "name": "Norton Toolbar",
    "version": "2014.7.2.6",
    "isActive": true,
    "id": "{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}"
    "name": "Norton Vulnerability Protection",
    "version": "12.2.0.5 - 1",
    "isActive": true,
    "id": "{BBDA0591-3099-440a-AA10-41764D9DB4DB}"
    "name": "Troubleshooter",
    "version": "1.1a",
    "isActive": true,
    "id": "[email protected]"
    "name": "Windows Media Player Extension for Firefox",
    "version": "1.1",
    "isActive": true,
    "id": "jid0-nRwp7VvCqZcSRTppwWz2npqGEKw@jetpack"
    "name": "HTTPS-Everywhere",
    "version": "3.5.3",
    "isActive": false,
    "id": "[email protected]"
    }

    Was discussed here - https://support.mozilla.org/en-US/forums/contributors/709022 - in Feb 2013. And Bug #738661 was filed in March of 2012, with the consensus being.
    '''"In that case this is more likely a bug in Covenant Eyes than it is a bug in Firefox. If we have no hope of success through engaging with Covenant Eyes and can't blocklist the offending DLL from loading, can we at least get a support article posted instructing users how to work around this issue (ie. removing Covenant Eyes or switching to a different browser)?'''
    '''Additionally, I don't see much point in keeping this bug in the NEW state if it's unreasonable to expect that we'll ever fix this."'''

  • ITunes is crashing multiple times per day

    For the past few months iTunes has been crashing multiple times per day. Most of the time I'm not even using it. I'll get up in the morning or come home from work and have the problem report message on the screen. Sometimes it does happen while I am using it. I've reinstalled iTunes multiple times and I've repaired permissions.
    Process:         iTunes [12862]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.1.5 (11.1.5)
    Build Info:      iTunes-1115011001005005~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [157]
    Responsible:     iTunes [12862]
    User ID:         501
    Date/Time:       2014-03-15 14:01:41.631 -0400
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  E53B8E2D-FAA5-472F-59A0-CFB1D37B192B
    Sleep/Wake UUID: 8A30FCD9-33EA-4A98-B962-6AE8FF9D21BB
    Crashed Thread:  0  iTunes main  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010c0fc000
    VM Regions Near 0x10c0fc000:
        MALLOC_LARGE           000000010bffc000-000000010c0fc000 [ 1024K] rw-/rwx SM=PRV 
    -->
        mapped file            000000010c117000-000000010c644000 [ 5300K] rw-/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/Resources/Extras2.rsrc
    Thread 0 Crashed:: iTunes main  Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff98f34768 strlen + 72
    1   com.apple.CoreFoundation                0x00007fff8cb56e0e CFStringCreateWithCString + 30
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8cb13662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff95cd843d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff95cd8152 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.mobiledevice                  0x0000000108f48701 __thr_AMRegisterForCallbacks + 217
    7   libdispatch.dylib                       0x00007fff95cd62ad _dispatch_client_callout + 8
    8   libdispatch.dylib                       0x00007fff95cd809e _dispatch_root_queue_drain + 326
    9   libdispatch.dylib                       0x00007fff95cd9193 _dispatch_worker_thread2 + 40
    10  libsystem_pthread.dylib                 0x00007fff9a690ef8 _pthread_wqthread + 314
    11  libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8cc0eb83 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001025697f0 0x10203d000 + 5425136
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x0000000102041325 0x10203d000 + 17189
    4   com.apple.iTunes                        0x00000001022b12f6 0x10203d000 + 2573046
    5   com.apple.iTunes                        0x00000001022b12cd 0x10203d000 + 2573005
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.iTunes                        0x0000000102041483 0x10203d000 + 17539
    3   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8cb11e02 __accept + 10
    1   com.apple.iTunes                        0x0000000102c82fbd 0x10203d000 + 12869565
    2   com.apple.iTunes                        0x0000000102c69fe3 0x10203d000 + 12767203
    3   com.apple.iTunes                        0x0000000102c69f26 0x10203d000 + 12767014
    4   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    5   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8cb11e02 __accept + 10
    1   com.apple.iTunes                        0x0000000102c82fbd 0x10203d000 + 12869565
    2   com.apple.iTunes                        0x0000000102c69fe3 0x10203d000 + 12767203
    3   com.apple.iTunes                        0x0000000102c69f26 0x10203d000 + 12767014
    4   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    5   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 14:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff92414967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff9241476b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8ec4c16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.AirTrafficHost                0x00000001118cc0de _readDictionary + 246
    2   com.apple.AirTrafficHost                0x00000001118cc892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost                0x00000001118cb63a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes                        0x000000010240f1ba 0x10203d000 + 4006330
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.AirTrafficHost                0x00000001118cc0de _readDictionary + 246
    2   com.apple.AirTrafficHost                0x00000001118cc892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost                0x00000001118cb63a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes                        0x000000010240f1ba 0x10203d000 + 4006330
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001024b7d57 0x10203d000 + 4697431
    4   com.apple.iTunes                        0x00000001024b8486 0x10203d000 + 4699270
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff8cb12a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff98faedc0 nanosleep + 200
    2   com.apple.iTunes                        0x0000000102cd67b0 0x10203d000 + 13211568
    3   com.apple.iTunes                        0x00000001024a3e48 0x10203d000 + 4615752
    4   com.apple.iTunes                        0x00000001024a5bb8 0x10203d000 + 4623288
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c43a9f 0x10203d000 + 12610207
    4   com.apple.iTunes                        0x0000000102c3ed91 0x10203d000 + 12590481
    5   com.apple.iTunes                        0x0000000102c3ee44 0x10203d000 + 12590660
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c43a9f 0x10203d000 + 12610207
    4   com.apple.iTunes                        0x0000000102c3ed91 0x10203d000 + 12590481
    5   com.apple.iTunes                        0x0000000102c3ee44 0x10203d000 + 12590660
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c4460d 0x10203d000 + 12613133
    4   com.apple.iTunes                        0x0000000102c4465e 0x10203d000 + 12613214
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c44556 0x10203d000 + 12612950
    4   com.apple.iTunes                        0x0000000102c4465e 0x10203d000 + 12613214
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 36:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff9600f918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff9600f8a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff9600e02e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff9600dbcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff9600da8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 38:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 39:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 40:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 41:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 42:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0xffffffffffffc000  rbx: 0x000000010bfc40ae  rcx: 0x000000000000000e  rdx: 0x000000010bfc40ae
      rdi: 0x000000010c0fc000  rsi: 0x0000000000000000  rbp: 0x00007fff5dbbdd60  rsp: 0x00007fff5dbbdd60
       r8: 0x00007fff5dbbdf6c   r9: 0x0000000000000000  r10: 0x00000000000001fa  r11: 0x000061000147c3a1
      r12: 0x00007fb455a5b738  r13: 0x0000000000000000  r14: 0x0000000008000100  r15: 0x0000000000000000
      rip: 0x00007fff98f34768  rfl: 0x0000000000010206  cr2: 0x000000010c0fc000
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10203d000 -        0x1036e7ff7  com.apple.iTunes (11.1.5 - 11.1.5) <3598851A-8792-30BD-861C-7E5BC8C141B1> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x103ac1000 -        0x103b41ff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <2709E6B0-39E2-3D75-92E3-E9F27C307C4A> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x103b82000 -        0x103badff7  com.apple.avfoundationcf (2.0 - 138.1) <AB1DD559-FD70-39FE-8AE1-632CCA8040A2> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x103be8000 -        0x103f06fe7  com.apple.iad.iAdCore (1.0 - 1) <9E8CC242-A900-3BD1-B044-F07F592B9B3D> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x103fd2000 -        0x103fd6fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103fdf000 -        0x103fe2fff  com.apple.iPod (1.7 - 20) <9B9FD104-A8EE-3884-8610-B06700AC344E> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x103fec000 -        0x104318ff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x104342000 -        0x104379ff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10438e000 -        0x104464fe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x104486000 -        0x1044c9ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x104786000 -        0x104788ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x104905000 -        0x104909ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10494b000 -        0x10494eff7  com.apple.QuartzComposer.iTunesPlugIn (1.4 - 18) <08330444-D369-3B4F-AE16-8E48F771CEEB> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
           0x106348000 -        0x1070bdfff  com.apple.CoreFP (2.5.16 - 2.5.16) <1C390A93-4187-37E7-8A7E-4417876F069B> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10896e000 -        0x108aa2ff7  com.apple.CoreADI (1.34.0 - 1.34.0) <33B6ECA7-680E-3517-A1C1-9785BA022516> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x108aa9000 -        0x108c7afff  com.apple.audio.units.Components (1.10 - 1.10) <7AB53801-51BD-347E-B267-BCF71C15C023> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x108ec3000 -        0x108fb4ff7  com.apple.mobiledevice (710.5 - 710.5) <C250816A-3B97-329D-9F6B-38DACA981CED> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x109019000 -        0x10920ffff  com.apple.audio.codecs.Components (4.0 - 4.0) <604485EE-4446-308F-9460-0A6CE9C2D98C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x109d2a000 -        0x109d30ff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
           0x1108da000 -        0x110986ff7  com.apple.AppleGVAFramework (7.1.10 - 7.1.10) <3FD3AD06-ADCA-3F90-931C-9B8011328C87> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x110a37000 -        0x110a4afff  com.apple.MediaLibrary (1.0.1 - 637.4) <BEFCD118-85B1-3BD2-B9E2-47F939E757D5> /System/Library/Frameworks/MediaLibrary.framework/MediaLibrary
           0x1118c9000 -        0x111a4afff  com.apple.AirTrafficHost (351.6 - 351.6) <64B45992-C1BA-35B5-9158-732748DF6B5D> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
           0x112624000 -        0x11266bff7  com.apple. AMDRadeonVADriver (1.20.11 - 1.2.0) <D70E0DAA-D4DB-342C-B9EC-B3053F57D6AE> /System/Library/Extensions/AMDRadeonVADriver.bundle/Contents/MacOS/AMDRadeonVAD river
        0x7fff69a86000 -     0x7fff69ab9817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8c9d4000 -     0x7fff8c9dbff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff8ca34000 -     0x7fff8ca79ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8ca7a000 -     0x7fff8cacbfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8cacc000 -     0x7fff8cad6ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff8cad7000 -     0x7fff8cafcff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8cafd000 -     0x7fff8cb19ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cb1a000 -     0x7fff8cb1afff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8cb1b000 -     0x7fff8cb40ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8cb44000 -     0x7fff8cb51ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8cb52000 -     0x7fff8cd37fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8cd3d000 -     0x7fff8cd4dffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8cd4e000 -     0x7fff8cdb2fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cdb3000 -     0x7fff8cddcfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8cddd000 -     0x7fff8cde1fff  com.apple.IOAccelerator (98.14 - 98.14) <13EE735B-BD43-3E9B-9908-E423A17C4517> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
        0x7fff8ce05000 -     0x7fff8ce0effb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8ce0f000 -     0x7fff8ce0ffff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8ce10000 -     0x7fff8ceeffff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d182000 -     0x7fff8d190fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d191000 -     0x7fff8d198fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8d199000 -     0x7fff8d229fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8d22a000 -     0x7fff8d22affd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8d22b000 -     0x7fff8d233fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8d234000 -     0x7fff8d258fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8d2ce000 -     0x7fff8d2fdff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8d33c000 -     0x7fff8d47dfff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8d47e000 -     0x7fff8d480fff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8d481000 -     0x7fff8d493fff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8d494000 -     0x7fff8d4a3ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d880000 -     0x7fff8d880fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8daff000 -     0x7fff8dbafff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8dbba000 -     0x7fff8dc72ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8dc7a000 -     0x7fff8dcd9fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8dcda000 -     0x7fff8e010fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8e0dd000 -     0x7fff8e0f8fff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff8e0f9000 -     0x7fff8e111ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8e112000 -     0x7fff8e158fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8e159000 -     0x7fff8e15efff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8e173000 -     0x7fff8e1e0fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Vers

    Read this whole message before doing anything.
    Back up all data.
    Quit iTunes if it’s running.
    Step 1
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash, if they exist:
    Caches/com.apple.iTunes
    Caches/QCCompositionRepository-com.apple.iTunes.cache
    Saved Application State/com.apple.iTunes.savedState
    Leave the Library folder open. Try iTunes again. If it works now, stop here. Close the Library folder.
    Step 2
    If you still have problems, quit iTunes again. Go back to the Finder and move the following item from the open Library folder to the Desktop:
    iTunes
    Note: you are not moving the iTunes application. You’re moving a folder named “iTunes.”
    Test. If iTunes now works, delete the iTunes folder on the Desktop. Otherwise, quit iTunes again. Put back the folder you moved, overwriting the newer one that may have been created in its place, and continue.
    Step 3
    In the Preferences subfolder, there may be several files having names that begin with either of the following strings:
    com.apple.iTunes
    com.apple.mobile.iTunes
    Move them all to the Desktop.
    Also in the Preferences folder, there's a subfolder named "ByHost". Open it and do the same thing.
    Test again. This time iTunes should perform normally, but your settings will be lost. You may be able to put back some of the files you moved to the Desktop in this step. Relaunch and test after each one. Eventually you should find one or more that causes iTunes to malfunction. Delete those files and recreate whatever settings they contained.
    If the issue is still not resolved, quit iTunes again and put all the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash. Stop here and post again.
    If you later decide that you don’t like the results of steps 2 and 3, you can undo them completely by quitting iTunes and restoring the items you deleted in those steps from your backup.

  • Trackpad quits working multiple times per hour, is it defective?

    I have a mid-2012 13" MBP. My trackpad quits working multiple times per hour. When this happens I have to remove my hand from it and wait a few seconds, then I can use it again. It started a few months after I got the machine last year and has gotten progressively worse. Is this a bug in OS X or is this some kind of malfunction? I need to know if I need to take this to an Apple Store to be fixed under warranty.

    Yes, your issue has been posted many many times here.  Do a forum search and read the posts in the "More Like this" section as well as Apple's articles on the matter - Intel-based Apple Portables: Troubleshooting unresponsive trackpad issues and   Portables and Magic Trackpad: Jumpy or erratic trackpad operation
    Always, take full advantage of your warranty before you lose it.  Call Apple Care and make sure you get a case number.  You should also consider purchasing Apple Care Protection plan.

  • IMac goes to sleep/hibernate multiple times per day after installing Maverick OS. I have to shutdown and power back on.

    iMac goes to sleep/hibernate multiple times per day after installing Maverick OS. Moving the mouse or hitting the spcaebar will not wake the pc. 
    I have to shutdown and power back on. My iMac was purchased in January 2011 and no longer in warrenty.  The energy saver 'sleep' and 'display' settings are set at 10 minutes. When I changed to 'never' the machine got very hot and I changed the settings back.  I have checks by: Put hard disk to sleep when possible and wake for network access.  Any help would be greatly appreciated. 

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Firefox asks me if I "want to connect to:" every website, multiple times per website; to the point now its so annoying, i don't even use firefox. What can I do to correct this? Do I have a virus?

    when i initially open firefox, this is what pops up. This type of thing pops up multiple time per website.
    Firefox
    wants to connect to snippets.mozilla.com on TCP port
    443(https). show details
    its asks me if i want to allow" or Deny"
    Similar pop ups come up continuously during my time on each site.

    Firefox and other browsers would need access to ports 80 and 443 to work. I think you may want to enable port 80 and port 443 (when it asks) and choose '''Forever''' or at least '''Until Quit''' for a smoother experience. If you believe you downloaded Firefox from a safe site like mozilla.org and your PC is safe (like, there is no other rogue app that can hijack Firefox) then there shouldn't be cause for concern to give it '''Forever''' exception on ports 80 and 443.
    edit:
    "however it was working fine, until all of a sudden"
    This may happen if Firefox was updated, because the old signature or hash stored by the security application for Firefox would change. This may also mean that the previous version of Firefox already had unhindered access.

  • Process request method executing multiple times issue

    Hi ALL,
    In my controller code , process request method is executing multiple times and inserting multiple data into the table, can any body help me how to resolve this issue.
    I have the below code in my process request:
    OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
         am.invokeMethod("InsertRecord",null);
         OAMessageLovInputBean oalovinputbean=(OAMessageLovInputBean)webBean.findIndexedChildRecursive("ccustatus") ;
         oalovinputbean.setValue(pageContext,"INPROGRESS");
         String userName = pageContext.getUserName();
          System.out.println("User NAme is :" + userName);
          OAMessageTextInputBean pUserId = (OAMessageTextInputBean)webBean.findChildRecursive("item32");
          pUserId.setValue(pageContext,userName);
          OAMessageTextInputBean pchangedby =  (OAMessageTextInputBean)webBean.findChildRecursive("item34");
          pchangedby.setValue(pageContext,userName);
          if((("on").equals(pageContext.getParameter("rrchkbox"))))
                  String whereclause1=(String)pageContext.getTransactionValue("whereclause");
                  String workordnum=(String)pageContext.getTransactionValue("workordnum");
                  String rrnum =(String)pageContext.getTransactionValue("rrnum");
                  String ponum =(String)pageContext.getTransactionValue("ponum");
                  System.out.println("whereclause test1"+whereclause1);
                  String status=pageContext.getParameter("ccustatus");
                  System.out.println("DEBENDRA LINE STATUS:" + status);
                  Serializable param[] = {whereclause1,workordnum,rrnum,ponum};        
                           // am.invokeMethod("getSearchData1",param);
                           // am.invokeMethod("checkSelectedrow",param);       
                 Serializable vcnt =  am.invokeMethod("processPOData",param);  
    Below code written in AM:
    public void InsertRecord()
            XXDPECONTAINERVOImpl vo = getXXDPECONTAINERVO1();
            vo.setMaxFetchSize(0);
            XXDPECONTAINERVORowImpl row = (XXDPECONTAINERVORowImpl)vo.createRow();
            oracle.jbo.domain.Number empNum = (oracle.jbo.domain.Number)getOADBTransaction().getSequenceValue("XXDPE_CONTAIN_SEQ");
            row.setContainerizationId(empNum);
            vo.insertRow(row);
            row.setNewRowState(row.STATUS_INITIALIZED);
    Please help me out.

    hi,
    PR() will be called whenever your page will load, so the number of times you will load your page all the time your PR will be called and it will call the AM method.
    otherwise put some condition and call the insert method from your PR.
    Regards
    Mahesh

  • Servlet init() method called multiple times

    We have a Servlet-based application which does lengthy initialization.
    We've noticed that when multiple requests arrive,
    but the Servlet's init() method has not returned yet
    for the first request, the application server calls init() multiple times.
    You can even see this with the Fortune sample
    Servlet. Starting the app server and sending 20 or 30
    simultaneous requests causes multiple Fortune Servlet init messages to appear in the kjs log.
    Why is this? We do not implement SingleThreadModel.
    Doesn't the J2EE 1.2 spec say init will be called
    only once?
    How do we prevent it?
    A Startup class which inits our
    Servlet?
    Or a synchronized block within our init method, with some checks of static member variables
    so that the initialization work only happens once?
    Or is there some kregedit magic or deployment descriptor change I could make?
    Again, it's not a SingleThreadModel issue, so don't
    point me there.
    This is iAS 6.0 SP4, on Solaris, by the way.

    Hi
    Yes,you are right. In iAS6.0 SP4 When multiple requests arrive,and the Servlet's init() method has not returned yet for the first request, the application server calls init()multiple times. This problem is resolved in iAS 6.5.
    There is no kregedit magic that will solve this problem.
    Right now the workaround is any of the solution you proposed. Or use iAS6.5. I have tested it with fortune.
    Please download it and check with your application.
    you can find free download at http://developer.iplanet.com/appserver/testdrive/testdrive_65.html
    Thanks

  • AddPartialTarget causes valueChangeListener invoked multiple times

    Hi All,
    I am using JDev 11.1.1.6.0.
    I have a problem with programmatic ppr using addPartialTarget method.
    The scenario is as follows:
    I have an af:table in which 2 of the columns include selectOneChoice in each: ( select1 and select2 ).
    The values of select2 depends on select1. For example, select1 has countries, and select2 has cities of the selected country of select1.
    So, in valueChangeListener of select1, based on the selected value, get the respective cities, put into the list used by select2. And after everything finished, refresh the select2 using AdfFacesContext.getCurrentInstance().addPartyTarget(this.getSelect2()).
    The problem is that the valueChangeListener of select1 (countryChangeListener) is called multiple times. Then it shows NullPointerException pop-up in the ui. But I can't find the exception trace in my log. I found that it's not coming from the listener method when I debug.
    Below is the jsff content:
    +<af:column headerText="#{bindings.tableVO1.hints.Country.label}" id="c16">+
    +<af:selectOneChoice label=""+
    +value="#{row.bindings.Country.inputValue}"+
    +valueChangeListener="#{backingBeanScope.myBean.countryChangeListener}"+
    +autoSubmit="true"+
    +id="soc1">+
    +<f:selectItems value="#{pageFlowScope.countryList}"+
    +id="si2"/>+
    +</af:selectOneChoice>+
    +</af:column>+
    +<af:column headerText="#{bindings.tableVO1.hints.City.label}" id="c8">+
    +<af:selectOneChoice label="" id="soc4"+
    +value="#{row.bindings.City.inputValue}"+
    +autoSubmit="true"+
    +binding="#{backingBeanScope.myBean.socCity}">+
    +<f:selectItems value="#{row.bindings.CityList.inputValue}"+
    +id="si6"/>+
    +</af:selectOneChoice>+
    +</af:column>+
    The problem also occurs for other select boxes in that table.
    Although I solved it by using *partialTriggers=soc1* in city select box in jsff, it works (it refreshes the city select box and shows the values), I don't know why the programmatic refresh with addPartialTarget() is not working.
    Can you all please help with that issue? Because I need to use addPartialTarget for other cases.
    Thanks.
    Best Regards,
    cmoster

    Hi,
    there is no way in JSF to execute a value change listener multiple times and I spare myself the full life cycle explanation here. Because you use this in a table, how likely is it that the Value Change Listener is invoked for other rows of the table? Can you try setting the selectOneChoice valuePassThru property to true? My assumption is that upon rendering of the select lists you do change the underlying component value
    Frank

  • Action Listener Method called multiple times

    I have a page (fragment .jsff), containing a simple input text and a button called "search". When I click on "Search" the action listener is triggered multiple times. (The results are displayed in a table inside a panel collection).
    The results are actually coming back ok.
    When I debug the code, I can see the action listener method called twice.
    Do you know why is that?
    What should I be taking care of?
    This is my code :
    *** Fragment ****
    <af:commandButton text="#{identityBundle.search_label}" id="cb1"
    actionListener="#{UserDetailsBean.searchUsersListener}"
    disabled="#{!bindings.searchUsers.enabled}"/>
    *** Managed bean ***
    public void searchUsersListener(ActionEvent actionEvent) {
    // Add event code here...
    DCBindingContainer bindings = (DCBindingContainer)getBindings();
    DCIteratorBinding iter = bindings.findIteratorBinding("userIterator");
    DCDataRow row = (DCDataRow)iter.getCurrentRow();
    User user = (User)row.getDataProvider();
    boolean isSearchCriteriaPresent = false;
    if(user != null){
    String fn = user.getFirstname();
    if(fn != null && !fn.trim().equals("")){
    isSearchCriteriaPresent = true;
    user.setLastname(fn);
    user.setNonMTUserLogin(fn);
    try {
    Map <Object, Object> userMap = PropertyUtils.describe(user);
    for(Map.Entry<Object, Object> entry: userMap.entrySet()){
    if(entry.getKey() != null && entry.getValue() != null && !entry.getKey().toString().equalsIgnoreCase("class")){
    isSearchCriteriaPresent = true;
    break;
    } catch (IllegalAccessException e) {
    e.printStackTrace();
    } catch (InvocationTargetException e) {
    e.printStackTrace();
    } catch (NoSuchMethodException e) {
    e.printStackTrace();
    if(!isSearchCriteriaPresent){
    user.setFirstname("*");
    OperationBinding opBinding = (OperationBinding)bindings.getOperationBinding("searchUsers");
    opBinding.getParamsMap().put("user", user);
    opBinding.execute();
    AdfFacesContext adfFacesCtx = AdfFacesContext.getCurrentInstance();
    Map<String, Object> scopePageFlowScopeVar= adfFacesCtx.getPageFlowScope();
    scopePageFlowScopeVar.put("userSearchCriteria", user);
    ADFContext adfCtx = ADFContext.getCurrent();
    Map sessionScope = adfCtx.getSessionScope();
    sessionScope.put("userSearchCriteria", user);
    setUserSearchCriteria(user);
    if(selectedUserID != null){
    selectedUserID.setValue(null);
    RichTable table = getUserResultsTable();
    DCIteratorBinding searchUsersIterator = (DCIteratorBinding)bindings.get("searchUsersIterator");
    Row[] rows = searchUsersIterator.getAllRowsInRange();
    if(rows.length > 0){
    RowKeySetImpl rks = new RowKeySetImpl();
    ArrayList keyList = new ArrayList();
    keyList.add(rows[0].getKey());
    rks.add(keyList);
    table.setSelectedRowKeys(rks);
    table.setDisplayRowKey(keyList);
    refreshState(table);
    if(!isSearchCriteriaPresent){
    user.setFirstname(null);
    else{
    deleteUserButton.setDisabled(true);
    resetPasswordButton.setDisabled(true);
    enableUserButton.setDisabled(true);
    disableUserButton.setDisabled(true);
    Thanks in advance for your help

    Hi,
    Can you try this?
    1. set partialSubmit=true for the "search" button
    2. set "search" button id as partialTrigger in your result table
    -Prasad

  • Mac Mini Restarting Multiple times per day

    I have a Mac Mini from Sept 2010.  Recently upgraded to Mountain Lion and now the restarts due to an issue several times per day.  The computer is fine when i am using it, but the issue comes up when i return to wake the monitor by hitting a key or moving the mouse.  Sleep is disabled, but the monitor is set to turn off after 10 minutes of inactivity.  Sometimes it will be fine left for hours on its own and other times when i come back to the computer, I am met with a gray screen stating the computer had to restart. 
    Below is the log from the last crash:
    Jan 26 06:52:06 MacMini kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=895[GoogleSoftwareUp] clearing CS_VALID
    Jan 26 07:05:48 MacMini.local com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x82-192.168.1.2:0!
    Jan 26 07:07:40 MacMini.local LKDCHelper[909]: Starting (uid=501)
    Jan 26 07:17:51 MacMini com.apple.launchd.peruser.501[134] (com.apple.KerberosHelper.LKDCHelper[909]): Exited with code: 1
    Jan 26 07:50:49 MacMini kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=926[GoogleSoftwareUp] clearing CS_VALID
    Jan 26 08:07:40 MacMini.local LKDCHelper[951]: Starting (uid=501)
    Jan 26 08:17:51 MacMini com.apple.launchd.peruser.501[134] (com.apple.KerberosHelper.LKDCHelper[951]): Exited with code: 1
    Jan 26 08:47:52 MacMini.local com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x95-192.168.1.2:0!
    Jan 26 08:49:32 MacMini kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=973[GoogleSoftwareUp] clearing CS_VALID
    Jan 26 08:59:57 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/30: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/126: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/157: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/164: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/165: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x165: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/168: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/172: 0x3: No such process
    Jan 26 08:59:59 --- last message repeated 7 times ---
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/176: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/178: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x178: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/178: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/180: 0x3: No such process
    Jan 26 08:59:59 --- last message repeated 1 time ---
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/185: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/190: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/194: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/195: 0x3: No such process
    Jan 26 08:59:59 --- last message repeated 2 times ---
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x195: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/195: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/196: 0x3: No such process
    Jan 26 08:59:59 --- last message repeated 1 time ---
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x196: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/196: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/198: 0x3: No such process
    Jan 26 08:59:59 --- last message repeated 10 times ---
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x198: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/198: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/200: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x200: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/200: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/201: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not look up channel/token: com.apple.time/0x202: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/202: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Bug: 12C60: libxpc.dylib + 36100 [FAC04D8B-680E-325F-8F0C-DD69859D0E01]: 0x3
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/202: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/210: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/215: 0x3: No such process
    Jan 26 08:59:59 MacMini.local UserEventAgent[137]: Could not get event name for stream/token: com.apple.time/220: 0x3: No such process
    Jan 26 09:07:39 MacMini.local LKDCHelper[999]: Starting (uid=501)
    Jan 26 09:08:37 MacMini.local WindowServer[87]: handle_will_sleep_auth_and_shield_windows: no lock state data
    Jan 26 09:10:33 MacMini.local CVMServer[101]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Jan 26 09:11:04 --- last message repeated 1 time ---
    Jan 26 09:20:53 localhost bootlog[0]: BOOT_TIME 1359210053 0
    Any help would be appreciated, as this happens multiple times a day. 

    Thanks for the reply, den.thed. 
    I tried the first suggestion, resetting the SMC, but after this the problem continues. 
    I think the issue is related to the second, kernel panicking. 
    As for suggestions 3 and 4, i have my energy settings as you show in your post, with monitor sleep after 15 minutes, computer sleep never and none of the options checked.  While the computer does not sleep, this is only an issue when i step away from the computer for a while and come back, not when i am actively using it. 
    The latest error message is as follows, and seems to indicate a kernel panic (or several). 
    Interval Since Last Panic Report:  112486 sec
    Panics Since Last Report:          7
    Anonymous UUID:                    67206185-78EF-3547-FDBF-AFC3D867EDFE
    Sat Jan 26 14:22:44 2013
    panic(cpu 1 caller 0xffffff8002cb7bd5): Kernel trap at 0xffffff7f83801a58, type 0=divide error, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000109d21000, CR3: 0x00000000058bf000, CR4: 0x0000000000000660
    RAX: 0x00015025a5a86800, RBX: 0x0000000000000000, RCX: 0x00000000092dd698, RDX: 0x0000000000000000
    RSP: 0xffffff800ada3000, RBP: 0xffffff800ada3090, RSI: 0x0000000000000000, RDI: 0xffffff800fcbc004
    R8:  0xffffff800ada2f94, R9:  0x00000000092dd698, R10: 0x00000000000061a8, R11: 0x0000000000000002
    R12: 0xffffff8067b91da0, R13: 0xffffff800f1c2004, R14: 0x000000000000000a, R15: 0xffffff800fcbc004
    RFL: 0x0000000000010246, RIP: 0xffffff7f83801a58, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000109d21000, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff800ada2ca0 : 0xffffff8002c1d626
    0xffffff800ada2d10 : 0xffffff8002cb7bd5
    0xffffff800ada2ee0 : 0xffffff8002cce4ed
    0xffffff800ada2f00 : 0xffffff7f83801a58
    0xffffff800ada3090 : 0xffffff7f837faefb
    0xffffff800ada3140 : 0xffffff7f837dbefc
    0xffffff800ada3180 : 0xffffff7f837ddcf1
    0xffffff800ada3330 : 0xffffff7f837e0294
    0xffffff800ada3380 : 0xffffff7f838c8ba1
    0xffffff800ada34c0 : 0xffffff7f838cef2e
    0xffffff800ada3510 : 0xffffff7f835d9659
    0xffffff800ada3540 : 0xffffff7f834c383b
    0xffffff800ada35e0 : 0xffffff7f8348c3f7
    0xffffff800ada3610 : 0xffffff7f834bf23d
    0xffffff800ada3800 : 0xffffff7f834c03a2
    0xffffff800ada38d0 : 0xffffff7f836b415a
    0xffffff800ada3900 : 0xffffff7f836b05ce
    0xffffff800ada3920 : 0xffffff7f836af158
    0xffffff800ada39a0 : 0xffffff7f836ababb
    0xffffff800ada39c0 : 0xffffff7f8369f704
    0xffffff800ada3a30 : 0xffffff7f836b5851
    0xffffff800ada3ae0 : 0xffffff7f836aa61c
    0xffffff800ada3c60 : 0xffffff7f834563c7
    0xffffff800ada3cd0 : 0xffffff7f8344057b
    0xffffff800ada3d40 : 0xffffff7f834431b8
    0xffffff800ada3db0 : 0xffffff7f83442db4
    0xffffff800ada3e10 : 0xffffff7f83409c04
    0xffffff800ada3e50 : 0xffffff7f83408eef
    0xffffff800ada3e80 : 0xffffff7f834082cb
    0xffffff800ada3ef0 : 0xffffff80030472a8
    0xffffff800ada3f30 : 0xffffff8003045daa
    0xffffff800ada3f80 : 0xffffff8003045ed9
    0xffffff800ada3fb0 : 0xffffff8002cb26b7
          Kernel Extensions in backtrace:
             com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f833fb000->0xffffff7f83432fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f8324c000
             com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f8343e000->0xffffff7f8344ffff
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f833fb000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f8324c000
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f83452 000->0xffffff7f83754fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f8324c000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f8343e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f833fb000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 3762000->0xffffff7f83a84fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f834 52000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f8324c000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000002a00000
    Kernel text base: 0xffffff8002c00000
    System model name: Macmini4,1 (Mac-F2208EC8)
    System uptime in nanoseconds: 9708470052980
    last loaded kext at 3660329715313: com.apple.filesystems.afpfs          10.0 (addr 0xffffff7f84f16000, size 348160)
    last unloaded kext at 1940466153095: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f84ef5000, size 12288)
    loaded kexts:
    com.Cycling74.driver.Soundflower          1.5.1
    com.iospirit.driver.rbiokithelper          1.8.0
    com.antecea.driver.AnteceaAudioDrv          1.0.0
    com.apple.filesystems.afpfs          10.0
    com.apple.nke.asp_tcp          7.0.0
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleIntelProfile          97
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.ApplePlatformEnabler          2.0.5d4
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.GeForce          8.0.0
    com.apple.filesystems.autofs          3.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBOHCI          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.security.SecureRemotePassword          1.0
    com.apple.driver.AppleProfileTimestampAction          97
    com.apple.driver.AppleProfileThreadInfoAction          97
    com.apple.driver.AppleProfileRegisterStateAction          97
    com.apple.driver.AppleProfileReadCounterAction          97
    com.apple.driver.AppleProfileKEventAction          97
    com.apple.driver.AppleProfileCallstackAction          97
    com.apple.iokit.AppleProfileFamily          97
    com.apple.driver.AppleBluetoothHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: Macmini4,1, BootROM MM41.0042.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.65f2
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: TOSHIBA MK5055GSXF, 500.11 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: hub_device, 0x0409  (NEC Corporation), 0x005a, 0x24100000 / 2
    USB Device: iPhone, apple_vendor_id, 0x12a0, 0x26200000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x06500000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0x06630000 / 4

  • PopupMenuListener event on JComboBox fires multiple times per selection

              // webAddressBox IS OF TYPE javax.swing.JComboBox
               webAddressBox.addPopupMenuListener(new PopupMenuAdapter() {
                    /** @uses {@link com.ppowell.tools.ObjectTools.SimpleBrowser.Surf} */
                    final Surf surf = new Surf(webAddressBox.getSelectedItem().toString());
                     * Perform {@link #surf} processing
                     * @param evt {@link javax.swing.event.PopupMenuEvent}
                    public void popupMenuWillBecomeInvisible(PopupMenuEvent evt) {
                        System.out.println("you selected:");
                        surf.doURLProcessing();
    * PopupMenuAdapter.java
    * Created on February 16, 2007, 11:53 AM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package com.ppowell.tools.ObjectTools.SwingTools;
    import javax.swing.event.PopupMenuEvent;
    import javax.swing.event.PopupMenuListener;
    * Will allow for greater flexibility by implementing {@link javax.swing.event.PopupMenuListener}
    * @author Phil Powell
    * @version JDK 1.6.0
    public abstract class PopupMenuAdapter implements PopupMenuListener {
        /** Creates a new instance of PopupMenuAdapter */
        public PopupMenuAdapter() {}
         * Overrides {@link javax.swing.event.PopupMenuListener} method popupMenuCanceled
         * @param evt {@link javax.swing.event.PopupMenuEvent}
        public void popupMenuCanceled(PopupMenuEvent evt) {}
         * Overrides {@link javax.swing.event.PopupMenuListener} method popupMenuWillBecomeInvisible
         * @param evt {@link javax.swing.event.PopupMenuEvent}
        public void popupMenuWillBecomeInvisible(PopupMenuEvent evt) {}
         * Overrides {@link javax.swing.event.PopupMenuListener} method popupMenuWillBecomeVisible
         * @param evt {@link javax.swing.event.PopupMenuEvent}
        public void popupMenuWillBecomeVisible(PopupMenuEvent evt) {}
    }This code is supposed to handle a single selection from a JComboBox webAddressBox. The front-end functionality of this code blocks works just fine to the user, however, upon viewing the "behind the scenes action", I noticed that the overriden popupMenuWillBecomeInvisible() method within the anonymous inner class instance of PopupAdapter is being called 2 times upon the first time you select something from webAddressBox, 4 times the next time you select something, 8 times the next time, and so on..
    Obviously this is a tremendous waste of resources to have it call that many times exponentially - it should only call once each time you select something from webAddressBox, but I can't figure out how to get that to happen.
    What suggestions might you have to accomplish this? I already have an ActionListener that runs separately from PopupMenuAdapter that handles the user either clicking a JButton or hitting ENTER - this works just fine.
    Thanx
    Phil

    is being called 2 times upon the first time youselect something from
    webAddressBox, 4 times the next time you selectsomething, 8 times the next time, and so on..
    Then you are adding the listener to the component
    multiple times.WTO sigh.. thanx! :)

  • Photoshop CC 2014 Extension - CEP Event callback is triggered multiple times per single event

    Trying to make my extensions listen for bunch of events and it's turning out to be a real pain in the ***.
    I'm hoping there's someone here who has a bit more experience playing around with these.
    I used the example code from here ( Page 43 ): http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/creativesuite/pdfs/CC14_Extension_S DK.pdf
    I've modified the code just a little. I removed some unnecessary things from it. I also added a counter, to try to visualize the issue.
    Every time I pasted the code here, the global variable seemed to duplicate. So, eeeeh...  the example code can be found here.
    The problem is:
    I close one document to trigger the event, but for some reason the callback seems to run multiple times.
    Even better, it doesn't seem to be super consistent about it. Sometimes it repeats only couple of times and sometimes it repeats 160 times.
    It seems like every time the extension panel is reopened, it comes up with a new number.
    Currently, if I close a document, it seems to trigger the callback 15 times
    Since this is screenshot, you'll have to take my word for it. I only closed a single document and the code ran 15 times.
    Am I doing something wrong by any chance?
    edit:
    I believe I just found out the reason and a way to recreate the issue.
    I've occasionally tested the extension by closing and opening the panel, which seems to have caused the issue.
    It looks like every time I close and then open the panel, it... adds one more run time to the stack.
    - Refreshing the panel from chrome doesn't seem to affect it.
    When I restart photoshop, it resets. So after the very first opening of the panel, the event triggers the callback only once.
    I forgot to mention that the host application events work just fine without these issues.
    In fact, I tried to use documentAfterActivate before, but as far as I could find, there is no way to kind of filter out specific events within host application events.
    For instance, I can't specify something different to happen when a new document is opened.
    As very much a side note:
    documentAfterActivate has its own side effect due to the way photoshop works.
    It is triggered when you:
    Create a new document
    Open a new document
    Switch to an open document
    It's the "Switch to an open document" part that makes this event listener also trigger when you close a document.
    Because when you close a document, photoshop switches back to the previous document and that in turn triggers the event listener when it shouldn't, I suppose.
    Of course it doesn't trigger the event when you close the last document as there is no document to switch to at that point.
    ...but this is beyond the scope of the original question.

    I was so tired last night that when I found out the cause of it, I never even thought about unregistering...
    I decided to unregister it when the panel is opened instead.
    This does indeed get rid of the issue.
    Thanks, cbuliarca.
    (function () {
      var csInterface = new CSInterface();
      function init() {
           themeManager.init();
           function registerPhotoshopEvent(in_eventId, register) {
                // Added the next line
                var register = register === "clear" ? "UnRegisterEvent" : "RegisterEvent";
                // Modified the next line
                var event = new CSEvent("com.adobe.Photoshop" + register, "APPLICATION");
                event.extensionId = csInterface.getExtensionID();
                event.appId = csInterface.getApplicationID();
                event.data = in_eventId
                csInterface.dispatchEvent(event);
           var number = 0;
           csInterface.addEventListener("PhotoshopCallback" , function(event) {
                number = number + 1;
                console.log( number );
           var closeEventid = "1131180832"
           // Added the next line
           registerPhotoshopEvent(closeEventid, "clear");
           registerPhotoshopEvent(closeEventid);
      init();

Maybe you are looking for

  • How to validate a Particular Directory or file path in Presentation server.

    Hi SAP gurus, I am having a requirement where I want to download a file into the Presentation server. The file path to download will be provided in a parameter. What I want to do is to throw a message to the user if He/She provides a wrong Directory

  • Multiple records in BPM using Switch

    Hi Frnds,               I was doing File to RFC to Webservice sceanrio using multiple records. For that i have used ReceiveTransformation-Block(ForEach)-Send Sync-ContainerEndBlock-TransformationSendTransformation(Multimapping)-Block-switch-sendsync-

  • The name 'rolename' is in use by the cluster already as network name or application name

    I removed windows cluster ISCSI target server few days back since it was not needed and now its needed as we need since its a clustered storage space and we need this role for ISCSI storage to external server. Now when I add the role again I get this

  • Stacked bars and negatives

    hello all, I'm having an issue with stacked bars. When a value in negative it actually treats it as a positive when drawing the graph! As an example: 1 2 5 -4 Will bring the bar up to 12 instead of 4. Any ideas? Thanks,

  • Mobile me member name or password maybe invalid

    i have mobile member name or password maybe invalid. But It is valid coz i am using it with my icloud access. PLease help