Handling event listeners - returns from async queries...

i'm a longtime programmer, but relatively new to async calls.
so i think i'm missing something basic...
when my current flex screen loads, it performs three queries
to pre-populate the screen. first query is the "header" record,
second query gets the "line item" records, and the third query gets
values for a picklist which will be in the data grid. (note that
i'm querying a web service - although i doubt that matters much...)
when each query is finished and the local objects
(ArrayCollections, etc) are populated, i want to perform a specific
action. So my first thought is to write three
"handle*QueryComplete" methods, and add an event listener to the
connection before each query. So these three lines will appear in
my code:
apex.addEventListener(QueryEvent.QUERY_EVENT,
handleHeaderQueryCompleted);
apex.addEventListener(QueryEvent.QUERY_EVENT,
handleLineItemQueryCompleted);
apex.addEventListener(QueryEvent.QUERY_EVENT,
handleProdQueryCompleted);
But then when one qeury finishes, it will call all three
handle* methods, right? How am I supposed to do this so that when
each query completes, it performs the proper action?
thanks for your time
chris

In order to identify a result with its call, to perform some
specific processing, you can use the AsyncToken. Below is some
sample code.
Tracy
Sample code using HTTPService, e4x, handler function to
populate a list item.
Also shows usage of AsyncToken.
The DataGrid tag:
<mx:DataGrid id="dg" dataProvider="{_xlcMyListData}"
.../>
The HTTPService tag:
<mx:HTTPService id="service" resultFormat="e4x"
result="onResult(event)" fault="..../>
Script block declaration:
import mx.rpc.Events.ResultEvent;
[Bindable]private var _xlcMyListData:XMLListCollection;
Invoke send:
var oRequest:Object = new Object();
oRequest.Arg1 = "value1";
var callToken:AsyncToken = service.send(oRequest);
token.callId = "myQuery1";
Result Handler function:
private function onResult(oEvent:ResultEvent):void {
var xmlResult:XML = XML(event.result); //converts result
Object to XML. can also use "as" operator
var xlMyListData:XMLList = xmlResult.myListData; //depends
on xml format, is row data
_xlcMyListData = new XMLListCollection(xlMyListData); //wrap
the XMLList in a collection
trace(_xlcMyListData.toXMLString()); //so you can see
exactly how to specify dataField or build labelFunction
var callToken:AsyncToken = oEvent.token;
var sCallId = callToken.callId; //"myQuery1"
switch(sCallId) { //Process the result conditionally
case "myQuery1":
doQuery2(); //do whatever. this example calls another data
service query
break;
}//onResult

Similar Messages

  • XMLAttribute unable to handle multiple values returning from a query

    Hi Guys,
    I have to design the format of the data returning from a query in XML. For this i have used xmlelement and xmlattribute
    the query goes like this
    SELECT '<?xml version="1.0" ?>'||' '||XMLELEMENT("imageData",
    XMLATTRIBUTES(LI.GROUPNO as "imageName", 'PNG'as "imageType", '2.0' as "version", 'com.snapon.sbs' as "xmlns"),
    XMLELEMENT("callouts",
    XMLATTRIBUTES('roundedRectangle' as "shape"),
    XMLELEMENT("callout",
    XMLATTRIBUTES((SELECT IO.PNC_KEYNO FROM PFEALIOCR IO WHERE IO.BASECATALOGNO = LI.BASECATALOGNO AND LI.GROUPNO = IO.GROUPNO) as "label"),
    XMLELEMENT("point",
    XMLATTRIBUTES((SELECT IO.COORDINATESX1 FROM PFEALIOCR IO WHERE IO.BASECATALOGNO = LI.BASECATALOGNO AND LI.GROUPNO = IO.GROUPNO) as "x",(SELECT IO.COORDINATESY1 FROM PFEALIOCR IO WHERE IO.BASECATALOGNO = LI.BASECATALOGNO AND LI.GROUPNO = IO.GROUPNO) as "y")))))
    FROM PFEALIGIL LI
    WHERE LI.DELETEFLAG <> 'D'
    here he logic is the one groupno from pfealigil and the corresponding pnc_keyno that are related to groupno are fetched here. but here since multiple pnc_keyno are returning xmlattributes is unable to handle. I want to design the xml in this format
    <?xml version="1.0" ?>
    <imageData imageName="ISDH0001104"
    imageType="PNG" version="2.0" xmlns="com.snapon.sbs">
    <callouts shape="roundedRectangle">
    <callout label="182">
    <point x="289" y="68"/>
    </callout>
    <callout label="247"<point x="430" y="83"/>
    </callout>
    <callout label="122"><point x="546" y="331"/>
    </callout>
    <callout label="249"><point x="402" y="429"/>
    </callout>
    <callout label="248"><point x="392" y="463"/>
    </callout>
    <callout label="182"><point x="228" y="416"/>
    </callout>
    <callout label="1"><point x="364" y="737"/>
    </callout>
    <callout label="14"><point x="494" y="980"/>
    </callout>
    <callout label="168"><point x="671" y="910"/>
    </callout>
    <callout label="15"><point x="779" y="848"/>
    </callout>
    <callout label="1"><point x="805" y="343"/>
    </callout>
    </callouts>
    </imageData>
    like here one image name all those pnc_keyno that are valid should come in this way as above. Please let me know if anything is unclear to you

    apexStarter wrote:
    Data model goes like thisYou mentioned two tables in your first post, but I guess it's just a matter of joining them to get the above resultset?
    In this case you can do it like this :
    SQL> WITH sample_data AS (
      2    SELECT '91-921' groupno, '1125AE' pnc_keyno, 000000127 coordinatesx1, 000000730 coordinatesy1 FROM dual UNION ALL
      3    SELECT '91-921', '18642F', 000000513, 000000891 FROM dual UNION ALL
      4    SELECT '91-921', '18643D', 000000620, 000000844 FROM dual UNION ALL
      5    SELECT '91-921', '18649E', 000000561, 000000688 FROM dual UNION ALL
      6    SELECT '91-921', '18668B', 000000620, 000000864 FROM dual UNION ALL
      7    SELECT '91-921', '92101A', 000000587, 000000591 FROM dual UNION ALL
      8    SELECT '91-921', '92102A', 000000587, 000000571 FROM dual UNION ALL
      9    SELECT '91-924', '1243BD', 000000617, 000000889 FROM dual
    10  )
    11  SELECT XMLRoot(
    12           XMLElement("imageData",
    13             XMLAttributes(
    14               groupno as "imageName"
    15             , 'PNG'as "imageType"
    16             , '2.0' as "version"
    17             , 'com.snapon.sbs' as "xmlns"
    18             )
    19           , XMLElement("callouts",
    20               XMLAttributes('roundedRectangle' as "shape")
    21             , XMLAgg(
    22                 XMLElement("callout",
    23                   XMLAttributes(pnc_keyno as "label")
    24                 , XMLElement("point",
    25                     XMLAttributes(
    26                       coordinatesx1 as "x"
    27                     , coordinatesy1 as "y"
    28                     )
    29                   )
    30                 )
    31               )
    32             )
    33           )
    34         , version '1.0'
    35         )
    36  FROM sample_data
    37  GROUP BY groupno
    38  ;
    XMLROOT(XMLELEMENT("IMAGEDATA",XMLATTRIBUTES(GROUPNOAS"IMAGENAME",'PNG'AS"IMAGETYPE",'2.0'AS"VERSION",'COM.SNAPON.SBS'AS
    <?xml version="1.0"?>
    <imageData imageName="91-921" imageType="PNG" version="2.0" xmlns="com.snapon.sbs">
      <callouts shape="roundedRectangle">
        <callout label="1125AE">
          <point x="127" y="730"/>
        </callout>
        <callout label="92102A">
          <point x="587" y="571"/>
        </callout>
        <callout label="92101A">
          <point x="587" y="591"/>
        </callout>
        <callout label="18668B">
          <point x="620" y="864"/>
        </callout>
        <callout label="18649E">
          <point x="561" y="688"/>
        </callout>
        <callout label="18643D">
          <point x="620" y="844"/>
        </callout>
        <callout label="18642F">
          <point x="513" y="891"/>
        </callout>
      </callouts>
    </imageData>
    <?xml version="1.0"?>
    <imageData imageName="91-924" imageType="PNG" version="2.0" xmlns="com.snapon.sbs">
      <callouts shape="roundedRectangle">
        <callout label="1243BD">
          <point x="617" y="889"/>
        </callout>
      </callouts>
    </imageData>

  • Handling a List returned from a Stored Oracle Procedure

    I'm trying to put a PL/SQL oracle wrapper around some post code lookup
    software.
    We're planning to get the wrapper to return a List and then JDBC to handle this list.
    Has anyone already done/attempted to do this? Does anyone know if it can be done using a List and can oracle stored procedures return a List?

    It appears that Oracle does support an array type:
    In Oracle
    CREATE OR REPLACE FUNCTION getEmpArray RETURN EMPARRAY
    AS
    l_data EmpArray := EmpArray();
    CURSOR c_emp IS SELECT ename FROM EMP;
    BEGIN
    FOR emp_rec IN c_emp LOOP
    l_data.extend;
    l_data(l_data.count) := emp_rec.ename;
    END LOOP;
    RETURN l_data;
    END;
    In Java
    public static void main( ) {
      OracleCallableStatement stmt =(OracleCallableStatement)conn.prepareCall
                    ( "begin ? := getEMpArray; end;" );
        // The name we use below, EMPARRAY, has to match the name of the
        // type defined in the PL/SQL Stored Function
        stmt.registerOutParameter( 1, OracleTypes.ARRAY,"EMPARRAY" );
        stmt.executeUpdate();
        // Get the ARRAY object and print the meta data assosiated with it
        ARRAY simpleArray = stmt.getARRAY(1);
        System.out.println("Array is of type " +  simpleArray.getSQLTypeName());
        System.out.println("Array element is of type code "+simpleArray.getBaseType());
        System.out.println("Array is of length " + simpleArray.length());
        // Print the contents of the array
        String[] values = (String[])simpleArray.getArray();
        for( int i = 0; i < values.length; i++ )
          System.out.println( "row " + i + " = '" + values[i] +"'" );
    This was taken from:
    http://otn.oracle.com/sample_code/tech/java/codesnippet/jdbc/varray/index.html

  • Only ints return from SQLite queries with calculations

    Howdy.  Hope I have the right forum for this question.
    I'm on a project using a SQLite database in Flex 4 and I'm using the following SQL query:
    SELECT max(totalScore) AS score,
                   max(longestStreak) AS streakLen,
                   max((correctNotes * 100) / totalNotes) AS accuracyPercent
    FROM main.practiceRecord rec
    JOIN main.lessonSession sess
    ON rec.sessionGuid = sess.guid
    WHERE sess.purchasedLessonID = :lessonId
    The query is working fine as it is written.  The problem is that when I do the calculation ((correctNotes * 100) / totalNotes) to return a percent value, I'd like to do it without having to multiply by 100, since I generally treat percentages as numbers between 0 and 1 (.68 = 68%).  If I don't multiple by 100 in the query, however, I get a "0" for anything less than 1, so only 100% returns with the correct value.  It appears that this kind of calculation only returns an int, as opposed to a REAL (or its AS3 corresponding "Number").
    Is there something that I can do to return a value between 0 and 1 for this percentage so that I don't have to multiply by 100 in the query and then divide by 100 when I get the result?  Is there a function that allows me to specify the precision for the returned value?
    Thanks for your time,
    Bryan

    Maybe Tom Kyte's "trick" of the "select pl_sql_function () from dual" to invoke scalar subquery caching can help you:
    select ename
      from emp, dept
    where (select dname_lookup(emp.deptno) from dual) = 'SALES'
       and dept.deptno = 30
       and emp.deptno = dept.deptno;http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1547006324238
    As Tom says, in 11g you'll be able to cache that function (new 11g feature) which removes the need for the "trick":
    Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1)
    - 8 Using PL/SQL Subprograms
    -- Using the Cross-Session PL/SQL Function Result Cache
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/subprograms.htm#BABFHACJ
    "On the PL/SQL Function Result Cache" by Steven Feuerstein
    http://www.oracle.com/technology/oramag/oracle/07-sep/o57plsql.html
    Regards,
    Zlatko

  • Is it right that GCs returned from GC start/finish events are not Full GC i

    We have noticed that all those GCs returned from GC start/finish events are not only Full GCs (which are stop world GC specified as in JVMTI spec if I understand it correctly) in JVMTI. It is not like in JVMPI. Is it a right behavior? Should only stop world GCs be reported by GC start/finish events per JVMTI spec?
    For example:
    GarbageCollectionStart...
    [GC 1719K->1304K(1984K), 0.0003732 secs]
    GarbageCollectionFinish...
    post-GarbageCollectionFinish actions...
    GarbageCollectionStart...
    [GC 1771K->1351K(1984K), 0.0003081 secs]
    GarbageCollectionFinish...
    post-GarbageCollectionFinish actions...
    GarbageCollectionStart...
    [GC 1823K->1446K(1984K), 0.0003593 secs]
    [Full GC 1446K->277K(1984K), 0.0127902 secs]
    GarbageCollectionFinish...
    GarbageCollectionStart...
    [GC 754K->420K(1984K), 0.0003827 secs]
    GarbageCollectionFinish...........
    Thanks,
    Chong

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Best way to refresh page after returning from task flow?

    Hello -
    (Using jdev 11g release 1)
    What is the best way to refresh data in a page after navigating to and returning from a task flow with an isolated data control scope where that data is changed and commited to the database?
    I have 2 bounded task flows: list-records-tf and edit-record-tf
    Both use page fragments
    list-records-tf has a list.jsff fragment and a task flow call to edit-record-tf
    The list.jsff page has a table of records that a user can click on and a button which, when pressed, will pass control to the edit-record-tf call. (There are also set property listeners on the button to set values in the request that are used as parameters to edit-record-tf.)
    The edit-record-tf always begins a new transaction and does not share data controls with the calling task flow. It consists of an application module call to set up the model according to the parameters passed in (edit record X or create new record Y or...etc.), a page fragment with a form to allow users to edit the record, and 2 different task flow returns for saving/cancelling the transaction.
    Back to the question - when I change a record in the edit page, the changes do not show up on the list page until I requery the data set. What is the best way to get the list page to refresh itself automatically upon return from the edit-record-tf?
    (If I ran the edit task flow in a popup dialog I could just use the return listener on the command component that launched the popup. But I don't want to run this in a dialog.)
    Thank you for reading my question.

    What if you have the bean which has refresh method as TF param? Call that method after you save the data. or use contextual event.

  • How can I refresh a calling page on return from a TF activity ?

    Hi,
    I have a (sounds easy) case where a view activity invokes a BTW with fragments. The called BTF has been declared with isolated data control scope. Inside the BTF some updates happen and when the BTF returns the calling view should display the modified data. The BTF should not be opened as a dialog and the above take place inside a region. There are examples in the Internet for how to implement such case but only calling a taskflow with pages from a dialog.
    I tried creating first the Taskflow binding definition [19.10.1 How to Associate a Page Definition File with a Task Flow Activity|http://docs.oracle.com/cd/E35521_01/web.111230/e16182/taskflows_activities.htm#sthref539] , then I set the related operations (Execute, setCurrentRowWithKey, ...) in the Page Definition and invoke the operations inside the “After Listener” Listener (<after-listener>) of the taskflow activity but the binding context is not accessible inside the listener, I get NPE accessing the binding.
    After some tests I have found that I can call the Operations using “#data.taskflowdefinition..” but I afraid using this technique because of so many papers stating that this is a bad practice.
    Additionally I tested using an invokeAction in the calling page definition page and it works but I prefer “refreshing” the model from the activity (there are many pages calling the same activity).
    I am wondering if there is a more elegant solution that I haven’t seen yet.
    Thanks for any ideas,
    Yiannis
    Edited by: Tses on Mar 8, 2013 11:15 PM

    Hi Timo and thank you for your reply,
    As far as I know any method executed in the BTF has no effect in the calling page because of the isolated data control scope.
    Consider the following layout of a very simple TF diagram. The BTF has "Share data controls with calling task flow" unchecked and "Always begin new transaction"
    View --> Method Call --> BTF
    Now imagine that a user navigates from the View to the BTF, make updates and finally commits the transaction from a taskflow return activity. The updates are executed inside the "private" BTF's data control scope because of the BTF settings.
    Returning to the calling View the user sees stale data from the Data Control of the View, until he re-queries the model.
    ADF supports execution of code during the call of the BTF (through Method Call) and also sending and returning parameters from the View to the BTF.
    Conversely on return from the BTF there is no handler for executing code (something like "Return Method Call") in order to refresh (e.g. re-query and set current row) the View exploiting the return parameters.
    The "After Listener" in the taskflow call activity has not access to the bindings context. Using #{data.bindingTFXXX} I guess that has a risk in a high availability environment for NPE where the http call to the BTF might be processed in a different server than the returning http call so the #{data.bindingTFXXX} might not exists.
    The other solution I found using invokeAction with RefreshCondition depends on the returning values of the BTF, bloats the View with Bindings that I would prefer to be in a central place.
    Am i missing something in the whole flow above ?
    Yiannis

  • Event Listeners VS Event Functions

    I'm working on a new project at work where there's lots of
    custom objects with lots and lots of event listeners. I keep
    finding myself saying, "why didn't they just use the built in
    objects with built in event handling?". However, from what I can
    see it seems like AS3 leans heavily towards using Event Listeners
    as opposed to putting event responsibility on the object itself
    (E.G. XML.onload). Is there an advantage to this (other than making
    it more Java like?) I've always favoured keeping the responsibility
    on the object itself because it seems like one less object to keep
    track of and also makes things feel more self contained. If I have
    10 objects that fire 10 different events, I have to create 10
    different event handlers (or 10 different case statements within
    the same event handler), whereas with self event handling, I just
    code in the event function.
    Anyways, I wanted to open discussion to which method of event
    handling you prefer and why, and also what you believe the
    advantages to this. I was searching google for previous discussions
    on this but I couldn't seem to find anything, so I thought I'd get
    the ball rolling! Looking forward to reading these, try not to be
    too elitist in your posts!!

    I tried to change getFileOperation to getFileOperation2 in one of the functions as follows but same problem appeared.
    function f3 (event:MouseEvent):void
    trace("f3 triggered");
    getFileOperation2.addEventListener(ResultEvent.RESULT, f4);
    Do you have an idea how I can avoid the same function from triggering twice?? thanks a lot

  • Loading/Unloading a .swf that adds event listeners to the Stage

    Hi all,
    Disclaimer
    Apologies if I suck so bad at using forum search that the answer to this is on page 1 somewhere; I tried...
    Question
    I am loading and unloading a .swf to which I do not have source code access. This .swf places several event listeners on the stage, as far as I can tell. When the .swf is unloaded, the event listeners placed upon the stage still seem to be in effect. Using unloadAndStop doesn't seem to do it, and I have to target Flash Player 9, anyway, so can't really use it. Is there any other way I can keep this external .swf from holding onto my main movie's stage?
    Additional info
    All eventListeners and references being set by my code are removed.
    I've managed a little contact with the author of the .swf:
    I've requested he provide a dispose() method I can call to get all the listeners removed, and send an updated .swf.
    He's suggested that I should be able to avoid the problem by loading into a unique ApplicationDomain. I'm not terribly familiar with this, but have given it a try without much success. Is this a valid solution - can I really protect my 'stage' by properly using ApplicationDomains - or do I need to persist in trying to get a public dispose() method built in?
    Thanks in advance!
    Cheers, John

    thanks for reply sir
    sir actually, i have not any problem with loading any file but i need to go back to intro.swf file when i click on clsbtn of main.swf, i want unload the main.swf file and panel.swf file
    actually i did was, i have intro.swf file and there is button by clicking load main.swf file (where is timeline controling butons) and in the main file automatically load panel.swf file ( where is all animation)
    its all play gud , no problem
    but my problem is there is a clsbtn in main.swf file and when i click on that button everything should be unload and it should return on the previous position in intro.swf
    i hope u understand what i am trying to say

  • Hi..handling events in console applications

    Hi,
    Can anyone tell me how to handle events in cosole applications...
    I want to trap the event when a user closes the the console window....
    THANKS IN ADVANCE
    Rama

    Hi,
    No, I don't think so. A console application can only read from standard input (and you can read the return key that way). But I don't think that you can detect if ctrl is held down by a user, I think you need an UI for that, but I'm not 100% sure since I haven't had the need for it.
    /Kaj

  • Failed to handle capwap control message from controller

    Hello,
    I am struggling in associating a 1242 AP's with WLC's.
    Show version of the AP:
    Cisco IOS Software, C1240 Software (C1240-K9W8-M), Version 12.4(25e)JAM2, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Mon 29-Jul-13 11:32 by prod_rel_team
    ROM: Bootstrap program is C1240 boot loader
    BOOTLDR: C1240 Boot Loader (C1240-BOOT-M) Version 12.3(7)JA1, RELEASE SOFTWARE (fc1)
    AP0019.56b0.855e uptime is 9 minutes
    System returned to ROM by power-on
    System image file is "flash:/c1240-k9w8-mx.124-25e.JAM2/c1240-k9w8-mx.124-25e.JAM2"
    Show inventory of the AP:
    AME: "AP1240", DESCR: "Cisco Aironet 1240 Series (IEEE 802.11a/g) Access Point"
    PID: AIR-LAP1242AG-E-K9, VID: V01, SN: FCZ10408384
    When trying to attach it to a WLC 5508 running 6.0.199.4, the AP keeps on downloading image and power cycling.
    When trying to attach it to a WLC 5508 running 7.4.110.0, the AP shows the following message :
    Jan 30 08:24:56.372: %CAPWAP-3-ERRORLOG: GOING BACK TO DISCOVER MODE
    *Jan 30 08:24:56.373: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to 10.71.142.7:5246
    *Jan 30 08:24:56.427: %LWAPP-3-CLIENTERRORLOG: LWAPP LED Init: incorrect led state 255
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to administratively down
    *Jan 30 08:24:56.447: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:56.484: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:57.445: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:57.473: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:57.478: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Jan 30 08:24:58.466: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:58.473: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:58.503: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:58.508: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:58.513: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Jan 30 08:24:59.503: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:59.508: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:59.532: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:00.532: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:06.483: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *Jan 30 08:25:07.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.565: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.567: %CAPWAP-5-SENDJOIN: sending Join Request to 10.71.142.7
    *Jan 30 08:25:08.598: %CAPWAP-3-ERRORLOG: Invalid event 10 & state 5 combination.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 10 state 5.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to process encrypted capwap packet from 10.71.142.7 Jan 30 08:24:56.372: %CAPWAP-3-ERRORLOG: GOING BACK TO DISCOVER MODE
    *Jan 30 08:24:56.373: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to 10.71.142.7:5246
    *Jan 30 08:24:56.427: %LWAPP-3-CLIENTERRORLOG: LWAPP LED Init: incorrect led state 255
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to administratively down
    *Jan 30 08:24:56.447: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:56.484: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:57.445: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:57.473: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:57.478: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Jan 30 08:24:58.466: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:58.473: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:58.503: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:58.508: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:58.513: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Jan 30 08:24:59.503: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:59.508: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:59.532: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:00.532: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:06.483: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *Jan 30 08:25:07.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.565: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.567: %CAPWAP-5-SENDJOIN: sending Join Request to 10.71.142.7
    *Jan 30 08:25:08.598: %CAPWAP-3-ERRORLOG: Invalid event 10 & state 5 combination.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 10 state 5.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to process encrypted capwap packet from 10.71.142.7
    Any idea ?
    Many thanks !

    here is the debug output:
    login as: groupwls
    (Cisco Controller)
    User: groupwls
    Password:************
    Your password does not meet the strong password requirements.For added security,                                                                              set a new password that meets these requirements. To prevent this message from                                                                              showing again, disable the strong password feature.
    (Cisco Controller) >debug pm pki enable
    (Cisco Controller) >debug capwap events enable
    (Cisco Controller) >*spamApTask2: Jan 30 09:46:38.639: 00:19:07:c6:39:60 DTLS connection not found, creating new connection for 10:64:94:52 (2134) 10:71:142:8 (5246)
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 0, ID cert >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 1, ID cert >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 2, ID cert >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCertFromCID: called to get cert for CID 155224fa
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCertFromCID: comparing to row 0, certname >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 1, certname >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 2, certname >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 3, certname >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 4, certname >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 5, certname >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 0, certname >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 1, certname >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 2, certname >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 0, ID cert >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 1, ID cert >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 2, ID cert >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: called to get key for CID 155224fa
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: comparing to row 0, certname >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: comparing to row 1, certname >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: comparing to row 2, certname >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: match in row 2
    *spamApTask2: Jan 30 09:46:38.883: sshpmGetIssuerHandles: locking ca cert table
    *spamApTask2: Jan 30 09:46:38.883: sshpmGetIssuerHandles: calling x509_alloc() for user cert
    *spamApTask2: Jan 30 09:46:38.883: sshpmGetIssuerHandles: calling x509_decode()
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: C=US, ST=California, L=San Jose, O=Cisco Systems, CN=C1240-001956b0855e, [email protected]
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles:   O=Cisco Systems, CN=Cisco Manufacturing CA
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: Mac Address in subject is 00:19:56:b0:85:5e
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: Cert Name in subject is C1240-001956b0855e
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: Cert is issued by Cisco Systems.
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: called to get cert for CID 2f6d981f
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 0, certname >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 1, certname >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 2, certname >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 3, certname >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 4, certname >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 5, certname >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.887: ssphmUserCertVerify: calling x509_decode()
    *spamApTask2: Jan 30 09:46:38.898: ssphmUserCertVerify: user cert verfied using >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: ValidityString (current): 2014/01/30/09:46:38
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: ValidityString (NotBefore): 2006/10/05/13:05:43
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: ValidityString (NotAfter): 2016/10/05/13:15:43
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: getting cisco ID cert handle...
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 0, ID cert >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 1, ID cert >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 2, ID cert >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.906: sshpmFreePublicKeyHandle: called with 0x2c058e50
    *spamApTask2: Jan 30 09:46:38.906: sshpmFreePublicKeyHandle: freeing public key
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 Allocated index from main list, Index: 312
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 DTLS keys for Control Plane are plumbed successfully for AP 10.64.94.52. Index 313
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 DTLS Session established server (10.71.142.8:5246), client (10.64.94.52:2134)
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 Starting wait join timer for AP: 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:40.199: 00:19:07:c6:39:60 Join Request from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:40.200: 00:19:07:c6:39:60 Deleting AP entry 10.64.94.52:2134 from temporary database.
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Join Version: = 117730816
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Join resp: CAPWAP Maximum Msg element len = 87
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Join Response sent to 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 CAPWAP State: Join
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 capwap_ac_platform.c:1225 - Operation State 0 ===> 4
    *apfReceiveTask: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Register LWAPP event for AP 00:19:07:c6:39:60 slot 0
    *apfReceiveTask: Jan 30 09:46:40.201: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.202:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.202: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.202:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.202: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.202:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.203: 00:19:07:c6:39:60 Register LWAPP event for AP 00:19:07:c6:39:60 slot 1
    *apfReceiveTask: Jan 30 09:46:40.203: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.203:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.203: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.203:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.203: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.203:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *spamApTask2: Jan 30 09:46:41.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:41.022: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:41.022: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:41.022: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:41.023: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:44.029: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:47.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:50.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:53.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:56.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:59.019: 00:19:07:c6:39:60 DTLS keys for Control Plane deleted successfully for AP 10.64.94.52
    *spamApTask2: Jan 30 09:46:59.026: 00:19:07:c6:39:60 DTLS connection closed event receivedserver (10:71:142:8/5246) client (10:64:94:52/2134)
    *spamApTask2: Jan 30 09:46:59.026: 00:19:07:c6:39:60 Entry exists for AP (10:64:94:52/2134)
    *spamApTask2: Jan 30 09:46:59.026: 00:19:07:c6:39:60 apfSpamProcessStateChangeInSpamContext: Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 0
    *apfReceiveTask: Jan 30 09:46:59.026: 00:19:07:c6:39:60 Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 0
    *spamApTask2: Jan 30 09:46:59.027: 00:19:07:c6:39:60 apfSpamProcessStateChangeInSpamContext: Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 1
    *apfReceiveTask: Jan 30 09:46:59.027: 00:19:07:c6:39:60 Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 1
    *spamApTask2: Jan 30 09:46:59.028: 00:19:07:c6:39:60 No AP entry exist in temporary database for 10.64.94.52:2134
    *spamApTask0: Jan 30 09:46:59.127: 00:19:07:c6:39:60 Received LWAPP DISCOVERY REQUEST to 44:2b:03:b4:39:cf on port '13'
    *spamApTask3: Jan 30 09:46:59.128: 00:19:07:c6:39:60 Discovery Request from 10.64.94.52:2135
    *spamApTask3: Jan 30 09:46:59.128: 00:19:07:c6:39:60 Join Priority Processing status = 0, Incoming Ap's Priority 1, MaxLrads = 50, joined Aps =0
    *spamApTask3: Jan 30 09:46:59.128: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask3: Jan 30 09:46:59.129: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask0: Jan 30 09:46:59.129: 00:19:07:c6:39:60 Discarding discovery request in LWAPP from AP supporting CAPWAP
    *spamApTask0: Jan 30 09:47:28.995: 00:19:07:c6:39:60 Received LWAPP DISCOVERY REQUEST to 44:2b:03:b4:39:cf on port '13'
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discovery Request from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Join Priority Processing status = 0, Incoming Ap's Priority 1, MaxLrads = 50, joined Aps =0
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2134
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2134
    *spamApTask0: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discarding discovery request in LWAPP from AP supporting CAPWAP
    *spamApTask0: Jan 30 09:47:58.856: 00:19:07:c6:39:60 Received LWAPP DISCOVERY REQUEST to 44:2b:03:b4:39:cf on port '13'
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discovery Request from 10.64.94.52:2135
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Join Priority Processing status = 0, Incoming Ap's Priority 1, MaxLrads = 50, joined Aps =0
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask0: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discarding discovery request in LWAPP from AP supporting CAPWAP
    *sshpmLscTask: Jan 30 09:48:10.688: sshpmLscTask: LSC Task received a message 4

  • HT1455 10.8.4 returned from vacation and my finder stops resoponding frequently

    Why does my finder stop responding?
    How do I fix it?

    Yes still have the problem
    This was from the last episode, tried to get all identifying info out.
    2013-08-24 9:00:27.608 PM coreservicesd[68]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=153
    2013-08-24 9:00:27.609 PM NotificationCenter[188]: Connection interrupted.
    2013-08-24 9:00:31.795 PM GoogleSoftwareUpdateDaemon[962]: -[KeystoneDaemon main] GoogleSoftwareUpdateDaemon inactive, shutdown.
    2013-08-24 9:00:32.413 PM WDButtonManager[977]: self-sent 'ascr'/'gdut' event accepted in process that isn't scriptable
    2013-08-24 9:03:15.000 PM bootlog[0]: BOOT_TIME 1377392595 0
    2013-08-24 9:03:27.000 PM kernel[0]: Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    2013-08-24 9:03:27.000 PM kernel[0]: vm_page_bootstrap: 929913 free pages and 110471 wired pages
    2013-08-24 9:03:27.000 PM kernel[0]: kext submap [0xffffff7f80737000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000737000]
    2013-08-24 9:03:27.000 PM kernel[0]: zone leak detection enabled
    2013-08-24 9:03:27.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    2013-08-24 9:03:27.000 PM kernel[0]: standard background quantum is 2500 us
    2013-08-24 9:03:27.000 PM kernel[0]: mig_table_max_displ = 74
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto kext started!
    2013-08-24 9:03:27.000 PM kernel[0]: Running kernel space in FIPS MODE
    2013-08-24 9:03:27.000 PM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    2013-08-24 9:03:27.000 PM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    2013-08-24 9:03:27.000 PM kernel[0]: corecrypto.kext FIPS POST passed!
    2013-08-24 9:03:27.000 PM kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    2013-08-24 9:03:27.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    2013-08-24 9:03:27.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    2013-08-24 9:03:27.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2013-08-24 9:03:27.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    2013-08-24 9:03:27.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2013-08-24 9:03:27.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    2013-08-24 9:03:27.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2013-08-24 9:03:27.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2013-08-24 9:03:27.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    2013-08-24 9:03:27.000 PM kernel[0]: MAC Framework successfully initialized
    2013-08-24 9:03:27.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2013-08-24 9:03:27.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2013-08-24 9:03:27.000 PM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    2013-08-24 9:03:27.000 PM kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    2013-08-24 9:03:27.000 PM kernel[0]: [ PCI configuration begin ]
    2013-08-24 9:03:27.000 PM kernel[0]: console relocated to 0xf80010000
    2013-08-24 9:03:27.000 PM kernel[0]: PCI configuration changed (bridge=3 device=1 cardbus=0)
    2013-08-24 9:03:27.000 PM kernel[0]: [ PCI configuration end, bridges 7 devices 17 ]
    2013-08-24 9:03:27.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 18:11:47 May  1 2013) initialization complete
    2013-08-24 9:03:27.000 PM kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    2013-08-24 9:03:27.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2013-08-24 9:03:27.000 PM kernel[0]: rooting via boot-uuid from /chosen: C3CA7225-697D-3596-BC04-4BDC25066031
    2013-08-24 9:03:27.000 PM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    2013-08-24 9:03:27.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2013-08-24 9:03:27.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2013-08-24 9:03:27.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2013-08-24 9:03:27.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2013-08-24 9:03:27.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2013-08-24 9:03:27.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 002332fffe0d57fa; max speed s800.
    2013-08-24 9:03:27.000 PM kernel[0]: BTCOEXIST off
    2013-08-24 9:03:27.000 PM kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    2013-08-24 9:03:27.000 PM kernel[0]: 5.10.131.36
    2013-08-24 9:03:27.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HDS721075KLA360 Media/IOGUIDPartitionScheme/Customer@2
    2013-08-24 9:03:27.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2
    2013-08-24 9:03:27.000 PM kernel[0]: jnl: unknown-dev: replay_journal: from: 3028992 to: 6748160 (joffset 0x1087d000)
    2013-08-24 9:03:27.000 PM kernel[0]: jnl: unknown-dev: journal replay done.
    2013-08-24 9:03:27.000 PM kernel[0]: Kernel is LP64
    2013-08-24 9:03:27.000 PM kernel[0]: hfs: Removed 10 orphaned / unlinked files and 35 directories
    2013-08-24 9:03:27.000 PM kernel[0]: AppleYukon2: Marvell Yukon Gigabit Adapter 88E8055 Singleport Copper SA
    2013-08-24 9:03:27.000 PM kernel[0]: AppleYukon2: RxRingSize <= 1024, TxRingSize 256, RX_MAX_LE 1024, TX_MAX_LE 768, ST_MAX_LE 3328
    2013-08-24 9:03:19.819 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    2013-08-24 9:03:19.819 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2013-08-24 9:03:27.552 PM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    2013-08-24 9:03:37.417 PM hidd[49]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2013-08-24 9:03:37.424 PM hidd[49]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    2013-08-24 9:03:37.424 PM fseventsd[50]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (113044 22 113165)
    2013-08-24 9:03:37.425 PM fseventsd[50]: log dir: /.fseventsd getting new uuid: 49A167B3-92BF-4366-8F91-59E105316021
    2013-08-24 9:03:37.000 PM kernel[0]: macx_swapon SUCCESS
    2013-08-24 9:03:38.000 PM kernel[0]: yukon: Ethernet address 00:23:32:96:13:27
    2013-08-24 9:03:38.000 PM kernel[0]: AirPort_Brcm43224: Ethernet address 00:23:12:1b:d2:b3
    2013-08-24 9:03:38.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2013-08-24 9:03:40.000 PM kernel[0]: Waiting for DSMOS...
    2013-08-24 9:03:40.444 PM kdc[47]: label: default
    2013-08-24 9:03:40.444 PM kdc[47]:           dbname: od:/Local/Default
    2013-08-24 9:03:40.444 PM kdc[47]:           mkey_file: /var/db/krb5kdc/m-key
    2013-08-24 9:03:40.444 PM kdc[47]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2013-08-24 9:03:41.352 PM mDNSResponder[41]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    2013-08-24 9:03:43.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    2013-08-24 9:03:43.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    2013-08-24 9:03:43.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x820F FirmwareVersion - 0x0201
    2013-08-24 9:03:43.000 PM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    2013-08-24 9:03:43.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    2013-08-24 9:03:43.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2013-08-24 9:03:43.000 PM kernel[0]: ** Device in slot: SLOT--1 **
    2013-08-24 9:03:43.000 PM kernel[0]: Previous Shutdown Cause: 3
    2013-08-24 9:03:43.000 PM kernel[0]: DSMOS has arrived
    2013-08-24 9:03:43.875 PM coreservicesd[68]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    2013-08-24 9:03:43.906 PM blued[58]: Read the UHE Info
    2013-08-24 9:03:43.907 PM blued[58]: Read version 2 info.  Number of devices:1
    2013-08-24 9:03:43.907 PM blued[58]: Class of device:     0x2580
    2013-08-24 9:03:43.907 PM blued[58]: Device name: ' ' length:23
    2013-08-24 9:03:43.907 PM blued[58]: Finished reading the HID data
    2013-08-24 9:03:43.908 PM blued[58]: Found a device with PID:0x030d VID:0x05ac
    2013-08-24 9:03:44.101 PM airportd[78]: _processDLILEvent: en1 attached (down)
    2013-08-24 9:03:44.000 PM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    2013-08-24 9:03:44.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    2013-08-24 9:03:44.196 PM configd[17]: network changed.
    2013-08-24 9:03:44.198 PM configd[17]: setting hostname to "  -iMac-2.local"
    2013-08-24 9:03:45.323 PM mds[40]: (Normal) FMW: FMW 0 0
    2013-08-24 9:03:46.931 PM com.apple.SecurityServer[16]: Session 100000 created
    2013-08-24 9:03:53.000 PM kernel[0]: fsevents: watcher SmartwareServerA (pid: 62) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    2013-08-24 9:03:53.000 PM kernel[0]: [BNBMouseDevice::init][75.19] init is complete
    2013-08-24 9:03:53.000 PM kernel[0]: [BNBMouseDevice::handleStart][75.19] returning 1
    2013-08-24 9:03:53.000 PM kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    2013-08-24 9:03:54.056 PM com.apple.SecurityServer[16]: Entering service
    2013-08-24 9:03:54.156 PM appleeventsd[55]: main: Starting up
    2013-08-24 9:03:54.261 PM mDNSResponder[41]: D2D_IPC: Loaded
    2013-08-24 9:03:54.261 PM mDNSResponder[41]: D2DInitialize succeeded
    2013-08-24 9:03:54.266 PM mDNSResponder[41]: Adding registration domain 1010781033.members.btmm.icloud.com.
    2013-08-24 9:03:54.000 PM kernel[0]: [AppleMultitouchDevice::start] entered
    2013-08-24 9:03:54.284 PM configd[17]: network changed: DNS*
    2013-08-24 9:03:54.287 PM configd[17]: network changed: DNS*
    2013-08-24 9:03:54.307 PM kdc[47]: PKINIT: failed to find a signing certifiate with a public key
    2013-08-24 9:03:54.540 PM com.apple.usbmuxd[29]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    2013-08-24 9:03:54.573 PM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    2013-08-24 9:03:54.680 PM kdc[47]: KDC started
    2013-08-24 9:03:54.790 PM loginwindow[44]: Login Window Application Started
    2013-08-24 9:03:54.977 PM locationd[45]: NOTICE,Location icon should now be in state 0
    2013-08-24 9:03:55.050 PM WindowServer[96]: Server is starting up
    2013-08-24 9:03:55.067 PM WindowServer[96]: Session 256 retained (2 references)
    2013-08-24 9:03:55.067 PM WindowServer[96]: Session 256 released (1 references)
    2013-08-24 9:03:55.070 PM systemkeychain[70]: done file: /var/run/systemkeychaincheck.done
    2013-08-24 9:03:55.153 PM awacsd[59]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    2013-08-24 9:03:55.199 PM digest-service[101]: label: default
    2013-08-24 9:03:55.200 PM digest-service[101]:           dbname: od:/Local/Default
    2013-08-24 9:03:55.200 PM digest-service[101]:           mkey_file: /var/db/krb5kdc/m-key
    2013-08-24 9:03:55.200 PM digest-service[101]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2013-08-24 9:03:55.203 PM digest-service[101]: digest-request: uid=0
    2013-08-24 9:03:55.271 PM rpcsvchost[107]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    2013-08-24 9:03:55.286 PM digest-service[101]: digest-request: init request
    2013-08-24 9:03:55.293 PM digest-service[101]: digest-request: init return domain: BUILTIN server:
    2013-08-24 9:03:55.341 PM WindowServer[96]: Session 256 retained (2 references)
    2013-08-24 9:03:55.353 PM WindowServer[96]: init_page_flip: page flip mode is on
    2013-08-24 9:03:55.393 PM awacsd[59]: ConduitMultiClientPlus: Could not get encoded salted hashed password
    2013-08-24 9:03:55.435 PM awacsd[59]: Configuring lazy AWACS client: 1010781033.p02.members.btmm.icloud.com.
    2013-08-24 9:03:55.444 PM netbiosd[79]: Unable to start NetBIOS name service:
    2013-08-24 9:03:55.575 PM apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2013-08-24 9:03:55.576 PM apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2013-08-24 9:03:56.000 PM kernel[0]: en1: 802.11d country code set to 'CA'.
    2013-08-24 9:03:56.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 132 136 140 149 153 157 161 165
    2013-08-24 9:03:57.368 PM WindowServer[96]: mux_initialize: Couldn't find any matches
    2013-08-24 9:03:57.385 PM WindowServer[96]: GLCompositor enabled for tile size [256 x 256]
    2013-08-24 9:03:57.385 PM WindowServer[96]: CGXGLInitMipMap: mip map mode is on
    2013-08-24 9:03:57.424 PM WindowServer[96]: WSMachineUsesNewStyleMirroring: false
    2013-08-24 9:03:57.425 PM WindowServer[96]: Display 0x04271ac0: GL mask 0x1; bounds (0, 0)[1680 x 1050], 36 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c6b, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009c6b0000000004271ac0
    2013-08-24 9:03:57.425 PM WindowServer[96]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    2013-08-24 9:03:57.433 PM WindowServer[96]: Created shield window 0x5 for display 0x04271ac0
    2013-08-24 9:03:57.433 PM WindowServer[96]: Created shield window 0x6 for display 0x003f003d
    2013-08-24 9:03:57.436 PM WindowServer[96]: Display 0x04271ac0: GL mask 0x1; bounds (0, 0)[1680 x 1050], 36 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c6b, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009c6b0000000004271ac0
    2013-08-24 9:03:57.436 PM WindowServer[96]: Display 0x003f003d: GL mask 0x2; bounds (2704, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    2013-08-24 9:03:57.437 PM WindowServer[96]: CGXPerformInitialDisplayConfiguration
    2013-08-24 9:03:57.437 PM WindowServer[96]:   Display 0x04271ac0: MappedDisplay Unit 0; Vendor 0x610 Model 0x9c6b S/N 0 Dimensions 17.05 x 10.63; online enabled built-in, Bounds (0,0)[1680 x 1050], Rotation 0, Resolution 1
    2013-08-24 9:03:57.437 PM WindowServer[96]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2704,0)[1 x 1], Rotation 0, Resolution 1
    2013-08-24 9:03:57.472 PM WindowServer[96]: GLCompositor: GL renderer id 0x01021a02, GL mask 0x00000003, accelerator 0x00003a73, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    2013-08-24 9:03:57.472 PM WindowServer[96]: GLCompositor: GL renderer id 0x01021a02, GL mask 0x00000003, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    2013-08-24 9:03:57.476 PM loginwindow[44]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    2013-08-24 9:03:57.878 PM WindowServer[96]: Created shield window 0x7 for display 0x04271ac0
    2013-08-24 9:03:57.878 PM WindowServer[96]: Display 0x04271ac0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    2013-08-24 9:03:57.968 PM launchctl[119]: com.apple.findmymacmessenger: Already loaded
    2013-08-24 9:03:58.045 PM com.apple.SecurityServer[16]: Session 100003 created
    2013-08-24 9:03:58.165 PM loginwindow[44]: Login Window Started Security Agent
    2013-08-24 9:03:58.442 PM SecurityAgent[127]: This is the first run
    2013-08-24 9:03:58.443 PM SecurityAgent[127]: MacBuddy was run = 0
    2013-08-24 9:03:58.502 PM coreaudiod[128]: Enabled automatic stack shots because audio IO is inactive
    2013-08-24 9:03:59.435 PM WindowServer[96]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2013-08-24 9:03:59.489 PM WindowServer[96]: Display 0x04271ac0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    2013-08-24 9:03:59.528 PM WindowServer[96]: Display 0x04271ac0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    2013-08-24 9:04:00.498 PM UserEventAgent[120]: cannot find useragent 1102
    2013-08-24 9:04:00.511 PM locationd[138]: NOTICE,Location icon should now be in state 0
    2013-08-24 9:04:06.900 PM SecurityAgent[127]: User info context values set for
    2013-08-24 9:04:08.017 PM authorizationhost[139]: Failed to authenticate user < > (error: 9).
    2013-08-24 9:04:09.303 PM warmd[28]: [___bootcachectl_filter_out_sharedio_from_history_block_invoke_0:2321] Unable to open i386 shared cache: 2 No such file or directory
    2013-08-24 9:04:11.804 PM SecurityAgent[127]: User info context values set for
    2013-08-24 9:04:12.304 PM SecurityAgent[127]: Login Window login proceeding
    2013-08-24 9:04:12.766 PM loginwindow[44]: Login Window - Returned from Security Agent
    2013-08-24 9:04:12.797 PM loginwindow[44]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    2013-08-24 9:04:12.833 PM loginwindow[44]: USER_PROCESS: 44 console
    2013-08-24 9:04:13.023 PM com.apple.launchd.peruser.501[140]: (com.apple.gamed) Ignored this key: UserName
    2013-08-24 9:04:13.023 PM com.apple.launchd.peruser.501[140]: (com.apple.gamed) Ignored this key: GroupName
    2013-08-24 9:04:13.024 PM com.apple.launchd.peruser.501[140]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2013-08-24 9:04:13.030 PM loginwindow[44]: Connection with distnoted server was invalidated
    2013-08-24 9:04:13.119 PM distnoted[145]: # distnote server agent  absolute time: 58.494680158   civil time: Sat Aug 24 21:04:13 2013   pid: 145 uid: 501  root: no
    2013-08-24 9:04:13.455 PM WindowServer[96]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2013-08-24 9:04:13.748 PM blued[58]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    2013-08-24 9:04:13.817 PM WDButtonManager[153]: self-sent 'ascr'/'gdut' event accepted in process that isn't scriptable
    2013-08-24 9:04:13.830 PM WindowServer[96]: Display 0x04271ac0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferTable (256, 3)
    2013-08-24 9:04:14.498 PM locationd[159]: NOTICE,Location icon should now be in state 0
    2013-08-24 9:04:15.200 PM com.apple.SecurityServer[16]: Session 100005 created
    2013-08-24 9:04:20.410 PM talagent[158]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    2013-08-24 9:04:20.417 PM talagent[158]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    2013-08-24 9:04:20.617 PM com.apple.launchd.peruser.501[140]: (com.apple.afpstat-qfa[187]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    2013-08-24 9:04:20.617 PM com.apple.launchd.peruser.501[140]: (com.apple.afpstat-qfa[187]) Job failed to exec(3) for weird reason: 2
    2013-08-24 9:04:20.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=188[GoogleSoftwareUp] clearing CS_VALID
    2013-08-24 9:04:21.215 PM loginwindow[44]: Login items - LSOpenApplication returned error -10665, url=/Applications/Palm/Transport Monitor
    2013-08-24 9:04:21.215 PM loginwindow[44]: Unable to lauch startup item: (null)
    2013-08-24 9:04:21.216 PM loginwindow[44]: Login items - LSOpenApplication returned error -10665, url=/Applications/WD Backup.app/Contents/Resources/WDBackupMonitor.app
    2013-08-24 9:04:21.216 PM loginwindow[44]: Unable to lauch startup item: (null)
    2013-08-24 9:04:21.890 PM com.apple.launchd.peruser.501[140]: (com.apple.mrt.uiagent[178]) Exited with code: 255
    2013-08-24 9:04:21.989 PM WindowServer[96]: CGXDisableUpdate: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    2013-08-24 9:04:22.231 PM Adobe Reader Updater Helper[190]: Adobe Reader Updater encountered errorCode 260
    2013-08-24 9:04:22.308 PM Adobe Reader Updater Helper[190]: Adobe Reader Updater encountered errorCode 1001
    2013-08-24 9:04:22.430 PM NetworkBrowserAgent[207]: Starting NetworkBrowserAgent
    2013-08-24 9:04:22.484 PM apsd[167]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    2013-08-24 9:04:22.716 PM GoogleSoftwareUpdateDaemon[209]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
              com.google.Keystone.Daemon.UpdateEngine: 1 connection(s)
              com.google.Keystone.Daemon.Administration: 0 connection(s)
    2013-08-24 9:04:22.718 PM GoogleSoftwareUpdateDaemon[209]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
              com.google.Keystone.Daemon.UpdateEngine: 1 connection(s)
              com.google.Keystone.Daemon.Administration: 1 connection(s)
    2013-08-24 9:04:22.724 PM GoogleSoftwareUpdateDaemon[209]: -[KSDaemonAdministration(PrivateMethods) ticketsAllowUninstallWithError:] KSDaemonAdministration system Keystone will not uninstall with active tickets.
    2013-08-24 9:04:22.725 PM GoogleSoftwareUpdateDaemon[209]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
              com.google.Keystone.Daemon.UpdateEngine: 1 connection(s)
              com.google.Keystone.Daemon.Administration: 0 connection(s)
    2013-08-24 9:04:22.736 PM GoogleSoftwareUpdateDaemon[209]: -[KeystoneDaemon logServiceState] GoogleSoftwareUpdate daemon (1.1.0.3659) vending:
              com.google.Keystone.Daemon.UpdateEngine: 2 connection(s)
              com.google.Keystone.Daemon.Administration: 0 connection(s)
    2013-08-24 9:04:22.840 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateEngine updateProductID:] KSUpdateEngine updating product ID: "com.google.Keystone"
    2013-08-24 9:04:22.854 PM GoogleSoftwareUpdateDaemon[209]: -[KSCheckAction performAction] KSCheckAction checking 1 ticket(s).
    2013-08-24 9:04:22.909 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction starting update check for ticket(s): {(
              <KSTicket:0x5d98a10
                        productID=com.google.Keystone
                        version=1.1.0.3659
                        xc=<KSPathExistenceChecker:0x5d9ab20 path=/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/>
                        serverType=Omaha
                        url=https://tools.google.com/service/update2
                        creationDate=2010-06-26 15:36:58
              >
    Using server: <KSOmahaServer:0x697ed30
              engine=<KSDaemonUpdateEngine:0x5d8f0f0>
              params={
                        EngineVersion = "1.1.0.3659";
                        ActivesInfo = {
                                  "com.google.Keystone" = {
                                            LastActivePingDate = 2013-08-23 07:00:00 +0000;
                                            LastActiveDate = 2013-08-25 01:04:22 +0000;
                                            LastRollCallPingDate = 2013-08-23 07:00:00 +0000;
                                  "com.google.macphotouploader" = {
                                            LastRollCallPingDate = 2013-08-23 07:00:00 +0000;
                        UserInitiated = 0;
                        IsSystem = 1;
                        OmahaOSVersion = "10.8.4_i486";
                        Identity = KeystoneDaemon;
                        AllowedSubdomains = (
                                  ".omaha.sandbox.google.com",
                                  ".tools.google.com",
                                  ".www.google.com",
                                  ".corp.google.com"
    2013-08-24 9:04:22.926 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateCheckAction performAction] KSUpdateCheckAction running KSServerUpdateRequest: <KSOmahaServerUpdateRequest:0x69866f0
              server=<KSOmahaServer:0x697ed30>
              url="https://tools.google.com/service/update2"
              runningFetchers=0
              tickets=1
              activeTickets=1
              rollCallTickets=1
              body=
                        <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
                        <o:gupdate xmlns:o="http://www.google.com/update2/request" protocol="2.0" version="KeystoneDaemon-1.1.0.3659" ismachine="1">
                            <o:os platform="mac" version="MacOSX" sp="10.8.4_i486"></o:os>
                            <o:app appid="com.google.Keystone" version="1.1.0.3659" lang="en-us" installage="1155" brand="GGLG">
                                <o:ping r="1" a="1"></o:ping>
                                <o:updatecheck></o:updatecheck>
                            </o:app>
                        </o:gupdate>
    2013-08-24 9:04:23.081 PM WindowServer[96]: reenable_update_for_connection: UI updates were finally reenabled by application "SystemUIServer" after 2.09 seconds (server forcibly re-enabled them after 1.00 seconds)
    2013-08-24 9:04:26.581 PM _networkd[214]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    2013-08-24 9:04:29.922 PM _networkd[220]: Unable to resolve hostname(s)
    2013-08-24 9:04:30.274 PM GoogleSoftwareUpdateDaemon[209]: -[KSOutOfProcessFetcher(PrivateMethods) helperDidTerminate:] The Internet connection appears to be offline. [NSURLErrorDomain:-1009]
    2013-08-24 9:04:30.275 PM GoogleSoftwareUpdateDaemon[209]: -[KSServerUpdateRequest(PrivateMethods) fetcher:failedWithError:] KSServerUpdateRequest fetch failed. (productIDs: com.google.Keystone) [com.google.UpdateEngine.CoreErrorDomain:702 - 'https://tools.google.com/service/update2'] (The Internet connection appears to be offline. [NSURLErrorDomain:-1009])
    2013-08-24 9:04:30.278 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateCheckAction(PrivateMethods) finishAction] KSUpdateCheckAction found updates: {( )}
    2013-08-24 9:04:30.901 PM GoogleSoftwareUpdateDaemon[209]: -[KSPrefetchAction performAction] KSPrefetchAction no updates to prefetch.
    2013-08-24 9:04:30.903 PM GoogleSoftwareUpdateDaemon[209]: -[KSMultiUpdateAction performAction] KSSilentUpdateAction had no updates to apply.
    2013-08-24 9:04:30.904 PM GoogleSoftwareUpdateDaemon[209]: -[KSMultiUpdateAction performAction] KSPromptAction had no updates to apply.
    2013-08-24 9:04:30.996 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateEngine(PrivateMethods) updateFinish] KSUpdateEngine update processing complete.
    2013-08-24 9:04:31.006 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateEngine updateAllProducts] KSUpdateEngine updating all installed products.
    2013-08-24 9:04:31.011 PM GoogleSoftwareUpdateDaemon[209]: -[KSCheckAction performAction] KSCheckAction checking 2 ticket(s).
    2013-08-24 9:04:31.107 PM ntpd[98]: proto: precision = 1.000 usec
    2013-08-24 9:04:31.514 PM GoogleSoftwareUpdateDaemon[209]: -[KSUpdateCheckAction performAc

  • How to handle events in Swng

    Hi!
    I would like to know which one of the following is the best way to handle events in Swing application.
    Method 1
    Write annonymus inner classes in the same class
    Method 2
    =======
    Write a seperate class which extends the adapter class of the event handling and create an object of that in the main class and assign it to the components with addActionHandler() method.
    I am trying to use the second one and I have the following design issue.
    I have a class frmMain.java in which I have a frame and to that frame I am adding a panel which consists of 'N' No. of components.
    I want to make this panel added to the frame when I click on a menu item (login) and want to remove the panel from frame when I click on a menu item(logout).
    I have a main class called Application.java where I create the object of my frame(frmMain.java).
    Thanks in advance,
    AV

    1. Your JFrame is now subject to receive action events from anywhere. You will have to be more careful that you respond only to the right events.
    2. If you have a lot of possible consequences to an event(for example, based on button pressed), you'll need a long if...then...else statement to determine what to do based on the source of the event.
    3. With individual ActionListener classes, it's easier to add the same listener to multiple components and no need to worry about source.
    4. Kind of the same thing: With individual classes, the event and its consequences are so tightly coupled.
    End preaching....basically, my style boils down to what I call the tool set vs Swiss army knife rule. Java seems designed around the concept of a large number of specific purpose classes vs a smaller number of multi purpose classes and I think its a design methodology that makes sense, because I believe strongly in functional isolation in my code.

  • Moving Events and Projects from one location to another on the same hard drive.

    Hello.
    I've searched in the FCP X User Manual, on this forum and in Google, but have found no explanation of how to do this, so I'm posting this here in hopes that someone in our community will be able to help.
    I've previously stored my FCP X Events and Projects folders on an external 3TB hard drive, because there is more room on it than on the internal 1TB hard drive, but, since then, I've worked with other media apps, for video, photography and audio, the files for which are also stored on the external hard drive, and this has created a bit of clutter with no folder structure to keep it tidy.
    I like an organised file structure on my system, to keep it uncluttered, easy to navigate and efficient to use, so I put all the files for my photography, video and audio apps into their own folders, which are, in turn, stored in their appropriate folders for Audio, Photography and Video, and those three folders are stored in a folder called Media, and then I directed each app to its own files.
    The only app with which this has been a problem is FCP X. While there is a way of relocating projects and events from within FCP X, it allows the user to move them from one hard drive to another, and not, as I want, from one place to another on the same hard drive.
    I'm not sure if it matters, but perhaps it's relevant to mention before the next paragraph that the files that had previously been imported as events are, to save hard-drive space, stored in the events folder as shortcuts to the original files, which are stored elsewhere on the drive, rather than as duplicates of those files.
    In Finder, I copied the Events and Projects folders to their intended new locations and tried in the app to link the events and projects to their new Finder location. It seemed to have worked, until I moved the original folders to the Trash. On re-opening FCP X, it was clear that the linking hadn't worked. I returned the original folders from the Trash to their original location, but that didn't entirely reverse the problem. I noticed also that, in the original and duplicated Events folders, the shortcuts had lost their links to the original files stored elswehere on the drive.
    Fortunately I had run a backup before starting, so I restored the original folders and the app from the backup, and all was back to normal.
    I'd be grateful if anyone could advise me on whether or not it's possible to move FCP X events and projects from one place to another on the same hard drive with the app's compliance.
    Thank you.

    Ludio wrote:
    I'd be grateful if anyone could advise me on whether or not it's possible to move FCP X events and projects from one place to another on the same hard drive with the app's compliance.
    I
    Message was edited by: Russ H Apparently mis-read the questions.

  • How do I display data from Multiple Queries in a spreadsheet?

    I am running Oracle forms 10g as a kicker to export a report (rdf 10.1.2.0.2) to PDF or Excel Spreadsheet - User's choice.
    Doesn't matter if I have desformat = SPREADSHEET, DELIMITEDDATA, or DELIMITED; I still get only the first query displayed when I run in spreadsheet format.
    How do I display data from Multiple Queries in a spreadsheet? Is this possible?
    Thanks in advance!

    Hi adam,
    did you search the forum? You will find a lot of threads handling the problem of Excel file access.
    In short: you need to use ActiveX (the RGT also uses ActiveX under the hood)!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

Maybe you are looking for

  • EDI Doubt

    Hi, I was going tyhorugh the technical design of EDI implementation as folows: 1)<b>EDI will need to support the following transactions:</b> EDI transaction #860  EDI transaction #855 2)<b>The following will have SAP configuration only.  Meaning the

  • Can't open files with spaces from gui applications

    When I try to open a file or directory from say qbittorrent or clementine in xfce, I get the message: "Failed to open URI "file:///somewhere/filename%20with%20spaces". Googling told me this problem was due to passing a "%U" instead of a "%F" somwhere

  • My iphone 4 shut off and now wont turn on...HELP

    im not sure what happened, i was in an agurment and had it in my hand the whole time and then some one called and silinced it useing the top right botton went out side left and now its off and wont turn off or connect with the charger or computer. PL

  • Has there been any indication that a Service Pack 3 will be released?

    There have been a number of cumulative updates. In the past, there was some caution expressed regarding not applying CUs unless there was a specific issue that the CU addressed. It has been a year since the last Service Pack. The CUs have included qu

  • Illustrator Resizes on File Open

    This is a silly little issue, but it really bugs me! Whenever I open a file in Illustrator via double-clicking the file in Windows Explorer, Illustrator resizes its main window, as if I've hit the "Restore Down" button in the upper right corner. I th