How to troubleshoot Crystal Errors

Hi,
I am hoping someone can help me.  We print Crystal Reports through a third part application.  We have Crystal 2008 developers edition installed.  Things will be fine and after about the 10th job we receive the following error: 
Exception:CrystalDecisions.Shared.CrystalReportsException
Message:Load report failed.
Source:CrystalDecisions.CrystalReports.Engine
Target:Void EnsureDocumentIsOpened()
Stack trace:   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
   at Accellos.Integration.IntegrationServer.InitReport(String reportId, String reportFileName, PlatformDataProviderConnectionInfo conInfo, IEnumerable`1 tables, IEnumerable`1 parameters)
Inner Exception:System.Runtime.InteropServices.COMException
Message:Unknown error 0x80040200
Source:sacommlayer.dll
Target:Void Open(System.Object ByRef, Int32)
Stack trace:   at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
Edited by: KarenBrookes on Jul 4, 2010 5:31 AM

Hi Ludek,
I want to thank you very much for your replies.
Please note I have been working with the developer on this and we have not been able to determine the cause.
It also is worth noting that this is not reproducable on their TEST BOX with the same code.
On their Production Box it works, then stops, we re-submit and it works again.  I dont know if you are able to review what I have pasted here but here is a snippet of the code.  We have been troubleshooting this for 3 weeks now so any thing you can advice would help.  Also, does SAP have a Pay per Use support?  If they do,  are the support reps at a level that they could help us to debug what is going wrong?
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data;
using System.Globalization;
using System.IO;
using Accellos.Integration.CrystalReports;
using Accellos.Integration.Utils;
using Accellos.Platform.Data.DataProviders;
using Accellos.Platform.ExternalReports.Data;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
namespace Accellos.Integration
                public class IntegrationServer
                                #region private InitReport
                                private static void InitReport(ReportDocument reportDocument, PlatformDataProviderConnectionInfo conInfo,
                                                                                IEnumerable<DataTable> tables, IEnumerable<KeyValuePair<string, object>> parameters)
                                                #region Set connection
                                                if (conInfo != null)
                                                                foreach (Table table in reportDocument.Database.Tables)
                                                                                TableLogOnInfo logOnInfo = table.LogOnInfo;
                                                                                logOnInfo.ConnectionInfo.ServerName = conInfo.ServerName;
                                                                                logOnInfo.ConnectionInfo.DatabaseName = conInfo.DatabaseName;
                                                                                logOnInfo.ConnectionInfo.IntegratedSecurity = conInfo.IntegratedSecurity;
                                                                                logOnInfo.ConnectionInfo.UserID = conInfo.UserId;
                                                                                logOnInfo.ConnectionInfo.Password = conInfo.UserPassword;
                                                                                table.ApplyLogOnInfo(logOnInfo);
                                                #endregion
                                                #region Set data tables
                                                DataSet dataSet = new DataSet("cr") {Locale = CultureInfo.InvariantCulture};
                                                foreach (DataTable table in tables)
                                                                dataSet.Tables.Add(table);
                                                if (dataSet.Tables.Count > 0)
                                                                reportDocument.SetDataSource(dataSet);
                                                reportDocument.Refresh();
                                                #endregion
                                                #region Set data parameters
                                                Dictionary<string, object> prms = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
                                                foreach (KeyValuePair<string, object> pair in parameters)
                                                                prms.Add(pair.Key, pair.Value);
                                                foreach (ParameterField field in reportDocument.ParameterFields)
                                                                if (reportDocument.DataDefinition.ParameterFields[field.Name].IsLinked())
                                                                                continue;
                                                                if (prms.ContainsKey(field.Name))
                                                                                reportDocument.SetParameterValue(field.Name, prms[field.Name]);
                                                #endregion
                                #endregion
                                #region PrintReport
                                public void PrintReport(string reportId, string reportFileName, PlatformDataProviderConnectionInfo conInfo,
                                                        Collection<DataTable> tables, Dictionary<string, object> parameters,
                                                        ExternalReportPrintInfo printInfo)
                                                #region Check parameters
                                                if (reportId == null)
                                                                throw new ArgumentNullException("reportId");
                                                reportId = reportId.Trim();
                                                if (reportId.Length == 0)
                                                                throw new ArgumentException("Can not be null or empty.", "reportId");
                                                if (reportFileName == null)
                                                                throw new ArgumentNullException("reportFileName");
                                                reportFileName = reportFileName.Trim();
                                                if (reportFileName.Length == 0)
                                                                throw new ArgumentException("Can not be null or empty.", "reportFileName");
                                                if (!File.Exists(reportFileName))
                                                                throw new FileNotFoundException("File [" + reportFileName + "] does not exist for report [" + reportId +
                                                                                "]. Crystal engine can not be initialized.");
                                                #endregion
                                                using (ReportDocument reportDocument = new ReportDocument())
                                                                #region Load document
                                                                try
                                                                                reportDocument.Load(reportFileName);
                                                                catch (Exception e)
                                                                                CustomFileLog log = new CustomFileLog(IntegrationService.IntegrationServiceErrorsLog);
                                                                                log.Write("Can not load crystal report file.");
                                                                                log.Write(e);
                                                                                throw new Exception("Report [" + reportId + "]. Crystal Report Engine: " + e.Message
                                                                                + Environment.NewLine + "Please, check Crystal Report Version or Report template file.");
                                                                #endregion
                                                                InitReport(reportDocument, conInfo, tables, parameters);
                                                                reportDocument.PrintOptions.PrinterName = printInfo.PrinterName;
                                                                for (int i = 0; i < printInfo.NCopies; i++)
                                                                                reportDocument.PrintToPrinter(1, printInfo.Collated, printInfo.StartPage, printInfo.EndPage);
                                #endregion

