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

Similar Messages

  • 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>

  • 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 ?!

  • 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

  • ActionListener invoked multiple times Issue

    Hi,
    I have defined a CommandLink with ActionListener and ShowPopupBehaviour (onclick)
    Inline Popup box has a Editable Table.
    I would like to perform the ExecuteQuery() on the VO with ViewObject.QUERY_MODE_SCAN_DATABASE_TABLES when CommandLink is pressed to refresh the data in the table that is shown in popup.
    When I click on the CommandLink VO query is executed as expected.
    I can see the results on the Popup refreshed from the database tables.
    When I try to change the value in the popup table the ActionListener of CommandLink is executed again. (I have ran this project in Debug Mode. I have set a breakpoint in ActionListener method).
    What could be the Reason. Any ideas how to go over this.
    Thanks,
    Satya
    code snippet:
    <af:commandLink id="UpdateWIPCL"
    partialSubmit="true"
    text="Edit WIP"
    rendered="#{pageFlowScope.pRevenueProjectId !=null }"
    actionListener="#{ProjectSelection.EditWIPLink}">
    <af:image source="/adf/images/update_ena.png"
    shortDesc="Edit Work In Progress for all Sellers"
    id="UpdateWIPImg"/>
    <af:showPopupBehavior popupId="WIPUpdatePopup"
    triggerType="click"/>
    <af:popup id="WIPUpdatePopup"
    contentDelivery="lazyUncached"
    binding="#{ProjectSelection.wiPUpdatePopup}">

    I have pasted part of it.
    Now pasted complete commandLink
    <af:commandLink id="UpdateWIPCL"
    partialSubmit="true"
    text="Edit WIP"
    rendered="#{pageFlowScope.pRevenueProjectId !=null }">
    <af:image source="/adf/images/update_ena.png"
    shortDesc="Edit Work In Progress for all Sellers"
    id="UpdateWIPImg"/>
    <af:showPopupBehavior popupId="WIPUpdatePopup"
    triggerType="click"/>
    <af:popup id="WIPUpdatePopup"
    contentDelivery="lazyUncached"
    binding="#{ProjectSelection.wiPUpdatePopup}">
    <af:dialog id="dialog2"
    closeIconVisible="false"
    title="Edit Work In Progress"
    dialogListener="#{ProjectSelection.EditWIPDialogListener}"
    clientComponent="true"
    resize="on"
    stretchChildren="first"
    contentWidth="650"
    contentHeight="250">
    <af:table value="#{bindings.SellersWIPVO1.collectionModel}"
    var="row"
    rows="#{bindings.SellersWIPVO1.rangeSize}"
    emptyText="#{bindings.SellersWIPVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.SellersWIPVO1.rangeSize}"
    rowBandingInterval="0"
    id="t7"
    columnStretching="column:c35">
    <af:column sortProperty="SellingRegionName"
    sortable="false"
    headerText="Seller"
    id="c36"
    rowHeader="true"
    align="center">
    <af:outputFormatted value="#{row.bindings.SellingRegionName.inputValue}"
    id="of6"
    inlineStyle="text-align:right;"/>
    </af:column>
    <af:column sortProperty="Elm"
    sortable="false"
    headerText="ELM"
    id="c35"
    align="right">
    <af:outputFormatted value="#{row.bindings.Elm.inputValue}"
    id="of5"
    inlineStyle="text-align:right;">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.SellersWIPVO1.hints.Elm.format}"
    minFractionDigits="4"
    maxFractionDigits="4"/>
    </af:outputFormatted>
    </af:column>
    <af:column sortProperty="Revenue"
    sortable="false"
    headerText="#{bindings.SellersWIPVO1.hints.Revenue.label}"
    id="c39"
    align="right">
    <af:outputFormatted value="#{row.bindings.Revenue.inputValue}"
    id="of7"
    inlineStyle="text-align:right;">
    <af:convertNumber groupingUsed="true"
    pattern="#{bindings.SellersWIPVO1.hints.Revenue.format}"
    minFractionDigits="0"
    maxFractionDigits="0"
    integerOnly="true"/>
    </af:outputFormatted>
    </af:column>
    <af:column sortProperty="Labor"
    sortable="false"
    headerText="#{bindings.SellersWIPVO1.hints.Labor.label}"
    id="c38"
    align="right">
    <af:inputText value="#{row.bindings.Labor.inputValue}"
    label="#{bindings.SellersWIPVO1.hints.Labor.label}"
    required="#{bindings.SellersWIPVO1.hints.Labor.mandatory}"
    columns="#{bindings.SellersWIPVO1.hints.Labor.displayWidth}"
    maximumLength="#{bindings.SellersWIPVO1.hints.Labor.precision}"
    shortDesc="#{bindings.SellersWIPVO1.hints.Labor.tooltip}"
    id="it28"
    contentStyle="text-align:right;">
    <f:validator binding="#{row.bindings.Labor.validator}"/>
    <af:convertNumber
    pattern="#{bindings.SellersWIPVO1.hints.Labor.format}"
    integerOnly="true"
    minFractionDigits="0"
    maxFractionDigits="0"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Odc"
    sortable="false"
    headerText="Other Direct Costs"
    id="c37"
    align="right">
    <af:inputText value="#{row.bindings.Odc.inputValue}"
    label="#{bindings.SellersWIPVO1.hints.Odc.label}"
    required="#{bindings.SellersWIPVO1.hints.Odc.mandatory}"
    columns="#{bindings.SellersWIPVO1.hints.Odc.displayWidth}"
    maximumLength="#{bindings.SellersWIPVO1.hints.Odc.precision}"
    shortDesc="#{bindings.SellersWIPVO1.hints.Odc.tooltip}"
    id="it30"
    contentStyle="text-align:right;">
    <f:validator binding="#{row.bindings.Odc.validator}"/>
    <af:convertNumber
    pattern="#{bindings.SellersWIPVO1.hints.Odc.format}"
    integerOnly="true"
    minFractionDigits="0"
    maxFractionDigits="0"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Ops"
    sortable="false"
    headerText="Outside Professionals"
    id="c40"
    align="right">
    <af:inputText value="#{row.bindings.Ops.inputValue}"
    label="#{bindings.SellersWIPVO1.hints.Ops.label}"
    required="#{bindings.SellersWIPVO1.hints.Ops.mandatory}"
    columns="#{bindings.SellersWIPVO1.hints.Ops.displayWidth}"
    maximumLength="#{bindings.SellersWIPVO1.hints.Ops.precision}"
    shortDesc="#{bindings.SellersWIPVO1.hints.Ops.tooltip}"
    id="it18"
    contentStyle="text-align:right;">
    <f:validator binding="#{row.bindings.Ops.validator}"/>
    <af:convertNumber
    pattern="#{bindings.SellersWIPVO1.hints.Ops.format}"
    integerOnly="true"
    minFractionDigits="0"
    maxFractionDigits="0"/>
    </af:inputText>
    </af:column>
    </af:table>
    </af:dialog>
    </af:popup>
    </af:commandLink>

  • ESB invokes BPEL multiple times

    Hi All,
    I am facing an issue with ESB.
    I have registered an ESB which is calling a synchronous process.
    When I am initiating this ESB the same BPEL process is invoked multiple time and none of the BPEL instance has faulted.
    Like:
    Initiate ESB -&gt; invokes BPEL_Process Instance1
    invokes BPEL_Process Instance2 and so on. Please notice that Instance1 has not faulted.
    I want my ESB to call BPEL_Process only once if its not faulting.
    Any pointer to this will be of great help.
    Thanks & Regards,
    Shanty

    Hi,
    I have not used any adapter in any of my BPEL or ESB process.
    I am calling the ESB from a BPEL Process which in turn call another BPEL Process.
    i.e. BPEL_Process1-->ESB-->BPEL_Process2
    There is no fault thrown by any of the process but still BPEL_Process2 is invoked multiple times by ESB.
    Thanks & Regards,
    Shanty

  • ESB invokes BPEL multiple time

    Hi All,
    I am facing an issue with ESB.
    I have registered an ESB which is calling synchronous process.
    When I am initiating this ESB the same BPEL process is invoked multiple time and none of its instance has faulted.
    Like:
    Initiate ESB -> invokes BPEL_Process Instance1
    invokes BPEL_Process Instance2 and so on. Please notice that Instance1 has not faulted.
    I require the ESB to invoke BPEL_Process only once if it is not faulting.
    Any pointer to this will be of great help.
    Thanks & Regards,
    Shanty

    Hi,
    I have not used any adapter in any of my BPEL or ESB process.
    I am calling the ESB from a BPEL Process which in turn call another BPEL Process.
    i.e. BPEL_Process1-->ESB-->BPEL_Process2
    There is no fault thrown by any of the process but still BPEL_Process2 is invoked multiple times by ESB.
    Thanks & Regards,
    Shanty

  • Problem when invoking a web service multiple times

    Hello,
    I have a java client which invokes an apache axis web service (deployed on an Oracle Application Server on a remote machine) multiple times.
    The client distributes the web service invokes among multiple threads, every thing goes well but after an average of 300 web service invokes (among all threads) ab exception is thrown from the client:
    java.net.SocketException: Unable to establish connection
    at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:154)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:11
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    at org.apache.axis.client.Call.invoke(Call.java:2767)
    at org.apache.axis.client.Call.invoke(Call.java:2443)
    at org.apache.axis.client.Call.invoke(Call.java:2366)
    at org.apache.axis.client.Call.invoke(Call.java:1812)
    at standardwebservice.StandardWebserviceSoapBindingStub.getStandardWebserviceData(StandardWebserviceSoapBindingStub.java:225)
    at standardwebservice.StandardWebserviceProxy.getStandardWebserviceData(StandardWebserviceProxy.java:50)
    at main.VericalThread.run(VericalThread.java:65)
    Caused by: java.net.SocketException: Unable to establish connection
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:153)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:120)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:191)
    at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:404)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:13
    ... 12 more
    Thread No. 1 Start for calling 1210ZD106MAT2AAxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.net.SocketException: Unable to establish connection
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace:java.net.SocketException: Unable to establish connection
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:153)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:120)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:191)
    at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:404)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:13
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:11
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    at org.apache.axis.client.Call.invoke(Call.java:2767)
    at org.apache.axis.client.Call.invoke(Call.java:2443)
    at org.apache.axis.client.Call.invoke(Call.java:2366)
    at org.apache.axis.client.Call.invoke(Call.java:1812)
    at standardwebservice.StandardWebserviceSoapBindingStub.getStandardWebserviceData(StandardWebserviceSoapBindingStub.java:225)
    at standardwebservice.StandardWebserviceProxy.getStandardWebserviceData(StandardWebserviceProxy.java:50)
    at main.VericalThread.run(VericalThread.java:65)
    By the way, when I deploy the same web service on an oracle application server on a local machine (in same physical network), every thing goes well and this exception doesn't appear.
    By the way, I also tried a JAX-RPC web service and the same exception is thrown.
    So please can somebody give me a help.

    Hello,
    I have a java client which invokes an apache axis web service (deployed on an Oracle Application Server on a remote machine) multiple times.
    The client distributes the web service invokes among multiple threads, every thing goes well but after an average of 300 web service invokes (among all threads) ab exception is thrown from the client:
    java.net.SocketException: Unable to establish connection
    at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:154)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:11
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    at org.apache.axis.client.Call.invoke(Call.java:2767)
    at org.apache.axis.client.Call.invoke(Call.java:2443)
    at org.apache.axis.client.Call.invoke(Call.java:2366)
    at org.apache.axis.client.Call.invoke(Call.java:1812)
    at standardwebservice.StandardWebserviceSoapBindingStub.getStandardWebserviceData(StandardWebserviceSoapBindingStub.java:225)
    at standardwebservice.StandardWebserviceProxy.getStandardWebserviceData(StandardWebserviceProxy.java:50)
    at main.VericalThread.run(VericalThread.java:65)
    Caused by: java.net.SocketException: Unable to establish connection
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:153)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:120)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:191)
    at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:404)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:13
    ... 12 more
    Thread No. 1 Start for calling 1210ZD106MAT2AAxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.net.SocketException: Unable to establish connection
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace:java.net.SocketException: Unable to establish connection
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:153)
    at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:120)
    at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:191)
    at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPSender.java:404)
    at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:13
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:11
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    at org.apache.axis.client.Call.invoke(Call.java:2767)
    at org.apache.axis.client.Call.invoke(Call.java:2443)
    at org.apache.axis.client.Call.invoke(Call.java:2366)
    at org.apache.axis.client.Call.invoke(Call.java:1812)
    at standardwebservice.StandardWebserviceSoapBindingStub.getStandardWebserviceData(StandardWebserviceSoapBindingStub.java:225)
    at standardwebservice.StandardWebserviceProxy.getStandardWebserviceData(StandardWebserviceProxy.java:50)
    at main.VericalThread.run(VericalThread.java:65)
    By the way, when I deploy the same web service on an oracle application server on a local machine (in same physical network), every thing goes well and this exception doesn't appear.
    By the way, I also tried a JAX-RPC web service and the same exception is thrown.
    So please can somebody give me a help.

  • [svn:fx-trunk] 21141: Bug: 2780176 - Logging and logging out multiple times in LCDS can cause duplicate session detected errors .

    Revision: 21141
    Revision: 21141
    Author:   [email protected]
    Date:     2011-04-26 06:40:39 -0700 (Tue, 26 Apr 2011)
    Log Message:
    Bug: 2780176 - Logging and logging out multiple times in LCDS can cause duplicate session detected errors.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: When a logout was followed by an immediate login, sometimes the server would throw duplicate session detected errors. This was because when logout happened, a fire-and-forget disconnect message was sent to the server that established a new session, and if the subsequent login happened before disconnect ACK returned from the server, that would establish another session and hence the error. The fix is to insert a slight delay between disconnect and ResultEvent dispatching. This way, disconnect has a chance to return before a login is performed.
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as

    You've got an  incompatible Logitech driver and java was incompletely uninstalled.
    You may have a problem with the Wacom driver.
    I don't know if fixing those things will help.
    There also a few window server errors, but I don't know if they are causal.
    If you can note the time of the hangs, that might help narrow it down in the logs.

  • [svn:osmf:] 13557: Fixing problem where a lingering TraitAggregationHelper causes elements to be added multiple times on ParallelDisplayObjectTrait .

    Revision: 13557
    Revision: 13557
    Author:   [email protected]
    Date:     2010-01-17 10:05:12 -0800 (Sun, 17 Jan 2010)
    Log Message:
    Fixing problem where a lingering TraitAggregationHelper causes elements to be added multiple times on ParallelDisplayObjectTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelDisplayObjectTrait.as

    Revision: 13557
    Revision: 13557
    Author:   [email protected]
    Date:     2010-01-17 10:05:12 -0800 (Sun, 17 Jan 2010)
    Log Message:
    Fixing problem where a lingering TraitAggregationHelper causes elements to be added multiple times on ParallelDisplayObjectTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelDisplayObjectTrait.as

  • Valuechange listener called multiple times for checkbox in table.

    Hi All,
    I'm trying to understand how value change listeners work for checkbox components within a table column. I have a checkbox declared as below
    <af:selectBooleanCheckbox id="sbc1"
    valueChangeListener="#{pageFlowScope.classfiyBean.checkBoxValueChangeListener}"
    immediate="true"
    autoSubmit="true" />
    I notice the value change listener is called multiple times. There are 6 rows in the table within which the checkbox is a component. It is called 6 times for a change. How do I prevent this from happening as it's over writing the values of the other rows as well.
    Scenario : The page is based on a human task, so the outcome button cannot be set to Immediate = true since there are other validations on the page.
    JDev: 11.1.1.4
    Thanks
    PP

    Hi
    Please make sure that Is there any logic being implemented in WD MODIFY VIEW of view controller.
    If yes that may be the cause of your problem because WDModifyView() is being called every time u perform an action.
    or
    Try to Invalidate current context node which is bound to table UI element and actually containing data at run time. I think this node is not being refreshed. Try to refresh it in Search Button action.
    or
    Check your loop code snippet, if you implemented it anywhere.
    Mandeep Virk

  • Mail crashes multiple times a day

    I've been having A LOT of problems with Mail in the last few weeks. It crashes at least once a day, often multiple times a day. There are no particular causes for the crash that I notice. Sometimes, it crashes when i'm trying to read an e-mail, sometimes it crashes even when the computer is idle and sometimes it crashes when I'm on the computer doing something else and Mail is just running in the background (but no new mail arriving). I know I'm not giving a lot of information to help diagnose the problem but has anyone else run into the same issue and know how to solve it?

    Here you go. it has crashed three times in the last two hours:
    Process: Mail [2810]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.5 (929.4)
    Build Info: Mail-9290400~5
    Code Type: X86 (Native)
    Parent Process: launchd [111]
    Date/Time: 2008-11-10 01:19:36.397 +0800
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000065de8140
    Crashed Thread: 15
    Application Specific Information:
    -[POPAccount fetchSynchronouslyIsAuto:]
    -[iToolsAccount fetchSynchronouslyIsAuto:]
    -[iToolsAccount fetchToDosSynchronously]
    -[IMAPGateway _allowClientOperationThrough:]
    Thread 0:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 libSystem.B.dylib 0x90e0ef09 vm_deallocate + 133
    3 libSystem.B.dylib 0x90ed230c simplesfree + 98
    4 libSystem.B.dylib 0x90ed15cb malloc_printf + 35
    5 libSystem.B.dylib 0x90ecc0a2 szone_error + 174
    6 libSystem.B.dylib 0x90df0743 szone_free + 265
    7 com.apple.CoreGraphics 0x962ffe78 _CGSReleaseWindowList + 938
    8 com.apple.CoreGraphics 0x962ffac6 CGSReleaseWindow + 370
    9 com.apple.AppKit 0x916da792 -[NSSurface _disposeBackingStore] + 346
    10 com.apple.AppKit 0x916da60f -[NSSurface dealloc] + 65
    11 com.apple.AppKit 0x914ec901 -[NSView(NSSurface) _setSurface:] + 191
    12 com.apple.AppKit 0x914eb7ab -[NSView _finalizeWithReferenceCounting] + 603
    13 com.apple.AppKit 0x914eb524 -[NSView dealloc] + 46
    14 com.apple.AppKit 0x916760b7 -[NSProgressIndicator dealloc] + 527
    15 com.apple.Foundation 0x9371fccf __delayedPerformCleanup + 79
    16 com.apple.CoreFoundation 0x96dc792b CFRunLoopTimerInvalidate + 363
    17 com.apple.CoreFoundation 0x96dc8879 CFRunLoopRunSpecific + 3753
    18 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    19 com.apple.HIToolbox 0x94816480 RunCurrentEventLoopInMode + 283
    20 com.apple.HIToolbox 0x94816299 ReceiveNextEventCommon + 374
    21 com.apple.HIToolbox 0x9481610d BlockUntilNextEventMatchingListInMode + 106
    22 com.apple.AppKit 0x914f53ed _DPSNextEvent + 657
    23 com.apple.AppKit 0x914f4ca0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    24 com.apple.AppKit 0x914edcdb -[NSApplication run] + 795
    25 com.apple.AppKit 0x914baf14 NSApplicationMain + 574
    26 com.apple.mail 0x000fa9a2 0x1000 + 1022370
    Thread 1:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9370e135 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x9371a254 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d5021 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    8 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x90e5407a _workqops + 10
    1 libSystem.B.dylib 0x90e540aa start_wqthread + 30
    Thread 3:
    Thread 4:
    0 libSystem.B.dylib 0x90df168e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90e1c36d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x93b03bb9 fefragmentthread + 54
    3 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9370e135 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x9371a254 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002f9f19 +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    8 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x90e3a5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x96b92eca CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9373d100 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    6 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    8 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.IMUtils 0x961eddc7 -[IMRemoteObjectBroadcaster _workerThread] + 246
    5 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    6 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    8 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreGraphics 0x962f9db7 _CGSFlushSurfaceInline + 241
    3 com.apple.CoreGraphics 0x962f9b08 CGSFlushSurfaceWithOptions + 500
    4 com.apple.CoreGraphics 0x962f990f CGSFlushSurface + 46
    5 com.apple.AppKit 0x9153ec20 -[NSSurface flush] + 161
    6 com.apple.AppKit 0x9155b6e1 -[NSUIHeartBeat _heartBeatThread:] + 1658
    7 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    8 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x9428f464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x9428f300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x90dea506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90e1c84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x90e1e0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9371fb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9371f930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    7 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    9 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x90e1af66 kevent + 10
    1 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x90e1af66 kevent + 10
    1 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 15 Crashed:
    0 libSystem.B.dylib 0x90df2558 tinymalloc_from_freelist + 62
    1 libSystem.B.dylib 0x90deb3ed szone_malloc + 180
    2 libSystem.B.dylib 0x90deb2f8 malloczonemalloc + 81
    3 libSystem.B.dylib 0x90deb28c malloc + 55
    4 com.apple.Foundation 0x936d1e3c nsnoteinfonew + 28
    5 com.apple.Foundation 0x936d1d95 -[NSNotificationCenter addObserver:selector:name:object:] + 37
    6 com.apple.mail 0x00002aa8 0x1000 + 6824
    7 com.apple.MessageFramework 0x003d3090 -[LibraryStore initWithCriterion:mailbox:readOnly:] + 979
    8 com.apple.MessageFramework 0x003d2b7d -[LibraryStore initWithMailboxUid:readOnly:] + 79
    9 com.apple.MessageFramework 0x002eddf5 -[LibraryIMAPStore initWithMailboxUid:readOnly:] + 68
    10 com.apple.MessageFramework 0x00338ea0 -[LibraryToDoIMAPStore initWithMailboxUid:readOnly:libraryClass:] + 68
    11 com.apple.MessageFramework 0x00338e54 -[LibraryToDoIMAPStore initWithMailboxUid:readOnly:] + 82
    12 com.apple.MessageFramework 0x003d26ff -[MailAccount storeForMailboxUid:] + 604
    13 com.apple.MessageFramework 0x0033a087 -[IMAPAccount fetchToDosSynchronously] + 109
    14 com.apple.CoreFoundation 0x96e47a7d _invoking__ + 29
    15 com.apple.CoreFoundation 0x96e47468 -[NSInvocation invoke] + 136
    16 com.apple.MessageFramework 0x003d74c8 -[MonitoredInvocation invoke] + 409
    17 com.apple.MessageFramework 0x003d70aa -[InvocationQueue _drainQueue] + 772
    18 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    19 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    20 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    21 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 libSystem.B.dylib 0x90e1547c vm_allocate + 135
    3 libSystem.B.dylib 0x90ed2204 simplesalloc + 52
    4 libSystem.B.dylib 0x90ecc011 szone_error + 29
    5 libSystem.B.dylib 0x90df3e2e tinyfree_list_addptr + 223
    6 libSystem.B.dylib 0x90df0eba szone_free + 2176
    7 libSystem.B.dylib 0x90df05ad free + 106
    8 com.apple.Foundation 0x936d1f1a nsnoteinfooperate + 106
    9 com.apple.CoreFoundation 0x96dab139 __CFXNotificationUnregisterTable + 585
    10 com.apple.CoreFoundation 0x96dab4df _CFXNotificationUnregister + 847
    11 com.apple.Foundation 0x936ffe5e -[NSNotificationCenter removeObserver:name:object:] + 110
    12 com.apple.mail 0x000092b0 0x1000 + 33456
    13 com.apple.Foundation 0x93704669 -[NSNotificationCenter removeObserver:] + 57
    14 com.apple.MessageFramework 0x00309435 -[LibraryStore _invalidate] + 67
    15 com.apple.MessageFramework 0x0033bc0f -[LibraryIMAPStore _invalidate] + 841
    16 com.apple.CoreFoundation 0x96e47a7d _invoking__ + 29
    17 com.apple.CoreFoundation 0x96e47468 -[NSInvocation invoke] + 136
    18 com.apple.Foundation 0x936d520f NSPopAutoreleasePool + 431
    19 com.apple.MessageFramework 0x003d70ff -[InvocationQueue _drainQueue] + 857
    20 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    21 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    22 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    23 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x90dea506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90e1c84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x90e1e0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9371fb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9371f930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    7 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    9 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.MessageFramework 0x002fd06e _handleRequestWithTimeout + 2163
    5 com.apple.MessageFramework 0x00301955 -[_NSSocket readBytes:length:error:] + 154
    6 com.apple.MessageFramework 0x003014df -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 89
    7 com.apple.MessageFramework 0x0030139a -[Connection _fillBuffer:] + 853
    8 com.apple.MessageFramework 0x00300f60 -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x004081cf -[POP3Connection(PrivateCommands) _copyReplyLineDataWithError:] + 105
    10 com.apple.MessageFramework 0x0040829b -[POP3Connection(PrivateCommands) _getStatusFromReply] + 56
    11 com.apple.MessageFramework 0x0040673e -[POP3Connection authenticateUsingAccount:] + 867
    12 com.apple.MessageFramework 0x003a31ec -[Account _connectAndAuthenticate:] + 326
    13 com.apple.MessageFramework 0x00427d6b -[Account authenticatedConnection] + 108
    14 com.apple.MessageFramework 0x0040a7e2 -[POP3FetchStore fetchSynchronously] + 661
    15 com.apple.MessageFramework 0x0043d459 -[POPAccount fetchSynchronously] + 337
    16 com.apple.CoreFoundation 0x96e47a7d _invoking__ + 29
    17 com.apple.CoreFoundation 0x96e47468 -[NSInvocation invoke] + 136
    18 com.apple.MessageFramework 0x003d74c8 -[MonitoredInvocation invoke] + 409
    19 com.apple.MessageFramework 0x003d70aa -[InvocationQueue _drainQueue] + 772
    20 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    21 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    22 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    23 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x90dea506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90e1c84f pthread_condwait + 1244
    2 libSystem.B.dylib 0x90e1e0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9371fb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9371f930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.MessageFramework 0x0031b8e4 -[MonitoredInvocationQueue _drainQueue] + 261
    7 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    8 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    10 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x90dea4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90df1c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x96dc80ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96dc8cf8 CFRunLoopRunInMode + 88
    4 com.apple.MessageFramework 0x002fd06e _handleRequestWithTimeout + 2163
    5 com.apple.MessageFramework 0x00301955 -[_NSSocket readBytes:length:error:] + 154
    6 com.apple.MessageFramework 0x003014df -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 89
    7 com.apple.MessageFramework 0x0030139a -[Connection _fillBuffer:] + 853
    8 com.apple.MessageFramework 0x00300f60 -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x00300ed8 -[IMAPConnection _readLineIntoData:error:] + 71
    10 com.apple.MessageFramework 0x00300d60 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 155
    11 com.apple.MessageFramework 0x003008ae -[IMAPResponse initWithConnection:error:] + 370
    12 com.apple.MessageFramework 0x003006fb -[IMAPConnection _copyNextServerResponse:] + 79
    13 com.apple.MessageFramework 0x003fa8db -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 201
    14 com.apple.MessageFramework 0x0031f1f4 -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:] + 49
    15 com.apple.MessageFramework 0x003fb7fa -[IMAPConnection executeDone:] + 141
    16 com.apple.MessageFramework 0x0031be9d -[IMAPGateway _allowClientOperationThrough:] + 1256
    17 com.apple.CoreFoundation 0x96e47a7d _invoking__ + 29
    18 com.apple.CoreFoundation 0x96e47468 -[NSInvocation invoke] + 136
    19 com.apple.MessageFramework 0x003d70aa -[InvocationQueue _drainQueue] + 772
    20 com.apple.MessageFramework 0x0031b8e4 -[MonitoredInvocationQueue _drainQueue] + 261
    21 com.apple.Foundation 0x936d9bad -[NSThread main] + 45
    22 com.apple.Foundation 0x936d9754 _NSThread__main_ + 308
    23 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    24 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x90e2d10e sigprocmask + 10
    1 libSystem.B.dylib 0x90ed32cc simplesprintf + 42
    2 libSystem.B.dylib 0x90ed34c8 simple_asllog + 178
    3 libSystem.B.dylib 0x90ed1593 mallocvprintf + 425
    4 libSystem.B.dylib 0x90ed15cb malloc_printf + 35
    5 libSystem.B.dylib 0x90ecc0a2 szone_error + 174
    6 libSystem.B.dylib 0x90df3e2e tinyfree_list_addptr + 223
    7 libSystem.B.dylib 0x90df289c tinymalloc_from_freelist + 898
    8 libSystem.B.dylib 0x90deb3ed szone_malloc + 180
    9 libSystem.B.dylib 0x90deb2f8 malloczonemalloc + 81
    10 com.apple.CoreFoundation 0x96dca451 _CFRuntimeCreateInstance + 145
    11 com.apple.CoreFoundation 0x96dc3a89 __CFRunLoopCreate + 57
    12 com.apple.CoreFoundation 0x96dc3dd5 _CFRunLoop0 + 469
    13 com.apple.Foundation 0x936d97ae _NSThread__main_ + 398
    14 libSystem.B.dylib 0x90e1b6f5 pthreadstart + 321
    15 libSystem.B.dylib 0x90e1b5b2 thread_start + 34
    Thread 15 crashed with X86 Thread State (32-bit):
    eax: 0xc0000003 ebx: 0x90df2535 ecx: 0x19746fe0 edx: 0x65de8140
    edi: 0x006cc000 esi: 0x006cc05c ebp: 0xb03b5928 esp: 0xb03b58b0
    ss: 0x0000001f efl: 0x00010202 eip: 0x90df2558 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x65de8140
    Binary Images:
    0x1000 - 0x270ff3 com.apple.mail 3.5 (929.4) <d72931e08460e1473c4bb95348f88e3d> /Applications/Mail.app/Contents/MacOS/Mail
    0x2df000 - 0x534ff3 com.apple.MessageFramework 3.5 (929.2) <585a160bbb2a8db85a98946514a483fa> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x689000 - 0x68bfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x692000 - 0x6b6fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x145ea000 - 0x145eaffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x14a7e000 - 0x14a83ff3 libCGXCoreImage.A.dylib ??? (???) <31761f6461b8dd390dc4df480b1fb564> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x14aea000 - 0x14aebfe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x14c22000 - 0x14d40ff7 com.apple.RawCamera.bundle 2.0.7 (2.0.7) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15d54000 - 0x15d55fff +uk.co.markallan.clamxav.ScanWithClamXav ??? (1.0) /Users/cleung/Library/Contextual Menu Items/ScanWithClamXav.plugin/Contents/MacOS/ScanWithClamXav
    0x15d8e000 - 0x15d8fffd com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x15dc4000 - 0x15dd6fff libTraditionalChineseConverter.dylib ??? (???) <89ec94121ef50601dc538548caae57fc> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x15dda000 - 0x15ddcffe com.apple.AutomatorCMM 1.1 (160) <650079fd95a57e8131e79409a00b2aed> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x15de2000 - 0x15de5fff com.apple.BezelServicesFW 1.4.832 (1.4.832) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x178eb000 - 0x178ebffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x178f1000 - 0x178f7ffd com.apple.JavaVM 12.2.0 (12.2.0) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17ac8000 - 0x17ad7fff com.apple.mail.WebPlugIn 3.5 (929.4) <ddc4d783628305319348be5c625afd29> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.bundle/Contents/MacOS/Mai lWebPlugIn
    0x18400000 - 0x1841efff com.apple.Mail.Syncer 3.5 (929.2) <bb2f25365146a003cfde5dfa71f7caf8> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x18431000 - 0x18444fff com.apple.syncservices.syncservicesui 4.1 (389.7) <b2df18b40c51d77ecd503ac89bc8eae1> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x18552000 - 0x18555fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1855b000 - 0x18560fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x18576000 - 0x1857bfff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1a23e000 - 0x1a2acff7 com.apple.Bluetooth 2.1 (2.1f17) <43b729ee80dd5dc4b341797358e1729c> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <c254337fa28c7eacb3d3e1d56aa141a4> /usr/lib/dyld
    0x90003000 - 0x9013bfe7 com.apple.imageKit 1.0.2 (1.0) <5eee702fe546c8c881acfc65c41ad178> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9013c000 - 0x90148ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90149000 - 0x901a2ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x901a3000 - 0x9035eff3 com.apple.QuartzComposer 2.1 (106.5) <6356aae41173748e64ba086a1a1a1446> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9035f000 - 0x9042dff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9042e000 - 0x904dcffb com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x904dd000 - 0x9054ffff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90550000 - 0x9055dff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x9055e000 - 0x90baefff com.apple.WebCore 5525.18.1 (5525.18.1) <9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90baf000 - 0x90d10ff2 com.apple.CalendarStore 3.0.5 (841) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x90d41000 - 0x90d9bff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d9f000 - 0x90de8fef com.apple.Metadata 10.5.2 (398.22) <a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90de9000 - 0x90f49ff3 libSystem.B.dylib ??? (???) <3699b292cde73c2847f87c7e1510d87b> /usr/lib/libSystem.B.dylib
    0x90f4a000 - 0x90f6efeb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x90f6f000 - 0x90f78fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90f79000 - 0x9129bfe2 com.apple.QuickTime 7.5.5 (990.7) <87077cec43c7e9b02c8ee80e50b8b81f> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9129c000 - 0x91328ff7 com.apple.LaunchServices 290 (290) <61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91329000 - 0x91409fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x9140d000 - 0x914b4feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x914b5000 - 0x91cb2fef com.apple.AppKit 6.5.3 (949.34) <4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91cb3000 - 0x91cc7ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91cc8000 - 0x91cd7fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x91cd8000 - 0x91cf4fff com.apple.IMFramework 4.0.5 (582) <da822220ccdaabc47408e2f641d48685> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x91cf5000 - 0x91d03ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x91d04000 - 0x91d83ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91d84000 - 0x91da1ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91da2000 - 0x91db3ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x92d6a000 - 0x92d97feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92d98000 - 0x92e1fff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x92e20000 - 0x92e5efff libGLImage.dylib ??? (???) <f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92e5f000 - 0x92e5fffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92e60000 - 0x92e60ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92e61000 - 0x92e61ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92e62000 - 0x92eedfff com.apple.framework.IOKit 1.5.1 (???) <324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92eee000 - 0x92efeffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92eff000 - 0x92f04ffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92f05000 - 0x92f55ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92f56000 - 0x92f6dfff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x92f6e000 - 0x92fbefeb com.apple.framework.familycontrols 1.0.2 (1.0.2) <17136778a20a2d1272d8c6fc942f8465> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92fbf000 - 0x930f7ff7 libicucore.A.dylib ??? (???) <3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
    0x930f8000 - 0x930fefff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930ff000 - 0x93192fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93193000 - 0x931b7fff libxslt.1.dylib ??? (???) <ea5c8d349a3934ecc2b936f9cdfaba04> /usr/lib/libxslt.1.dylib
    0x931b8000 - 0x93689f3e libGLProgrammability.dylib ??? (???) <fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9368a000 - 0x93691ff7 libCGATS.A.dylib ??? (???) <973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93697000 - 0x936cefff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x936cf000 - 0x9394afe7 com.apple.Foundation 6.5.6 (677.21) <5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9394b000 - 0x9394bffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9394c000 - 0x93964fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93965000 - 0x939effe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x939f0000 - 0x93a0efff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x93a0f000 - 0x93dacfe7 com.apple.QuartzCore 1.5.5 (1.5.5) <82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93dad000 - 0x94087ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94088000 - 0x94088ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94089000 - 0x94154fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94155000 - 0x9418ffe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94190000 - 0x94271ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x94272000 - 0x942eefeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x942ef000 - 0x942fbffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x942fc000 - 0x946bafea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x946bb000 - 0x94717ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94718000 - 0x9471cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x947e7000 - 0x94aeefff com.apple.HIToolbox 1.5.4 (???) <5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94aef000 - 0x94ba1ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x94ba2000 - 0x94bcafff libcups.2.dylib ??? (???) <bddaa132350e872b9d6d8b7e57f204d1> /usr/lib/libcups.2.dylib
    0x94bcb000 - 0x94c92ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94c93000 - 0x94c94ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x94c95000 - 0x94c95fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94c96000 - 0x94cbeff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94cbf000 - 0x94cf5fef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x94cf6000 - 0x94e1afe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94e1b000 - 0x94e1ffff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94e20000 - 0x94e3eff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <4b81063df189bc462f012a169474fcbc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94e3f000 - 0x94e69fff com.apple.CoreMediaPrivate 11.0 (11.0) <e37d6ebd5934b482c864ba6eaf122488> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94e6a000 - 0x94f6bfef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x94f6c000 - 0x9513afff com.apple.security 5.0.4 (34102) <3a178df3d2ee0bb65cdbfe570618acf4> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9513b000 - 0x951adfff com.apple.PDFKit 2.1.1 (2.1.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x951ae000 - 0x951deff3 com.apple.DotMacSyncManager 1.2.3 (286) <95dc39fc6bf19eb92c5606ebd8a38492> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x951df000 - 0x951faffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x951fb000 - 0x95206fff com.apple.dotMacLegacy 3.1 (244.1) <dc5b306b079718439c199d386ff60cc4> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x95207000 - 0x95211feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95212000 - 0x95260ff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95261000 - 0x952c7ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x952c8000 - 0x95385fff com.apple.WebKit 5525.18 (5525.18) <9228870ec6a53b83134fd13a359276a8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95386000 - 0x95466fff com.apple.syncservices 3.1 (389.7) <b3020e445b8987ea77eeaf918e48c351> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x95467000 - 0x954b1fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x954b2000 - 0x954b4fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x954b5000 - 0x954f4fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x954f5000 - 0x955daff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x955e3000 - 0x95615fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95616000 - 0x9561dfe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9561e000 - 0x95623fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9588d000 - 0x959d3ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x959d4000 - 0x95a13fff com.apple.CoreMediaIOServicesPrivate 12.0 (12.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x95a14000 - 0x95e24fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95e25000 - 0x95fa4fff com.apple.AddressBook.framework 4.1.1 (696) <bb7f2d5f0b2d180288cd959cd9ba6c1a> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95fa5000 - 0x9605ffe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96060000 - 0x960f3ff3 com.apple.ApplicationServices.ATS 3.4 (???) <a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x960f4000 - 0x960f8fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x960f9000 - 0x96173ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96174000 - 0x961a8fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x961b3000 - 0x961e4ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x961e5000 - 0x961eaffc com.apple.KerberosHelper 1.1 (1.0) <86b1b4589baa557d067d07efc01890d2> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x961eb000 - 0x961ebffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x961ec000 - 0x961fffff com.apple.IMUtils 4.0.5 (582) <535270cbc62da9f8269578251a660e76> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96200000 - 0x9622bfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9622c000 - 0x9623cfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9623d000 - 0x9624afe7 com.apple.opengl 1.5.7 (1.5.7) <db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9624b000 - 0x96256fe7 libCSync.A.dylib ??? (???) <86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96257000 - 0x968f3fff com.apple.CoreGraphics 1.351.33 (???) <481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x968f4000 - 0x96938feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <adf52d84fa5c675dd14eb499113cc3b8> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96939000 - 0x96996ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96997000 - 0x9699ffff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x969a0000 - 0x969a0ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x969a1000 - 0x969dbffe com.apple.securityfoundation 3.0 (32989) <36f7f260187c435b2670bcb24acd4219> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x969dc000 - 0x96a1dfe7 libRIP.A.dylib ??? (???) <1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96a1e000 - 0x96a20ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96b16000 - 0x96b35ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96b36000 - 0x96b85fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x96b86000 - 0x96b86ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96b87000 - 0x96c0bfe3 com.apple.CFNetwork 339.5 (339.5) <c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96c0c000 - 0x96c22fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x96c23000 - 0x96cd3fff edu.mit.Kerberos 6.0.12 (6.0.12) <da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96cd4000 - 0x96d03fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96d04000 - 0x96d09fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d0a000 - 0x96d4cfef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96d4d000 - 0x96d4dff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96d4e000 - 0x96d55ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x96d56000 - 0x96e88fff com.apple.CoreFoundation 6.5.4 (476.15) <e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96e89000 - 0x96ef6ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x96ef7000 - 0x96f0dfe7 com.apple.CoreVideo 1.5.1 (1.5.1) <001910004257f1386724398f584b30b5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96f0e000 - 0x96f11fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96f12000 - 0x96f1efff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x96f1f000 - 0x96f1fffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f20000 - 0x96f5cfff com.apple.DAVKit 3.0.4 (652) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x97000000 - 0x9707dfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9707e000 - 0x9708dffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Jabber for Windows 10.5 shows contacts from Address Book multiple times?

    What would cause Jabber for Windows 10.5.1 to show a contact multiple times from the address book when searching?  See attached screenshot. 

    I tried removing firefox and rebooting/reinstalling Jabber with no luck.  I reimaged my machine and loaded 10.5.2 fresh install with no previous versions and still getting the random crash.  Also, I have users who say it has crashed on them during a WebEx and have had installation problems when upgrading from 9.x to 10.5.x.  Version 9 is very solid, sticking with 9.7.5.  I have about 10% of my test users having varying problems with version 10.5.x, waiting till the next release.  Hopefully Cisco will spend a few more weeks testing the next one before publishing it on their site.
    --edit--
    Also, when you finally get frustrated and want to downgrade, Jabber 10.5.x doesn't uninstall completely and you end up with an error like the image attached when you try to install v9.7.5 for example and can't install Jabber even after rebooting.  I had to run Microsoft Fix It install/Uninstall option and tell it to uninstall Jabber before Windows allowed me to install an older version of Jabber.  Not too happy with this release.  Strange enough though, some of my users have the exact same laptop I do, same windows build, same patches, etc, and it works fine for them.  Anyway, not deploying this one.  Good luck.

  • My iPhone 3GS 16gb, is stuck in restore mode, downloaded and tried to do a restore multiple times. Keep getting an error The iPhone "iPhone" could not be restored. Unknown error occured (-1). Cannot get it out of restore mode, keeps rebooting!

    My iPhone 3GS 16gb, is stuck in restore mode, downloaded and tried to do a restore multiple times. Keep getting an error The iPhone "iPhone" could not be restored. Unknown error occured (-1). Cannot get it out of restore mode, keeps rebooting!
    I have tried to hold the "home" and "power" button to reboot
    I have tried powering it off
    I have tried, to unplug the cable, hold the "home" button and then plug it in.
    Can't check the SN or warranty, cause it is stuck in restore mode.
    Is the hard drive gone? Should there be something replaced.

    http://support.apple.com/kb/TS3694#error1
    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    Usually this is caused by your antivirus or firewall blocking iTunes access to the Internet. It can also occur if the phone is jailbroken or if the computer you are using was ever used to jailbreak an iDevice.

  • I am trying to install update 11.0.06 for my Adobe Acrobat XI Pro, but without success multiple times.Get error 1603 each time,

    I am trying to install update 11.0.06 for my Adobe Acrobat XI Pro, but without success multiple times.Get error 1603 each time. I have tried disabling my antivirus software without success. I have looked for solutions to error 1603, and have tried what it suggests (empty temp files in Windows, etc.), also without success.There is nothing that mentions Window 8 or 8.1 operating system, though. Is this the issue? Please help.

    Hi Dawn,
    We might want to have a look at the install logs to determine the cause.
    Please try the following basic steps :
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing in the new enabled Admin user account and check.
    Regards,
    Rave

Maybe you are looking for