Exception at  offline

Hi
when im openeing my project im getting the following exception:
exception in parse java.lang.StringIndexOutOfBoundsException: String index out of range: -2
exception in parse java.lang.StringIndexOutOfBoundsException: String index out of range: -1
**************88
im using two combobox and when im compiling it evrything working fine
is any one has any idea what kind of problem can cause it.
Thanks

watch the values that you are trying to parse, you probably have a null, or a value that is not well formed for what you are trying to do.
I do not have a specific case that will throw that exception (I am not familiar enough with Java to quote extensively what causes each exception), but you can easily derive what is happening by seeing the value/values that are causing your errors.

Similar Messages

  • Failed to convert Catalog (PS Album 2.0 to PSE 7.0)

    When attempting to convert My Catalog from Photoshop Album 2 to PSE 7, the following prompt is reported "The conversion operation failed. try repairing the catalog with the software that created it and retry conversion"
    I have attempted to repair/uninstall & reinstall PS Album but the problem still remains. From tips picked up from the other posts, I can confirm there are no missing files in the original catalog. I have also attempted without success to repair and optimise the catalog via File\catalog and remove all 'Creations' from the catalog.
    The pse-conversion file states "unable to process tag p:6 "Shared - Incoming", a=000b0004 fa=04 ia=0b parent=0 next=7 firstchild=0
    p:7 -> discarding top level history tag" (or words similar to) on several occasions. What does this mean/is it relevant?/how can I correct it? (see attached log conversion file)
    Failing to resolve the above problem will mean retagging over 4000 images - a propect I really wish to avoid!
    Any suggestions would be greatly appreciated.

    I was having problems with the conversion from PSA2 to PSE7, mainly with 2 things. First, I was gettings some "poison files" as suddenly one year of photos went from ca 4 GB to 13 GB in size.
    The second problem and my biggest problem was that I had burnt a couple of years to a dvd. In PSA2 these files were removed from my HDD, there were thumbnail files stored in a folder called /Proxies/Photos 2004-2006 and in the organiser these files showed up as low resolution thumbanils and with a gold disc symbol, showing that they were stored offline. If I double clicked on a picture the dvd disc was asked for.
    Upon upgrading to PSE7 everything was converted correctly except my offline files. In PSE7 there is a symbol showing that files is offline, but the picture is not there ie it is not connected. Following the advice in this thread I tried instead to first upgrade to PSE5, but the same problem occurs. Funny enough, the "posion files" does not seem to be there, 2008 is now 4 GB is size .
    My question is why does PSE not upgrade my offline pictures? How do remedy this? Should I reconnect the missing files to the Proxies folder or to the dvd that contains the files? If I choose either of these will that not restore the files on to my HDD or just the link?
    Another thing. Can any of the versions of PSE burn to DVD-DL or is it still only DVDR that is allowed?

  • Repository Administration Utility

    When installing a Repository I get an error message after clicking the 'start' button.
    ckrau61
    ERROR
    You do not have SELECT privilege on sys.v_$PARAMETERS view.
    This process cannot proceed.
    I have fully DBA privileges and Administrator privileges on my PC.
    Any suggestions?
    Thanks

    Dear Richard,
    I believe you should try creating a separate user to be the Repository Owner and not grant that account the "DBA" role (it is important that the repository owners account should not have the privilege SELECT ANY TABLE if you are installing a repository.)
    First log on to the machine that hosts the Oracle8i database to be used for the repository. Under Windows NT, be sure to log on as the local administrator.
    Now, ensure that the following minimum settings (assuming single repository instance and for up to four concurrent users) are satisfied in your INIT.ORA file:
    compatible = 8.1.6
    max_enabled_roles = 30
    sort_area_size = 262144
    sort_area_retained_size = 65536
    hash_area_size = 1048576
    optimizer_index_caching = 50
    optimizer_index_cost_adj = 25
    shared_pool_size = 32000000
    db_block_buffers = 2000
    open_cursors = 1000
    processes = 100
    db_file_multiblock_read_count=16 # for a 4K Oracle block size
    db_file_multiblock_read_count=32 # for a 2K Oracle block size
    db_file_multiblock_read_count=8 # for a 8K Oracle block size
    Next, login to SQL* Plus as SYS and create a separate tablespace for the rollback segment you will be using for repository creation process:
    create tablespace DES_RBS datafile 'c:\Oradata\jcat\des_rbs.dbf' size 10M reuse
    autoextend ON next 10M
    default storage (initial 256K next 256K minextents 2 pctincrease 0);
    Now create a rollback segment in this tablespace, bring it online, and take all other rollback segments (except SYSTEM) offline:
    create rollback segment DES_RB1 tablespace DES_RBS
    storage (initial 1M next 1M minextents 3 optimal 4M);
    alter rollback segment DES_RB1 online;
    alter rollback segment SYSROL offline;
    alter rollback segment RBS01 offline;
    alter rollback segment RBS02 offline;
    alter rollback segment RBS03 offline;
    alter rollback segment RBS04 offline;
    alter rollback segment RBS05 offline;
    alter rollback segment RBS06 offline;
    alter rollback segment RBS07 offline;
    alter rollback segment RBS08 offline;
    alter rollback segment RBS09 offline;
    alter rollback segment RBS10 offline;
    alter rollback segment RBS11 offline;
    alter rollback segment RBS12 offline;
    alter rollback segment RBS13 offline;
    alter rollback segment RBS14 offline;
    alter rollback segment RBS15 offline;
    alter rollback segment RBS16 offline;
    alter rollback segment RBS17 offline;
    alter rollback segment RBS18 offline;
    alter rollback segment RBS19 offline;
    alter rollback segment RBS20 offline;
    Then, while connected as SYS, create the role CK_ORACLE_REPOS_OWNER for system privileges:
    @ D:\Oracle\Ora6i\repadm61\utl\ckrorole.sql
    Now create a user account for the Repository Owner and grant that account the necessary privileges :
    create user DES6i identified by des6i
    default tablespace TOOLS
    temporary tablespace TEMP;
    grant EXECUTE on DBMS_LOCK to DES6i;
    grant EXECUTE on DBMS_PIPE to DES6i;
    grant CREATE TABLE to DES6i;
    grant CREATE VIEW to DES6i;
    grant CREATE PROCEDURE to DES6i;
    grant CREATE SYNONYM to DES6i;
    grant CREATE SEQUENCE to DES6i;
    grant SELECT on SYS.V_$NLS_PARAMETERS to DES6i with grant option;
    grant SELECT on SYS.V_$PARAMETER to DES6i;
    grant SELECT on DBA_ROLLBACK_SEGS to DES6i;
    grant SELECT on DBA_SEGMENTS to DES6i;
    grant CREATE ANY SYNONYM to DES6i;
    grant DROP ANY SYNONYM to DES6i;
    grant CREATE PUBLIC SYNONYM to DES6i;
    grant DROP PUBLIC SYNONYM to DES6i;
    grant CK_ORACLE_REPOS_OWNER to DES6i;
    grant CONNECT, RESOURCE to DES6i;
    Now verify that the proper Net8 connect string (database alias) is present in the TNSNAMES.ORA within the <Repository_Home>\Net80\Admin directory and then launch the Repository Administrator Utility.
    Under Tablespaces, check whether the SYSTEM tablespace is fragmented (value for Largest Extent is significantly less than that for Free Space). If the SYSTEM tablespace is fragmented, perform a full database export and re-import using the current version of the Export and Import utilities (EXP and IMP).
    You should now be able to create the repository without a hitch.
    Ciao!

  • WLST Remote script.

    Hi Guys,
    I am new to this forum. Can you please suggest me how to start a managed server of a weblogic which is installed in physical server1 to be started using a WLST script from another physical server2. I used weblogic.jar, wlfullclient.jar in the classpath but its still giving me an error called Java exception WLST OffLine Class not found.
    Can you guys please suggest me the way to start a weblogic server from a remote physical server using WLST.
    Many Thanks!!

    First set your environment properly in order to run WLST. In the directory <WebLogicServer-Home>/server/bin a file called setWLSEnv is present. This sets your Path and Classpath. (weblogic.jar in the classpath should be enough).
    A WLST script to start servers is as follows:
    print 'START NODE MANAGER';
    startNodeManager(verbose='true', NodeManagerHome='Location where the nodemanager.properties file is located', ListenPort='Your Port Number', ListenAddress='your host name');
    print 'CONNECT TO NODE MANAGER';
    nmConnect('username','password','your host','port','DomainName','DomainLocation','ssl (for example)');
    print 'START ADMIN SERVER';
    nmStart('AdminServer');
    nmServerStatus('AdminServer');
    print 'CONNECT TO ADMIN SERVER';
    connect('username','password');
    print 'START MANAGED SERVER';
    start('ServerName','Server');
    nmServerStatus('ServerName');
    print 'START CLUSTER';
    start('ClusterName','Cluster');
    nmServerStatus('ServerName1');
    nmServerStatus('ServerName2');
    You probably only need the stuff to start your admin server.

  • ADOBE OFFLINE FORM-.An exception  CX_SOAP_FAULT occurred  Message no. TPDA

    HI GUYS,
    WE HAVE DEVELOPED AN OFFLINE  INTERACTIVE ADOBE FORM WHICH USES WEBSERVICES TO GET DATA FROM SAP WHICH IS WORKING FINE IN DEV SERVER AFTER MOVING IT TO QUALITY IT IS NOT WORKING ... WE FOUND CX_SOAP_FAULT ERROR IN DEBUGGING MODE OF WEBSERVICE... BECAUSE OF WHICH IT IS NOT PULLING DATA FROM SAP.......
    CAN ANY ONE HELP US REGARDING THIS
    WHAT IS THIS ERROR .....An exception (CX_SOAP_FAULT) occurred Message no. TPDA430
    THANKS
    TOUSIF
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms", and never use all upper case when posting.
    Edited by: Thomas Zloch on Apr 28, 2011 5:59 PM

    Hi Surjith,
    This happen randomly, it does not specify on a particular user. We have more than 100 transaction successfully created. However only some fails.
    Any idea?
    Thanks
    Regards,
    Bryan

  • HT2500 without changing settings, iMac mail V4.6, 1)will not save password 2)takes accounts offline 3)will not except password 4)will not send mail from accounts every time.     What happen?

    without changing settings, iMac mail V4.6,  1)will not save password   2)takes accounts offline  3)will not except password   4)will not send mail from accounts every time.
        What happen?  How do I correct this?

    Hi Nuch1,
    I found an article that is contains very thorough Mail troubleshooting steps:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    You can use that article to figure out what part of the email "ecosystem" is the cause of the issue, and it can also help you attempt to resolve it.
    Hope that helps,
    David

  • I just updated to 10.9.4 and all my mail accounts are now offline.  Unable to send or receive mail.  nothing else was done except for updating to 10.9.4

    I just updated to 10.9.4 and all my mail accounts are now offline.  Unable to send or receive mail.  nothing else was done except for updating to 10.9.4

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the behest of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 ` route -n get default|awk '/e:/{print $2}' ` 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;5p;6p;8p;12p;' ' {sub(/^ +/,"")};NR==6;NR==13&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/root/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/ { next;} /(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/ { next;} /%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]" "$1;b=b$1;} END { if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|POSIX sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' -i4TCP:0-1023 com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;A2 0 $((N1+1)) 2;C0;A1 0 $N1 1;C0;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start Time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • When i connect my hp d110 to a network, it says to turn the printer on or it is offline.

    My HP D110 is connected to a wireless network.  Everything is set up correctly.  When I tell it to print, it says I am off line or to turn the printer on.  It is on and all reorts are good or pass.  How do I turn the printer on...except with button on front of the printer?

    It sounds like the printer is on.
    Where is the offline message displayed?
    What operating system does the computer use?
    What brand and model is the router?
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • PowerPivot refresh error with data feed from sharepoint list with empty exception information

    Hi,
    My Powpivot refreshing error seems to be different from what others already experienced.
    Scenario:
    Constructed an external data source in the format of Http://<server_IP>/sites/<mysitecollection>/_vti_bin/listdata.svc
    selected one table with some of the needed columns in the next step
    Create calculate colums etc.
    Create pivot tables etc.
    All worked well offline
    Upload the workbook into PowerPivot Gallery
    Reference it from a page through Excel Web Service webpart allowing manual refresh
    The refresh always reports failure with the named external data source
    I opend the log file in C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS and located the following error messages:
    ASPPHOST::ShowEngineError: Out of line object 'DataSource', referring to ID(s) 'f8939b694cae', has been specified but has not been used。The following exception occurred while the managed IDbCommand interface was being used: .
    Please note in the above message, NO detailed exception message was given. In other words,
    the exception information is empty.
    I checked as many things as I possibly could includin the security accounts etc. All seem to be right. But this empty exception got me stuck here.
    What could possibly go wrong? Any help will be appreciated.
    Thanks.

    Hello,
    Here is a good article regarding Where to get information about data refresh failures for your reference, please see:
    http://social.technet.microsoft.com/wiki/contents/articles/3870.troubleshooting-powerpivot-data-refresh.aspx
    In addition, which credential option you're configured for the PowerPivot data refresh in SharePoint farm? You can go through the following articles regarding configure the PowerPivot data refresh:
    Configure the PowerPivot Unattended Data Refresh Account (PowerPivot for SharePoint):
    http://technet.microsoft.com/en-us/library/ff773327.aspx
    Configure Stored Credentials for PowerPivot Data Refresh (PowerPivot for SharePoint):
    http://technet.microsoft.com/en-us/library/ee210671.aspx
    Hope this helps.
    Regards,
    Elvis Long
    TechNet Community Support

  • First world problem: exceptionally long boot time

    no complaint, just wondering if boot-time can be improved.  Any of you who might enjoy sifting through a system.log for what might account for ostensibly lengthening boot times, I give you my most recent log and thank you in advance.
    Mar 26 10:42:27 localhost bootlog[0]: BOOT_TIME 1395848547 0
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.appstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
              Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.authd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.bookstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.eventmonitor" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.install" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.iokit.power" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.mail" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.MessageTracer" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.performance" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.securityd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:43:03 --- last message repeated 6 times ---
    Mar 26 10:42:59 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Mar 26 10:42:59 localhost kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Mar 26 10:42:59 localhost kernel[0]: vm_page_bootstrap: 1989152 free pages and 91616 wired pages
    Mar 26 10:42:59 localhost kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    Mar 26 10:42:59 localhost kernel[0]: zone leak detection enabled
    Mar 26 10:42:59 localhost kernel[0]: "vm_compressor_mode" is 4
    Mar 26 10:42:59 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar 26 10:42:59 localhost kernel[0]: standard background quantum is 2500 us
    Mar 26 10:42:59 localhost kernel[0]: mig_table_max_displ = 74
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=1 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=5 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar 26 10:42:59 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar 26 10:42:59 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar 26 10:42:59 localhost kernel[0]: MAC Framework successfully initialized
    Mar 26 10:42:59 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar 26 10:42:59 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Mar 26 10:42:59 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar 26 10:42:59 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0024
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    Mar 26 10:42:59 localhost kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration begin ]
    Mar 26 10:42:59 localhost kernel[0]: console relocated to 0xf80030000
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration end, bridges 7, devices 16 ]
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration begin ]
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration end, bridges 8, devices 22 ]
    Mar 26 10:42:59 localhost kernel[0]: TBIOBlockStorageDriver: super::probe failed
    Mar 26 10:42:59 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 7c6d62fffefaec1c; max speed s800.
    Mar 26 10:42:59 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    Mar 26 10:42:59 localhost kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    Mar 26 10:42:59 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Mar 26 10:42:59 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar 26 10:42:59 localhost kernel[0]: rooting via boot-uuid from /chosen: C9DA172B-D4C5-3F3E-A13E-2B4BCEEFB011
    Mar 26 10:42:59 localhost 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>
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar 26 10:42:59 localhost kernel[0]: BTCOEXIST off
    Mar 26 10:42:59 localhost kernel[0]: BRCM tunables:
    Mar 26 10:42:59 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar 26 10:42:59 localhost kernel[0]: com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
    Mar 26 10:42:59 localhost kernel[0]: com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
    Mar 26 10:42:59 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    Mar 26 10:42:59 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Mar 26 10:42:59 localhost kernel[0]: hfs: mounted Macintosh HDD on device root_device
    Mar 26 10:42:59 localhost kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=68[empdaemon] final status 0x0, allowing (remove VALID) page
    Mar 26 10:42:59 localhost kernel[0]: VM Swap Subsystem is ON
    Mar 26 10:42:30 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar 26 10:42:30 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar 26 10:42:52 localhost com.apple.launchd[1] (com.backblaze.bzserv[69]): Exited with code: 2
    Mar 26 10:42:52 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:42:58 localhost hidd[47]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Mar 26 10:42:58 localhost hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar 26 10:43:00 localhost com.apple.SecurityServer[25]: Session 100000 created
    Mar 26 10:43:01 localhost distnoted[71]: # distnote server daemon  absolute time: 32.923825084   civil time: Wed Mar 26 10:42:58 2014   pid: 71 uid: 0  root: yes
    Mar 26 10:43:01 localhost distnoted[71]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:02 localhost com.apple.launchd[1] (com.backblaze.bzserv[77]): Exited with code: 2
    Mar 26 10:43:02 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:05 localhost kernel[0]: Waiting for DSMOS...
    Mar 26 10:43:05 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar 26 10:43:05 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar 26 10:43:07 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc[45]): Exited with code: 1
    Mar 26 10:43:07 localhost com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    Mar 26 10:43:08 localhost kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    Mar 26 10:43:08 localhost kernel[0]: vboxdrv: fAsync=0 offMin=0xba0 offMax=0xe4c
    Mar 26 10:43:08 localhost kernel[0]: VBoxDrv: version 4.1.12 r77245; IOCtl version 0x190000; IDC version 0x10000; dev major=18
    Mar 26 10:43:08 localhost kernel[0]: fNumVRAMBlocks is 4
    Mar 26 10:43:08 localhost kernel[0]: AGC: 3.4.35, HW version=1.9.21, flags:0, features:20600
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: Previous Shutdown Cause: 5
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Mar 26 10:43:08 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Mar 26 10:43:08 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8218 FirmwareVersion - 0x0042
    Mar 26 10:43:08 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: NVDAStartup: Official
    Mar 26 10:43:08 localhost kernel[0]: NVDANV50HAL loaded and registered
    Mar 26 10:43:08 localhost kernel[0]: init
    Mar 26 10:43:08 localhost kernel[0]: probe
    Mar 26 10:43:08 localhost kernel[0]: APExtframeBuffer starting: max resolution 1920x1080
    Mar 26 10:43:08 localhost kernel[0]: Initializing Framebuffer.
    Mar 26 10:43:08 localhost kernel[0]: start
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4000
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar 26 10:43:08 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xe500 -- 0x3000 -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: IOMemoryDescriptor 0x1f0dcc19d9ba810f prepared read only
    Mar 26 10:43:08 localhost kernel[0]: Backtrace 0xffffff80006b9dbe 0xffffff7f8228e0e1 0xffffff7f82298fe2 0xffffff8000692f1f 0xffffff8000692adf 0xffffff800068e6b9 0xffffff8000693633
    Mar 26 10:43:08 localhost kernel[0]: Kernel Extensions in backtrace:
    Mar 26 10:43:08 localhost kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f87470000->0xffffff7f8752ffff
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f859e9000
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85dd8000
    Mar 26 10:43:08 localhost kernel[0]: IOMemoryDescriptor 0x1f0dcc19d9b7f60f prepared read only
    Mar 26 10:43:08 localhost kernel[0]: Backtrace 0xffffff80006b9dbe 0xffffff7f8228e2db 0xffffff7f82298fe2 0xffffff8000692f1f 0xffffff8000692adf 0xffffff800068e6b9 0xffffff8000693633
    Mar 26 10:43:08 localhost kernel[0]: Kernel Extensions in backtrace:
    Mar 26 10:43:08 localhost kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f87470000->0xffffff7f8752ffff
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f859e9000
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85dd8000
    Mar 26 10:43:08 localhost kernel[0]: DSMOS has arrived
    Mar 26 10:43:11 localhost kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0de1,0300,41e1,0000]
    Mar 26 10:43:11 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar 26 10:43:11 localhost kernel[0]: AppleBCM5701Ethernet [en0]: Link down (womp disabled, proxy idle)
    Mar 26 10:43:12 localhost com.apple.launchd[1] (com.backblaze.bzserv[94]): Exited with code: 2
    Mar 26 10:43:12 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:13 localhost kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0101,0000,41e1,0000]
    Mar 26 10:43:16 localhost com.apple.SecurityServer[25]: Entering service
    Mar 26 10:43:16 localhost kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar 26 10:43:16 localhost mds[37]: (Normal) FMW: FMW 0 0
    Mar 26 10:43:16 localhost defaults[97]:
              The domain/default pair of (/System/Library/Frameworks/Message.framework/Resources/Info, PluginCompatibilityUUID) does not exist
    Mar 26 10:43:16 localhost blued[60]: hostControllerOnline - Number of Paired devices = 0, List of Paired devices = (null)
    Mar 26 10:43:16 localhost mDNSResponder[38]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    Mar 26 10:43:16 localhost digest-service[79]: label: default
    Mar 26 10:43:16 localhost digest-service[79]:           dbname: od:/Local/Default
    Mar 26 10:43:16 localhost digest-service[79]:           mkey_file: /var/db/krb5kdc/m-key
    Mar 26 10:43:16 localhost digest-service[79]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: uid=0
    Mar 26 10:43:16 localhost loginwindow[41]: Login Window Application Started
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: netr probe 0
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: init request
    Mar 26 10:43:16 localhost awacsd[62]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Mar 26 10:43:16 localhost awacsd[62]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar 26 10:43:16 localhost UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar 26 10:43:16 localhost aosnotifyd[65]: aosnotifyd has been launched
    Mar 26 10:43:16 localhost aosnotifyd[65]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:17 localhost UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:17 localhost WindowServer[103]: Server is starting up
    Mar 26 10:43:17 localhost stackshot[21]: Timed out waiting for IOKit to finish matching.
    Mar 26 10:43:18 localhost apsd[64]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 26 10:43:18 localhost mDNSResponder[38]: D2D_IPC: Loaded
    Mar 26 10:43:18 localhost mDNSResponder[38]: D2DInitialize succeeded
    Mar 26 10:43:18 localhost mDNSResponder[38]:   4: Listening for incoming Unix Domain Socket client requests
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901B804D60 CPU123.local. (AAAA) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901B8051F0 2.E.A.9.A.6.E.F.F.F.5.3.0.B.A.5.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901A006B60 CPU123.local. (Addr) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901A006FF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Mar 26 10:43:18 localhost mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 localhost configd[58]: network changed: DNS*
    Mar 26 10:43:18 CPU123.local configd[58]: setting hostname to "CPU123.local"
    Mar 26 10:43:18 CPU123.local mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 CPU123.local networkd[122]: networkd.122 built Aug 24 2013 22:08:46
    Mar 26 10:43:18 CPU123.local locationd[43]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 26 10:43:18 CPU123.local locationd[43]: NBB-Could not get UDID for stable refill timing, falling back on random
    Mar 26 10:43:18 CPU123.local airportd[66]: airportdProcessDLILEvent: en1 attached (up)
    Mar 26 10:43:18 CPU123 kernel[0]: createVirtIf(): ifRole = 1
    Mar 26 10:43:18 CPU123 kernel[0]: in func createVirtualInterface ifRole = 1
    Mar 26 10:43:18 CPU123 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Mar 26 10:43:18 CPU123 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar 26 10:43:18 CPU123 kernel[0]: Created virtif 0xffffff8018f9b400 p2p0
    Mar 26 10:43:18 CPU123.local mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 CPU123.local systemkeychain[95]: done file: /var/run/systemkeychaincheck.done
    Mar 26 10:43:18 CPU123.local locationd[43]: Location icon should now be in state 'Inactive'
    Mar 26 10:43:18 CPU123.local digest-service[79]: digest-request: init return domain: PCPC1 server: CPU123 indomain was: <NULL>
    Mar 26 10:43:18 CPU123.local locationd[43]: locationd was started after an unclean shutdown
    Mar 26 10:43:19 CPU123.local UserEventAgent[11]: Registered Workstation service - CPU123 [7c:6d:62:8c:3b:ac]._workstation._tcp.
    Mar 26 10:43:22 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[127]): Exited with code: 2
    Mar 26 10:43:22 CPU123 com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:25 CPU123.local configd[58]: network changed: v4(en0+:192.168.1.64) DNS+ Proxy+ SMB+
    Mar 26 10:43:24 CPU123.local ntpd[129]: proto: precision = 1.000 usec
    Mar 26 10:43:24 CPU123 com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 6 seconds
    Mar 26 10:43:25 --- last message repeated 1 time ---
    Mar 26 10:43:25 CPU123 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    Mar 26 10:43:25 CPU123 kernel[0]: [AGPM Controller] build GPUDict by Vendor8086Device0046
    Mar 26 10:43:25 CPU123 kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0a29
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 retained (2 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 released (1 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 retained (2 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: init_page_flip: page flip mode is on
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: VirtualBox Support and USB Drivers (144) did not complete successfully
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: The following StartupItems failed to start properly:
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: /Library/StartupItems/VirtualBox
    Mar 26 10:43:25 CPU123.local SystemStarter[131]:  - execution of Startup script failed
    Mar 26 10:43:25 CPU123.local apsd[64]: Unrecognized leaf certificate
    Mar 26 10:43:26 CPU123.local apsd[64]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 26 10:43:26 CPU123 kernel[0]: APExternalDisplay Memory Reserved: 66392064 bytes
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 36 modes for display 0x00000000 [30, 6]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: mux_initialize: Mode is dynamic
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 36 modes for display 0x00000000 [30, 6]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: WSMachineUsesNewStyleMirroring: false
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x04272901: GL mask 0x3; bounds (0, 0)[1440 x 900], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 1, Rotation 0
              UUID 0x8a96a568c33550779a382c64e81094d2
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: WSSetWindowTransform: Singular matrix
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x04272901: GL mask 0x3; bounds (0, 0)[1440 x 900], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 1, Rotation 0
              UUID 0x8a96a568c33550779a382c64e81094d2
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXPerformInitialDisplayConfiguration
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x04272901: Unit 1; Alias(1, 0x3); Vendor 0x610 Model 0x9ca4 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXMuxBoot: Boot normal
    Mar 26 10:43:26 CPU123.local com.apple.kextd[12]: kext com.eltima.ElmediaPlayer.kext  158009000 is in exception list, allowing to load
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000001, accelerator 0x00003523, unit 0, caps QEX|MIPMAP, vram 288 MB
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000001, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000006, accelerator 0x00004ca3, unit 1, caps QEX|MIPMAP, vram 256 MB
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000006, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor enabled for tile size [256 x 256]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXGLInitMipMap: mip map mode is on
    Mar 26 10:43:26 CPU123.local loginwindow[41]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:27 CPU123.local com.apple.kextd[12]: kext com.eltima.ElmediaPlayer.kext  158009000 is in exception list, allowing to load
    Mar 26 10:43:27 CPU123 kernel[0]: Elmedia Player KEXT version 4.2 (1.58)
    Mar 26 10:43:27 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:27 CPU123.local launchctl[159]: com.apple.findmymacmessenger: Already loaded
    Mar 26 10:43:27 CPU123.local com.apple.SecurityServer[25]: Session 100006 created
    Mar 26 10:43:27 CPU123.local UserEventAgent[160]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:28 CPU123.local loginwindow[41]: Setting the initial value of the magsave brightness level 1
    Mar 26 10:43:28 CPU123.local loginwindow[41]: Login Window Started Security Agent
    Mar 26 10:43:28 CPU123.local SecurityAgent[168]: This is the first run
    Mar 26 10:43:28 CPU123.local SecurityAgent[168]: MacBuddy was run = 0
    Mar 26 10:43:28 CPU123.local WindowServer[103]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f8c51c12c40) - enabling OpenGL
    Mar 26 10:43:28 CPU123.local WindowServer[103]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:28 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:29 --- last message repeated 1 time ---
    Mar 26 10:43:29 CPU123.local parentalcontrolsd[178]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:43:29 CPU123.local awacsd[62]: Exiting
    Mar 26 10:43:30 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[180]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 26 10:43:30 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[180]): Job failed to exec(3) for weird reason: 2
    Mar 26 10:43:30 CPU123.local mtmfs[35]: mount succeeded for /Volumes/MobileBackups
    Mar 26 10:43:30 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b3058e00 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Mar 26 10:43:30 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b3058e00 ********** Created snapshot backup index
    Mar 26 10:43:34 CPU123 kernel[0]: nspace-handler-set-snapshot-time: 1395848616
    Mar 26 10:43:34 CPU123.local com.apple.mtmd[36]: Set snapshot time: 2014-03-26 10:43:36 -0500 (current time: 2014-03-26 10:43:34 -0500)
    Mar 26 10:43:37 CPU123.local SecurityAgent[168]: User info context values set for prl
    Mar 26 10:43:42 CPU123.local parentalcontrolsd[183]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:43:42 CPU123.local SecurityAgent[168]: Login Window login proceeding
    Mar 26 10:43:44 CPU123.local loginwindow[41]: Login Window - Returned from Security Agent
    Mar 26 10:43:44 CPU123.local loginwindow[41]: USER_PROCESS: 41 console
    Mar 26 10:43:45 CPU123 kernel[0]: AppleKeyStore:Sending lock change 0
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188]: Background: Aqua: Registering new GUI session.
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.divx.agent.postinstall): Unknown key: LimitToSessionType
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.spotify.webhelper): Unknown key: SpotifyPath
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar 26 10:43:45 CPU123.local launchctl[191]: com.apple.pluginkit.pkd: Already loaded
    Mar 26 10:43:45 CPU123.local launchctl[191]: com.apple.sbd: Already loaded
    Mar 26 10:43:45 CPU123.local distnoted[193]: # distnote server agent  absolute time: 81.676468602   civil time: Wed Mar 26 10:43:45 2014   pid: 193 uid: 1689351527  root: no
    Mar 26 10:43:45 CPU123.local WindowServer[103]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Mar 26 10:43:47 CPU123.local sharingd[214]: Starting Up...
    Mar 26 10:43:47 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:47 CPU123.local UserEventAgent[192]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:47 CPU123.local coreaudiod[204]: 2014-03-26 10:43:47.604230 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    Mar 26 10:43:47 CPU123 com.apple.launchd.peruser.1689351527[188] (com.akamai.single-user-client[253]): assertion failed: 13C64: launchd + 105965 [425516B6-9F3E-342F-87B3-EC461EBA6A1A]: 0xd
    Mar 26 10:43:47 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=245[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    Mar 26 10:43:48 CPU123.local com.apple.SecurityServer[25]: Session 100008 created
    Mar 26 10:43:48 CPU123 xpcproxy[280]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:43:48 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:43:48 CPU123.local com.apple.IconServicesAgent[276]: IconServicesAgent launched.
    Mar 26 10:43:48 CPU123.local WiFiKeychainProxy[223]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Mar 26 10:43:48 CPU123.local WiFiKeychainProxy[223]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Mar 26 10:43:49 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:43:49 CPU123 accountsd[275]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:51 CPU123.local com.apple.SecurityServer[25]: Session 100010 created
    Mar 26 10:43:53 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.mrt.uiagent[230]): Exited with code: 255
    Mar 26 10:43:54 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf01830 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Mar 26 10:43:55 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf5dc40 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Mar 26 10:43:55 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf5cc70 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Mar 26 10:43:55 CPU123 xpcproxy[297]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:43:57 CPU123.local backupd[293]: Property list invalid for format: 200 (property lists cannot contain NULL)
    Mar 26 10:43:57 CPU123.local SocialPushAgent[225]: ApplePushService: APSConnection being used without a delegate queue
    Mar 26 10:43:58 CPU123.local SystemUIServer[201]: <SOBuddyHelper: 0x7fda8bf744d0> Timed out waiting for value for MenuExtraBuddyListSubmenuThreshhold
    Mar 26 10:43:58 CPU123 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Mar 26 10:44:00 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:44:02 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 2.95 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:44:04 CPU123.local SystemUIServer[201]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 26 10:44:04 CPU123.local SystemUIServer[201]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 26 10:44:05 CPU123.local parentalcontrolsd[328]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:05 CPU123.local com.apple.SecurityServer[25]: Session 100013 created
    Mar 26 10:44:06 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x115] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x117] flags: 0x8 binding: FileInfoBinding [0x405] - extension: jpeg, UTI: public.jpeg, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: jpeg, UTI: public.jpeg, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x119] flags: 0x8 binding: FileInfoBinding [0x215] - extension: png, UTI: public.png, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: png, UTI: public.png, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x407] - extension: band, UTI: com.apple.garageband.project, fileType: BNDL.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: band, UTI: com.apple.garageband.project, fileType: BNDL request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x11d] flags: 0x8 binding: FileInfoBinding [0x217] - extension: mp3, UTI: public.mp3, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: mp3, UTI: public.mp3, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:14 CPU123.local syncdefaultsd[256]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    Mar 26 10:44:18 CPU123.local com.apple.SecurityServer[25]: Session 100014 created
    Mar 26 10:44:20 CPU123.local parentalcontrolsd[340]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:21 CPU123 com.apple.launchd[1] (com.apple.quicklook.satellite.583BC995-4C31-42ED-8DEF-A65F59D0E086[330]): Exited: Killed: 9
    Mar 26 10:44:24 CPU123 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4000 ****
    Mar 26 10:44:45 CPU123 netsession_mac[253]: netsession_mac(253,0xb031d000) malloc: *** auto malloc[253]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Mar 26 10:44:46 CPU123.local parentalcontrolsd[353]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:50 CPU123.local distnoted[364]: # distnote server agent  absolute time: 146.341909721   civil time: Wed Mar 26 10:44:50 2014   pid: 364 uid: 89  root: no
    Mar 26 10:44:52 CPU123.local sudo[362]:      prl : TTY=unknown ; PWD=/ ; USER=prl ; COMMAND=/usr/local/MacGPG2/bin/gpg-agent --daemon
    Mar 26 10:44:53 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:44:56 CPU123.local Creative Cloud[247]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    Mar 26 10:44:57 CPU123.local com.apple.SecurityServer[25]: Session 100016 created
    Mar 26 10:45:01 CPU123 netsession_mac[253]: netsession_mac(253,0xb039f000) malloc: *** auto malloc[253]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Mar 26 10:45:03 CPU123.local secd[286]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar 26 10:45:03 CPU123.local secd[286]:  securityd_xpc_dictionary_handler WiFiKeychainProx[223] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar 26 10:45:03 CPU123.local Mint QuickView[274]: Could not find image named 'accounts'.
    Mar 26 10:45:09 CPU123 Creative Cloud[247]: objc[247]: Class HTTPHeader is implemented in both /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib and /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib. One of the two will be used. Which one is undefined.
    Mar 26 10:45:09 CPU123 Creative Cloud[247]: objc[247]: Class ProxyManager is implemented in both /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib and /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib. One of the two will be used. Which one is undefined.
    Mar 26 10:45:11 CPU123.local com.apple.internetaccounts[297]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    Mar 26 10:45:18 --- last message repeated 1 time ---
    Mar 26 10:45:17 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x163] flags: 0x8 binding: FileInfoBinding [0x349] - extension: JPG, UTI: public.jpeg, fileType: ????.
    Mar 26 10:45:17 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:128 scale: 1
    Mar 26 10:45:18 CPU123.local com.apple.NotesMigratorService[375]: Joined Aqua audit session
    Mar 26 10:45:18 CPU123.local com.apple.internetaccounts[297]: An instance 0x7f948d80d7d0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
              <NSKeyValueObservationInfo 0x7f948d80e6b0> (
              <NSKeyValueObservance 0x7f948d80e7e0: Observer: 0x7f948d805ba0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9000843b, Property: 0x7f948d80e680>
    Mar 26 10:45:19 CPU123.local com.apple.internetaccounts[297]: An instance 0x7f948b732090 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
              <NSKeyValueObservationInfo 0x7f948b7321b0> (
              <NSKeyValueObservance 0x7f948b732140: Observer: 0x7f948b730ef0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9000843b, Property: 0x7f948d80e680>
    Mar 26 10:45:19 CPU123.local sandboxd[346] ([331]): storeagent(331) deny file-read-data /Users/prl/Library/Preferences/com.apple.WebFoundation.plist
    Mar 26 10:45:25 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:45:26 CPU123.local com.apple.internetaccounts[297]: *** Warning: Timed out waiting for one or more plugins.
    Mar 26 10:45:27 CPU123.local com.apple.internetaccounts[297]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    Mar 26 10:45:29 --- last message repeated 1 time ---
    Mar 26 10:45:29 CPU123.local sandboxd[346] ([222]): EvernoteHelper(222) deny mach-lookup com.apple.locationd.desktop.synchronous
    Mar 26 10:45:33 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:45:34 CPU123.local com.apple.dock.extra[373]: <NSXPCConnection: 0x7ffe9272a6c0>: received an undecodable message (no exported object to receive message). Dropping message.
    Mar 26 10:45:40 CPU123.local Mail[376]: Loaded GPGMail 2.1
    Mar 26 10:45:41 CPU123.local Mail[376]: Debug Log enabled: NO
    Mar 26 10:45:44 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:45:45 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:45:46 CPU123.local Dropbox[284]: PyObjCPointer created: at 0x7b5fc88 of type {OpaqueJSContext=}
    Mar 26 10:45:56 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:46:10 CPU123.local WindowServer[103]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    Mar 26 10:46:12 CPU123 kernel[0]: fsevents: watcher dbfseventsd (pid: 397) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    Mar 26 10:46:27 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/ XPCServices/com.apple.internetaccounts.xpc/
    Mar 26 10:46:28 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServic es/com.apple.WebKit.WebContent.xpc/
    Mar 26 10:46:28 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.doc k.extra.xpc/
    Mar 26 10:46:35 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/XPCServi ces/com.apple.ShareKitHelper.xpc/
    Mar 26 10:46:42 CPU123.local defaults[409]:
              The domain/default pair of (/System/Library/Frameworks/Message.framework/Resources/Info, PluginCompatibilityUUID) does not exist
    Mar 26 10:46:48 CPU123.local Dropbox[284]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    Mar 26 10:46:50 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 54.66 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:47:02 CPU123 com.apple.launchd.peruser.1689351527[188] (com.realnetworks.realplayerdownloaderagent.128160[285]): Exited: Killed: 9
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Session 100020 created
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Killing auth hosts
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Session 100016 destroyed
    Mar 26 10:47:41 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b4033800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.ZWIMlq
    Mar 26 10:47:48 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:47:49 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:47:58 CPU123.local com.apple.SecurityServer[25]: Session 100003 created
    Mar 26 10:49:44 CPU123 xpcproxy[464]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:49:46 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:49:48 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:49:55 CPU123.local syncdefaultsd[470]: Fixing push token
    Mar 26 10:50:18 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:50:20 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:50:21 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=476[ksadmin] final status 0x0, allowing (remove VALID) page
    Mar 26 10:50:23 CPU123.local sandboxd[346] ([376]): Mail(376) deny file-issue-extension /Applications/Google Chrome.app
    Mar 26 10:50:31 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=481[ksadmin] final status 0x0, allowing (remove VALID) page
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:53 CPU123.local launchservicesd[55]: Someone attempted to start application App:"Microsoft Word" asn:0x0-38038 pid:495 refs=6 @ 0x7faf49d55240 but it still has _kLSApplicationLockedInStoppedStateKey=true, so it is is staying stopped. : LASApplication.cp #2468 SetApplicationInStoppedState() q=LSSession 100006/0x186a6 queue
    Mar 26 10:50:56 CPU123.local sandboxd[346] ([376]): Mail(376) deny file-issue-extension /Applications/Microsoft Office 2011/Microsoft Word.app
    Mar 26 10:51:09 CPU123.local Google Chrome Helper[480]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    Mar 26 10:51:09 CPU123.local fontd[218]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    Mar 26 10:51:09 CPU123.local Google Chrome Helper[480]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    Mar 26 10:51:25 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:51:25 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "Microsoft Word" after 1.23 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:52:47 CPU123.local Google Chrome Helper[520]: Process unable to create connection because the san

    Remove "CleanMyMac" by following the first set of instructions on this page. If you have a different version of the product, the procedure may be different. Do not drag the CleanMyMac application to the Trash.
    Back up all data before making any changes.

  • Application crashes in Windows 7 64bit made in Labview 2010 sp1 f2 with Fault module name%3A lvrt.dll%2C version 10.0.0.4033 and exception code c0000005

    I build an application exe and then its installer along with run time environment.
    The installers instals the application correctly but when I try to execute the application, I get an error that application has crashed and Windows must close it down or search for solutions online with this additional information for the crash. 
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: AGMS.exe
    Application Version: 1.3.0.0
    Application Timestamp: 4c24e8f5
    Fault Module Name: lvrt.dll
    Fault Module Version: 10.0.0.4033
    Fault Module Timestamp: 4c9273f4
    Exception Code: c0000005
    Exception Offset: 00005310
    OS Version: 6.1.7601.2.1.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt
    I am using labview 2010 sp1 32 bit on a 64-bit machine, with the following specs
    Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533)
    Language: English (Regional Setting: English)
    System Manufacturer: Dell Inc.
    System Model: Dell System XPS L502X
    BIOS: Default System BIOS
    Processor: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (8 CPUs), ~2.0GHz
    Memory: 8192MB RAM
    Available OS Memory: 8106MB RAM
    Page File: 3457MB used, 12753MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode
    The exe /application runs fine on my PC but when I try to run it on another PC it crashes. The other PC has similar specs as given below
    Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.140303-2144)
    Language: English (Regional Setting: English)
    System Manufacturer: LENOVO
    System Model: HuronRiver Platform
    BIOS: Default System BIOS
    Processor: Intel(R) Core(TM) i3-2330M CPU @ 2.20GHz (4 CPUs), ~2.2GHz
    Memory: 4096MB RAM
    Available OS Memory: 4010MB RAM
    Page File: 1359MB used, 6658MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode
    I tried another machine, 64 bit of course, as I want to deploy my application on a 64bit PC, but still got the same problem.
    This other machine was from HP, iCore 3 (4 CPUs) 2.2GHz, 4GB RAM and running Windows Professional 64 bit.
    Now as I see it, it could be a Run-time environment mis-match error.
    For this I tried installing a 64 bit LVRTE from NI, but still no sucess.
    I checked DEP, for all 3 PCs and it was set to the following
    Turn on DEP for essential Windows programs and services only (first option).
    I am confused. I can not find a solution for this and it is really frustrating.

    But I am assuming that when I make the installer, the 32-bit Run Time Engine is appened with the installer, as show below
    Since from the picture you can see its including the support installers from '\Program Files (x86)\'
    The application runs queries to fetch data from database in SQL server 2008, and for that I am using a Microsoft SQL Native Client 2008 R2 64 bit ( this is the only version that installs on either PC, even the one on which I developed my LV Application).
    I am not using any driver, only toolkits for reports - and for that I un-checked the "Remove unused polymorphic VI instances" when making the executable, otherwise LV throws up an exception that share variable are not being included.
    Yes I did reboot every time after I ran the installation.
    Still getting the same error.

  • Mac Pro RAID 5 disk goes offline frequently in a random way. What can be causing this odd behavior?

    Hi dudes,
    I installed recently two Mac Pro RAID cards inside their corresponding Mac Pro systems. Four 2 TB Hitachi SATA disks are contained inside each system, and configured as RAID 5. Yes, the operating system is installed on this RAID 5 volume in order to get the highest performance of the array, taking advantage of the RAID 5 protection (Autodesk Smoke runs in each system; this application works only with uncompressed video in real time). I already had tested both systems keeping separated the boot disk just for the operating system, and making the RAID 5 volume just with three 2 TB disks, but the performance was slow on both systems.
    The performance is now very good, but unfortunately, in both systems happens that sometimes one of the disks goes offline with no apparent reason. The RAID Utility immediately reports the failure and it is mandatory to declare as spare the disk that went offline. Then the rebuild process begins, but in the meantime, the performance goes down in a noticeable way. Sometimes it is even worse, because the disk disappears completely. Then, it is mandatory to turn off the system, and boot it up again, in order to see in the RAID Utility the missing disk, which needs to be declared as spare in order to be reintegrated into the RAID 5 volume in a slow rebuilding process.
    Some important remarks: this very new Mac Pro systems do not have the iPass cable (at least apparently; I already disassembled completely one of these systems). This cable is mentioned in one Mac RAID card manual that I found over the internet. The diagrams do not match exactly with the Mac Pro nor the Mac Pro RAID board. I did not find a proper iPass connector in any of the Mac Pro RAID cards (?!). So, my guess is that currently the communication between the system and its Mac Pro RAID card is just by means of the internal bus. I think that if the iPass connection were mandatory, the RAID Utility would report it with a noticeable error message. Please advise.
    I think that these Mac Pro RAID cards need a firmware upgrade, in order to be able to work fine with big SATA drives. Again, please advise.
    Thanks in advance from Mexico.
    Sincerely,
    Martin Ponce de Leon

    Hi Grant,
    Thank you for your prompt response. The manual is a PDF document issued by Apple and it seems OK, but no updated to the latest Mac Pro system and Mac Pro RAID. I do not find the link where I found this manual. The systems belong to one of our customers. As far as I remember, in the printed manual included with the boards, it is not mentioned anything about the iPass cable, just about the battery cable. Do you know where can I get a PDF manual of the latest Mac Pro RAID card and the latest Mac Pro system? This client is far from our offices. So, I would prefer a PDF copy of this manual.
    The drives that have gone offline, once they are back, are reported in a good status in the RAID Utility. Besides that, I have tested them in another system in our facilites, and all of them work fine. So, my guess is that the high capacity drives are not yet supported by the Mac Pro RAID card, or it requires a firmware update.
    They do need to have in the same volume OS and video storage because three disks do no provide a good performance (they need also RAID 5), but four disks work fine... excepting when one disk is missing. Please advise. Thank you.
    Best Regards,
    Martin

  • Service remains in "offline*" state - how to reset it?

    Hello.
    Since two days ago, I've got a problem with one of the sevices on a S10 Sparc system.
    --($:~)-- svcs -a | grep \*
    offline*       Jan_08   svc:/application/oracle/database:RACE002
    --($:~)-- svcs -xv svc:/application/oracle/database:RACE002
    svc:/application/oracle/database:RACE002 (Oracle database)
    State: offline since  8. Januar 2008 03:43:55 CET
    Reason: Start method is running.
       See: http://sun.com/msg/SMF-8000-C4
       See: man -M /usr/share/man -s 5 ora-smf
       See: /var/svc/log/application-oracle-database:RACE002.log
    Impact: This service is not running.
    --($:~)-- tail /var/svc/log/application-oracle-database:RACE002.log
    database RACE002 is OPEN.
    [ Jan  7 03:41:45 Method "start" exited with status 0 ]
    [ Jan  8 03:42:52 Stopping because service disabled. ]
    [ Jan  8 03:42:52 Executing stop method ("/lib/svc/method/ora-smf stop database RACE002") ]
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    [ Jan  8 03:43:00 Method "stop" exited with status 0 ]
    [ Jan  8 03:43:54 Enabled. ]
    [ Jan  8 03:43:55 Executing start method ("/lib/svc/method/ora-smf start database RACE002") ]Ie., the service is in "offline*" since Jan 8.
    How do I get the service to change into any other different state, be it "online", "maintenance" or "offline"?
    --($:~)-- svcs -xv svc:/application/oracle/database:RACE002
    svc:/application/oracle/database:RACE002 (Oracle database)
    State: offline since  8. Januar 2008 03:43:55 CET
    Reason: Start method is running.
       See: http://sun.com/msg/SMF-8000-C4
       See: man -M /usr/share/man -s 5 ora-smf
       See: /var/svc/log/application-oracle-database:RACE002.log
    Impact: This service is not running.
    --($:~)-- sudo svcadm disable svc:/application/oracle/database:RACE002
    --($:~)-- svcs -xv svc:/application/oracle/database:RACE002
    svc:/application/oracle/database:RACE002 (Oracle database)
    State: offline since  8. Januar 2008 03:43:55 CET
    Reason: Start method is running.
       See: http://sun.com/msg/SMF-8000-C4
       See: man -M /usr/share/man -s 5 ora-smf
       See: /var/svc/log/application-oracle-database:RACE002.log
    Impact: This service is not running.
    --($:~)-- svcs svc:/application/oracle/database:RACE002
    STATE          STIME    FMRI
    offline*       Jan_08   svc:/application/oracle/database:RACE002
    --($:~)-- sudo svcadm mark maintenance svc:/application/oracle/database:RACE002
    --($:~)-- svcs svc:/application/oracle/database:RACE002
    STATE          STIME    FMRI
    offline*       Jan_08   svc:/application/oracle/database:RACE002
    --($:~)-- sudo svcadm clear svc:/application/oracle/database:RACE002
    svcadm: Instance "svc:/application/oracle/database:RACE002" is not in a maintenance or degraded state.
    --($:~)-- sudo svcadm refresh svc:/application/oracle/database:RACE002
    --($:~)-- svcs svc:/application/oracle/database:RACE002
    STATE          STIME    FMRI
    offline*       Jan_08   svc:/application/oracle/database:RACE002
    --($:~)-- sudo svcadm restart svc:/application/oracle/database:RACE002
    --($:~)-- svcs svc:/application/oracle/database:RACE002
    STATE          STIME    FMRI
    offline*       Jan_08   svc:/application/oracle/database:RACE002 Note: I'm not looking for an answer on how to make the oracle database RACE002 be available again. That can easily be done as "oracle" OS user and using "sqlplus" to send a "startup" command.
    I'm looking for a way to make SMF behave again. Because right now, I cannot use SMF to change the state of the service, which is a problem, as my backup scripts fail because of that :/
    Thanks a lot,
    Michael

    Hello again Michael, would you be able to post the output of the following procedure?
    4:41pm cmdrkeen@crossfire  /research #>svccfg
    svc:> select network/ssh
    svc:/network/ssh> listprop(except obviously with your service rather than SSH)

  • Unable to send emails through adobe offline project.

    Hi Experts!!!
                        I am trying to send an email through Adobe Offline Form. I am quoting the code. Plz check what's the problem with the code.
    // This file has been generated partially by the Web Dynpro Code Generator.
    // MODIFY CODE ONLY IN SECTIONS ENCLOSED BY @@begin AND @@end.
    // ALL OTHER CHANGES WILL BE LOST IF THE FILE IS REGENERATED.
    package com.lifecyclelettersapplication;
    // IMPORTANT NOTE:
    // ALL IMPORT STATEMENTS MUST BE PLACED IN THE FOLLOWING SECTION ENCLOSED
    // BY @@begin imports AND @@end. FURTHERMORE, THIS SECTION MUST ALWAYS CONTAIN
    // AT LEAST ONE IMPORT STATEMENT (E.G. THAT FOR IPrivateFormView).
    // OTHERWISE, USING THE ECLIPSE FUNCTION "Organize Imports" FOLLOWED BY
    // A WEB DYNPRO CODE GENERATION (E.G. PROJECT BUILD) WILL RESULT IN THE LOSS
    // OF IMPORT STATEMENTS.
    //@@begin imports
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.SendFailedException;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import com.lifecyclelettersapplication.wdp.IPrivateFormView;
    //@@end
    //@@begin documentation
    //@@end
    public class FormView
    Logging location.
      private static final com.sap.tc.logging.Location logger =
        com.sap.tc.logging.Location.getLocation(FormView.class);
      static
        //@@begin id
        String id = "$Id$";
        //@@end
        com.sap.tc.logging.Location.getLocation("ID.com.sap.tc.webdynpro").infoT(id);
    Private access to the generated Web Dynpro counterpart
    for this controller class.  </p>
    Use <code>wdThis</code> to gain typed access to the context,
    to trigger navigation via outbound plugs, to get and enable/disable
    actions, fire declared events, and access used controllers and/or
    component usages.
    @see com.lifecyclelettersapplication.wdp.IPrivateFormView for more details
      private final IPrivateFormView wdThis;
    Root node of this controller's context. </p>
    Provides typed access not only to the elements of the root node
    but also to all nodes in the context (methods node<i>XYZ</i>())
    and their currently selected element (methods current<i>XYZ</i>Element()).
    It also facilitates the creation of new elements for all nodes
    (methods create<i>XYZ</i>Element()). </p>
    @see com.lifecyclelettersapplication.wdp.IPrivateFormView.IContextNode for more details.
      private final IPrivateFormView.IContextNode wdContext;
    A shortcut for <code>wdThis.wdGetAPI()</code>. </p>
    Represents the generic API of the generic Web Dynpro counterpart
    for this controller. </p>
      private final com.sap.tc.webdynpro.progmodel.api.IWDViewController wdControllerAPI;
    A shortcut for <code>wdThis.wdGetAPI().getComponent()</code>. </p>
    Represents the generic API of the Web Dynpro component this controller
    belongs to. Can be used to access the message manager, the window manager,
    to add/remove event handlers and so on. </p>
      private final com.sap.tc.webdynpro.progmodel.api.IWDComponent wdComponentAPI;
      public FormView(IPrivateFormView wdThis)
        this.wdThis = wdThis;
        this.wdContext = wdThis.wdGetContext();
        this.wdControllerAPI = wdThis.wdGetAPI();
        this.wdComponentAPI = wdThis.wdGetAPI().getComponent();
      //@@begin javadoc:wdDoInit()
      /** Hook method called to initialize controller. */
      //@@end
      public void wdDoInit()
        //@@begin wdDoInit()
         /* The following lines initialize the context elements;
    Enter your e-mail id in the set From-method
         //wdContext.currentContextElement().setTeststatus(" do in it");
            try{
            wdContext.currentEmailElement().setFrom("[email protected]");
            wdContext.currentEmailElement().setTo("[email protected]");                                            
            wdContext.currentEmailElement().setCc("[email protected]");
            wdContext.currentEmailElement().setBcc("[email protected]");
    //        wdContext.currentEmailElement().setCc(" ");
    //        wdContext.currentEmailElement().setBcc(" ");
            wdContext.currentEmailElement().setSubject("Test Mail By Umang");
            wdContext.currentEmailElement().setBody("You will find the address proof letter in the attachment of this e mail. Please sign this form and send it.");
           catch(Exception e)
             wdContext.currentContextElement().setTeststatus("do in it"+e.getMessage());              
        //@@end
      //@@begin javadoc:wdDoExit()
      /** Hook method called to clean up controller. */
      //@@end
      public void wdDoExit()
        //@@begin wdDoExit()
        //@@end
      //@@begin javadoc:wdDoModifyView
    Hook method called to modify a view just before rendering.
    This method conceptually belongs to the view itself, not to the
    controller (cf. MVC pattern).
    It is made static to discourage a way of programming that
    routinely stores references to UI elements in instance fields
    for access by the view controller's event handlers, and so on.
    The Web Dynpro programming model recommends that UI elements can
    only be accessed by code executed within the call to this hook method.
    @param wdThis Generated private interface of the view's controller, as
           provided by Web Dynpro. Provides access to the view controller's
           outgoing controller usages, etc.
    @param wdContext Generated interface of the view's context, as provided
           by Web Dynpro. Provides access to the view's data.
    @param view The view's generic API, as provided by Web Dynpro.
           Provides access to UI elements.
    @param firstTime Indicates whether the hook is called for the first time
           during the lifetime of the view.
      //@@end
      public static void wdDoModifyView(IPrivateFormView wdThis, IPrivateFormView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
        //@@begin wdDoModifyView
        //@@end
      //@@begin javadoc:onPlugFromFirstview(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onPlugFromFirstview(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onPlugFromFirstview(ServerEvent)
         wdContext.currentContextElement().setTeststatus("from first view");
         //wdDoInit();
        //@@end
      //@@begin javadoc:onActionBack(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onActionBack(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionBack(ServerEvent)
        wdThis.wdFirePlugToFirstView();
        //@@end
      //@@begin javadoc:onActionSend(ServerEvent)
      /** Declared validating event handler. */
      //@@end
      public void onActionSend(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSend(ServerEvent)
         Properties props = new Properties();
              String host = "rmail070.zmail.ril.com";
              props.put("rmail070.zmail.ril.com", host);
              Session session = Session.getInstance(props, null);
              MimeMessage message = new MimeMessage(session);
              Address toAddress = new InternetAddress();
              Address fromAddress = new InternetAddress();
              Address ccAddress = new InternetAddress();
              Address bccAddress = new InternetAddress();
         wdContext.currentContextElement().setTeststatus("1");
              try
                   MimeMultipart multipart = new MimeMultipart();
                   wdContext.currentContextElement().setTeststatus("2");
                   BodyPart messageBodyPart = new MimeBodyPart();
                   if (! wdContext.currentEmailElement().getFrom().equals(""))
                        fromAddress = new InternetAddress(wdContext.currentEmailElement().getFrom());               
                        message.setFrom(fromAddress);
                   wdContext.currentContextElement().setTeststatus("3");
                   if (! wdContext.currentEmailElement().getTo().equals(""))
                        toAddress = new InternetAddress(wdContext.currentEmailElement().getTo());
                        message.setRecipient(Message.RecipientType.TO, toAddress);
                   wdContext.currentContextElement().setTeststatus("4");
                   if (! wdContext.currentEmailElement().getCc().equals(""))
                        ccAddress = new InternetAddress(wdContext.currentEmailElement().getCc());
                        message.setRecipient(Message.RecipientType.CC, ccAddress);
                   wdContext.currentContextElement().setTeststatus("5");
                   if (! wdContext.currentEmailElement().getBcc().equals(""))
                        bccAddress = new InternetAddress(wdContext.currentEmailElement().getBcc());
                        message.setRecipient(Message.RecipientType.BCC, bccAddress);
                   wdContext.currentContextElement().setTeststatus("6");
                   if (! wdContext.currentEmailElement().getSubject().equals(""))
                        message.setSubject(wdContext.currentEmailElement().getSubject());
                   wdContext.currentContextElement().setTeststatus("7");
                   if (! wdContext.currentEmailElement().getBody().equals(""))
                        messageBodyPart.setText(wdContext.currentEmailElement().getBody());
                   wdContext.currentContextElement().setTeststatus("8");
                   multipart.addBodyPart(messageBodyPart);
                   wdContext.currentContextElement().setTeststatus("10");
    ////               A new part will be added this will be the attachment
                   messageBodyPart = new MimeBodyPart();
    //               String filename = "temp
    webdynpro
    web
    local
    LifeCycleLetters
    Components
    com.lifecyclelettersapplication.LifeCycleLettersApplication
    LifeCycle.pdf";
    //               DataSource source = new FileDataSource(filename);
    //               messageBodyPart.setDataHandler(new DataHandler(source));
    //               messageBodyPart.setFileName(source.getName());                    
    //               messageBodyPart.setHeader("Content-Type","application/pdf");
    //               multipart.addBodyPart(messageBodyPart);
                   message.setContent(multipart);
                   Transport.send(message);
                   wdContext.currentContextElement().setTeststatus("11");
              catch (AddressException e)
                   wdComponentAPI.getMessageManager().reportWarning(e.getLocalizedMessage());
                   e.printStackTrace();
              catch (SendFailedException e)
                   wdComponentAPI.getMessageManager().reportWarning(e.getLocalizedMessage());
                   e.printStackTrace();
              catch (MessagingException e)
                   wdComponentAPI.getMessageManager().reportWarning(e.getLocalizedMessage());
                   e.printStackTrace();
         catch(Exception e)
                             wdContext.currentContextElement().setTeststatus("action send"+e.getMessage());              
        //@@end
    The following code section can be used for any Java code that is
    not to be visible to other controllers/views or that contains constructs
    currently not supported directly by Web Dynpro (such as inner classes or
    member variables etc.). </p>
    Note: The content of this section is in no way managed/controlled
    by the Web Dynpro Designtime or the Web Dynpro Runtime.
      //@@begin others
      //@@end

    Hi,
    I think u need to set up the SMTP  So that u can send the email.
    Regards
    Mustafa.

  • How to set exceptions for automatic cookie-clearing on closure?

    Firefox is forgetting my two-step google logins. On the google two-step verification page, there's a checkbox which says "Don't ask for codes again on this computer."
    But firefox keeps asking for codes.
    i have firefox set to clear cookies on closing.
    i also have the urls below set as exceptions, in two places:
    -in about:permissions, they are all set to allow, and also to keep offline data without asking
    -in options/privacy/exceptions
    mail.google.com
    maps.google.com
    calendar.google.com
    www.google.com
    shopping.google.com
    plus.google.com
    *.google.com
    google.com
    gmail.com
    this forum is messing up my list, above. Each url is a separate item in exceptions. The bulleted one actually starts with a star. (good job mozilla, thanks for this ancient text editor)
    how do clear all cookies EXCEPT the ones above, when i close firefox? Or, is this not a cookie problem?
    do i need to include "http://"
    this article did not help
    https://support.mozilla.org/en-US/questions/974020

    That worked. (no, it didn't)
    It's very confusing that Firefox has settings for how to handle cookies on closing in three different places. They should change that.
    "Keep until I close Firefox" seems redundant with "Clear History when Firefox closes" with "Cookies" checked. Then there are settings in "about:permissions". No way to know which one takes precedence. That's poor user-design.
    For others having this problem, here's a clear explanation. However, this is only PART of the fix, hoping to find the complete fix later in this thread.
    You CAN make FF keep only certain cookies on closing, and erase all others. Here's how to set all cookies to be cleared as soon as you close firefox, except your exceptions:
    # Go to Tools > Options > Privacy.
    # Under "History", pick "Firefox will Use custom settings for history"
    # Click "Exceptions", and add the cookies you want to keep. Click "Close"
    # Click "Keep until I close Firefox"
    # If you have "Clear History when Firefox closes" checked, then:
    * Click "Settings"
    * Uncheck "Cookies", and click "OK".
    6. Click "OK" to close the settings box.
    (now this forum has a formatting toolbar, thx! why didn't have one before?)

Maybe you are looking for

  • Layout issue while trying Migrate Oracle Report to XML publisher Reports

    Hi I am trying to Convert Seeded Oracle Reports (rdf) to BI Publisher reports, in doing so encounter layout issues. The layout of the RTF , PDF or HTML generated by BI Publisher is different form the text, PDF or HTML outputs generated by the concurr

  • Strange error: COMPUTE_BCD_OVERFLOW

    Hi everyone, i have a very very strange error/exception trying to divide 2 Numbers: The source code looks like this: lv_alt_koeff = ABS( lv_alt_wrbtr_delta / ( lv_alt_wrbtr_h - lv_alt_wrbtr_s ) ). Values are: lv_alt_wrbtr_delta = 119201.40 lv_alt_wrb

  • Usage of LOCALE in Localization of Presentation Layer metadata

    Hi, This is about usage of LOCALE in Localization of Presentation Layer metadata. The value of WEBLANGUAGE variable can be directly passed to the initialization block (2nd Initialization block ) which contains the sql: select SESSION_VARIABLE, TRANSL

  • Base Value for Imports

    All SAP Gurus, While capturing / posting excise invoice for Imports, which value to be considered as base value? Is it the value of material only or some duties and other costs to be added over it to consider it as base value? In our case material va

  • Crop tool in ACR

    What has happened to the 'custom' crop tool in ACR? The only option now is for a custom ratio??? What happened to the custom size/resolution crop function??