Similar Messages

  • How to troubleshoot SQL error when copying cube

    I was successful in creating Info Package and running it to copy data frin cube  1 to cube2.  However, I get an error when
    Running the package. My source cube has 1.9 million rows. However, Info Package only loaded 30,120 records.  Looking in monitor logs, it shows me following error stack:
    System error in program SAPLRS_EXECPTION and from RS_EXEPTION_TO_MESSAGE
    SQL Error 0
    Unknown error in SQL Interface
    Errors in source system
    When I click on long text button for Unknown error in SQL interface:
    The SQL interface of the application server (DBSL) has reported an unknown error. This error can be caused by:
    - Overflows when aggregated data is read from the database in ABAP.  If this occurs, the definition for the corresponding key figure must be changed.
    - Internal errors
    It seems to be some kind of Overflow error. Is there any way to get  more information on the cause
    Of this erroru2026.
    THANKS A LOT.

    I tried SM50, it shows me all processes, but I still cannot figure how to set developer trace. Following is detailed information on what I am doing in copy of cubes and errors I am getting:
    Subject: Troubleshoot Copy of Cubes
    I have tried to copy several cubes on my BI 7.0 and all of them same error, so I am wondering whether I am doing something fundamentally wrong.
                    System error in program SAPLRS_EXECPTION and from RS_EXEPTION_TO_MESSAGE
                    SQL Error 0
                    Unknown error in SQL Interface
                    Errors in source system
    After error occurs I get following message in mail:
              The error occurred in Extractor.
               Refer to the error message.
                     Procedure
                 How you remove the error depends on the error message.
                     Note
              If the source system is a Client Workstation, then it            is possible that the file that you wanted to load was being edited
    at the time of the data request. Make sure that the file is in
    the specified directory, that it is not being processed at the
    I  looked  in SM21, system logs, whenever error occurs, I see the  u201C
    Database selection with invalid cursor &5&5
    The database interface was called by a cursor (in a FETCH or CLOSE cursor operation) that is not flagged as opened. This can occur if a COMMIT or ROLLBACK was executed within a SELECT loop (which closes all opened cursors), followed by another attempt to access the cursor (for example, the next time the loop is executed).
    I DO NOT UNDERSTAND WHEN I AM COPYING FROM CUBE, WHY SAP BW will  generate u201Cinvalid cursoru201D message. Not sure whether it is normal, i.e., not a real error,
    My cube copying  (from cube 1 to cube 2) is a straightforward procedure:
    a.     Select Copy from Cube 1 and create Cube 2.
    b.     Create Export Data Source from Cube 1 Menu.
    c.     From Cube 2 menu, Create Update rules, In update rules select DataSource as 8Cube1.
    d.     Create an Info Package for 8Cube1 under Infosource/DataSource and then run the package.
    Certain no of records e.g.. 3248 or so get loaded and then the error messages are generated, why?
    Really appreciate any help. I tried SM37, does not give any clue. I also Tried SM50, it shows me the process, but I still cannot figure how to generate developer trace.
    Since behavior is same for several cubes I tried, something else also needs to be done, I do not know what???

  • Mac Mini Crashed 2x In Past Week - How To Troubleshoot Console Errors?

    Hello, my mac mini 2011 has crashed on me twice in the past week. Once it happened while I was returning to my desk. I heard a noise... like something electrical shutting down abruptly.  The second time it happened, the mac mini was in the process of restarting.. (same sound), it just automatically restarted again and then booted up. Not sure if that was related to an update that was waiting to install.
    My issue is, how do I troubleshoot the crash? I know most people go to the console.... I have no idea how to define what is going on or find out exactly what caused the crash. There are a ton of messages in there... some are normal?  Other things definitely indicate a problem but I'm not sure how to fix it.
    I copied and pasted the message from the time I rebooted here.. Some highlights I see:
    1) Problems with iCal
    2) Some deny machine lookups: What is this?   ([1034]) mdworker(1034) deny mach-lookup com.apple.ls.boxd
    3) Missing semicolin in dictionary
    4) and unknown Cisvo VPN?  SystemStarter[513]: Unknown service: CiscoVPN"
    5) Some file permissions errors: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist"
    6) SendFlattenedData error:  coreservicesd[59]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyChildApplicationLaunch to notificationID=140"
    7) Driver errors:
    5/24/13 4:23:00.049 PM ConsumerTouchDriver[241]: Could not find image named 'TouchRingToggleLEDSlitOff'.
    5/24/13 4:23:00.060 PM ConsumerTouchDriver[241]: Could not find image named 'DKTouchRingToggleLeft'.
    5/24/13 4:23:00.067 PM ConsumerTouchDriver[241]: Could not find image named 'DKTouchRingToggleRight'.
    8) Various invalid connections: WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195 (there are more of these)
    9) Boot Strap lookup failures: timezoned[160]: bootstrap_look_up failed (44e)
    Just too many here as you can see. Please note some network names and IP addresses have been redacted. I also took out some multiple Google Update entries for brevity. They look normal for most part except for the part that it showed up about 7 or 8 times.
    if anyone knows how to decipher this please let me know. 
    5/24/13 4:16:11.446 PM coreservicesd[60]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=9487
    5/24/13 4:16:11.523 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    5/24/13 4:16:11.526 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    5/24/13 4:16:11.526 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit] Cancel UI for running services with Client PID: 94616
    5/24/13 4:16:17.470 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    5/24/13 4:16:17.471 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    5/24/13 4:16:17.472 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit] Cancel UI for running services with Client PID: 96498
    5/24/13 4:16:17.691 PM iTunes[84926]: 2013-05-24 04:16:17.691209 PM [AVSystemController] Stopping AirPlay
    5/24/13 4:16:18.186 PM WindowServer[82]: CGXUnregisterWindowWithSystemStatusBar: Invalid window (31a1)
    5/24/13 4:16:18.960 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    5/24/13 4:16:18.961 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    5/24/13 4:16:18.961 PM com.apple.ShareKitHelper[863]: --warning: [ShareKit] Cancel UI for running services with Client PID: 66380
    5/24/13 4:16:45.365 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyChildApplicationReady to notificationID=8709
    5/24/13 4:16:47.839 PM com.apple.usbmuxd[53255]: stopping.
    5/24/13 4:16:47.852 PM com.apple.launchd.peruser.502[181]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 9 seconds
    5/24/13 4:16:48.394 PM com.apple.usbmuxd[9101]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    5/24/13 4:16:49.637 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyChildDeath to notificationID=8709
    5/24/13 4:16:49.903 PM 1PasswordAgent[319]: [HYBI] socketDidDisconnect: Error Domain=GCDAsyncSocketErrorDomain Code=7 "Socket closed by remote peer" UserInfo=0x1050a0c80 {NSLocalizedDescription=Socket closed by remote peer}
    5/24/13 4:16:50.020 PM prl_naptd[6584]: Exiting Parallels Network Daemon
    5/24/13 4:16:51.741 PM Parallels[9136]: Stopping Parallels Dispatcher Service
    5/24/13 4:16:53.719 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyChildDeath to notificationID=8709
    5/24/13 4:16:54.137 PM Parallels[9142]: Stopping Parallels networking
    5/24/13 4:16:54.184 PM watchdog[9146]: Stop watching /Applications/Parallels Desktop.app/Contents//MacOS/prl_naptd
    5/24/13 4:16:54.342 PM watchdog[9154]: file /var/run/prl_watchdog-2323cae42fd8.pid, pid 6661
    5/24/13 4:16:54.348 PM watchdog[9156]: /Applications/Parallels Desktop.app/Contents//MacOS/prl_naptd stop
    5/24/13 4:16:54.369 PM prl_naptd[6683]: Exiting Parallels Network Daemon
    5/24/13 4:16:54.618 PM WindowServer[82]: dict count after removing entry for window 0x3d is 0
    5/24/13 4:16:54.826 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.826 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.827 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.829 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.829 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.829 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.829 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.830 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.831 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 211847
    5/24/13 4:16:54.831 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 211847
    5/24/13 4:16:54.831 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 211847
    5/24/13 4:16:54.831 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 204967
    5/24/13 4:16:54.831 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 204967
    5/24/13 4:16:54.832 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 204967
    5/24/13 4:16:54.832 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 204967
    5/24/13 4:16:54.832 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 204967
    5/24/13 4:16:54.833 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 204967
    5/24/13 4:16:54.833 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 210883
    5/24/13 4:16:54.833 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 210883
    5/24/13 4:16:54.833 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 210883
    5/24/13 4:16:54.838 PM com.apple.launchd[1]: (com.apple.ShareKitHelper[863]) Exited: Killed: 9
    5/24/13 4:16:54.839 PM coreservicesd[60]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=229
    5/24/13 4:16:54.841 PM com.apple.launchd.peruser.502[181]: (com.sophiestication.mac.CoverSutra.agent[298]) Exited: Killed: 9
    5/24/13 4:16:54.855 PM coreservicesd[60]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=306
    5/24/13 4:16:54.867 PM com.apple.launchd.peruser.502[181]: (com.dayoneapp.dayone-agent[305]) Exited: Killed: 9
    5/24/13 4:16:54.868 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=137
    5/24/13 4:16:54.868 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=11081
    5/24/13 4:16:54.881 PM com.apple.launchd.peruser.502[181]: ([0x0-0x2c02c].com.apple.inputmethod.ironwood[272]) Exited: Killed: 9
    5/24/13 4:16:54.890 PM coreservicesd[60]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=161
    5/24/13 4:16:54.891 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=11093
    5/24/13 4:16:54.903 PM UserEventAgent[11]: Captive: [UserAgentDied:139] User Agent @port=45575 Died
    5/24/13 4:16:54.909 PM 1PasswordAgent[319]: Shutting down 1PasswordAgent 3.8.21 #32009 built Apr 24 2013 16:09:31
    5/24/13 4:16:54.924 PM com.apple.launchd.peruser.502[181]: ([0x0-0x5c05c].com.apple.AppleSpell[369]) Exited: Terminated: 15
    5/24/13 4:16:54.924 PM com.apple.launchd.peruser.502[181]: ([0x0-0x63063].com.apple.ImageCaptureExtension2[432]) Exited: Killed: 9
    5/24/13 4:16:54.940 PM coreservicesd[60]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=218
    5/24/13 4:16:54.941 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=226
    5/24/13 4:16:54.941 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=286
    5/24/13 4:16:54.953 PM com.apple.launchd.peruser.502[181]: ([0x0-0x60b60b].com.apple.iTunesHelper[17906]) Exited with code: 1
    5/24/13 4:16:54.954 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.954 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.955 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.955 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.955 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:54.969 PM Office365Service[8836]: System shutdown notification
    5/24/13 4:16:54.969 PM com.apple.launchd.peruser.502[181]: ([0x0-0x1a0da0c].com.apple.iCal[90332]) Exited: Killed: 9
    5/24/13 4:16:54.970 PM com.apple.launchd.peruser.502[181]: (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[7581]) Exited: Killed: 9
    5/24/13 4:16:55.163 PM coreservicesd[60]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=153
    5/24/13 4:16:55.173 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:55.173 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:55.174 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:55.174 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:55.174 PM WindowServer[82]: CGXGetConnectionProperty: Invalid connection 32195
    5/24/13 4:16:55.191 PM com.apple.launchd.peruser.502[181]: ([0x0-0x4d04d].com.wacom.Consumer_TouchDriver[339]) Exited with code: 1
    5/24/13 4:16:55.234 PM com.apple.launchd.peruser.502[181]: (com.apple.mdworker.mail.01000000-0000-0000-0000-000000000000[9082]) Exited: Killed: 9
    5/24/13 4:16:55.899 PM com.apple.launchd.peruser.502[181]: (com.wacom.pentablet[318]) Exited with code: 1
    5/24/13 4:16:55.917 PM com.apple.launchd.peruser.502[181]: (com.apple.UserEventAgent-Aqua[209]) Exited: Killed: 9
    5/24/13 4:16:55.918 PM Parallels[9159]: Parallels Networking was stopped
    5/24/13 4:16:56.018 PM com.apple.launchd.peruser.502[181]: (com.apple.storeagent[859]) Exited: Killed: 9
    5/24/13 4:16:56.035 PM com.apple.launchd.peruser.502[181]: (com.apple.quicklook[9069]) Exited: Killed: 9
    5/24/13 4:16:56.038 PM Parallels[9162]: Unloading kernel extension prl_netbridge.kext
    5/24/13 4:16:56.204 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyChildDeath to notificationID=107
    5/24/13 4:16:56.397 PM loginwindow[38]: DEAD_PROCESS: 38 console
    5/24/13 4:16:56.453 PM com.apple.launchd.peruser.502[181]: (com.evernote.EvernoteHelper[306]) Exited: Killed: 9
    5/24/13 4:16:57.527 PM Parallels[9172]:  - kext com.parallels.kext.netbridge found loaded.
    5/24/13 4:16:57.589 PM WindowServer[82]: CGXRestartSessionWorkspace: session workspace exited for session 256 (on console)
    5/24/13 4:16:57.589 PM WindowServer[82]: Session 256 released (1 references)
    5/24/13 4:16:57.589 PM WindowServer[82]: Session 256 released (0 references)
    5/24/13 4:16:57.590 PM WindowServer[82]: loginwindow connection closed; closing server.
    5/24/13 4:16:57.605 PM imagent[263]: Quit - notifying about shutdown
    5/24/13 4:16:57.605 PM imagent[263]: Quit - shutting down daemon
    5/24/13 4:16:58.677 PM Parallels[9182]: Unloading kernel extension prl_vnic.kext
    5/24/13 4:16:58.701 PM airportd[9167]: _doAutoJoin: Already associated to “SkyNet”. Bailing on auto-join.
    5/24/13 4:16:58.000 PM kernel[0]: com.parallels.kext.prlnet 8.0.18483.860857 is unloading.
    5/24/13 4:16:58.000 PM kernel[0]: free vms_list while it is not empty
    5/24/13 4:16:59.181 PM Parallels[9187]:  - kext com.parallels.kext.vnic found loaded.
    5/24/13 4:16:59.000 PM kernel[0]: com.parallels.kext.vnic 8.0.18483.860857 is unloading.
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic_bus: wait for detach for 0
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic_bus::detach_handler for 0
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic_bus: detached 0
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic: destroyed vnic0
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic_bus: wait for detach for 1
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic_bus::detach_handler for 1
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic_bus: detached 1
    5/24/13 4:16:59.000 PM kernel[0]: com_parallels_kext_prl_vnic: destroyed vnic1
    5/24/13 4:16:59.400 PM Parallels[9194]: Unloading kernel extension prl_usb_connect.kext
    5/24/13 4:16:59.441 PM loginwindow[9176]: Login Window Application Started
    5/24/13 4:16:59.593 PM Parallels[9199]:  - kext com.parallels.kext.usbconnect found loaded.
    5/24/13 4:16:59.797 PM Parallels[9207]: Unloading kernel extension prl_hid_hook.kext
    5/24/13 4:16:59.820 PM WindowServer[9204]: Server is starting up
    5/24/13 4:16:59.864 PM WindowServer[9204]: Session 256 retained (2 references)
    5/24/13 4:16:59.864 PM WindowServer[9204]: Session 256 released (1 references)
    5/24/13 4:16:59.884 PM WindowServer[9204]: Session 256 retained (2 references)
    5/24/13 4:16:59.885 PM WindowServer[9204]: init_page_flip: page flip mode is on
    5/24/13 4:17:00.034 PM WindowServer[9204]: mux_initialize: Couldn't find any matches
    5/24/13 4:17:00.000 PM kernel[0]: /prl_hid/ Parallels HID Helper stopped.
    5/24/13 4:17:00.119 PM WindowServer[9204]: GLCompositor enabled for tile size [256 x 256]
    5/24/13 4:17:00.119 PM WindowServer[9204]: CGXGLInitMipMap: mip map mode is on
    5/24/13 4:17:00.143 PM WindowServer[9204]: WSMachineUsesNewStyleMirroring: false
    5/24/13 4:17:00.143 PM WindowServer[9204]: MPServiceForDisplayDevice: Invalid device alias (0)
    5/24/13 4:17:00.143 PM WindowServer[9204]: 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 0xffffffffffffffffffffffff003f003f
    5/24/13 4:17:00.143 PM WindowServer[9204]: 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 0xffffffffffffffffffffffff003f003e
    5/24/13 4:17:00.143 PM WindowServer[9204]: Display 0x04248b01: GL mask 0x2; bounds (0, 0)[2560 x 1440], 42 modes available
    Main, Active, on-line, enabled, Vendor 610, Model 9227, S/N 162a02c3, Unit 1, Rotation 0
    UUID 0x0000061000009227162a02c300000000
    5/24/13 4:17:00.143 PM WindowServer[9204]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, boot, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    5/24/13 4:17:00.143 PM WindowServer[9204]: Created shield window 0x4 for display 0x003f003f
    5/24/13 4:17:00.144 PM WindowServer[9204]: Created shield window 0x5 for display 0x003f003e
    5/24/13 4:17:00.152 PM WindowServer[9204]: Created shield window 0x6 for display 0x04248b01
    5/24/13 4:17:00.152 PM WindowServer[9204]: Created shield window 0x7 for display 0x003f003c
    5/24/13 4:17:00.154 PM WindowServer[9204]: Display 0x04248b01: GL mask 0x2; bounds (0, 0)[2560 x 1440], 42 modes available
    Main, Active, on-line, enabled, Vendor 610, Model 9227, S/N 162a02c3, Unit 1, Rotation 0
    UUID 0x0000061000009227162a02c300000000
    5/24/13 4:17:00.154 PM WindowServer[9204]: Display 0x003f003f: GL mask 0x8; bounds (3584, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    5/24/13 4:17:00.154 PM WindowServer[9204]: Display 0x003f003e: GL mask 0x4; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    5/24/13 4:17:00.155 PM WindowServer[9204]: Display 0x003f003c: GL mask 0x1; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, boot, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    5/24/13 4:17:00.155 PM WindowServer[9204]: CGXPerformInitialDisplayConfiguration
    5/24/13 4:17:00.155 PM WindowServer[9204]:   Display 0x04248b01: MappedDisplay Unit 1; Vendor 0x610 Model 0x9227 S/N 371851971 Dimensions 23.50 x 13.23; online enabled, Bounds (0,0)[2560 x 1440], Rotation 0, Resolution 1
    5/24/13 4:17:00.155 PM WindowServer[9204]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    5/24/13 4:17:00.155 PM WindowServer[9204]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3585,0)[1 x 1], Rotation 0, Resolution 1
    5/24/13 4:17:00.155 PM WindowServer[9204]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3586,0)[1 x 1], Rotation 0, Resolution 1
    5/24/13 4:17:00.159 PM WindowServer[9204]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000000f, accelerator 0x0000324f, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    5/24/13 4:17:00.160 PM WindowServer[9204]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000000f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    5/24/13 4:17:00.365 PM loginwindow[9176]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    5/24/13 4:17:00.482 PM WindowServer[9204]: Created shield window 0x8 for display 0x04248b01
    5/24/13 4:17:00.483 PM WindowServer[9204]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:17:00.571 PM airportd[9167]: _doAutoJoin: Already associated to “SkyNet”. Bailing on auto-join.
    5/24/13 4:17:00.000 PM kernel[0]: Kext  not found for unload request.
    5/24/13 4:17:00.756 PM launchctl[9225]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:17:00.000 PM kernel[0]: Kext  not found for unload request.
    5/24/13 4:17:01.000 PM kernel[0]: Kext  not found for unload request.
    5/24/13 4:17:01.093 PM BezelServices 236.3[9176]: -[DriverServices sendPreferencesToDevice:resetDefaults:] error: classPrefID (null), classPrefs (null)
    5/24/13 4:17:01.000 PM kernel[0]: Kext  not found for unload request.
    5/24/13 4:17:01.837 PM com.apple.SecurityServer[25]: Session 100444 created
    5/24/13 4:17:01.948 PM loginwindow[9176]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    5/24/13 4:17:02.120 PM loginwindow[9176]: USER_PROCESS: 9176 console
    5/24/13 4:17:02.152 PM WindowServer[9204]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    5/24/13 4:17:02.172 PM airportd[9167]: _doAutoJoin: Already associated to “SkyNet”. Bailing on auto-join.
    5/24/13 4:17:02.243 PM WindowServer[9204]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:17:02.256 PM WindowServer[9204]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:17:03.167 PM WindowServer[9204]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04248b01 device: 0x1092cba10  isBackBuffered: 1 numComp: 3 numDisp: 3
    5/24/13 4:17:06.074 PM launchctl[9225]: com.apple.findmymacmessenger: Already loaded
    5/24/13 4:17:09.762 PM TabletDriver[9280]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/ConsumerTouchDriver.app
    5/24/13 4:17:09.772 PM CVMServer[84]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    5/24/13 4:17:09.849 PM launchctl[9285]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:17:09.960 PM TabletDriver[9280]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/TabletDriver.app
    5/24/13 4:17:10.001 PM locationd[9283]: NOTICE,Location icon should now be in state 0
    5/24/13 4:17:10.100 PM CVMServer[84]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    5/24/13 4:17:10.227 PM UserEventAgent[9275]: cannot find useragent 1102
    5/24/13 4:17:11.593 PM mdworker[9273]: Unable to talk to lsboxd
    5/24/13 4:17:11.774 PM mdworker[9272]: Unable to talk to lsboxd
    5/24/13 4:17:11.000 PM kernel[0]: Sandbox: sandboxd(9288) deny mach-lookup com.apple.coresymbolicationd
    5/24/13 4:17:12.079 PM timezoned[9289]: bootstrap_look_up failed (44e)
    5/24/13 4:17:12.218 PM timezoned[9289]: bootstrap_look_up failed (44e)
    5/24/13 4:17:12.419 PM sandboxd[9288]: ([9273]) mdworker(9273) deny mach-lookup com.apple.ls.boxd
    5/24/13 4:17:13.223 PM sandboxd[9288]: ([9272]) mdworker(9272) deny mach-lookup com.apple.ls.boxd
    5/24/13 4:17:20.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    5/24/13 4:17:37.000 PM kernel[0]: macx_swapoff SUCCESS
    5/24/13 4:18:08.000 PM kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    5/24/13 4:18:22.000 PM kernel[0]: macx_swapoff SUCCESS
    5/24/13 4:18:29.218 PM mds[34]: (Normal) ImportServer: Preparing for software update
    5/24/13 4:18:30.483 PM mds[34]: (Normal) ImportServer: Software update complete
    5/24/13 4:18:35.116 PM reboot[9323]: rebooted by _usbmuxd
    5/24/13 4:18:35.116 PM reboot[9323]: BOOT_TIME: 1369426715 116379
    5/24/13 4:20:15.000 PM bootlog[0]: BOOT_TIME 1369426815 0
    5/24/13 4:20:43.000 PM kernel[0]: PMAP: PCID enabled
    5/24/13 4:20:43.000 PM kernel[0]: Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    5/24/13 4:20:43.000 PM kernel[0]: vm_page_bootstrap: 3924376 free pages and 237160 wired pages
    5/24/13 4:20:43.000 PM kernel[0]: kext submap [0xffffff7f80735000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000735000]
    5/24/13 4:20:43.000 PM kernel[0]: zone leak detection enabled
    5/24/13 4:20:43.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    5/24/13 4:20:43.000 PM kernel[0]: standard background quantum is 2500 us
    5/24/13 4:20:43.000 PM kernel[0]: mig_table_max_displ = 74
    5/24/13 4:20:43.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto kext started!
    5/24/13 4:20:43.000 PM kernel[0]: Running kernel space in FIPS MODE
    5/24/13 4:20:43.000 PM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    5/24/13 4:20:43.000 PM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    5/24/13 4:20:43.000 PM kernel[0]: corecrypto.kext FIPS POST passed!
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    5/24/13 4:20:43.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    5/24/13 4:20:43.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    5/24/13 4:20:16.975 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    5/24/13 4:20:43.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    5/24/13 4:20:43.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    5/24/13 4:20:43.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    5/24/13 4:20:43.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    5/24/13 4:20:43.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    5/24/13 4:20:43.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    5/24/13 4:20:43.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    5/24/13 4:20:43.000 PM kernel[0]: MAC Framework successfully initialized
    5/24/13 4:20:43.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    5/24/13 4:20:43.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    5/24/13 4:20:43.000 PM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    5/24/13 4:20:43.000 PM kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    5/24/13 4:20:43.000 PM kernel[0]: [ PCI configuration begin ]
    5/24/13 4:20:43.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    5/24/13 4:20:43.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 13:47:00 Aug 14 2012) initialization complete
    5/24/13 4:20:16.975 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    5/24/13 4:20:43.000 PM kernel[0]: console relocated to 0xfd0010000
    5/24/13 4:20:43.000 PM kernel[0]: PCI configuration changed (bridge=72 device=10 cardbus=0)
    5/24/13 4:20:43.000 PM kernel[0]: [ PCI configuration end, bridges 22 devices 23 ]
    5/24/13 4:20:29.388 PM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    5/24/13 4:20:43.000 PM kernel[0]: FireWire runtime power conservation disabled. (2)
    5/24/13 4:20:43.000 PM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    5/24/13 4:20:43.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    5/24/13 4:20:43.000 PM kernel[0]: rooting via boot-uuid from /chosen: 674D14D9-4E9E-3C3C-836E-C2B76F083714
    5/24/13 4:20:43.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>
    5/24/13 4:20:43.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    5/24/13 4:20:43.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    5/24/13 4:20:43.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    5/24/13 4:20:43.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    5/24/13 4:20:43.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    5/24/13 4:20:43.000 PM kernel[0]: BTCOEXIST off
    5/24/13 4:20:43.000 PM kernel[0]: BRCM tunables:
    5/24/13 4:20:43.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    5/24/13 4:20:43.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/TOSHIBA MK5065GSXF Media/IOGUIDPartitionScheme/Customer@2
    5/24/13 4:20:43.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2
    5/24/13 4:20:43.000 PM kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 406c8ffffe7cbff0; max speed s800.
    5/24/13 4:20:43.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 PCI now active, GUID 000a270200434c07; max speed s800.
    5/24/13 4:20:43.000 PM kernel[0]: Kernel is LP64
    5/24/13 4:20:43.000 PM kernel[0]: USBMSC Identifier (non-unique): 57442D574341554830323532353836 0x1058 0x1100 0x175
    5/24/13 4:20:43.000 PM kernel[0]: macx_swapon SUCCESS
    5/24/13 4:20:36.673 PM hidd[42]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    5/24/13 4:20:36.675 PM hidd[42]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    5/24/13 4:20:43.215 PM distnoted[58]: Bug: 12D78: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    5/24/13 4:20:44.812 PM mDNSResponder[35]: mDNSResponder mDNSResponder-379.37 (Dec 16 2012 19:43:09) starting OSXVers 12
    5/24/13 4:20:44.825 PM coreservicesd[59]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    5/24/13 4:20:44.837 PM appleeventsd[48]: main: Starting up
    5/24/13 4:20:44.000 PM kernel[0]: Waiting for DSMOS...
    5/24/13 4:20:44.000 PM kernel[0]: BCM5701Enet: Ethernet address 40:6c:8f:27:e1:64
    5/24/13 4:20:44.000 PM kernel[0]: BCM5701Enet: Ethernet address 40:6c:8f:0c:63:a3
    5/24/13 4:20:44.000 PM kernel[0]: AirPort_Brcm4331: Ethernet address 70:73:cb:c4:c3:99
    5/24/13 4:20:44.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    5/24/13 4:20:44.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    5/24/13 4:20:46.000 PM kernel[0]: Previous Shutdown Cause: 5
    5/24/13 4:20:46.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    5/24/13 4:20:46.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0100
    5/24/13 4:20:46.000 PM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    5/24/13 4:20:46.229 PM com.apple.kextd[12]: Can't load /System/Library/Extensions/SeratoScratchDriver.kext - no code for running kernel's architecture.
    5/24/13 4:20:46.232 PM com.apple.kextd[12]: Load com.serato.usb.kext failed; removing personalities from kernel.
    5/24/13 4:20:46.270 PM com.apple.kextd[12]: Can't load /System/Library/Extensions/SeratoScratchDriver.kext - no code for running kernel's architecture.
    5/24/13 4:20:46.271 PM com.apple.kextd[12]: Load com.serato.usb.kext failed; removing personalities from kernel.
    5/24/13 4:20:46.000 PM kernel[0]: DSMOS has arrived
    5/24/13 4:20:46.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    5/24/13 4:20:46.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    5/24/13 4:20:46.000 PM kernel[0]: AMDTurksGraphicsAccelerator: ** Device in slot: SLOT--1 **
    5/24/13 4:20:46.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    5/24/13 4:20:47.416 PM com.apple.SecurityServer[25]: Session 100000 created
    5/24/13 4:20:48.279 PM configd[50]: setting hostname to "Jacquelines-Mac-mini.local"
    5/24/13 4:20:48.000 PM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    5/24/13 4:20:48.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    5/24/13 4:20:48.284 PM configd[50]: network changed.
    5/24/13 4:20:48.297 PM airportd[81]: _processDLILEvent: en1 attached (up)
    5/24/13 4:20:48.000 PM kernel[0]: createVirtIf(): ifRole = 1
    5/24/13 4:20:48.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    5/24/13 4:20:48.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff80448bf400
    5/24/13 4:20:48.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    5/24/13 4:20:48.000 PM kernel[0]: Created virtif 0xffffff80448bf400 p2p0
    5/24/13 4:20:49.673 PM mds[34]: (Normal) FMW: FMW 0 0
    5/24/13 4:20:49.725 PM blued[52]: Read the UHE Info
    5/24/13 4:20:49.725 PM blued[52]: Read version 2 info.  Number of devices:3
    5/24/13 4:20:49.725 PM blued[52]: Class of device:     0x2580
    5/24/13 4:20:49.725 PM blued[52]: Device name: 'Jacqueline's mouse' length:19
    5/24/13 4:20:49.725 PM blued[52]: Finished reading the HID data
    5/24/13 4:20:49.726 PM blued[52]: Found a device with PID:0x030d VID:0x05ac
    5/24/13 4:20:49.726 PM blued[52]: Class of device:     0x2540
    5/24/13 4:20:49.727 PM blued[52]: Device name: 'Jacqueline's Keyboard' length:22
    5/24/13 4:20:49.727 PM blued[52]: Finished reading the HID data
    5/24/13 4:20:49.727 PM blued[52]: Found a device with PID:0x0255 VID:0x05ac
    5/24/13 4:20:49.727 PM blued[52]: Class of device:     0x2594
    5/24/13 4:20:49.727 PM blued[52]: Device name: 'Jacqueline's trackpad' length:22
    5/24/13 4:20:49.727 PM blued[52]: Finished reading the HID data
    5/24/13 4:20:49.727 PM blued[52]: Found a device with PID:0x030e VID:0x05ac
    5/24/13 4:20:56.741 PM com.apple.SecurityServer[25]: Entering service
    5/24/13 4:20:56.775 PM systemkeychain[71]: done file: /var/run/systemkeychaincheck.done
    5/24/13 4:20:56.794 PM configd[50]: network changed: DNS*
    5/24/13 4:20:56.795 PM mDNSResponder[35]: D2D_IPC: Loaded
    5/24/13 4:20:56.795 PM mDNSResponder[35]: D2DInitialize succeeded
    5/24/13 4:20:56.828 PM loginwindow[38]: Login Window Application Started
    5/24/13 4:20:56.874 PM WindowServer[93]: Server is starting up
    5/24/13 4:20:56.878 PM WindowServer[93]: Session 256 retained (2 references)
    5/24/13 4:20:56.878 PM WindowServer[93]: Session 256 released (1 references)
    5/24/13 4:20:56.889 PM awacsd[53]: Starting awacsd connectivity-78.2 (Dec 16 2012 19:43:29)
    5/24/13 4:20:56.893 PM awacsd[53]: InnerStore CopyAllZones: no info in Dynamic Store
    5/24/13 4:20:56.898 PM WindowServer[93]: Session 256 retained (2 references)
    5/24/13 4:20:56.902 PM WindowServer[93]: init_page_flip: page flip mode is on
    5/24/13 4:20:56.941 PM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    5/24/13 4:20:56.993 PM netbiosd[80]: Unable to start NetBIOS name service:
    5/24/13 4:20:57.322 PM WindowServer[93]: mux_initialize: Couldn't find any matches
    5/24/13 4:20:57.334 PM WindowServer[93]: GLCompositor enabled for tile size [256 x 256]
    5/24/13 4:20:57.334 PM WindowServer[93]: CGXGLInitMipMap: mip map mode is on
    5/24/13 4:20:57.358 PM WindowServer[93]: WSMachineUsesNewStyleMirroring: false
    5/24/13 4:20:57.358 PM WindowServer[93]: MPServiceForDisplayDevice: Invalid device alias (0)
    5/24/13 4:20:57.358 PM WindowServer[93]: 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 0xffffffffffffffffffffffff003f003f
    5/24/13 4:20:57.358 PM WindowServer[93]: 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 0xffffffffffffffffffffffff003f003e
    5/24/13 4:20:57.359 PM WindowServer[93]: Display 0x04248b01: GL mask 0x2; bounds (0, 0)[2560 x 1440], 42 modes available
    Main, Active, on-line, enabled, Vendor 610, Model 9227, S/N 162a02c3, Unit 1, Rotation 0
    UUID 0x0000061000009227162a02c300000000
    5/24/13 4:20:57.359 PM WindowServer[93]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, boot, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    5/24/13 4:20:57.359 PM WindowServer[93]: Created shield window 0x5 for display 0x003f003f
    5/24/13 4:20:57.359 PM WindowServer[93]: Created shield window 0x6 for display 0x003f003e
    5/24/13 4:20:57.365 PM WindowServer[93]: Created shield window 0x7 for display 0x04248b01
    5/24/13 4:20:57.366 PM WindowServer[93]: Created shield window 0x8 for display 0x003f003c
    5/24/13 4:20:57.367 PM WindowServer[93]: Display 0x04248b01: GL mask 0x2; bounds (0, 0)[2560 x 1440], 42 modes available
    Main, Active, on-line, enabled, Vendor 610, Model 9227, S/N 162a02c3, Unit 1, Rotation 0
    UUID 0x0000061000009227162a02c300000000
    5/24/13 4:20:57.367 PM WindowServer[93]: Display 0x003f003f: GL mask 0x8; bounds (3584, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    5/24/13 4:20:57.367 PM WindowServer[93]: Display 0x003f003e: GL mask 0x4; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    5/24/13 4:20:57.367 PM WindowServer[93]: Display 0x003f003c: GL mask 0x1; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, boot, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    5/24/13 4:20:57.367 PM WindowServer[93]: CGXPerformInitialDisplayConfiguration
    5/24/13 4:20:57.367 PM WindowServer[93]:   Display 0x04248b01: MappedDisplay Unit 1; Vendor 0x610 Model 0x9227 S/N 371851971 Dimensions 23.50 x 13.23; online enabled, Bounds (0,0)[2560 x 1440], Rotation 0, Resolution 1
    5/24/13 4:20:57.367 PM WindowServer[93]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    5/24/13 4:20:57.367 PM WindowServer[93]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3585,0)[1 x 1], Rotation 0, Resolution 1
    5/24/13 4:20:57.368 PM WindowServer[93]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3586,0)[1 x 1], Rotation 0, Resolution 1
    5/24/13 4:20:57.392 PM WindowServer[93]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000000f, accelerator 0x0000334f, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    5/24/13 4:20:57.393 PM WindowServer[93]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000000f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    5/24/13 4:20:57.396 PM loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    5/24/13 4:20:57.397 PM launchctl[97]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:20:57.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    5/24/13 4:20:57.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 120 124 128 132 136 140 149 153 157 161 165
    5/24/13 4:20:57.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 28:37:37:48:08:f1  MAC AUTH succeeded
    5/24/13 4:20:57.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    5/24/13 4:20:57.000 PM kernel[0]: AirPort: Link Up on en1
    5/24/13 4:20:57.000 PM kernel[0]: en1: BSSID changed to 28:37:37:48:08:f1
    5/24/13 4:20:57.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    5/24/13 4:20:58.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    5/24/13 4:20:58.525 PM digest-service[104]: label: default
    5/24/13 4:20:58.525 PM digest-service[104]: dbname: od:/Local/Default
    5/24/13 4:20:58.525 PM digest-service[104]: mkey_file: /var/db/krb5kdc/m-key
    5/24/13 4:20:58.525 PM digest-service[104]: acl_file: /var/db/krb5kdc/kadmind.acl
    5/24/13 4:20:58.527 PM digest-service[104]: digest-request: uid=0
    5/24/13 4:20:58.549 PM rpcsvchost[106]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    5/24/13 4:20:58.553 PM digest-service[104]: digest-request: init request
    5/24/13 4:20:58.556 PM digest-service[104]: digest-request: init return domain: BUILTIN server: JACQUELINES-MAC-MINI
    5/24/13 4:20:58.827 PM com.apple.usbmuxd[19]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    5/24/13 4:20:59.366 PM WindowServer[93]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    5/24/13 4:21:00.046 PM locationd[39]: NOTICE,Location icon should now be in state 0
    5/24/13 4:21:00.396 PM WindowServer[93]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04248b01 device: 0x10ed76a10  isBackBuffered: 1 numComp: 3 numDisp: 3
    5/24/13 4:21:07.824 PM airportd[81]: _doAutoJoin: Already associated to “[REDACTED]”. Bailing on auto-join.
    5/24/13 4:21:07.848 PM airportd[81]: _doAutoJoin: Already associated to “[REDACTED]”. Bailing on auto-join.
    5/24/13 4:21:11.000 PM kernel[0]: [BNBMouseDevice::init][75.19] init is complete
    5/24/13 4:21:11.896 PM awacsd[53]: Exiting
    5/24/13 4:21:12.000 PM kernel[0]: [BNBMouseDevice::handleStart][75.19] returning 1
    5/24/13 4:21:12.000 PM kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    5/24/13 4:21:12.000 PM kernel[0]: [AppleMultitouchDevice::start] entered
    5/24/13 4:21:16.000 PM kernel[0]: AmbrosiaAudioSupport: newUserClient connection attempt.
    5/24/13 4:21:21.000 PM kernel[0]: [AppleBluetoothHIDKeyboard][waitForHandshake][28-37-37-35-c5-f5] Timeout waiting for handshake
    5/24/13 4:21:21.000 PM kernel[0]: [AppleBluetoothHIDKeyboard][interruptChannelOpeningWL] final device setup failed
    5/24/13 4:21:21.000 PM kernel[0]: [AppleBluetoothHIDKeyboard][interruptChannelOpeningWL] Forcing closeDownServices
    5/24/13 4:21:21.000 PM kernel[0]: [AppleBluetoothHIDKeyboard][sendData][28-37-37-35-c5-f5] commandSleep in sendData returned an error
    5/24/13 4:21:23.924 PM configd[50]: subnet_route: write routing socket failed, Network is unreachable
    5/24/13 4:21:25.534 PM configd[50]: network changed: v4(en1+:XXX.XXX.XXX.XXX) DNS* Proxy+ SMB
    5/24/13 4:21:28.096 PM UserEventAgent[11]: Captive: en1: Not probing '[REDACTED]' (protected network)
    5/24/13 4:21:28.099 PM configd[50]: network changed: v4(en1:XXX.XXX.XXX.XXX) DNS Proxy SMB
    5/24/13 4:21:30.730 PM _cvmsroot[124]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    5/24/13 4:21:31.000 PM kernel[0]: [AppleBluetoothHIDKeyboard][sendData][28-37-37-35-c5-f5] Became inactive while sending data
    5/24/13 4:21:31.000 PM kernel[0]: [AppleBluetoothHIDKeyboard][setReportWL][28-37-37-35-c5-f5] Could not send DATA command via interrupt channel - 0xE00002D7
    5/24/13 4:21:33.578 PM _cvmsroot[128]: Unable to resolve hostname(s)
    5/24/13 4:21:33.765 PM ntpd[102]: proto: precision = 1.000 usec
    5/24/13 4:21:34.179 PM WindowServer[93]: Created shield window 0x9 for display 0x04248b01
    5/24/13 4:21:34.179 PM WindowServer[93]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:21:34.201 PM WindowServer[93]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:21:34.863 PM WindowServer[93]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:21:34.868 PM launchctl[131]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:21:34.886 PM launchctl[131]: com.apple.findmymacmessenger: Already loaded
    5/24/13 4:21:34.914 PM com.apple.SecurityServer[25]: Session 100003 created
    5/24/13 4:21:35.196 PM airportd[81]: _doAutoJoin: Already associated to “SkyNet”. Bailing on auto-join.
    5/24/13 4:21:35.626 PM loginwindow[38]: Login Window Started Security Agent
    5/24/13 4:21:35.774 PM SecurityAgent[141]: This is the first run
    5/24/13 4:21:35.775 PM SecurityAgent[141]: MacBuddy was run = 0
    5/24/13 4:21:36.144 PM launchctl[148]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:21:36.487 PM TabletDriver[137]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/ConsumerTouchDriver.app
    5/24/13 4:21:36.607 PM TabletDriver[137]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/TabletDriver.app
    5/24/13 4:21:36.687 PM locationd[156]: NOTICE,Location icon should now be in state 0
    5/24/13 4:21:36.691 PM UserEventAgent[132]: cannot find useragent 1102
    5/24/13 4:21:39.137 PM timezoned[160]: bootstrap_look_up failed (44e)
    5/24/13 4:21:39.342 PM timezoned[160]: bootstrap_look_up failed (44e)
    5/24/13 4:21:42.000 PM kernel[0]: [SendHCIRequestFormatted] ### ERROR: [0x0406] (Disconnect) -- Send request failed (err = 0x0010 (kBluetoothHCIErrorHostTimeout))
    5/24/13 4:21:42.000 PM kernel[0]: ### ERROR: send request failed (err=0x0010 (kBluetoothHCIErrorHostTimeout))
    5/24/13 4:21:44.107 PM configd[50]: network changed: v4(en1!:10.0.1.39) DNS+ Proxy SMB
    5/24/13 4:21:44.120 PM UserEventAgent[11]: Captive: en1: Not probing '[REDACTED]' (protected network)
    5/24/13 4:21:45.696 PM com.apple.launchd[1]: (com.apple.xprotectupdater[17]) Exited with code: 252
    5/24/13 4:22:15.683 PM launchctl[164]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:22:15.794 PM distnoted[166]: # distnote server agent  absolute time: 121.114577396   civil time: Fri May 24 16:22:15 2013   pid: 166 uid: 502  root: no
    5/24/13 4:22:34.512 PM launchctl[173]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:22:37.019 PM com.apple.SecurityServer[25]: Session 100005 created
    5/24/13 4:22:37.064 PM com.apple.SecurityServer[25]: Session 100006 created
    5/24/13 4:22:44.199 PM BezelServices 236.3[38]: -[DriverServices sendPreferencesToDevice:resetDefaults:] error: classPrefID (null), classPrefs (null)
    5/24/13 4:22:48.261 PM mdworker32[170]: CGSGetDisplayBounds: Invalid display 0x00000000
    5/24/13 4:22:49.134 PM mdworker32[170]: bootstrap_look_up2 failed with 0x44c
    5/24/13 4:22:49.000 PM kernel[0]: Sandbox: sandboxd(178) deny mach-lookup com.apple.coresymbolicationd
    5/24/13 4:22:49.731 PM SecurityAgent[141]: User info context values set for [COMPUTERNAME]
    5/24/13 4:22:50.910 PM SecurityAgent[141]: Login Window login proceeding
    5/24/13 4:22:51.272 PM loginwindow[38]: Login Window - Returned from Security Agent
    5/24/13 4:22:51.310 PM loginwindow[38]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    5/24/13 4:22:51.328 PM loginwindow[38]: USER_PROCESS: 38 console
    5/24/13 4:22:51.472 PM airportd[180]: _doAutoJoin: Already associated to “[REDACTED]”. Bailing on auto-join.
    5/24/13 4:22:51.586 PM com.apple.launchd[1]: ([0x0-0x6006].com.wacom.Consumer_TouchDriver[147]) Exited with code: 255
    5/24/13 4:22:51.588 PM coreservicesd[59]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=107
    5/24/13 4:22:51.590 PM com.apple.launchd[1]: (com.wacom.pentablet[137]) Exited with code: 255
    5/24/13 4:22:51.624 PM launchctl[181]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:22:51.640 PM com.apple.launchd.peruser.502[163]: (com.apple.gamed) Ignored this key: UserName
    5/24/13 4:22:51.640 PM com.apple.launchd.peruser.502[163]: (com.apple.gamed) Ignored this key: GroupName
    5/24/13 4:22:51.640 PM com.apple.launchd.peruser.502[163]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    5/24/13 4:22:51.645 PM loginwindow[38]: Connection with distnoted server was invalidated
    5/24/13 4:22:52.074 PM WindowServer[93]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    5/24/13 4:22:52.486 PM WindowServer[93]: Display 0x04248b01: MappedDisplay Unit 1; ColorProfile { 2, "Thunderbolt Display"}; TransferFormula (1.000000, 1.000000, 1.000000)
    5/24/13 4:22:52.603 PM blued[52]: kBTXPCUpdateUserPreferences gConsoleUserUID = 502
    5/24/13 4:22:52.895 PM com.apple.launchd.peruser.502[163]: (com.apple.afpstat-qfa[213]) Exited with code: 2
    5/24/13 4:22:52.959 PM launchctl[201]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:22:54.150 PM WindowServer[93]: CGXDisableUpdate: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    5/24/13 4:22:54.210 PM WindowServer[93]: reenable_update_for_connection: UI updates were finally reenabled by application "SystemUIServer" after 1.06 seconds (server forcibly re-enabled them after 1.00 seconds)
    5/24/13 4:22:55.096 PM com.apple.launchd.peruser.502[163]: (com.apple.mrt.uiagent[203]) Exited with code: 255
    5/24/13 4:22:55.108 PM NetworkBrowserAgent[235]: Starting NetworkBrowserAgent
    5/24/13 4:22:55.441 PM PenTabletDriver[214]: Could not find image named 'DKTouchRingToggleLeft'.
    5/24/13 4:22:55.443 PM PenTabletDriver[214]: Could not find image named 'DKTouchRingToggleRight'.
    5/24/13 4:22:55.460 PM 1PasswordAgent[215]: Starting 1PasswordAgent 3.8.21 #32009 built Apr 24 2013 16:09:31
    5/24/13 4:22:55.677 PM 1PasswordAgent[215]: Trying to load Localizable.strings [English] from the main bundle
    5/24/13 4:22:55.857 PM 1PasswordAgent[215]: Cannot find English version, using English localization for Localizable.strings
    5/24/13 4:22:57.107 PM 1PasswordAgent[215]: reloadAllObjects
    5/24/13 4:22:58.073 PM 1PasswordAgent[215]: Database (AGHtmlDatabase:file://localhost/Users/Winter/Dropbox/1PasswordSync/1Password.a gilekeychain/) load time [Cache]: 0.959+0.006 (2296 objects)
    5/24/13 4:23:00.049 PM ConsumerTouchDriver[241]: Could not find image named 'TouchRingToggleLEDSlitOff'.
    5/24/13 4:23:00.060 PM ConsumerTouchDriver[241]: Could not find image named 'DKTouchRingToggleLeft'.
    5/24/13 4:23:00.067 PM ConsumerTouchDriver[241]: Could not find image named 'DKTouchRingToggleRight'.
    5/24/13 4:23:00.890 PM apsd[219]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    5/24/13 4:23:01.720 PM TabletDriver[214]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/ConsumerTouchDriver.app
    5/24/13 4:23:02.398 PM coreservicesd[59]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyChildApplicationLaunch to notificationID=140
    5/24/13 4:23:03.753 PM TabletDriver[214]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/TabletDriver.app
    5/24/13 4:23:10.413 PM 1PasswordAgent[215]: GrowlApplicationBridgeRegistrationAttempt: Could not send open-document event to register this application with Growl because AESend returned -600/no eligible process with specified descriptor
    5/24/13 4:23:10.413 PM 1PasswordAgent[215]: Failed all attempts at registering
    5/24/13 4:23:11.507 PM CoreServicesUIAgent[256]: Error: qtn_file_apply_to_path error: Permission denied
    5/24/13 4:23:16.700 PM storeagent[252]: CKSoftwareMap: waitUntilMapIsLoadedAndPerformBlock:onDispatchQueue: timed out waiting for mdSemaphore
    5/24/13 4:23:24.378 PM com.apple.dock.extra[298]: Could not load bundle for Dock Extra key DockTile.docktileplugin
    5/24/13 4:23:24.379 PM Dock[190]: Failed to set up extra plugin. file://localhost/Applications/Calendar%20Plus.app/ Failed to get plugin class.
    5/24/13 4:23:25.000 PM kernel[0]: Sandbox: sandboxd(311) deny mach-lookup com.apple.coresymbolicationd
    5/24/13 4:23:26.097 PM launchctl[317]: launchctl: Dubious permissions on file (skipping): /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    5/24/13 4:23:26.791 PM quicklookd[282]: [QL] Can't get plugin bundle info at XTUM/ -- file://localhost/private/tmp/
    5/24/13 4:23:27.006 PM Delibar[251]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    5/24/13 4:23:27.851 PM mdworker[171]: Unable to talk to lsboxd
    5/24/13 4:23:29.000 PM kernel[0]: fsevents: watcher dbfseventsd (pid: 322) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    5/24/13 4:23:29.433 PM mdworker[174]: Unable to talk to lsboxd
    5/24/13 4:23:36.028 PM Finder[192]: [QL] Can't get plugin bundle info at XTUM/ -- file://localhost/
    5/24/13 4:23:38.110 PM MenuTab Pro for Facebook[347]: objc[347]: Class HandCursorButton is implemented in both /Applications/MenuTab Pro for Facebook.app/Contents/Frameworks/FIPLABNewsletter.framework/Versions/A/FIPLABNe wsletter and /Applications/MenuTab Pro for Facebook.app/Contents/MacOS/MenuTab Pro for Facebook. One of the two will be used. Which one is undefined.
    5/24/13 4:23:38.124 PM Tab for Google+ Pro[346]: objc[346]: Class HandCursorButton is implemented in both /Applications/Tab for Google+ Pro.app/Contents/Frameworks/FIPLABNewsletter.framework/Versions/A/FIPLABNewslet ter and /Applications/Tab for Google+ Pro.app/Contents/MacOS/Tab for Google+ Pro. One of the two will be used. Which one is undefined.
    5/24/13 4:23:38.486 PM com.apple.SecurityServer[25]: Session 100012 created
    5/24/13 4:23:39.707 PM Pin Pro for Pinterest[348]: objc[348]: Class HandCursorButton is implemented in both /Applications/Pin Pro for Pinterest.app/Contents/Frameworks/FIPLABNewsletter.framework/Versions/A/FIPLABN ewsletter and /Applications/Pin Pro for Pinterest.app/Contents/MacOS/Pin Pro for Pinterest. One of the two will be used. Which one is undefined.
    5/24/13 4:23:46.417 PM Mint QuickView[344]: Could not find image named 'accounts'.
    5/24/13 4:23:47.947 PM usernoted[197]: Connection does not have the proper entitlement (com.apple.developer.notificationcenter-identifiers) to connect on behalf of com.apple.sociald.twitterservice.Twitter. All communication will be denied.
    5/24/13 4:23:49.075 PM librariand[342]: MMe quota status changed: under quota
    5/24/13 4:24:06.102 PM Alfred 2[264]: [TIMER] 59.030677 seconds to initialise Alfred
    5/24/13 4:24:20.647 PM WindowServer[93]: CGXDisableUpdate: UI updates were forcibly disabled by application "Alfred 2" for over 1.00 seconds. Server has re-enabled them.
    5/24/13 4:24:20.781 PM WindowServer[93]: reenable_update_for_connection: UI updates were finally reenabled by application "Alfred 2" after 1.15 seconds (server forcibly re-enabled them after 1.00 seconds)
    5/24/13 4:24:32.998 PM prl_naptd[431]: Starting Parallels Network Daemon (proxy_mode)
    5/24/13 4:24:33.282 PM Parallels[451]: Set 'root:wheel' as owners for /Applications/Parallels Desktop.app/Contents//Library/Extensions/10.6
    5/24/13 4:24:33.591 PM Parallels[460]: Starting Parallels Dispatcher Service
    5/24/13 4:24:33.597 PM Parallels[464]: Parallels Dispatcher Service sucessfully started
    5/24/13 4:24:33.664 PM Parallels[467]: Loading kernel extension prl_usb_connect.kext
    5/24/13 4:24:35.496 PM Parallels[473]: Loading kernel extension prl_hypervisor.kext
    5/24/13 4:24:39.025 PM Parallels[482]: Loading kernel extension prl_hid_hook.kext
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypVtx.c:186   CPU is Intel
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypLowCache.c:201   Low cache initialized (0 kB for 0 VMs on 16384 MB)
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypApic.c:253   Host APIC base_msr 0xFEE00800 ver 0x15
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypVtd.c:3975   [vtdInit]
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ MacACPI.cpp:40   ACPI table DMAR is not found
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypAcpi.c:160   map: addr = 0xf0e0, size = 1024
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypAcpi.c:111   [acpiScanForRsdp] RSDP NOT found!
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypAcpi.c:111   [acpiScanForRsdp] RSDP NOT found!
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypAcpi.c:213   [acpiFindRootTablePointer] Can't find RSDP!
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypAcpi.c:309   [_acpiFindTableBySig] Not found root table!
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypVtd.c:3720   [vtdProcessDmarTable] Can't find DMAR table!
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypVtd.c:4014   [vtdInit] No VT-d hardware
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypSMBios.c:54   Failed to find SMBios entry point
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypModule.c:174   Parallels IPI vector 0x47 shared 0
    5/24/13 4:24:39.000 PM kernel[0]: /drv/ HypModule.c:185   Parallels Hypervisor 8.0.18483.860857 loaded.
    5/24/13 4:24:39.402 PM Parallels[488]: Loading kernel extension prl_netbridge.kext
    5/24/13 4:24:39.000 PM kernel[0]: /prl_hid/ Parallels HID Helper started.
    5/24/13 4:24:39.905 PM Parallels[494]: Loading kernel extension prl_vnic.kext
    5/24/13 4:24:40.000 PM kernel[0]: com.parallels.kext.prlnet 8.0.18483.860857 has started.
    5/24/13 4:24:40.666 PM Parallels[499]: Trying to load kernel extensions, exit status: 0
    5/24/13 4:24:40.000 PM kernel[0]: com.parallels.kext.vnic 8.0.18483.860857 has started.
    5/24/13 4:24:40.672 PM Parallels[502]: Starting Parallels networking...
    5/24/13 4:24:41.000 PM kernel[0]: com_parallels_kext_prl_vnic: created vnic0
    5/24/13 4:24:41.000 PM kernel[0]: com_parallels_kext_prl_vnic: created vnic1
    5/24/13 4:24:41.501 PM Parallels[509]: Parallels networking sucessfully started
    5/24/13 4:24:41.512 PM Parallels[511]: Restarting CiscoVPN
    5/24/13 4:24:41.565 PM SystemStarter[513]: Unknown service: CiscoVPN
    5/24/13 4:24:41.648 PM watchdog[525]: Start watching /Applications/Parallels Desktop.app/Contents//MacOS/prl_naptd (limit is 20)
    5/24/13 4:24:41.655 PM watchdog[531]: Start /Applications/Parallels Desktop.app/Contents//MacOS/prl_naptd start
    5/24/13 4:24:41.659 PM watchdog[533]: Child pid 532
    5/24/13 4:24:41.676 PM prl_naptd[532]: Starting Parallels Network Daemon
    5/24/13 4:24:41.758 PM prl_naptd[532]: vnic0: DHCP/NAT for XX.XXX.XX.1-10.XXX.XX.XXX netmask 255.255.255.0
    5/24/13 4:24:41.758 PM prl_naptd[532]: vnic1: DHCP for XX.XX.XXX.1-XX.XX.XXX.XXX netmask 255.255.255.0
    5/24/13 4:24:42.000 PM kernel[0]: vnic0: promiscuous mode enable failed
    5/24/13 4:24:42.000 PM kernel[0]: vnic1: promiscuous mode enable failed
    5/24/13 4:24:42.000 PM kernel[0]: /drv/ HypIoctls.c:608   Ioctl VT-d status: FFFFFFFD
    5/24/13 4:24:45.518 PM mDNSResponderHelper[536]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    5/24/13 4:24:45.518 PM mDNSResponderHelper[536]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument

    My apologies about the wall of text. After I made my original post, I thought maybe it would better to go back and put it in a pastebin instead. I was not able to edit that post once I sent it.
    In regards to your question, the  permissions on the
    /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist file is "read and write" for system, wheel and everyone.

  • How to troubleshoot runtime error (termination with short dump)

    hi all,
    i'm new comer on crm. and i got a problem when i accessed tx: segment builder (runtime error: termination with short dump).
    i've tried to troubleshoot this problem by set the java2 SDK GUI path on the client side.but it still didn't work.then i tried to activate the automation trace (just perform the procedure which wrote down on error analysis), but i confused when tried to read the trace file and still didn't get the point. FYI, i 'm using sap logon 710 and SAP crm 5.0.
    what i've should to do?
    should i have to re install my sap logon?
    i really need ur assistance!
    best regards,  
    agung

    Hi Agung,
    Please refer the following SAP Note for your information:
    <b>SAP Note: 990263</b>
    Best Regards,
    Johnny.
    Reward with points if it helps.

  • How do I resolve error 1310 while installing crystal report version for visual studio 2010.

    How do I resolve error 1310. I try to install crystal version for visual studio 2010, but I got this error message. Error 1310. Error writing to file. mcf80.dll.verify that you have access to that directory. My pc is window 7 (32 bit). Please I need help
    urgently to work with this program in my system successfully. Please help.

    Hello Dorohidea,
    Do you mean that when you install crystal report in virtual studio 2010, you receive the error message about error 1310?
    Please take a look at the following KB.
    Support for Crystal Reports for Visual Studio
    https://support.microsoft.com/kb/317789/en-us
    In Visual Studio 2010, to create a Crystal Reports project or Web site or to import existing projects or Web sites that were created by using older versions of Visual Studio or Crystal Reports, you must first install a version of Crystal Reports that is
    compatible with Visual Studio 2010.
    For more information about how to use Crystal Reports in Visual Studio 2010, visit the following SAP Crystal Reports website:
    http://www.sap.com/crystalreports/vs2010
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • TS3694 how to troubleshoot error code 1015?

    how to troubleshoot error code 1015?...i iwant to update my iphone 3g 8gb to 4.2 ios then suddenly error 1015 just pop up...

    Easy. That error means that your phone is jailbroken. You will have to go elswhere to get help.

  • I kept having errors on my Apple ID with frostycup=1 and STATUS_CODE_ERROR. How to troubleshoot them?

    How to troubleshoot them and eliminate the frostycup=1 and STATUS_CODE_ERROR.

    Hey Lee,
    To make sure we are on the same page you are trying to access and download content the Mac App Store. From the time of your post, I do know that the multiple online stores were having issues with accessing content. Any time you have issues with connecting to any store, take a look at the link below to check the status of all of Apple’s services. If you cannot access that content now let me know. 
    Apple Services, Stores, and iCloud
    https://www.apple.com/support/systemstatus/
    Take care,
    -Norm G.  

  • HOW TO: Resolve 'An error has occurred: Request timed out' issue

    Post Author: fmi-charles
    CA Forum: Crystal Reports
    After doing a new install of BOE Server software, encountered a problem viewing long running reports on-demand.  InfoView displayed: 'An error has occurred: Request timed out.' Couldn't find answers anywhere (not even on this site) that would help me resolve this issue.  So, I decided to post the resolution.
    The error from this post's subject line is displayed when viewing on-demand reports that run for longer than 90 seconds.  If the report was scheduled, it wouldn't have a problem - only viewing on-demand.  This issue transpires with the following setup:   * M$ Windows 2003 Server   * IIS v.6   * .NET 2.0.50727   * BO Enterprise Server XI R2 SP2   * M$ SQL Server 2005
    The resolution is to find the 'machine.config' file for your current version of the .NET Framework (e.g. C:\WINDOWS\Microsoft.NET\Framework \v2.0.50727\CONFIG\machine.config).  Edit the file and place the following into a new line within the 'system.web' section: <httpRuntime executionTimeout="3600"/>
    The timeout is set in seconds.
    Then, restart IIS using the command line.

    Hello Cristinel -
    Thanks for send your inputs but I have solved this error.
    I would like that if you solve my this question.
    My project's URL is http://www.lampslightingandmore.com/
    I want to put w3stander HTML logo in my website.
    I have done many error but some error i could not understand.
    please click on below url and send me your suggestion how to solve this errors?
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.lampslightingandmore.com%2F
    I hope you send your best inputs.
    Thanks

  • How to fix this error message The backup disk image "/Volumes/AirPort Disk/FARES DEL VALLE's iMac.sparsebundle" could not be accessed (error -1).

    how to fix this error message The backup disk image “/Volumes/AirPort Disk/FARES DEL VALLE’s iMac.sparsebundle” could not be accessed (error -1).

    The troubleshooting C17 is the specific article.
    http://pondini.org/TM/Troubleshooting.html
    This is generally a Lion error.. and you will need 5.6 utility to get access to the disk area.
    So download the real utility. Run it instead of v6 toy version.
    http://support.apple.com/kb/DL1482
    Go to the manual setup, disk page and click on disconnect all users.. that will unmount all users connected to the disk and allow it to start working. But there are a number of other issues that are possible cause. Pondini lists some of them.

  • How to fix imessage error on ios8.1.2 .. Already reset network still same issue please help

    How to fix imessage error on ios8.1.2 .. Already reset network still same issue please help

    Hi ashmanryan36,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like you are having trouble with iMessage. It looks like you have already done some troubleshooting. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support
    You did not mention what the error was but since you are running 8.1.2 and update is available and my help. 
    Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support
    Cheers,
    Mario

  • How to fix faceboom error 2018?

    How to fix facebook error 2018? In the search portion of my facebook app. I always get this error saying "the facebook server has returned an unknown error and is not able to fulfill your request (2018)." I dont know what to do anymore. Thanks in advance!

    Hi and Welcome to the Community!
    So far, I've only been able to find this one KB that discusses that error:
    KB25378 Facebook 2000 series error codes in Facebook for BlackBerry smartphones
    Hopefully it contains something useful! There also are multiple existing threads on this site that discuss that exact error...your review of those might prove useful, and a search of this site, using the error message or code, should reveal all applicable existing threads to you.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I resolve error code -54 in iTunes? I am using the latest iTunes. No new updates are available.

    How can I resolve error code -54 in iTunes? I am using the latest iTunes. No new updates are available. I'm using iTunes 11.3 on a MacBook Pro, OS X 10.6.8. I can't save my library in iTunes, the message just keeps popping up.

    From an OS9 reference, error -54 is a software lock on a file or a permissions error. (Although there is no formal list of OSX error code some of the old codes still apply to OSX .)
    First, try simply restarting your computer.
    Try quitting iTunes, then deleting the .xml (not .itl !) version of the library file in the iTunes folder (iTunes will generate a new one).
    iTunes Library cannot be saved (Error -54) - https://discussions.apple.com/thread/1912814 - various things to try.
    Unknown error (-54) while syncing ipod - https://discussions.apple.com/thread/1082953 - problem was locked files
    Why does iTunes keep showing a -54 error when I sync my iPad? - https://discussions.apple.com/thread/3727114
    Error -54 possibly related to Touch Copy - https://discussions.apple.com/thread/3727114 - cleared by deleting preferences on iPad.
    iTunes: Missing folder or incorrect permissions may prevent authorization - http://support.apple.com/kb/ts1277
    Troubleshooting permissions issues in Mac OS X - http://support.apple.com/kb/HT2963

  • How to Troubleshoot iTunes 10.6 Download Failure in Firefox 14.0.1 ??

    How to Troubleshoot iTunes 10.6 Download Failure in Firefox 14.0.1 ??
    posted Thursday, 02 August 2012 at 07:43AM PDT, by Matthew B. | @QHereKidSF
    SIMPLY-PUT !!
    I am desperate to know of any possible workaround solutions that might resolve inexplicable failure(s) to download iTunes 10.6 (http://www.apple.com/itunes/download/) in Mozilla Firefox 14.0.1 Browser for Windows 7 (64-bit) OS...!!
    FURTHER DETAILED !!
    In an aimlessly ill-informed effort to troubleshoot the "Please install Apple Application Support" ERROR Message reported subsequent to my numerous attempts to "repair/install" the most recent and otherwise previously up-to-date versions of Apple QuickTime & iTunes on my HP Pavilion dv4 Entertainment Notebook PC, running on the Windows 7 (64-bit) OS... I mistakenly (perhaps?) thought it wise to attempt to execute a complete uninstall/reinstall of both QuickTime & iTunes. Oops... YIKES !!
    Somewhere along the knotty entangled threads of my most circuitous web-research, as I browsed for information and instructional resources regarding proper procedure for (re)-installing Apple Application Support (amongst other peripheral software programs provided by Apple, Inc. as integral technical components essential to seamless & successful installation, application and operation of the most current/up-to-date versions of Apple QuickTime & Apple iTunes), I seem to recall reading explicit suggestions from well-rated community support contributors to proceed with the aforementioned course of action...
    Unfortunately, now that I no longer have either Apple QuickTime or iTunes currently installed on my Win7OS HP Pavilion Notebook PC, I continue consistently to fail at initializing either a functional download or installation solely of iTunes 10.6 -- so far!!
    When I link to the Apple iTunes 10.6 Download URL (listed herein, above!) and click the (blue) DOWNLOAD NOW Button located near mid-center of the left-sidebar in the presumably appropriate/correct browser tab window (fully framed and immediately visible in maximized view, on my screen), what seems then to occur is pretty much what one could only image/explain &/or describe as "zip/zilch, nothing/nada, absolute silence, stillness: a blatantly obvious failure to initiate functional download of anything at all, whatsoever...!!"
    Not a single hint of code or even a mere bleep/beep/blink/blip in my Win7OS or HP Pavilion Monitor Display appears before for me; ultimately, suggesting without any real certainty whatsoever that a download of the iTunes 10.6 Software Installation Package has perhaps initialized, successfully...!!?
    WHAT TO DO? What to do? ...ARGGHHH !!
    I am desperate to find a workaround solution with which to troubleshoot and ideally resolve these persistent difficulties I continue to encounter when attempting to download iTunes 10.6 via Mozilla Firefox 14.0.1 on the Win7OS (64-bit) of my HP Pavilion dv4 Entertainment Notebook PC!!
    Might there possibly be anyone -- anyone, at all!! -- out there, somewhere amidst the knotty entangled nets broadly cast far'cross the endlessly great and expansive waves of this worldwide cyberspace we share, who perhaps would know of a proper workaround fix with which I might troubleshoot my current web-computing technology crisis??
    If indeed so, please do come diving face-first forward toward me... with any decent amount of valuably trustworthy information, instruction, advice, guidance, support or even encouragement that you might be readily willing and able to provide!! Please, please...!!?
    Any worthwhile, effective assistance that's provided to me (in as short an order as possible) would be most sincerely appreciated & acknowledged widely across the web by me... with resounding cries of humble recognition, admiration, and deeply indebted gratitude!! At least, that's only as much as I can so far surmise to guarantee, at this point -- thus far and so moving forward!!
    Yes, indeed...!! That's a promise which I intend to keep; should all issues be resolved well much for and in my favor, as well as much, much sooner rather than far-too much later -- hopefully, even by the end of the coming day; one might say... *sigh* Hehe. WINK/GRIN...
    Boy o'boy, now... That sure would delight me to the nth-infinite degree, indeed! "As heck a'heaven-high: FOR SURE!!" I dare say...
    <Edited By Host>

    Do you have all pop-up blockers disabled?
    FYI: Please lose all the formatting in your posts.Simply makes it very difficult to follow.

  • How do i resolve Error #2032 ?

    Hi,
    I am using the following code to launch SWF file. When i launch the page, getting "Error #2032" from GUI.
    Could you please advise if any changes needs to be done in the following file?
    Do you think this is environmental issue?
    Please let us know how to troubleshoot the issue.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>Reports</title>
    <meta name="google" value="notranslate" />      
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- Include CSS to eliminate any default margins/padding and set the height of the html element and
    the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as
    the percentage of the height of its parent container, which has to be set explicitly. Fix for
    Firefox 3.6 focus border issues. Initially, don't display flashContent div so it won't show
    if JavaScript disabled.
    -->
    <style type="text/css" media="screen">
    html, body { height:100%; }
    body { margin:0; padding:0; overflow:auto; text-align:center;
    background-color: #ffffff; }
    object:focus { outline:none; }
    #flashContent { display:none; }
    </style>
            <script type="text/javascript" src="swfobject.js"></script>
        </head>
        <body>
            <script type="text/javascript">
    var swfVersionStr = "10.2.0";
    // To use express install, set to playerProductInstall.swf, otherwise the empty string.
                var xiSwfUrlStr = "playerProductInstall.swf";
    var flashvars = {};
    var params = {};
    params.quality = "high";
    params.bgcolor = "#ffffff";
    params.allowscriptaccess = "sameDomain";
    params.allowfullscreen = "true";
    params.wmode="transparent"; // set proper z-index so swf won't go on top of mega menu
    var attributes = {};
    attributes.id = "TestMain";
    attributes.name = "TestMain";
    attributes.align = "middle";
    swfobject.embedSWF(
    "/acsview/pages/flex/TestMain.swf", "flashContent",
                    "100%", "100%",
                    swfVersionStr, xiSwfUrlStr,
                    flashvars, params, attributes);
    // JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
    swfobject.createCSS("#flashContent", "display:block;text-align:left;");
    if (swfobject.ua.ie && swfobject.ua.win)
    swfobject.addLoadEvent(
    function()
    var app = swfobject.getObjectById("TestMain");
    if (app)
    app.focus();
            </script>
            <!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough
                 JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show
    when JavaScript is disabled.
            -->
            <div id="flashContent">
    <p>
    To view this page ensure that Adobe Flash Player version
                    10.2.0 or greater is installed.
                </p>
            </div>
    <noscript>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%" id="index">
    <param name="movie" value="TestMain.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="true" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="TestMain.swf" width="100%" height="100%">
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="true" />
    <!--<![endif]-->
    <!--[if gte IE 6]>-->
    <p>
    Either scripts and active content are not permitted to run or Adobe Flash Player version
    11.1.0 or greater is not installed.
    </p>
    <!--<![endif]-->
    <!--
    <a href="http://www.adobe.com/go/getflashplayer">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" />
    </a>
    -->
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    </noscript>
       </body>
    </html>
    We added crossdomain.xml file in the web application and still not working. The following is content of the crossdomian.xml file.
    <?xml version="1.0"?>
    <cross-domain-policy>
    <allow-http-request-headers-from domain="" headers="" secure="false" />
    <allow-access-from domain="*" secure="false" />
    </cross-domain-policy>
    Thanks in advance,
    Parimala

    Your question relates to Flash, not Shockwave (despite the name conflict), so you should ask your question on this forum

  • How do i resolve Error #2032 ? Could anyone help on this?

    @Hi,
    I am using the following code to launch SWF file. When i launch the page, getting "Error #2032" from GUI.
    Could you please advise if any changes needs to be done in the following file?
    Do you think this is environmental issue?
    Please let us know how to troubleshoot the issue.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>Reports</title>
    <meta name="google" value="notranslate" />      
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- Include CSS to eliminate any default margins/padding and set the height of the html element and
    the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as
    the percentage of the height of its parent container, which has to be set explicitly. Fix for
    Firefox 3.6 focus border issues. Initially, don't display flashContent div so it won't show
    if JavaScript disabled.
    -->
    <style type="text/css" media="screen">
    html, body { height:100%; }
    body { margin:0; padding:0; overflow:auto; text-align:center;
    background-color: #ffffff; }
    object:focus { outline:none; }
    #flashContent { display:none; }
    </style>
    <script type="text/javascript" src="swfobject.js"></script>
    </head>
    <body>
    <script type="text/javascript">
    var swfVersionStr = "10.2.0";
    // To use express install, set to playerProductInstall.swf, otherwise the empty string.
    var xiSwfUrlStr = "playerProductInstall.swf";
    var flashvars = {};
    var params = {};
    params.quality = "high";
    params.bgcolor = "#ffffff";
    params.allowscriptaccess = "sameDomain";
    params.allowfullscreen = "true";
    params.wmode="transparent"; // set proper z-index so swf won't go on top of mega menu
    var attributes = {};
    attributes.id = "TestMain";
    attributes.name = "TestMain";
    attributes.align = "middle";
    swfobject.embedSWF(
    "/acsview/pages/flex/TestMain.swf", "flashContent",
    "100%", "100%",
    swfVersionStr, xiSwfUrlStr,
    flashvars, params, attributes);
    // JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
    swfobject.createCSS("#flashContent", "display:block;text-align:left;");
    if (swfobject.ua.ie && swfobject.ua.win)
    swfobject.addLoadEvent(
    function()
    var app = swfobject.getObjectById("TestMain");
    if (app)
    app.focus();
    </script>
    <!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough
    JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show
    when JavaScript is disabled.
    -->
    <div id="flashContent">
    <p>
    To view this page ensure that Adobe Flash Player version
    10.2.0 or greater is installed.
    </p>
    </div>
    <noscript>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%" id="index">
    <param name="movie" value="TestMain.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="true" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="TestMain.swf" width="100%" height="100%">
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="true" />
    <!--<![endif]-->
    <!--[if gte IE 6]>-->
    <p>
    Either scripts and active content are not permitted to run or Adobe Flash Player version
    11.1.0 or greater is not installed.
    </p>
    <!--<![endif]-->
    <!--
    <a href="http://www.adobe.com/go/getflashplayer">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" />
    </a>
    -->
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    </noscript>
    </body>
    </html>
    We added crossdomain.xml file in the web application and still not working. The following is content of the crossdomian.xml file.
    <?xml version="1.0"?>
    <cross-domain-policy>
    <allow-http-request-headers-from domain="" headers="" secure="false" />
    <allow-access-from domain="*" secure="false" />
    </cross-domain-policy>
    Thanks in advance,
    Parimala
    Message was edited by: Parimaladevi Vadivel

    pwillener wrote:
    This is the Shockwave Player forum.
    Sorry, I was mistaken about that.  Still, the Flash or AS forum would be better.

Maybe you are looking for

  • Fixed Asset Import fails

    HI All, I am getting the below error message when I import a fixed asset master data. '' Import End; Number of imported asset: 0; Number of processed assets: 0; Error: 1". I have gone through SAP note 876670 which explains about this sort of errors a

  • How to use stored Procedure in PLD

    Hi All, I have create a procedure for converting number to words in SQL. I want to call this procedure in PLD. Is this possible? Thanks & Regards, Sheetal

  • Iweb transfer to another mac?

    I've read the current posts but am still having difficulties. I have published the site from iWeb from my mac laptop but want to work on it from my imac where most of my photos are. Both computers are using snow leopard and ilife 09.  I went to the u

  • Applications installs 'clashing' during OSD

    I have discovered that my Office 2010 installation, via an 'Applications' package fails if I also deploy .Net Framework 4.5 via a 'Package' package during an OSD TS using MDT.  What would be the best logs to look at, and in which order to discover wh

  • Generate calender date in column wise

    Hi, I need to get a report based on Year and Month as a input, calender date must get populate. if user inputs values are JAN AND 2011 as the input it must generate the report as 1 2 3 4 5 .... 30 based on the number of days it has it must populate t