EP over BSP...

Hi,
We use BSP to grab the R/3 data and dispaly on browser. I guess we do the same stuff with EP too.
So whats advantages of Enterprise protals over BSP or vice a versa?
Thanks.
Regards,
Tushar

Hi,
check this link, you will get to know all about EPs.
https://www.sdn.sap.com/irj/sdn/developerareas/ep?rid=/webcontent/uuid/4b0c105e-0501-0010-bcb0-92478a4b2a17">enterprise [original link is broken] [original link is broken]
Hope this will help.
Regards,
Amit
Do not forget to close the query once it is solved and also reward the suitable answer.

Similar Messages

  • Advantages of ABAP Webdynpros over BSP??

    Hi,
    We are currently in ECC6.0. Is ABAP Webdynpro advantageous over BSP for any UI development ECC6.0 onwards in general?
    Specific requirement for which BSP is needed - we need a single application for a Help Desk team to handle calls from customers. The application will have multiple screens with data flowing into this application from multiple sources.
    Need inputs on the above....
    TIA,
    Regards
    Deepthi

    >Both webdynpro and BSP call ABAP function modules from HTTP. The BSP interface does this via programming in SE80, the webdynpro does this via programming in the Java development workbench. The BSP enters the SAP systenm via the ICM and is 'routed' to ICF where call are then made to executre ABAP (a good example is we use SOAP BSP's). Webdynpro routes via the ICM to the Java engine which then executes the Java to call the functions via an RFC interface called a JCo connection.
    There are many incorrect statements in your posting.  You appear to be compairing BSP to Web Dynpro Java - not Web Dynpro ABAP. Why would you do this in a Web Dynpro ABAP forum posting?  Of course everything you stated about Web Dynpro running on the Java engine and using JCo and being programmed in the Java development workbench is totally wrong if you are comparing to Web Dynpro ABAP.
    Here is the explaination of the differences from the SAP Press Book: Next Generation ABAP development (page 303):
    Web Dynpro ABAP is SAPu2019s new UI strategy, which was introduced in SAP
    NetWeaver 7.0. It is based on the Model View Controller (MVC) paradigm
    that separates business logic from the user interface logic. Developers, like
    Russel, can use this tool to develop robust business applications quickly and
    easily, without ever having to deal with the inner coding of the user interface
    elements.
    The Web Dynpro ABAP framework provides a WYSIWYG view editor (What
    You See Is What You Get) where the developer simply drags and drops the UI
    elements into the view. This means that there is no coding of the UI elements.
    This is not the case when working with Business Server Pages (BSP),
    where the developer must know some HTML or JavaScript in order to code
    the user interface.
    The Web Dynpro framework approach can be viewed in a number of ways.
    If a developer is not proficient in HTML or JavaScript, the Web Dynpro
    ABAP tool looks pretty good. He doesnu2019t have to worry about coding the UI
    and he can focus more on the business application logic. On the other hand,
    if the developer wants to add his own look and feel or some additional UI
    functionality to the Web Dynpro ABAP UI, he canu2019t. The UI implementation
    is hidden from the developer and cannot be manipulated, such as adding
    your own HTML or JavaScript. The reason for this protection is that Web
    Dynpro was developed to provide a standard business application user interface
    across all applications that leverage this tool.
    There is another advantage to the client abstraction approach that Web Dynpro
    takes. When you design a user interface in Web Dynpro, what is saved is
    just a metadata representation of the layout and elements. In other words,
    Web Dynpro is not tied to just HTML and JavaScript as its output medium.
    The Web Dynpro runtime analyzes the type of client that is making a request and responds with the appropriate rendering output. Today that means web browsers are making the request and receiving HTML and JavaScript. But, in the future, when the next great UI revolution occurs, you wonu2019t necessarily
    have to recreate your applications to take advantage of it. Already you can see examples of a smart client and Adobe Flex based rendering engines for Web Dynpro. Switching to these alternative presentation tools requires no coding changes within the applications themselves.

  • BSP - Look and Feel / Theme

    Good Morning All,
    disclaimer: I checked the blogs, I checked the discussions, I checked the examples, I checked the doco - and couldn't find the answer to my question.
    Question:
    I've already seen it, but can't remember where it is, does anyone know the name of the BSP Sample/Example which comes with the WAS which has the EP6 look and feel ?
    I saw it a few weeks ago and I can't find it now and I want to study the code from it to make my app have a nicer look and feel.
    Note: I read Thomas's blog on - 'A developer's Journal Part VI
    and although that example discussed what I am interested in I couldn't see examples in the code of creating the header bar etc, maybe it's just me, but at the moment that's what I would like to achieve and to do it by example.
    So to conclude if anyone knows / can remember the name of the BSP example which has an EP6 look and feel please let me know so that I can study it for inspiration.
    Thanks very much,
    Milan.

    Hallo Milan,
    I think that you are doing good. It is always the best to follow a small mix of documentation reading and practical work. So let me tell you the minimum to get a first version working. Thereafter to can continue reading!
    Problem: we want to implement a simple link tag (in 15 minutes!) that works like this:
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <%@extension name="bcm06" prefix="bcm06"%>
    <htmlb:content design="design2003">
      <htmlb:page>
          <b><bcm06:simpleLink href="http://www.sap.com">
              SAP Home Page!
          </bcm06:simpleLink></b>
      </htmlb:page>
    </htmlb:content>
    In SE80 we defined a new BSP library bcm06. We define a new element simpleLink. Typical handler class name will be CL_BCM06_SIMPLELINK (just the convention we use).  As body this tag can contain other HTML and also over BSP elements (we want to just render a link around all of body). We don't worry about the rest of the checkboxes. They will become interesting later on.
    We activate the library. The workbench will detect that no handler class exists, and will generate all of the stuff we need. Now already the tag is full functional, and can be used on any BSP page. It just will not do anything.
    What was generated? The class inheritance diagram is as follow: CL_BCM06_SIMPLELINK --> CL<b>G</b>_BCM06_SIMPLELINK --> CL_BSP_ELEMENT.
    The class CL_BSP_ELEMENT is the base class, and it contains a lot of interesting functionality. None of which we worry about now. Never try to change it!
    The class CL<b>G</b>_BCM06_SIMPLELINK (note that CLG<b></b>_!) is generated new each and everytime that you touch the definition of the tag. Effectively all the defined attributes are generated onto this class, so that they are already of the correct type, and that this information is always in sync. This means that all your tag defined attributes are directly attributes on your class. In our case, the defined "href" attribute (type string) is now an attribute on the CLG class.
    The last class CL_BCM06_SIMPLELINK will only be generated once if it does not exist. This is the class where you work. In this class there are two methods that are interesting to you at this moment. Later you will learn about the rest.
    DO_AT_BEGINNING: This method is called effectively in response to the <lib:tag> sequence. This is the code that executes before the body. This is the place where we would like to render out "<a href=...>" sequence.
    DO_AT_END: This method is called effectively at the end of the tag, when the </lib:tag> is seen. The body has now already been processed and sent onto the output stream. So we only need to render "</a>".
    Note that these methods are implemented empty. You <b><u>*MUST*</u></b> overwrite them, and implement them in your class. See instructions from Thomas. Source code:
    <b>METHOD if_bsp_element~do_at_beginning.</b>
      DATA: html TYPE string.
      CONCATENATE `<a href="` me->href `">` INTO html.
      me->print_string( html ).
      rc = co_element_continue.
    ENDMETHOD.
    <b>METHOD if_bsp_element~do_at_end.</b>
      me->print_string( `</a>` ).
      rc = co_page_continue.
    ENDMETHOD.
    Notice that you DO NOT need that super call. The base method will always be empty (from definition, will never change). You also have a direct PRINT_STRING method in newer SPs. The return code you must set. (To tell the truth, the constants for RC have been picked so perfectly that if you forget them, it should not hurt in 85% of the cases.)
    That is it. Test page. Mine worked!
    Of course, we can start looking at more exotic things, like empty tags, at tags that skip their bodies if not required, processing the body, validation, etc.
    But this overview was just to give you that first success feeling, and also to give you a better framework for understanding more of the documentation as you continue to read.
    Recommended: read <a href="/people/brian.mckellar/blog/2004/06/11/bsp-trouble-shooting-getting-help">Getting Help</a> to see how you can quickly navigate between BSP page and a tag's definition, from where you also quickly get to the implementation class of the tag.
    bye, brian
    PS: Now if this is not already the first page of your weblog done

  • Why  webdynpro and not BSP or JSP?

    Hi,
    Am new to webdynpro technology. i would like to know what are the benefits of webdynpro over BSP and if we are using java why cant we use JSP's and why should we go for a new concept called webdynpro?
    Regards,
    Rashmi.

    Hi Rashmi,
    first, welcome on SDN! About your question:
    if you get some experiene with WebDynpro, you'll see that as far as the UI is concerned, you'll be able to create quite smooth interfaces quite quickly.  Advantage Nr. 1
    The concept of having a "context" shared among different views also makes life easy if you want fast result without caring how to pass values. This "passing values" is a question of design in WebDynpro.
    In the end, WebDynpro is a programming model which is very much intended on creating UIs with a defined framework where the developer can add some cutom code, where UI and BusinessLogic are more or less hard seperated.
    Just try it. The concept it totally different from other frameworks where you are obliged to implement differen interfaces and declare the usage by providing a XML for example. It's a question of taste if one likes WebDynpro, for it is very strict in it's usage.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Why of webdynpro and not BSP or JSP?

    Hi,
    Am new to webdynpro technology. i would like to know what are the benefits of webdynpro over BSP and if we are using java why cant we use JSP's and why should we go for a new concept called webdynpro?
    Regards,
    Rashmi.

    hi Rashmi
    to my knowledge all ways we strive reduce the amount of coding. Web Dyn pro Gui really made it possible with its event handling technology providing text fielsds buttons etc in drag and relate methodology and automatted the connection framework.  whereas in JSP And BSP we need to write the coding for even the GUI in Iviewsand connection framework. thats what i felt the difference and opted to work on WebDynPro

  • Worlflow and BSP ... Could anyone explain why we need BSP?

    Hi,
    One of our customer wants to implement workflow using BSP. I dont have experience in BSP. So wanted to know why do we need BSP? If the customer has Portal do we still need BSP?
    Is there anything which can be achieved in BSP which cannot be achieved via portal? I searched SDN and found a useful weblog by Raja
    /people/raja.thangamani/blog/2007/03/27/bsp-with-workflow-part-i
    However i am still not clear why do we need BSP. I was thinking if there is a way i can convince the customer to use Portal over BSP. Any help is much appreciated.
    Cheers

    Hi,
    To take action upon a workitem from SAP Inbox or from portals you need to first login into SAP or portals.
    But if you go for BSP applications, you don't need to take action via SAPGUI. You can simply go for web browser and take action from there.
    Regards,
    Guddan

  • A question on post processing of generated html

    Hi friends,
    I've been using bsp:findAndReplace for alot of my applications to add or replace html code. Alot of people say this is not a good practice, and I'm not sure why.
    Anyway, I've come to the point where I cannot use fixed strings anymore as the "find" attribute.
    Is there any way to do something like the following:
    <bsp:findAndReplace
    find = '<table id="abc"> * </table>'
    replace = '<table id="def"> * </table>'
    >
    where the "*" would represent any amount HTML code. I couldn't find anyone on this forum with this requirment, I think there are alot of uses for this, like it would make it alot easier to, for example, remove some <table> tags along with their correct </table> tag and not a </table> tag belonging to some other table.

    When I have had to use <bsp:findAndReplace> on tags with inner elements, I usually turn it into two different finds:
    <bsp:findAndReplace
      find = '<table id="abc">'
      find1 = '</table>'
      replace = '<table id="def">'
      replace1 = '</table>' >
    This works pretty well especially if you are limiting the scope of where the find and replace must run. 
    However I would be one of those people that say that the use of findAndReplace is not a good general practice.  I have used it only very sparingly over the years (actually I don't have any production applications using it).
    You are taking a considerable risk that you will break SAP's rendered code if you do a find and replace over BSP Extension Elements.  From support package to support package, this inner generated code does change (thereby breaking your find and replace code).  I wonder what kind of situations you have where you have to use this in "a lot" of your applications.  Perhaps it would be better to explore building your own composite extension elements instead.

  • Why ITS and not WebDynpro

    Hello,
    I understand ITS was the first in the series to Web enable SAP Applications. Later BSP and now in 640 WebDynpro can be used to Web enable the SAP Applications.
    But why still ITS is retained? Does it have any advantages over BSP/Web Dynpro?
    In SRM-EBP,ITS is used & almost all transactions are Web Transactions.Why BSP/WebDynpro is not used to develop these transactions in SRM. Is there a specific reason to retain ITS-Web Transactions in SRM.
    Will it be retained in future SRM Releases or will ITS be replaced by BSP/WebDynpro is future releases.
    Thanks & Regards,
    Prasanna

    >
    Maria Graziano wrote:
    > Hey Thomas,
    >  
    >
    > I think we are experiencing a similar issue.
    >
    > We are using SAP GUI 7.10 and are trying to print cheques with smartforms using locl
    >
    > We need LOCL working as it is the preferred method for SmartForm printouts like the pay statement.  For groups like Payroll, they will want this to work.  Not using LOCL will make printing out of manual pay statements look bad.
    >
    > How should this be configured? and is it as simple as assigning LOCL to the users' default printer option?
    >
    > OR do they need to direct the pay statements to a particular printer... Just a bit confused
    >
    > Please advise
    > Maria
    Are you talking about printing from Web Dynpro ABAP?  If so, LOCL will not work.  There is no direct connect to the SAPGUI/Client in Web Dynpro.  You have to follow the same rules as when running in Batch - which means no LOCL printing.

  • Table View requirement - please help

    Hello,
    This is a sample of what we would want to see in the table view:
    Position                           Name
    - IT Manager                     R. Smith
      - Software Manager         X. Tacy
      - Network Manager          A. Busy
      - Hardware Manger          T. Moore
    Then, when a user clicks on a line (e.g. IT Manager), the table view should collapsed/expand:
    Position                           Name
    + IT Manager                    R. Smith
    I'm new to BSP, so we would really appreciate if you could help us on this requirement.
    Thanks.

    Hi Ricky,
    using client-side scripting does not prevent you from using the same look and feel in any way.
    You can simply embed your own HTML and Javascript inside the BSP layout anywhere you want it. This is one of the great things about BSP - it is totally flexible in this way.
    You could, for example, use SAP's BSP Extensions to render the display and just use scripting to manipulate it - for example to hide and display different parts of the layout.
    You could also use inline HTML and explicitly use the SAP CSS classes so they pick up the look and feel you want.
    Of course if you use Flex over BSP (FLOB) you will have a quite different looking user interface - but very cool to people who are just used to plain old web pages.
    Anyway, when I am embedding client-side scripting in BSP pages I try and use as much of the SAP provided BSP Extensions as possible.
    Look at the online help for the <htmlb:documentHead> tag for a useful piece of sample layout coding.
    Cheers
    Graham Robbo

  • SLCM Audit WebDynPro

    Hi,
    I noticed in Appendix B to the Audit Handbook that an audit viewer WebDynPro, available in EhP3, was showcased. Is this something that is going to remain available as a display-only application, or are there plans to develop this into a fully functional audit application? Can anyone (Michael) speak to whether there are plans to phase out development on the PIQ_AUDIT BSP application in favor of a WebDynPro in the future?
    Thank you,
    Eric

    Eric,
    Certainly we hope to turn the WD application PIQ_AUDIT_EXECUTE into a full-featured audit execution user interface (with subsitutitions, etc.), but I have no specific timeline for that yet.  As you know, WD offers many advantages over BSP.
    Michael

  • Advantages of BSP over Webdynpro ABAP

    Hi,,
    Can anyone please explain what are the advantages of BSP over WebDynpro ABAP, In what cases do we need to stick with BSP?
    Thanks,

    Hi,
    There is a SAP web GUI map and it contains different technologies as follows:
    If you have the SAP screen already available , then the best solution would be to go for the ITS solution(Web Gui).
    But if you were to compare the man days required to code a dynpro and a web dynpro screen from scratch then they would approximately be the same.
    Yes if you want to leverage on Web Dynpro you will have to currently code all screen from scratch , and encapsulate your backend logic as function modules.
    Apart from BSP you have the option to use Portal Development Kit (if you have SAP EP in your landscape) . JSPHTMLB(tag libraries)JCO running on WAS 6.2 or 6.4 or other Java server.
    If you have just one screen and currently dont have the WAS 6.4 in your landscape and it would involve delays interms of procurement , setup and training, then its better you go with either of the above solutions depending on the skillsets in your team.
    If you can make an FM of your trx, the BSP solution might be the easiest step. No additionial knowledge (except from some HTML(B)) is needed.
    Advantages of web dynpro:
    Additionally,
    I would say if you would want a quantum leap in advantages by preferring a UI solution , then it has to be webdynpro be it ABAP or Java.
    Some of the features that I have heard about and noticed as well is
    -> Metadata based which means tomorrow SAP could easily support a new client without you not requiring even to change a line of code.
    -> Support for Java gui and Win gui for web dynpro coming up(over http)
    -> More professional UI and flicker free
    -> Faster development time when compared to BSP or JSP
    -> Future proof
    Disadvantages:
    On the down side
    -> You loose control on so many things that you took for granted in web programming such as javascript support, DHTML
    Hope this will help you.
    Cheers,
    Darshna.

  • Planning cube Key figure over flow error

    Hi Experts,
    I am getting the following  Key figure errors in Planning cube while running the Planning sequences.
    1.Over flow occurred when calculating KF
    KF details : Data type: DEC-Counter or amount filed  with comma and sign.
    2.ORA-01455: converting column overflows integer data type
    Data type : INT4- 4byte integer,Integer number with sign.
    The number s are growing in cube and it is giving overflow error .We are compressing the cubes once in a week.we are using these KF's in two cubes.Please help me to resolve the issue.
    Regards
    Prasad
    Edited by: PRASAD on Feb 1, 2009 9:39 AM

    Hi Prasad,
             Check here.........
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3131393536373226
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=460652
    Thanks,
    Vijay.

  • BUG in process suhelperd[330]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)

    Mac Pro (late 2013) OSX 10.10.1
    Computer begin to start but after 10 sec the starting process ends. I always have to reset PRAM. The same happens without devices.
    Console with :
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 kernel[0]: Longterm timer threshold: 1000 ms
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external
    Here the complete Console log
    24.11.14 15:04:53.000 bootlog[0]: BOOT_TIME 1416837893 0
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.awdd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.callhistory.asl.conf" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.cloudd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.clouddocs" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.commerce.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.CoreDuetAdmissionControl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.family.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.ical" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.icloud.FindMyDevice" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.secinitd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 kernel[0]: Longterm timer threshold: 1000 ms
    24.11.14 15:04:54.000 kernel[0]: PMAP: PCID enabled
    24.11.14 15:04:54.000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    24.11.14 15:04:54.000 kernel[0]: Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    24.11.14 15:04:54.000 kernel[0]: vm_page_bootstrap: 16255835 free pages and 488613 wired pages
    24.11.14 15:04:54.000 kernel[0]: kext submap [0xffffff7f80a00000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000a00000]
    24.11.14 15:04:54.000 kernel[0]: zone leak detection enabled
    24.11.14 15:04:54.000 kernel[0]: "vm_compressor_mode" is 4
    24.11.14 15:04:54.000 kernel[0]: multiq scheduler config: deep-drain 0, urgent first 1, depth limit 4, band limit 127, sanity check 0
    24.11.14 15:04:54.000 kernel[0]: standard timeslicing quantum is 10000 us
    24.11.14 15:04:54.000 kernel[0]: standard background quantum is 2500 us
    24.11.14 15:04:54.000 kernel[0]: mig_table_max_displ = 13
    24.11.14 15:04:54.000 kernel[0]: TSC Deadline Timer supported and enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=3 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=4 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=5 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=6 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=7 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=8 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=9 LocalApicId=9 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=10 LocalApicId=10 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=11 LocalApicId=11 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=12 LocalApicId=16 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=13 LocalApicId=17 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=14 LocalApicId=18 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=15 LocalApicId=19 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=16 LocalApicId=20 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=17 LocalApicId=21 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=18 LocalApicId=22 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=19 LocalApicId=23 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=20 LocalApicId=24 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=21 LocalApicId=25 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=22 LocalApicId=26 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=23 LocalApicId=27 Enabled
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for AMFI
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Apple Mobile File Integrity (AMFI)
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for Sandbox
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for Quarantine
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    24.11.14 15:04:54.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    24.11.14 15:04:54.000 kernel[0]: The Regents of the University of California. All rights reserved.
    24.11.14 15:04:54.000 kernel[0]: MAC Framework successfully initialized
    24.11.14 15:04:54.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    24.11.14 15:04:54.000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2014 00:11:30)
    24.11.14 15:04:54.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    24.11.14 15:04:54.000 kernel[0]: IOAPIC: Version 0x20 Vectors 88:111
    24.11.14 15:04:54.000 kernel[0]: ACPI: sleep states S3 S4 S5
    24.11.14 15:04:54.000 kernel[0]: pci (build 00:11:20 Sep 19 2014), flags 0xe3000, pfm64 (44 cpu) 0xfff80000000, 0x80000000
    24.11.14 15:04:54.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3334777B
    24.11.14 15:04:54.000 kernel[0]: AppleIntelCPUPowerManagement: (built 00:11:36 Sep 19 2014) initialization complete
    24.11.14 15:04:54.000 kernel[0]: [ PCI configuration begin ]
    24.11.14 15:04:54.335 com.apple.xpc.launchd[1]: (com.apple.AppleFileServer) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.000 kernel[0]: console relocated to 0xfff80010000
    24.11.14 15:04:54.000 kernel[0]: [ PCI configuration end, bridges 38, devices 32 ]
    24.11.14 15:04:54.000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    24.11.14 15:04:54.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    24.11.14 15:04:54.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    24.11.14 15:04:54.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    24.11.14 15:04:54.000 kernel[0]: mcache: 24 CPU(s), 64 bytes CPU cache line size
    24.11.14 15:04:54.000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    24.11.14 15:04:54.000 kernel[0]: rooting via boot-uuid from /chosen: A2AB27CD-6534-3E31-8873-923476B00444
    24.11.14 15:04:54.000 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>
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    24.11.14 15:04:54.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.alf) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM1024F Media/IOGUIDPartitionScheme/Customer@2
    24.11.14 15:04:54.000 kernel[0]: BSD root: disk0s2, major 1, minor 5
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107018: srom rev:11
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107502: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107512: Data written into the PLL_CNTRL_ADDR2: 00000c31
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107560: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.117841: BTCOEXIST off
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.118128: BRCM tunables:
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.118133:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.119717: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0200004]
    24.11.14 15:04:54.000 kernel[0]: 7.15.124.12 (r497602)
    24.11.14 15:04:54.000 kernel[0]: hfs: mounted PTAHT IX on device root_device
    24.11.14 15:04:54.000 kernel[0]: VM Swap Subsystem is ON
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.audio.coreaudiod) Unknown key for array: seatbelt-profiles
    24.11.14 15:04:54.424 hidd[85]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    24.11.14 15:04:54.427 hidd[85]: ____IOHIDSessionScheduleAsync_block_invoke: thread_id=0x101b4b000
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.auditd) The TimeOut key is no longer respected. It never did anything anyway.
    24.11.14 15:04:54.427 hidd[85]: HID Session async scheduling initiated.
    24.11.14 15:04:54.427 hidd[85]: HID Session async root queue running at priority 63 and schedule 2.
    24.11.14 15:04:54.427 hidd[85]: HID Session async scheduling complete.
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.autofsd) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.428 hidd[85]: Successfully opened the IOHIDSession
    24.11.14 15:04:54.432 com.apple.SecurityServer[65]: Session 100000 created
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.backupd-helper.status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.backupd-auto) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.backupd-status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.backupd.status.xpc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.bsd.dirhelper) The TimeOut key is no longer respected. It never did anything anyway.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.cmio.AVCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.cmio.IIDCVideoAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.cmio.VDCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.configd) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.338 com.apple.xpc.launchd[1]: (com.apple.coreduetd) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    24.11.14 15:04:54.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    24.11.14 15:04:54.000 kernel[0]: bpfAttach len 64 dlt 12
    24.11.14 15:04:54.518 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.519 com.apple.xpc.launchd[1]: (com.rogueamoeba.hermes[84]) Could not find and/or execute program specified by service: 2: No such file or directory: /usr/local/hermes/bin/hermesctl
    24.11.14 15:04:54.519 com.apple.xpc.launchd[1]: (com.rogueamoeba.hermes[84]) Service setup event to handle failure and will not launch until it fires.
    24.11.14 15:04:54.520 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:04:54.520 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:04:54.524 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:04:54.524 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:04:54.524 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:04:54.526 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:04:54.540 iconservicesagent[46]: iconservicesagent launched.
    24.11.14 15:04:54.540 com.apple.SecurityServer[65]: Entering service
    24.11.14 15:04:54.589 configd[33]: preference: no sharing preferences
    24.11.14 15:04:54.595 com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    24.11.14 15:04:54.608 watchdogd[39]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    24.11.14 15:04:54.608 watchdogd[39]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    24.11.14 15:04:54.608 watchdogd[39]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    24.11.14 15:04:54.611 com.apple.xpc.launchd[1]: (com.apple.watchdogd) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    24.11.14 15:04:54.632 opendirectoryd[56]: BUG in libdispatch: 14B25 - 2004 - 0x5
    24.11.14 15:04:54.000 kernel[0]: AppleIntelMCEReporter: start()
    24.11.14 15:04:54.000 kernel[0]: IOGraphics flags 0x43
    24.11.14 15:04:54.000 kernel[0]: AGC: 3.7.21, HW version=4.0.11 [3.2.8], flags:0, features:0
    24.11.14 15:04:54.667 com.apple.usbmuxd[64]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    24.11.14 15:04:54.000 kernel[0]: IOBluetoothUSBDFU::probe
    24.11.14 15:04:54.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828D FirmwareVersion - 0x0099
    24.11.14 15:04:54.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x9000 ****
    24.11.14 15:04:54.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x9000 ****
    24.11.14 15:04:54.000 kernel[0]: ** GPU Hardware VM is enabled (multispace: enabled, page table updates with DMA: enabled)
    24.11.14 15:04:54.000 kernel[0]: ** GPU Hardware VM is enabled (multispace: enabled, page table updates with DMA: enabled)
    24.11.14 15:04:54.734 iconservicesd[45]: iconservicesd launched.
    24.11.14 15:04:54.742 iconservicesd[45]: Cache path: /Library/Caches/com.apple.iconservices.store
    24.11.14 15:04:54.843 systemkeychain[121]: done file: /var/run/systemkeychaincheck.done
    24.11.14 15:04:54.000 kernel[0]: Waiting for DSMOS...
    24.11.14 15:04:54.889 UserEventAgent[23]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    24.11.14 15:04:54.891 UserEventAgent[23]: Captive: CNPluginHandler en2: Inactive
    24.11.14 15:04:54.893 thermald[30]: Waiting for OSTT support notification
    24.11.14 15:04:54.955 apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    24.11.14 15:04:54.989 configd[33]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en0) failed: Network is down (50)
    24.11.14 15:04:54.989 secinitd[142]: UID[0]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    24.11.14 15:04:54.990 configd[33]: DHCP en0: INIT-REBOOT transmit failed
    24.11.14 15:04:54.990 secinitd[142]: ctkd[141]: unable to get root path for bundle of main executable: /System/Library/Frameworks/CryptoTokenKit.framework/ctkd
    24.11.14 15:04:55.000 kernel[0]: AirPort: Link Down on en2. Reason 8 (Disassociated because station leaving).
    24.11.14 15:04:55.000 kernel[0]: en2::IO80211Interface::postMessage bssid changed
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 94 dlt 163
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 30 dlt 105
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 52 dlt 127
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 38 dlt 192
    24.11.14 15:04:55.006 configd[33]: dhcp_arp_router: en2 SSID unavailable
    24.11.14 15:04:55.006 apsd[62]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    24.11.14 15:04:55.007 apsd[62]: Attempt to set push wake topics without dark wake enabled: ()
    24.11.14 15:04:55.008 apsd[62]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    24.11.14 15:04:55.008 apsd[62]: <APSConnectionServer: 0x7f9b6d600cf0> Invalid mach port - Cleaning up this named port's topics. com.apple.askpermission.aps
    24.11.14 15:04:55.008 configd[33]: setting hostname to "Ptaht-IX.local"
    24.11.14 15:04:55.014 configd[33]: network changed.
    24.11.14 15:04:55.000 kernel[0]: Previous shutdown cause: 3
    24.11.14 15:04:55.000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    24.11.14 15:04:55.078 com.apple.kextd[26]: kext file:///System/Library/Extensions/CDSDAudioCaptureSupport.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:55.079 com.apple.kextd[26]: Can't load /System/Library/Extensions/CDSDAudioCaptureSupport.kext - no code for running kernel's architecture.
    24.11.14 15:04:55.080 com.apple.kextd[26]: Load com.hzsystems.driver.CDSDAudioCaptureSupport failed; removing personalities from kernel.
    24.11.14 15:04:55.215 com.apple.kextd[26]: kext file:///System/Library/Extensions/CDSDAudioCaptureSupport.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:55.215 com.apple.kextd[26]: Can't load /System/Library/Extensions/CDSDAudioCaptureSupport.kext - no code for running kernel's architecture.
    24.11.14 15:04:55.216 com.apple.kextd[26]: Load com.hzsystems.driver.CDSDAudioCaptureSupport failed; removing personalities from kernel.
    24.11.14 15:04:55.220 com.apple.xpc.launchd[1]: (com.apple.CoreRAID[28]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.CoreRAID
    24.11.14 15:04:55.373 iconservicesagent[46]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices
    24.11.14 15:04:55.392 com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    24.11.14 15:04:55.392 com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    24.11.14 15:04:55.393 com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    24.11.14 15:04:55.393 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    24.11.14 15:04:55.402 digest-service[151]: label: default
    24.11.14 15:04:55.402 digest-service[151]: dbname: od:/Local/Default
    24.11.14 15:04:55.402 digest-service[151]: mkey_file: /var/db/krb5kdc/m-key
    24.11.14 15:04:55.402 digest-service[151]: acl_file: /var/db/krb5kdc/kadmind.acl
    24.11.14 15:04:55.000 kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.430 kdc[74]: label: default
    24.11.14 15:04:55.431 kdc[74]: dbname: od:/Local/Default
    24.11.14 15:04:55.431 kdc[74]: mkey_file: /var/db/krb5kdc/m-key
    24.11.14 15:04:55.431 kdc[74]: acl_file: /var/db/krb5kdc/kadmind.acl
    24.11.14 15:04:55.458 kdc[74]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    24.11.14 15:04:55.474 digest-service[151]: digest-request: uid=0
    24.11.14 15:04:55.662 com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.system) Service "com.apple.ManagedClient.startup" tried to hijack endpoint "com.apple.ManagedClient.agent" from owner: com.apple.ManagedClient
    24.11.14 15:04:55.677 locationd[67]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    24.11.14 15:04:55.682 UserEventAgent[23]: nsurlsessiond_events plugin: adding token 1 for client softwareupdate_download_service
    24.11.14 15:04:55.708 UserEventAgent[23]: Could not get event name for stream/token: com.apple.xpc.activity/2: 132: Request for stale data
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendStepper - Done!
    24.11.14 15:04:55.712 locationd[67]: NBB-Could not get UDID for stable refill timing, falling back on random
    24.11.14 15:04:55.754 com.apple.kextd[26]: ERROR: invalid signature for com.rogueamoeba.InstantOn, will not load
    24.11.14 15:04:55.000 kernel[0]: ARPT: 4.769204: createVirtIf(): ifRole = 1
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init <p2p> role 1
    24.11.14 15:04:55.000 kernel[0]: setVIRTUAL_IF_CREATE: AWDL interface role (4)
    24.11.14 15:04:55.000 kernel[0]: ARPT: 4.770106: createVirtIf(): ifRole = 1
    24.11.14 15:04:55.000 kernel[0]: ARPT: 4.770111: Create AWDL virtif(AWDL): unit = 2, ifRole = 4
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <awdl0> role 4
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::attachToBpf name <awdl0> role 4 successful attach to bpf type 147
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init <awdl> role 4
    24.11.14 15:04:55.764 digest-service[151]: digest-request: netr probe 0
    24.11.14 15:04:55.765 digest-service[151]: digest-request: init request
    24.11.14 15:04:55.766 locationd[67]: Location icon should now be in state 'Inactive'
    24.11.14 15:04:55.776 digest-service[151]: digest-request: init return domain: BUILTIN server: PTAHT-IX indomain was: <NULL>
    24.11.14 15:04:55.784 networkd[240]: networkd-411 pid 240
    24.11.14 15:04:55.790 airportd[38]: airportdProcessDLILEvent: en2 attached (up)
    24.11.14 15:04:55.832 UserEventAgent[23]: assertion failed: 14B25: com.apple.telemetry + 22797 [B2D9FFC4-66B7-3739-AFFA-A7E4BDE84A2B]: 0xffffffffe00002eb
    24.11.14 15:04:55.979 com.apple.kextd[26]: ERROR: invalid signature for com.rogueamoeba.InstantOn, will not load
    24.11.14 15:04:56.028 discoveryd[61]: Basic Sockets GetProcessNameFromSocket() failed errno[57] err[-1]
    24.11.14 15:04:56.028 discoveryd[61]: Basic Sockets Unknown(-1), errno 0 UDS FD=3
    24.11.14 15:04:56.028 discoveryd[61]: Basic Sockets UDS FD=3 ERROR: failed to get effective user ID, errno 0
    24.11.14 15:04:56.029 discoveryd[61]: Basic SleepProxy BSP Server Disabled. Metric = 3373
    24.11.14 15:04:56.033 discoveryd[61]: AwdlD2d AwdlD2dInitialize: Initialized
    24.11.14 15:04:56.035 discoveryd[61]: D2D_IPC: Loaded
    24.11.14 15:04:56.042 discoveryd[61]: Basic WABServer NetResolverEvent no resolvers, resetting domains
    24.11.14 15:04:56.042 discoveryd[61]: Basic DNSResolver etc/hosts file changed: Event 0x7f897c1007e0 Flushed /etc/hosts cache
    24.11.14 15:04:56.042 discoveryd[61]: Basic RemoteControl com.apple.discoveryd Starting XPC Server
    24.11.14 15:04:56.043 discoveryd[61]: Basic SleepProxy Could not get the primary interface
    24.11.14 15:04:56.043 discoveryd[61]: Basic RemoteControl com.apple.discoveryd.dnsproxy Starting XPC Server
    24.11.14 15:04:56.044 discoveryd[61]: Basic SleepProxy Sleep Proxy Server is not enabled
    24.11.14 15:04:56.051 discoveryd_helper[285]: Basic RemoteControl com.apple.discoveryd_helper Starting XPC Server
    24.11.14 15:04:56.052 discoveryd_helper[285]: Detailed RemoteControl com.apple.discoveryd_helper XPC connection 0x7fed79900000: start (pid=61, <unknown> not root)
    24.11.14 15:04:56.054 configd[33]: network changed.
    24.11.14 15:04:56.095 kdc[74]: KDC started
    24.11.14 15:04:56.124 com.apple.kextd[26]: ERROR: invalid signature for com.logmein.driver.LogMeInSoundDriver, will not load
    24.11.14 15:04:56.000 kernel[0]: AirPort: Link Up on awdl0
    24.11.14 15:04:56.000 kernel[0]: IO80211AWDLPeerManager::configure Dynamic country code not supported on this device
    24.11.14 15:04:56.231 configd[33]: IPConfiguration: IPv4 ConfigMethod is missing/invalid
    24.11.14 15:04:56.000 kernel[0]: IO80211AWDLPeerManager::setAwdlOperatingMode Setting the AWDL operation mode from AUTO to SUSPENDED
    24.11.14 15:04:56.000 kernel[0]: IO80211AWDLPeerManager::setAwdlSuspendedMode() Suspending AWDL, enterQuietMode(true)
    24.11.14 15:04:56.257 com.apple.kextd[26]: kext file:///Library/Extensions/VirtualPCOSServices.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:56.257 com.apple.kextd[26]: Can't load /Library/Extensions/VirtualPCOSServices.kext - no code for running kernel's architecture.
    24.11.14 15:04:56.259 com.apple.kextd[26]: Load com.microsoft.VirtualPC.OSServices failed; removing personalities from kernel.
    24.11.14 15:04:56.000 kernel[0]: DSMOS has arrived
    24.11.14 15:04:56.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x9000
    24.11.14 15:04:56.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    24.11.14 15:04:56.000 kernel[0]: en3: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en4: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en5: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en6: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en7: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en8: promiscuous mode enable succeeded
    24.11.14 15:04:56.286 loginwindow[79]: Login Window Application Started
    24.11.14 15:04:56.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    24.11.14 15:04:56.000 kernel[0]: **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Connected to the transport successfully -- 0x1580 -- 0x3800 -- 0x9000 ****
    24.11.14 15:04:56.330 mds[41]: (FMW.Normal:1402) FMW 0 0
    24.11.14 15:04:56.000 kernel[0]: en2: 802.11d country code set to 'CH'.
    24.11.14 15:04:56.000 kernel[0]: en2: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    24.11.14 15:04:56.349 WindowServer[286]: Server is starting up
    24.11.14 15:04:56.356 WindowServer[286]: Session 257 retained (2 references)
    24.11.14 15:04:56.356 WindowServer[286]: Session 257 released (1 references)
    24.11.14 15:04:56.383 WindowServer[286]: Session 257 retained (2 references)
    24.11.14 15:04:56.391 WindowServer[286]: init_page_flip: page flip mode is on
    24.11.14 15:04:56.000 kernel[0]: ARPT: 5.448960: MacAuthEvent en2   Auth result for: 90:72:40:20:29:d1  MAC AUTH succeeded
    24.11.14 15:04:56.000 kernel[0]: AirPort: Link Up on en2
    24.11.14 15:04:56.000 kernel[0]: en2: BSSID changed to 90:72:40:20:29:d1
    24.11.14 15:04:56.000 kernel[0]: en2::IO80211Interface::postMessage bssid changed
    24.11.14 15:04:56.000 kernel[0]: AirPort: RSN handshake complete on en2
    24.11.14 15:04:56.518 com.apple.kextd[26]: kext file:///System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACES upportSnowLeopard.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:56.524 lsregister[283]: LaunchServices: Begin database seeding
    24.11.14 15:04:56.525 lsregister[283]: LaunchServices: Completed database seeding
    24.11.14 15:04:56.000 kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    24.11.14 15:04:56.000 kernel[0]: vboxdrv: fAsync=0 offMin=0xd422 offMax=0x1b01e
    24.11.14 15:04:56.000 kernel[0]: supdrvDTraceInit: RTR0DbgKrnlInfoOpen failed with rc=-102.
    24.11.14 15:04:56.000 kernel[0]: VBoxDrv: version 4.3.8 r92456; IOCtl version 0x1a0007; IDC version 0x10000; dev major=33
    24.11.14 15:04:56.000 kernel[0]: VBoxDrv: Failed to open kernel symbols, rc=-102
    24.11.14 15:04:57.034 com.apple.kextd[26]: kext file:///System/Library/Extensions/iSpy.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:57.000 kernel[0]: [iSpy.kext] INFO: loaded successfully!
    24.11.14 15:04:57.000 kernel[0]: VBoxFltDrv: version 4.3.8 r92456
    24.11.14 15:04:57.000 kernel[0]: VBoxAdpDrv: version 4.3.8 r92456
    24.11.14 15:04:57.558 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.586 WindowServer[286]: Found 82 modes for display 0x00000000 [82, 0]
    24.11.14 15:04:57.588 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.589 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.590 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.591 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.592 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.605 WindowServer[286]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe00002bc)
    24.11.14 15:04:57.605 WindowServer[286]: mux_initialize: Mode is safe
    24.11.14 15:04:57.656 WindowServer[286]: Found 82 modes for display 0x00000000 [82, 0]
    24.11.14 15:04:57.803 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:57.804 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:04:57.804 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:04:57.806 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:04:57.806 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:04:57.807 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:04:57.807 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:04:57.999 mds[41]: (ImportServer.Normal:1700) Ignoring blacklisted Spotlight importer plugin:/Library/Spotlight/Finale.mdimporter uuid:8F7AD1E0-0DB3-11D9-95E0-000A95BA3EA2 version:1.1
    24.11.14 15:04:58.000 kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,2301,0de1,0300,45e1,0000]
    24.11.14 15:04:58.220 configd[33]: IPConfiguration: IPv4 ConfigMethod is missing/invalid
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothDevice::setProperties() -- calling hciController->CallCreateDeviceReporter() -- this = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CallCreateDeviceReporter -- calling enqueueAction() -- device = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CreateDeviceReporterAction -- device = = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CreateDeviceReporterAction -- calling CreateDeviceReporter() device = = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CreateDeviceReporter -- device = = 0x9000
    24.11.14 15:04:58.000 kernel[0]: [BNBTrackpadDevice::init][85.3] init is complete
    24.11.14 15:04:58.000 kernel[0]: [BNBTrackpadDevice::handleStart][85.3] returning 1
    24.11.14 15:04:58.000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    24.11.14 15:04:58.773 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.773 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.774 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.789 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.000 kernel[0]: [AppleMultitouchDevice::start] entered
    24.11.14 15:04:58.908 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.909 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.000 kernel[0]: IOHIDSystem: Seize of AppleMultitouchHIDEventDriver failed.
    24.11.14 15:04:58.000 kernel[0]: IOHIDSystem: Seize of IOHIDPointing failed.
    24.11.14 15:04:59.067 WindowServer[286]: WSMachineUsesNewStyleMirroring: false
    24.11.14 15:04:59.088 hidd[85]: IOHIDService compatibility thread running at priority 63 and schedule 2.
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x44087a80: GL mask 0x1; bounds (0, 0)[1920 x 2160], 82 modes available
    Main, Active, on-line, enabled, boot, Vendor 4d10, Model 21ea, S/N 0, Unit 0, Rotation 0
    UUID 0xa72347ebf7312d8f13fba6868aea7db8
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0042: GL mask 0x40; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0041: GL mask 0x20; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: 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 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0043: GL mask 0x80; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.161 WindowServer[286]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    24.11.14 15:04:59.161 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.161 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.161 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.162 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.162 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.162 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.310 configd[33]: network changed: v4(en0+:192.168.178.34) DNS+ Proxy+ SMB
    24.11.14 15:04:59.312 discoveryd[61]: Basic SleepProxy Could not get the primary interface
    24.11.14 15:04:59.315 discoveryd[61]: AwdlD2d AwdlD2dStartAdvertisingPair: 'ptaht-ix' Advertising service started
    24.11.14 15:04:59.316 discoveryd[61]: AwdlD2d AwdlD2dStartAdvertisingPair: 'ptaht-ix' Advertising service started
    24.11.14 15:04:59.000 kernel[0]: IO80211AWDLPeerManager::setAwdlOperatingMode Setting the AWDL operation mode from SUSPENDED to AUTO
    24.11.14 15:04:59.000 kernel[0]: IO80211AWDLPeerManager::setAwdlAutoMode Resuming AWDL
    24.11.14 15:04:59.318 discoveryd[61]: AwdlD2d AwdlD2dStartAdvertisingPair: 'c64ff5efff7b14c700000000000008efip6arpa' Advertising service started
    24.11.14 15:04:59.319 UserEventAgent[23]: Captive: [CNInfoNetworkActive:1709] en2: SSID 'Diego's Wi-Fi Network' making interface primary (protected network)
    24.11.14 15:04:59.319 configd[33]: network changed: v4(en0:192.168.178.34) DNS* Proxy SMB
    24.11.14 15:04:59.319 UserEventAgent[23]: Captive: CNPluginHandler en2: Evaluating
    24.11.14 15:04:59.320 UserEventAgent[23]: Captive: en2: Probing 'Diego's Wi-Fi Network'
    24.11.14 15:04:59.324 configd[33]: network changed: v4(en0:192.168.178.34, en2!:192.168.178.13) DNS Proxy SMB
    24.11.14 15:04:59.000 kernel[0]: en2: BSSID changed to 90:72:40:20:29:d1
    24.11.14 15:04:59.335 configd[33]: setting hostname to "Ptaht-IX.fritz.box"
    24.11.14 15:04:59.396 UserEventAgent[23]: tcp_connection_destination_prepare_complete 1 connectx to 104.66.181.165:80@en2 failed: Host is down
    24.11.14 15:04:59.446 locationd[298]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    24.11.14 15:04:59.448 locationd[298]: NBB-Could not get UDID for stable refill timing, falling back on random
    24.11.14 15:04:59.456 locationd[298]: Location icon should now be in state 'Inactive'
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x44087a80: GL mask 0x1; bounds (0, 0)[1920 x 2160], 82 modes available
    Main, Active, on-line, enabled, boot, Vendor 4d10, Model 21ea, S/N 0, Unit 0, Rotation 0
    UUID 0xa72347ebf7312d8f13fba6868aea7db8
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0042: GL mask 0x40; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0041: GL mask 0x20; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0040: GL mask 0x10; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f003f: GL mask 0x8; bounds (2947, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f003e: GL mask 0x4; bounds (2948, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f003d: GL mask 0x2; bounds (2949, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0043: GL mask 0x80; bounds (2950, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.516 WindowServer[286]: CGXPerformInitialDisplayConfiguration
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x44087a80: Unit 0; Vendor 0x4d10 Model 0x21ea S/N 0 Dimensions 27.56 x 15.35; online enabled, Bounds (0,0)[1920 x 2160], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0042: Unit 6; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0041: Unit 5; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2947,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2948,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2949,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0043: Unit 7; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2950,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.518 WindowServer[286]: CGXMuxBoot: Boot normal
    24.11.14 15:05:00.176 sntp[296]: time set +0.640194 s
    24.11.14 15:05:00.180 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:05:00.181 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:05:00.181 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:05:00.182 WindowServer[286]: GLCompositor: GL renderer id 0x01021c01, GL mask 0x0000007f, accelerator 0x00004c5b, unit 0, caps QEX|MIPMAP, vram 2048 MB
    24.11.14 15:05:00.183 WindowServer[286]: GLCompositor: GL renderer id 0x01021c01, GL mask 0x0000007f, texture max 16384, viewport max {16384, 16384}, extensions NPOT|GLSL|FLOAT
    24.11.14 15:05:00.183 WindowServer[286]: GLCompositor: GL renderer id 0x02021c01, GL mask 0x00000080, accelerator 0x00002a23, unit 7, caps QEX|MIPMAP, vram 2048 MB
    24.11.14 15:05:00.183 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:05:00.183 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:05:00.183 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:05:00.184 WindowServer[286]: GLCompositor: GL renderer id 0x02021c01, GL mask 0x00000080, texture max 16384, viewport max {16384, 16384}, extensions NPOT|GLSL|FLOAT
    24.11.14 15:05:00.184 WindowServer[286]: GLCompositor enabled for tile size [256 x 256]
    24.11.14 15:05:00.184 WindowServer[286]: CGXGLInitMipMap: mip map mode is on
    24.11.14 15:05:00.184 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:05:00.187 UserEventAgent[23]: Captive: [async_http_read_stream:387] kCFStreamEventErrorOccurred NSPOSIXErrorDomain/64: The operation couldn’t be completed. Host is down
    24.11.14 15:05:00.187 UserEventAgent[23]: Captive: [CaptiveHandleRedirect:1662] Unknown result value: 1, assuming online
    24.11.14 15:05:00.187 UserEventAgent[23]: Captive: CNPluginHandler en2: Authenticated
    24.11.14 15:05:00.209 ntpd[242]: peer time.euro.apple.com @ 17.72.148.52
    24.11.14 15:05:00.454 ntpd[242]: drift PPM:0.000 -> -75.112
    24.11.14 15:05:00.000 kernel[0]: EDID CEA Extensions not valid for audio [Revision ID]: 1 (minimum value: 3)
    24.11.14 15:05:01.043 com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    24.11.14 15:05:01.043 com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    24.11.14 15:05:01.046 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:05:01.047 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:05:01.047 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:05:01.049 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:05:01.049 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:05:01.050 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:05:01.051 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in p

    I have the same errors occurring at an alarming rate. I did isolate it to the App Store. Specifically when checking for an update. I was hoping that you could test this out for me. Go to your console log and select all messages and then check kernel in the sender box (bottom left). I found that now is a good time to insert a marker. Now launch the app store then got to the update section. Select check for update.
    Does this generate a series of the errors? I can reproduce the errors every time I "check for updates". The error would not show up when checking for updates in iTunes.
    I did notice errors in both extending from CFNetwork
    App store:
    2015-01-15 8:40:38.047 AM storeassetd[356]: CFNetwork SSLHandshake failed (-9802)
    iTunes
    2015-01-15 8:53:53.986 AM iTunes[2200]: CFNetwork SSLHandshake failed (-9806)
    Please compare and see if you get the same results.

  • How to generate the output of a BSP application in PDF format?

    Hi,
    I need to modify one BSP application, which generates its output in the form of PDF. I have checked all the methods in the bsp pages and its corresponding controller class's. I couldn't find any relevant method, which deals with generating the output in PDF.
    Could you please share your valuable thoughts on this?
    Again it would be helpful, If anyone of you share some knowledge on Interactive Adobe Forms.
    Thanks,
    John

    >
    I am using oracle version 11.2.0.1, I have set a cronjob which will run on every 15 minutes and give us a log file mentioning the execution time taken for that SQL query:-
    The above query will return the output as well as the time taken for execution of the query. I want to suppress the output of the query and only want the time taken to be printed. Is it possible by set commands. I have marked the output as bold and made it Italic.
    >
    How would that even be useful?
    A query from a tool such as sql*plus is STILL going to send the output to the client and the client. You can keep sql*plus from actually displaying the data by setting autotrace to trace only.
    But that TIME TAKEN is still going to include the network time it takes to send ALL rows that the query returns across the network.
    That time is NOT the same as the actual execution time of the query. So unless you are trying to determine how long it takes to send the data over the network your 'timing' method is rather flawed.
    Why don't you tell us WHAT PROBLEM you are trying to solve so we can help you solve it?

  • Unable to see Dashboard over the internet (Portal)

    Dear All,
    I have one issue here which is bit technical,
    I have made an Xcelsius Dashboard (Connection Type: Excel XML Maps (BW Queries)) and uploaded SWF file on to KM Repository in Portal. I have created Document iview and a role to published the dashboard on Enterprise Portal.
    Now when i am trying to access that Dashboard from Portal within local network it works fine but when i try opening the same Dashboard over the internet from home it gives an error.
    ERROR DETAILS:
    To access external data, add a cross-domain policy file to the external data web server.
    For more information, on the Adobe website, see the article u201CCross-domain Policy File Specificationu201D.
    If the problem persists, contact the file creator or your system administrator.
    Error: Error #2048
    Connection Type: Excel XML Maps
    File URL: https://www.portal.com/irj/go/km/docs/documents/dashboards/dashboard1.swf
    External Data URL: http://bwserver.domain.com:8000/sap/bc/bsp/sap/zbo_data/Data.xml?infocube=ZFIGL_FM&query=ZFIGL_FM_Q0003_BO&VAR_NAME_1=0P_FYRA&VAR_VALUE_EXT_1=2009
    I have added crossdomain into WebAppl Srvr of BW Server .. Created BSP Application ---> Imported crossdomain file ---> set BSP App in Default Service.
    Please suggest me possible Solutions.

    Closing Thread

Maybe you are looking for