Lazy update ?

As far as I understand, web start currently support two modes. One of them require connecting to update server and possibly downloading new version of app if it is present, second tries to connect, but will stop after trying for some time without result.
I know that both ways are acceptable in some environments. But I have small utility, for which startup time is VERY important. I have nothing against paying few extra second for web start init, if it is going to give me free updates, but blocking of offline update is out of question (I'm talking about situation where client IS connect to net, but for some reasons link to update site is very slow/lossy).
Only acceptable solution for me is similar to allow-offline, but with check for updates going in background, with already running application in front. Of course, it would be available only on next run, but this is not a problem.
Is web start able to do such thing currently ? Is it a planned feature for future ?
It is not so big pain to implement it myself for application alone, but I would lose rest of benefits of web start - jre updating, native libraries registration etc. It is not important for this project, but for the next one it could be very useful.

RE:
Only acceptable solution for me is similar to
allow-offline, but with check for updates going in
background, with already running application in front.
Of course, it would be available only on next run,
but this is not a problem.
Is web start able to do such thing currently ?
Is it a planned feature for future ?This is what webstart does if offline-allowed is specified. It trys for 1+1/2 seconds and if it can't determine if an update is available, it launches the app while continuing to check in the background. If it does find that an update is needed, it flags the cache to require update next time.
(I think it's 1+1/2 seconds, and can be configured in the javaws.cfg file.)

Similar Messages

  • FlashCom + 2003 server + write errors on networked-filesystems?

    Hi all,
    We are using FCS v2. We have been successfully writing log
    files and recording streams to both local disk and filesystems from
    networked devices (SMB mounted shares, NFS shares etc) for years.
    But since setting up FCS on server 2003, we *cannot* successfully
    record to any drive that is mounted via the network (SMB, NFS etc).
    The server itself can use/access the network drive just FINE!
    All copy/open/delete/etc operations work just fine, from the
    cmdline and also within Windows itself.
    It seems the only app that CANNOT write to the networked
    drive is FCS2! Has anyone experienced anything like this with W2K3
    server? We can reproduce this error with 100% accuracy. Note that
    as soon as I change the appropriate tag in the XML config files to
    point to a local disk, everything works just fine.
    Its not a show-stopper for us, but it means we have to have
    some kind of batch job that will offload the recorded content to
    aforementioned network drives in a lazy-update manner (not ideal).
    I would appreciate any and all comments.
    Thanks so much,
    Rick T.

    I had similar problem.
    I fixed the problem like below..
    At the Flash Media Server(FMS) service property, Logon
    account name changed to Network Storage Server's account name.
    (equally)
    And, I used IP address instead of server name. (storage)

  • Error writing from flushModified

    Friends,
    Lately I am seeing this exception so often on my server. We are using BMP for
    our entity beans. WL is 8.1Sp2.
    I would much appreciate if any one can share his/her opinion/solution for the
    issue.
    Regards,
    -Janiz
    EJB Exception: ; nested exception is:
    javax.ejb.TransactionRolledbackLocalException: Error writing from flushModified:
    weblogic.ejb20.InternalException: Error writing from flushModified
         at weblogic.ejb20.manager.BeanManagedPersistenceManager.scalarFinder(BeanManagedPersistenceManager.java:77)
         at weblogic.ejb20.manager.BaseEntityManager.scalarFinder(BaseEntityManager.java:1580)
         at weblogic.ejb20.manager.BaseEntityManager.localScalarFinder(BaseEntityManager.java:1524)
         at weblogic.ejb20.internal.EntityEJBLocalHome.finder(EntityEJBLocalHome.java:463)
         at com.abc.ejb.Profile_pxe7qb_LocalHomeImpl.findByUserId(Profile_pxe7qb_LocalHomeImpl.java:122)
         at com.abc.ejb.MyEJB.getContactInfo(Unknown Source)
         at com.abc.ejb.MyEJB.getUser(Unknown Source)
         at com.abc.ejb.CustomerFacade_u478p9_EOImpl.getUser(CustomerFacade_u478p9_EOImpl.java:812)
         at com.abc.ejb.CustomerFacade_u478p9_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    My experience with this exception is that, the ejbStore() runs sql update statement unnecessarily and that cause very high chance of deadlocking on a given db table or db row. In the Oracle db, it actually dump 2 trace files and the datetime is very close to the weblogic server log exception (if both servers got the time sync-ed).
    We can simply run the ejbsession method involved with the same value in a finite tight loop(100 loops?) from 2~3 jsp pages submissions, we should be able to reproduce the problem easily.
    The solution would be using lazy update inside relevant BMP ejbbeans' ejbStore(). This means using a boolean variable to keep track bean fields changed. if nothing changed, the flag will make ejbStore() running like noop, for eg,
    if(!isDirty) return;
    so far, this solution works well and greatly reduce the chances of running unnecessarily sql update inside ejbStore().
    To Oracle, any deadlock will cause 1 of the db connection corrupted or closed silently. This seems not able to be detected by testOnReserve on jdbc connection pool.
    Hope this help. Also hope more detailed reply can clarify doubts.
    My weblogic is version 8.1SP2 and Oracle 9.2.

  • Date Header from JSP

    Has anyone managed to set the date header in a JSP file?
    I'm generating an XML file - response.setContentType("text/xml");
    and I want IE7 to be able to cache the file but the Date Header seems to get filled in on my behalf at the end of the page even though I have :
    response.addHeader("Date", "Tue, 12 Feb 2008 10:00:00 GMT");
    I've tried setHeader and the addDateHeader/setDateHeader alternatives.
    I've set the cache-control but I can see using Fiddler that the Date Header of the reply is just set to the current date/time which forces IE7 to do a full load.
    Thanks.

    Have you also tried: response.setHeader("Cache-Control", "post-check=####"); with #### = some number?
    Microsoft calls this "lazy update" see http://support.microsoft.com/kb/843526/en-us:
    A Post-check directive is a cache-control directive that is included with the HTTP Expires header. Web sites use the HTTP Expires header to control how Internet Explorer caches content on the Web site. Post-check defines a time interval (in seconds) that defines after which an object must be checked for "freshness". This check allows Internet Explorer to display the content from its cache or in the Temporary Internet Files folder, and then update the cached copy of the content in the background. This update is also known as a lazy update.
    But they don't really document this well. Do you get the same result using other browsers?
    Finally I'd recommend that you ask this question at the http://forum.java.sun.com/index.jspa forums. The forum you have posted to here is specific to the Sun Java Studio Enterprise IDE developer tool, and since your question is not tool specific, you will receive very few responses to your post here.
    Regards,
    -Brad Mayer

  • Lazy downloading broken for updated jar-files?

    Hello,
    Using webstart-6.0 + jar-index + download="lazy" works great - jar files are downloaded on demand when they are really needed.
    However when updating all jar-files, the files that have been downloaded lazily and cached before are downloaded again before the application can be launched, not only on demand.
    Is this the intended behaviour, and is there any way to let webstart lazily download updates, just when the jar-files are needed?
    Thank you in advance, lg Clemens

    Libraries loaded from the j2ee/home/lib directory are opened and loaded at the J2EE container level. So they are accessed from the very start of the server, to the point where it is stopped.
    Therefore if you modify a class library which has already been loaded, you may run into file locking related issues (which will be OS dependent, Windows for example probably won't even let you overwrite the file) so that is what you are likely to be seeing.
    JAR files loaded at the J2EE container level aren't really suitable for dynamic updating -- the classes can be referenced in a multitude of other classloaders.
    As you have seen, replacing a J2EE container level class file, then a restart will be required along the lines of what you have written.
    Stop mid-tier, move new file in and restart?? cheers
    -steve-

  • JScrollPane too lazy to update...

    I have a textpanel with some JScrollPane attached. The text is written, and scrolling automatically, and all is well.
    However: My program is doing very computing intense tasks and can be busy in one method for maybe 10 minutes at a time, and during execution the log will not be updated so the user will have no idea of what is going on until the program finishes and the JScrollPane finally bothers to update.
    I have tried all kinds of things to force an update, but only the text is updating, scrolling is not. I do not want to mess around with threads, it must be a simple way to force an update of the scrollbars?
    Any ideas???
        public class TextOutputPanel extends JPanel
          // A Swing textarea for display of string info
          JTextArea textArea = null;
          public TextOutputPanel()
            setLayout(new BorderLayout());
            // Create an instance of JTextArea
            textArea = new JTextArea();
            textArea.setEditable(false);
            // Add to a scroll pane so that a long list of
            // computations can be seen.
            JScrollPane areaScrollPane = new JScrollPane(textArea);
            add(areaScrollPane,"Center");
            public void clear()
                textArea.setText("");
            public void println(String str)
              textArea.append(str + "\n");
              textArea.setCaretPosition(textArea.getDocument().getLength());
    //Trying all kinds of weird things here to force an update, but nada :(
                textArea.revalidate();
              this.revalidate();
              this.update(this.getGraphics());
            public void print(String str)
              textArea.append(str);
                this.revalidate();
                this.update(this.getGraphics());
        }

    I do not want to mess around with threadsWhy? You will never learn to develop responsive GUI's
    if you don't. Here is a simple example:
    http://forum.java.sun.com/thread.jspa?forumID=57&threa
    dID=437592
    a simple way to force an update of the scrollbars?Typically you can cause scrolling by using:
    textArea.setCaretPosition(
    textArea.getDocument().getLength() );
    but this may not work because I think it adds code to
    the end of the Event Thread which is currently
    executing your long running task.
    Note in my code above I have already included this. It scrolls fine, but does not update the scrolling until my program is finished running, which is way too late, my user will have died a natural death by then.
    I can force update of almost any swing component with update, ro similar, but it does not work with scrolling :(

  • IPod Not being recognized with all the software updates

    I've been without my iPod for a few weeks now and I desperately want it back. I dropped it a while back, and have come online to look up stuff to restore it, but none of that is working for me. I reset it by pressing "menu" and "Play" at the same time, then put it into disk mode by pressing the "ff" and "rwd" buttons together, but even in disk mode my computer is not recognizing it at all. The iPod screen says that it is in disk mode, and says it's okay to disconnect, but its not giving me the option to restore when I connect it to my computer and open the iPod updater.
    It also gives me the file folder w/ an exclamation point whenever i don't put it into disk mode. And the few times that my computer does pick up something the iPod updater flashes a message that says "Can't Mount iPod" and then the updater manually closes itself. Anyone know what to do?
    Thanks
    20GB with Dock Connector   Windows XP  

    For "Cant mount iPod" - please try the following first
    Click on Start=>Control Panel=>Admin Tools=>Computer Management=>Disk Management
    -- Right-Click on the iPod and select “change drive letter”
    -- Choose something further along in the alphabet that is unused (Usually, “M”, “N”, “O” or something similar)
    -- Safely eject the iPod
    -- Reboot the PC
    If still cant solve it then
    The Sad iPods icon, clicking sound or folder with an exclamation mark are the toughest problems to deal with, and must do a Restore in order to fix it. However, when your iPod is showing this icon, it is probably too late for your computer to recognize the iPod.
    1. Try these five steps (known as the five Rs) and it would conquer most iPod issues.
    http://www.apple.com/support/ipod/five_rs/
    2. Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    Still can't see your iPod?
    Several things could keep iPod from appearing in iTunes or in the Desktop/Finder when you connect it to your PC/Mac. The most likely causes are listed below in logical order. Check from the top of the list to see if that is what's keeping iPod from appearing.
    3. Try to wait 30 minutes while iPod is charging.
    4. Try another known-good FireWire or USB through Dock Connector cable.
    5. Try another known-good FireWire or USB port on your computer .
    6. Try to disconnect all devices from your computer's FireWire and USB ports.
    7. Windows users having trouble with their iPods should locate a Mac user. We've found that in many cases when an iPod won't show up on a PC that it will show up on the Mac. Then it can be restored. When the PC user returns to his computer the iPod will be recognized by the PC, reformatted for the PC, and usable again. By the way, it works in reverse too. A Mac user often can get his iPod back by connecting it to a PC and restoring it.
    There are also some cases being reported that some unrecognized iPod being able to be erased with Linux, then reconnect the iPod with the original computer and do a Restore there.
    8. Try to do an Erase (Disk Utility) on a Mac computer or a format with a PC (Disk Management tool) but ensure you choose the right Drive (your iPod not your Hard Disk of your computer). You may need to plug and unplug your iPod with the computer for several attempts, and switching around Format and Restore, and hope out of sudden, it will get recognized.
    9. Diagnostic mode solution – which I copied from a thread of a post from thinktwice
    “Then I cam across this special Diganostics Mode that you can get to by resetting and then while the Apple is showing pressing the Select and backwards keys simultaneously. It bring up and weird Diagnostic utility witha a abunch of tests. Here is what I did
    - I tried the 5in1 test and got and error on Firewire.
    - I did the HDD R/W and surprisingly it passed.
    - I went on to the HDD scan. This supposedly tkaes acouple of minute so I waited. I think 4-5 dots appeared then nothing. The iPod started to get hot. THe disk was spinning away. After a while the battery got very low. THis test chews up the battery. So I escaped out by resetting and went to connect it to a power source.
    My USB was dangling out of my computer and I was too lazy to get the Firewire AC adapter thing going so I connected expecting the whole lockup thing with iTunes. Surprise. IT was recognized immediately and has been working like a champ. So go figure.
    Details on Diag mode can be found at http://www.methodshop.com/mp3/ipodsupport/diagnosticmode/index.shtml
    10. Let me ask you a question, if an iPod with no iPod software with it. When your connect it with a computer, what would happen?
    Yeah, the computer will treat it as a fresh external hard disk, which will get force mounted, the computer will ask you to format the iPod. It does not really matter the format is completed or not, the key is to erase (or partly) the corrupted iPod software on the iPod, after that the computer will recognize it.
    Once it has been completed, eject your iPod, open the iPod updater and interestingly, you will able to do the Restore this time.
    Base on the above, that's why I suggest Windows users who experience trouble with their iPods should locate a Mac machine or vice versa. PC computer will not recognize a Mac formatted iPod, but it will get mounted in an attempt to format your iPod.
    11. Put your iPod in disk mode and plug with a computer, and have a boot of your computer using the Mac OS or XP startup disks, hope that your iPod will be seen on Mac's Disk utility and allow you to do a Erase there. Or, under the XP, you will be able to find your iPod there for you to do a Restore.
    But, if none of these steps address the issue, your iPod may need to be repaired. You can arrange for service at the iPod Service Website.
    I have just read an interesting solution about the Sad iPod, it does make sense but the warranty will be waived once you open the iPod, I would not do it myself as I am not good on doing this
    http://discussions.apple.com/thread.jspa?threadID=412033&tstart=0
    Pictures and instructions of how to open the iPod case for battery replacement
    http://www.kokopellimusic.us/KM_instructions.htm

  • Exclusive update release for Adobe Cloud customers

    Excuse me, Adobe.
    Don't get this wrong, I personally have nothing against Adobe. Please know and realize that Adobe probably don't realize this, or simply don't have a heart to realize this by now. Adobe actually losing some valuable registered lifetime 'diehard' Adobe customers like other creative professionals and myself.
    Yesterday I learned that Adobe released exclusive update release only for Adobe Creative Cloud customers with Illustrator's new package update. I find that very ironic approach, because I know that diehard Adobe Illustrator customers have request for it for years. Adobe basically ignored us, creative professionals, instead of us, focusing on Adobe Creative Cloud customers.
    Rest assured, Adobe Master Collection CS6 is more likely my final upgrade purchase. It was a big slap in my face. I know that it is not just me, knowing that many other creative professionals are upset as I am.
    Don't get me wrong, I wholeheartedly am (now was) a lifetime diehard Adobe customer.
    Dear Adobe, just tell me if I am wrong. I just cannot justify the cost benefit analysis on advantage of Adobe Creative Cloud, where it is more of "renting" while many other creative professionals including myself prefer traditional way of upgrading through Adobe online store just as in the past and at present time. Many of us prefer "traditional" way of "owning" Adobe Creative Suite apps rather than 'renting' apps. In a long run, by owning traditional app/purchase do have super duper advantage over Cloud in terms of real cost of doing business. While traditional customers like myself still own Adobe apps even if when Adobe decides no longer support, we still own the legacy versions regardless.
    So, what happens if one day, out of blue, I fear that Adobe eventually realize that Adobe Creative Cloud is not viable or feasible to continue. That will certainly make some customers not happy. What happens to traditional customers like creative professionals and myself spent huge amount of investment in traditional qualified upgrades, and then switched to Cloud.. then one day Adobe decide not to support Adobe Creative Cloud.. what does this means to traditional customers like myself owned versions of serialization numbers over the years - down in the drain and Adobe Creative Cloud 'temporary' annual serial number no longer viable, and force us to pay FULL traditional license all over again. In that case, that is where I am dealing with this concern. I just cannot possibly trust Adobe on that one. I do have huge benefit of doubt on that one.
    For example, with Adobe decided to invest some of its resources developed new applications such as Adobe Flash Catalyst and few others in Adobe Creative Suite CS5. When Adobe released CS6, Adobe dropped Flash Catalyst. That is one of example on why I do have benefit of doubt on long term viability and feasibility of Adobe Creative Cloud.
    Please listen to us, creative professionals out of our concerns.
    If Adobe refuse to listen, include us in that respect, so be it. It is possible that Adobe eventually be losing many lifetime, diehard Adobe creative professionals.
    To be honest, I am very disappointed with Adobe's attitude toward creative professionals' being diehard lifetime support and invested lot of our time, tools, and skills and everything... time and money. It is all down in the drain. Thanks!
    Have a fabulous day!

    And customers fall for it like suckers.
    Software development during the emergence of a new category has always been lucrative. A small handful of developers with a good idea sweat blood for a couple years building the core application. Once it exists, delivery is cheap and profit-per-sale is high. Users buy licenses for several hundreds of dollars each. Each new license sale costs next to nothing to replicate in terms of manufacturing. It's all marketing, packaging, and distrubution. Disks are copied and printed for less than $1 each. Printed manuals, of course, may cost $20 or so, depending on color, quality, etc. There is real overhead, of course, in developing good content for manuals.
    When all this stuff was new software titles used to cost less, but shipped with installation disks and thorough printed manuals, and a set of added-value extras, like utilities, fonts, clipart. And new version improvements were quite significant and innovative.
    But once the software category "matures," with each version, the prices go up; the bundled "extras" become fewer. The focus shifts toward continually look for ways to cheap-out on the customers in order to "improve" the margin for the stockholders, and "milk" the increasingly archaic and mundane software for all that can be got out of it. One way this is done is by turning real value into mere perceived value. Adobe is the worst offender in this regard.
    Print manuals have become pay-extra, or non-existent. It astounds me that in the much-ballyhooed age of "information at your fingertips" the ondisk local help has become increasingly difficult and tedious to access. Now, the default behavior of the Help menu has even been modified to disuade users from accessing local PDF versions of the documentation to coerce them to go online for help files access (this from the company that is highly dependent upon PDF). Slow, tedious, and non-contextual as it is, PDF was bad enough. Having to go to Adobe's crappy "community help" system is ridiculous.
    This is all promoted, of course, as "immediate access to continual improvement." And customers fall for it like suckers.
    Look at the increasingly innane questions that occur  daily in this Forum. Newcomers ask the most basic questions, making it obvious they haven't even tried to read page one of the documentation. I've been at this stuff since the beginning. It didn't used to be this way.
    Are they all lazy dolts? No. Documentation has become less accessible and less thorough.
    Next, Adobe turns the online documentation essentially into blogs. "Live feedback"? "Continual improvement"? Baloney. Beginners clutter what should be authoritative documentation with innane comments. Questions get transferred to the User Forums, where Adobe sluffs off its responsibility for product support to its users; which more often than not turns into a time-wasting process of the blind leading the blind.
    Of course, only a mere mention of the term "tech support" will suffice. Everyone knows what thas become.
    Once you've eliminated the costs of printing, packaging, and delivering disks and documentation, and turned everything into electronic downloads (causing each customer hours of downtime--often even days futzing around with Adobe's horrible installers), what's next? Stockholders still want increased margin.
    Software by subscription and web-centric automation--while still increasing prices, of course--has long been the holy grail of software developers. This is true of all the biggies, including Microsoft, and of course Adobe. But how do you pull it off? How do you convince the suckers?
    Releasing new features to the buzzword "cloud" before making them available to perpetual licensees will be Adobe's attempt to "sweeten the pot" to con those who buy into the software subscription scheme. Time will tell how successful the ruse is for Adobe.
    The truth is, though, in terms of actual quality of the product, (especially Illustrator) nothing has changed for the better. Look at the very features that we who choose to stay with the relative safety of a traditional license are so upset about: Bundle for output? Export embedded images?
    People, how archaic, how old, how yesterdecade's news is that? This is "quick development" that can only be delivered by the "cloud"? Give me a break.
    It's utterly laughable, as Illustrator's cobby, clumsy, over-glorified, under-delivered, decades-late-to-the-game delevery of practical functionality always has been. So what's the big rush anyway for features that are already literal decades late? Sheesh, guys, Illustrator is not the only game in town.
    Consider: Since the release of CS6, how many posts have you forum regulars seen expressing excitement over the precious few actually new features, like grads-on-strokes? How many stunning examples of use of that feature have you seen users post?
    By comarison, how many posts have you seen on complaints about performance and buggy behavior? And proportionally how many are still the endless stream of repeats of the same old questions from newcomers trying to make sense out of Illustrator's uncomparably unintuitive, cluttered, and confused interface? I see the latter largely increasing. And I take that as clear indication that Adobe's treatment of "newfangled" documentation is not working. (And, of course, that Illustrator's interface is still as hideously unintutitve as it has always been.)
    Meanwhile, for the first time in too many years, I actually experienced again that new-purchase satisfaction of money-well-spent when I opened the Corel Graphic Design X6 Suite package to find a full-color manual with a hard-bound cover no less! Upgrade cost for anyone with a copy two full versions old? $200. Comes with 1000 OpenType fonts, huge clipart collection, truly useful utilities, and alot more.
    I still get a thrill out of every new release of Xara Designer Pro. So much elegant functionality, such clean-running speed, so stunning results possible from that tidy, inviting, intuitive interface in so affordably-priced and fun-to-use application.
    Meanwhile, Adobe upgrades have become more burden than pleasure. I actually dread them, especially having been suckered into the whole "Master Collection" thing. CS6 still sits on my desk uninstalled. I just dread having to mess with it.
    Oh, but James! That's why you should buy into "the creative cloud"!
    Well, don't hold your breath, bucko. If I decide to let CS7 or whatever just slide right by, I'll still be able to keep running the version I've got--without sending a monthly check to Adobe.
    These days--when so many younsters who have never swung a hammer at a nail actually try to rationalize renting over home ownership; and when so many middle-agers rationalize making perpetual interest payments for the instant gratification of driving a new car every year--who knows; the "creative cloud" sham may actually succeed.
    But not with me. Instead of watching money automatically fly out the window by itself, I'll be chuckling away, using whichever of my usual collection of 2D vector drawing programs I feel most advantageous--or most fun--for the task at hand.
    JET

  • Trying to understand Android OS updates delays

    This is not another hate mail, it´s more about trying to understand the facts and motives regarding the OS updates (or lack of).
    Hopefully this material will arrive at someone from Sony with enough power to do something about it.
    Ever since I can remember, Sony has been THE brand for electronics. I can´t remember a TV or VCR in my house that it wasn´t Sony, and they lasted for LOTS of years.
    When a couple years ago I finally had the money (and the need) for a Smartphone, i chose the X10 Mini, which is a great little phone from a great brand, but it´s stuck at Android 2.1... which makes it a crippled android nowadays...
    It really bothered me the lack of OS updates, so I chose to buy a Galaxy Nexus, but it´s really expensive in my country. So my second option was a Galaxy Ace 2, but they haven´t arrived to my country yet, so I went with my third option: Xperia Sola, knowing beforehand that it´s a great phone, a great brand, but I might get slow OS updates.
    I bought it about 10 days ago when I saw they were starting to roll out the updates.
    10 days later I still don´t have my update. And not only that, but I don´t see much light at the end of the tunnel...
    I found a thread with the SI numbers that were updated, and there were a bunch on Oct 1, another bunch on Oct 4, and one code on Oct 8, and no other update since...
    I also read that those who did get the update, were having bugs with the OS, and also found threads from other Xperia models, whose updates began rolling 3 months ago, and there is still people who hasn´t gotten the update...
    As a customer, and a owner/CEO of a small company, I have a really hard time understanding how a HUGE company like Sony can be making such mistakes...
    I have been thinking objective reasons, and I can only think of one. I know it´s a wild guess, but I´m starting to think that our salvation might be the very thing that means our condemnation: CYANOGENMOD!!!
    Think about it: Why would Sony spend more money hiring twice as much programmers, when they can make only one update per phone, and sit down and see how CM releases begin to appear, for all tastes and needs. And... IT´s FREE!!!
    Also, if there is a software related problem (way more likely than a hardware problem), then the CM developers take the fall, instead of Sony. And I´m beginning to see custom OS installers that are more user friendly, so it might be something that they take in accout when neglecting OS updates.
    If that´s the line Sony is following, it´s a very risky move and it won´t work. Sony Mobile will crash and burn, but it´s still a better business plan that "let´s get lazy and make ULTRA slow updates so we don´t spend a lot of money programming".
    If you can´t afford more programmers, stop including so much bells and whistles and make your OS near vanilla. Include a couple of Xperia menus, a custom theme and voila!
    The main reason I wanted the Galaxy Nexus is Vanilla OS, which means inmediate OS updates. Sony on the other hand, takes a year or two to release it after its launch. If they release it at all...
    Another though...  why not stop making that many different phones! Really! There are like 5 Xperia models i can´t tell one from the other... even with specs side by side!
    You are trying to make too many phones and you are failing with all of them! (Software and software updates are also part of the phone, one of the most importants...)
    I know hiring programmers is expensive, but you are sacrificing one of the most expensive values for a company EVER: Customer credibility! Which as you know better than me, takes years to create.
    If Apple had problems with carriers and code aprooving and stuff, they might get away with it, becouse they alone have all the devices. If iOS 6 is delayed a few months, it´s delayed for everyone, and besides Apple fanboys rarely complain about Mac products, but Android is a more independent and educated market.
    I´m not saying that Apple users are ignorant, not at all, but I´m pretty sure most iPhone owners don´t even know what processor or how much RAM their phone has. They just "swallow" the Apple Way of Life. (it´s a good phone becouse Apple says so).
    The Android user on the other side, because of the fragmentation of the market, has many brands and models to choose from. An Android user about to buy a new phone will most likely go online looking for different models, specs, reviews in webs and forums...etc.
    You can´t say "I don´t know how HTC and other companies get their updates so soon, but we take a lot more becouse Google and the Operators must aproove the code.", because there are many other brands that have exactly the same difficulties or more, since they are smaller, and we can SEE online that they are indeed delivering solid and relativly fast updates.
    Did we miss something? Does HTC use Witchcraft to get their code aprooved?
    My underlying point is this: You are getting lazy... VERY lazy with software programming for your phones, and WE KNOW IT!
    It´s not the "difficulties" you claim, becouse every brand has those difficulties.
    This isn´t 1999 you know. We are in the information age. If you lie to us and tell us that your phones have the latest OS, I can go online and see that you don´t (Hello!!!). If I see that the company lies to it´s customers, I will stop buying their products. If I´m so dissapointed with how Sony handles OS updates and their customers queries about it, then I want for the first time ever to sell my Cell Phone becouse I´m not happy with it, or the brand behind it.
    We also live in the "Here and now" age. You can´t expect your customers to read about new Android releases on news and blogs, and wait YEARS with arms crossed waiting for their update... The world doesn´t work like that. Not anymore at least...
    It´s not a matter of how many recources you have, it´s about how you use and balance them. GIVE MORE IMPORTANCE TO SOFTWARE UPDATES! IT´S WAY MORE IMPORTANT THAT YOU THINK! LISTEN TO YOUR CUSTOMERS!!!
    You guys are Sony are smart and design great products, but you are not GOD! You are not our wife, no one has sworn alliagence to you.
    If you stop giving us good products and start lying to us, we hate you and stop giving you our money. Simple as that.
    My sola is beatiful, I love the design, the screen, the hardware... but it hasn´t been updated yet to 4.0, not to mention 4.1, which REALLY is the latest version... so stop advertising that your phones have the latest Android OS, unless you want angry customers switching to other companies, which you are getting.
    I also read some stories that Androind 4.0 was announced for the Xperia PLAY, and then it was called off... Do you have any idea how pissed I would be and ripped off I would be if I bought my phone based in that information and then you say it won´t be available?
    Well, actually right now my possition is worse, since you SAY you will update my phone, but you don´t say when, and I read online about people still not getting their updates months after the rollout started, so I´m in the limbo right now...
    As a company, one of the worse things you can do is calling your customers stupid, and when I see the answers you give in this forum, then I feel insulted. I feel like they are talking to an idiot or ignorant person with the so called "diplomatic" answers, which are basicly empty excuses for not doing your job right.
    You gave us the frikking CDs, DVDs and Blu-Rays!!! Don´t tell us you can´t tweak an already built OS in a year!
    I really hope you change their OS update policies really soon, before you lose the already small cellphone market share you have, or at least change your P.R. and C.M. policies towards a more open one.
    We all are humans and make mistakes, but we customers really appreciate honesty and truth.
    Have an open conversation with your customers! Don´t lie about your shortcomings! Accept then and ask the community to help you solve them, ask them what they biggest problems are, what features are most important to them, how often do they expect updates... LISTEN TO THEM!!
    "Succes is a meneace. It tricks smart people into thinking they can´t lose."
    Ps: Nothing personal with the mods from this forum, I´m not killing the messenger, I know that you can ONLY give the info you are allowed to give, and even if you wanted, you probably don´t know the answers yourself, since you work in the Communications department, not Developement or anything technical, and if you can't give any given info, then they probably won´t give it to you either... My message is to the company as a whole. I just hope you will be a good messenger and give this to whoever needs to read it.

    My bad, it´s closer to 40 the number of phones released hehe
    I know it´s all about money, and I know Sony is obligated to neglect users who haven´t given them money after an x ammount of time. However, it´s not a matter of making the phones obsolete earlier, so the users want to buy a new phone faster and therefore getting more money.
    A person will buy a new phone when he/she has the money to do so and wants to do so.
    It´s not a matter of WHEN. It´s a matter of WHAT.
    The question is not "When will that user buy a new phone?", but rather "When that user buys a new phone, whenever that is, what phone will it be?"
    I have a love/hate relationship with Apple. I would never use a iPhone. I would love having any Mac, if someone gives it to me, but I would never spend my harn earned dollars on such an overpriced piece of hardware over general principals.
    However, i do recognice that Steve Jobs was a business genius. Weather you like or love his ideas and methods, he turned a garage project into the biggest company in the world, with a market value higher than Exxon with 1/3 of it´s assets.
    Apple is a money making machine, and that is where the "hate" part of my relationship comes from.
    However, it surprised me a lot to see that they released iOS 6 for the iPhone 3GS, released in 2008!
    That get´s you thinking, that inside all that "SELL NOW" culture Apple is, they also support their older devices that people bought years ago but can't buy a new phone now. However, when they can do it, it will surely be another iPhone. Because they FEEL that the company listens and cares for them.
    Also if you jump from iOS 6 on the 3 GS to a brand new iPhone 5, the transition will be virtually non-existant, except for Siri and a couple of features.
    However jumping from Android 1.5 or 2.1 to Jelly Bean, might not be so easy on some users, making them more likely to give iPhone a shot.
    Since they have to adapt to another phone anyway, they might as well try the apple...
    And for old users, it gives people a sense of continuity and care about the user. Otherwise we feel like being kicked out of a restaurant right after we payed the bill.

  • I purchased and downloaded a full album on itunes today, when i got home i updated my phone and lost it all, how can i get this music back without paying for it again

    Today while driving home from vacation i purchased and downloaded the new Nichleback CD, when i got home, i plugged my phone into my computer to update everything and it pulled up a message saying something like "this computer has recognized an iPhone that is in memory update, you will need to restore the phone" or something similar to that, it had a picture of the power cord plugging into iTunes on the screen and i couldn't get rid of it, so i had to plug it in and restore everything, when it was done i noticed that not only did i loose the new CD that i had just purchased today but i lost all of the music that i've purchased since the last update. How can i restore this music without purchasing it all again?

    Media should be included with the backup of the computer that all users should be creating on a regular basis as part of basic computer/data maintenance.
    In the event that you do not have a backup (stop being lazy.... keep backups of YOUR data and other important files)
    If you are in the US and running iTunes 10.3 or later, it is possible to redownload music via iCloud from purchased history.
    If you are not in the US or for some reason cannot run iTunes 10.3 or later, contact iTunes customer support and ask very nicely for the opportunity to redownload the content.  They are not required to provide this opportunity.
    It is also possible to transfer content from an iDevice that was purchased via iTunes.  On the new computer, sign into the iTunes account, authorize the computer, connect the device then select File > Transfer Purchases.
    The simplest method of all is to transfer or copy the media (and other important files) from the old computer or the backup of the old computer.  Typing "move itunes library" into the search bar here or into google will reveal step by step instructions on how to do this.

  • OSX 10.9.5 Update Brought Back MacPro Restarts

    Here is the code through a reboot.  Long, but tiresome.  Help would be appreciated!  Reboots seemingly randomly.
    9/20/14 10:38:30.000 PM bootlog[0]: BOOT_TIME 1411270710 0
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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".
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM 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.
    9/20/14 10:38:31.000 PM kernel[0]: Longterm timer threshold: 1000 ms
    9/20/14 10:38:31.000 PM kernel[0]: PMAP: PCID enabled
    9/20/14 10:38:31.000 PM kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    9/20/14 10:38:31.000 PM kernel[0]: Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    9/20/14 10:38:31.000 PM kernel[0]: vm_page_bootstrap: 2919319 free pages and 210025 wired pages
    9/20/14 10:38:31.000 PM kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    9/20/14 10:38:31.000 PM kernel[0]: zone leak detection enabled
    9/20/14 10:38:31.000 PM kernel[0]: "vm_compressor_mode" is 4
    9/20/14 10:38:31.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    9/20/14 10:38:31.000 PM kernel[0]: standard background quantum is 2500 us
    9/20/14 10:38:31.000 PM kernel[0]: mig_table_max_displ = 74
    9/20/14 10:38:31.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=3 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=4 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=5 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=6 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=7 Enabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=8 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=9 LocalApicId=9 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=10 LocalApicId=10 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=11 LocalApicId=11 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=12 LocalApicId=12 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=13 LocalApicId=13 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=14 LocalApicId=14 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=15 LocalApicId=15 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=16 LocalApicId=16 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=17 LocalApicId=17 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=18 LocalApicId=18 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=19 LocalApicId=19 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=20 LocalApicId=20 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=21 LocalApicId=21 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=22 LocalApicId=22 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: AppleACPICPU: ProcessorId=23 LocalApicId=23 Disabled
    9/20/14 10:38:31.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    9/20/14 10:38:31.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    9/20/14 10:38:31.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    9/20/14 10:38:31.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    9/20/14 10:38:31.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    9/20/14 10:38:31.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    9/20/14 10:38:31.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    9/20/14 10:38:31.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    9/20/14 10:38:31.000 PM kernel[0]: MAC Framework successfully initialized
    9/20/14 10:38:31.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    9/20/14 10:38:31.000 PM kernel[0]: AppleKeyStore starting (BUILT: Aug 17 2014 20:21:39)
    9/20/14 10:38:31.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    9/20/14 10:38:31.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 88:111
    9/20/14 10:38:31.000 PM kernel[0]: ACPI: sleep states S3 S4 S5
    9/20/14 10:38:31.000 PM kernel[0]: pci (build 20:04:33 Aug 17 2014), flags 0x63008, pfm64 (44 cpu) 0xfff80000000, 0x80000000
    9/20/14 10:38:31.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0002
    9/20/14 10:38:31.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 20:17:40 Aug 17 2014) initialization complete
    9/20/14 10:38:31.000 PM kernel[0]: [ PCI configuration begin ]
    9/20/14 10:38:31.000 PM kernel[0]: console relocated to 0xfff80010000
    9/20/14 10:38:31.000 PM kernel[0]: [ PCI configuration end, bridges 40, devices 33 ]
    9/20/14 10:38:31.000 PM kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    9/20/14 10:38:31.000 PM kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    9/20/14 10:38:31.000 PM kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    9/20/14 10:38:31.000 PM kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    9/20/14 10:38:31.000 PM kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    9/20/14 10:38:31.000 PM kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    9/20/14 10:38:31.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    9/20/14 10:38:31.000 PM kernel[0]: rooting via boot-uuid from /chosen: ADFD8412-E25E-3852-956A-6B63EC480299
    9/20/14 10:38:31.000 PM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    9/20/14 10:38:31.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    9/20/14 10:38:30.462 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    9/20/14 10:38:31.000 PM kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    9/20/14 10:38:31.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    9/20/14 10:38:30.462 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    9/20/14 10:38:31.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    9/20/14 10:38:31.000 PM kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    9/20/14 10:38:31.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    9/20/14 10:38:31.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    9/20/14 10:38:31.000 PM kernel[0]: srom rev:11
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.536663: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.536672: Data written into the PLL_CNTRL_ADDR2: 00000c31
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.536719: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    9/20/14 10:38:31.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    9/20/14 10:38:31.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 7
    9/20/14 10:38:31.000 PM kernel[0]: jnl: b(1, 7): replay_journal: from: 20804096 to: 24945152 (joffset 0x19502000)
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.544963: BTCOEXIST off
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.545178: BRCM tunables:
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.545182:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    9/20/14 10:38:31.000 PM kernel[0]: ARPT: 0.545704: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0200004]
    9/20/14 10:38:31.000 PM kernel[0]: 6.30.223.154 (r420397)
    9/20/14 10:38:31.000 PM kernel[0]: jnl: b(1, 7): journal replay done.
    9/20/14 10:38:31.000 PM kernel[0]: hfs: mounted Macintosh HD on device root_device
    9/20/14 10:38:31.000 PM kernel[0]: hfs: Removed 24 orphaned / unlinked files and 0 directories
    9/20/14 10:38:31.000 PM kernel[0]: USBMSC Identifier (non-unique): 000000008163 0x5dc 0xb049 0x1, 2
    9/20/14 10:38:31.451 PM com.apple.SecurityServer[15]: Session 100000 created
    9/20/14 10:38:31.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    9/20/14 10:38:31.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    9/20/14 10:38:31.537 PM com.apple.SecurityServer[15]: Entering service
    9/20/14 10:38:31.587 PM UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    9/20/14 10:38:31.598 PM UserEventAgent[11]: Captive: CNPluginHandler en2: Inactive
    9/20/14 10:38:31.000 PM kernel[0]: Waiting for DSMOS...
    9/20/14 10:38:31.000 PM kernel[0]: AGC: 3.6.22, HW version=4.0.11 [3.2.8], flags:0, features:0
    9/20/14 10:38:31.000 PM kernel[0]: AppleIntelMCEReporter: start()
    9/20/14 10:38:31.000 PM kernel[0]: Previous Shutdown Cause: -63
    9/20/14 10:38:31.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    9/20/14 10:38:31.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828D FirmwareVersion - 0x0079
    9/20/14 10:38:31.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xfc00 ****
    9/20/14 10:38:31.000 PM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xfc00 ****
    9/20/14 10:38:31.000 PM kernel[0]: init
    9/20/14 10:38:31.000 PM kernel[0]: probe
    9/20/14 10:38:31.000 PM kernel[0]: start
    9/20/14 10:38:31.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xfc00
    9/20/14 10:38:31.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    9/20/14 10:38:31.645 PM mDNSResponder[52]: mDNSResponder mDNSResponder-522.92.1 (Jul 27 2014 17:31:49) starting OSXVers 13
    9/20/14 10:38:31.647 PM networkd[51]: networkd.51 built Aug 24 2013 22:08:46
    9/20/14 10:38:31.655 PM fseventsd[57]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (997 1 1134)
    9/20/14 10:38:31.655 PM fseventsd[57]: log dir: /.fseventsd getting new uuid: ED0DA028-3528-4348-84FB-2D3D366185D5
    9/20/14 10:38:31.000 PM kernel[0]: ** GPU Hardware VM is enabled (multispace: enabled, page table updates with DMA: enabled)
    9/20/14 10:38:31.000 PM kernel[0]: ** GPU Hardware VM is enabled (multispace: enabled, page table updates with DMA: enabled)
    9/20/14 10:38:31.000 PM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    9/20/14 10:38:31.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    9/20/14 10:38:31.000 PM kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x0c00 -- 0x3000 -- 0xfc00 ****
    9/20/14 10:38:31.703 PM systemkeychain[59]: done file: /var/run/systemkeychaincheck.done
    9/20/14 10:38:31.713 PM mDNSResponder[52]: D2D_IPC: Loaded
    9/20/14 10:38:31.713 PM mDNSResponder[52]: D2DInitialize succeeded
    9/20/14 10:38:31.714 PM mDNSResponder[52]:   4: Listening for incoming Unix Domain Socket client requests
    9/20/14 10:38:31.000 PM kernel[0]: DSMOS has arrived
    9/20/14 10:38:31.000 PM kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x8
    9/20/14 10:38:31.000 PM kernel[0]: Rebooted due to a SYS_RESET# event (Same as GEN_PMCON_2 bit 4)
    9/20/14 10:38:31.000 PM kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    9/20/14 10:38:31.941 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC304808560 Waynes-Mac-Pro.local. (Addr) that's already in the list
    9/20/14 10:38:31.941 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC3048089F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    9/20/14 10:38:31.942 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC306002D60 Waynes-Mac-Pro.local. (AAAA) that's already in the list
    9/20/14 10:38:31.942 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC3060031F0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.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
    9/20/14 10:38:32.040 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC304808560 Waynes-Mac-Pro.local. (Addr) that's already in the list
    9/20/14 10:38:32.040 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC3048089F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    9/20/14 10:38:32.041 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC306002D60 Waynes-Mac-Pro.local. (AAAA) that's already in the list
    9/20/14 10:38:32.041 PM mDNSResponder[52]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FC3060031F0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.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
    9/20/14 10:38:32.088 PM awacsd[74]: Starting awacsd connectivity_executables-97.1 (Jul 27 2014 17:02:42)
    9/20/14 10:38:32.163 PM UserEventAgent[11]: assertion failed: 13F34: com.apple.telemetry + 17495 [AE0C3032-1747-317E-9871-E26B5B6B0120]: 0xffffffffe00002eb
    9/20/14 10:38:32.219 PM apsd[76]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/20/14 10:38:32.260 PM awacsd[74]: Configuring lazy AWACS client: 65803744.p01.members.btmm.icloud.com.
    9/20/14 10:38:32.267 PM awacsd[74]: KV HTTP 0
    9/20/14 10:38:32.267 PM aosnotifyd[80]: assertion failed: 13F34: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    9/20/14 10:38:32.312 PM locationd[82]: NBB-Could not get UDID for stable refill timing, falling back on random
    9/20/14 10:38:32.329 PM locationd[82]: Location icon should now be in state 'Inactive'
    9/20/14 10:38:32.335 PM locationd[82]: locationd was started after an unclean shutdown
    9/20/14 10:38:32.000 PM kernel[0]: AirPort: Link Down on en2. Reason 8 (Disassociated because station leaving).
    9/20/14 10:38:32.780 PM configd[18]: dhcp_arp_router: en2 SSID unavailable
    9/20/14 10:38:32.788 PM configd[18]: network changed: DNS*
    9/20/14 10:38:32.791 PM mDNSResponder[52]: Adding registration domain 65803744.members.btmm.icloud.com.
    9/20/14 10:38:32.805 PM configd[18]: setting hostname to "Waynes-Mac-Pro.local"
    9/20/14 10:38:33.000 PM kernel[0]: hfs: mounted Recovery HD on device disk0s3
    9/20/14 10:38:33.148 PM fseventsd[57]: Logging disabled completely for device:1: /Volumes/Recovery HD
    9/20/14 10:38:33.000 PM kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 109
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 966
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 109
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 966
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDevice at line 1654
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 129
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 827
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 109
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 1363
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 109
    9/20/14 10:38:33.000 PM kernel[0]: USB Sound assertion in AppleUSBAudioDictionary at line 1363
    9/20/14 10:38:33.000 PM kernel[0]: USBMSC Identifier (non-unique): 000022272228 0x424 0x2228 0x449, 2
    9/20/14 10:38:34.000 PM kernel[0]: USBMSC Identifier (non-unique): 070911104778 0x424 0x2228 0x444, 2
    9/20/14 10:38:36.459 PM hidd[115]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    9/20/14 10:38:36.461 PM hidd[115]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    9/20/14 10:38:36.000 PM kernel[0]: VM Swap Subsystem is ON
    9/20/14 10:38:36.475 PM kdc[113]: label: default
    9/20/14 10:38:36.476 PM kdc[113]: dbname: od:/Local/Default
    9/20/14 10:38:36.476 PM kdc[113]: mkey_file: /var/db/krb5kdc/m-key
    9/20/14 10:38:36.476 PM kdc[113]: acl_file: /var/db/krb5kdc/kadmind.acl
    9/20/14 10:38:36.492 PM kdc[113]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    9/20/14 10:38:36.517 PM com.apple.usbmuxd[94]: usbmuxd-344 on Jul 29 2014 at 13:52:57, running 64 bit
    9/20/14 10:38:36.537 PM digest-service[127]: label: default
    9/20/14 10:38:36.537 PM digest-service[127]: dbname: od:/Local/Default
    9/20/14 10:38:36.537 PM digest-service[127]: mkey_file: /var/db/krb5kdc/m-key
    9/20/14 10:38:36.537 PM digest-service[127]: acl_file: /var/db/krb5kdc/kadmind.acl
    9/20/14 10:38:36.538 PM loginwindow[110]: Login Window Application Started
    9/20/14 10:38:36.539 PM digest-service[127]: digest-request: uid=0
    9/20/14 10:38:36.545 PM mds[107]: (Normal) FMW: FMW 0 0
    9/20/14 10:38:36.555 PM kdc[113]: KDC started
    9/20/14 10:38:36.567 PM digest-service[127]: digest-request: netr probe 0
    9/20/14 10:38:36.567 PM digest-service[127]: digest-request: init request
    9/20/14 10:38:36.573 PM digest-service[127]: digest-request: init return domain: BUILTIN server: WAYNES-MAC-PRO indomain was: <NULL>
    9/20/14 10:38:36.584 PM WindowServer[133]: Server is starting up
    9/20/14 10:38:36.629 PM airportd[126]: airportdProcessDLILEvent: en2 attached (up)
    9/20/14 10:38:36.000 PM kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    9/20/14 10:38:36.000 PM kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    9/20/14 10:38:36.695 PM mds[107]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    9/20/14 10:38:36.872 PM sandboxd[140]: ([126]) airportd(126) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.9526EFB7-C086-5 60F-805C-79CB0AF72BE8.plist
    9/20/14 10:38:37.000 PM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 1-Gigabit, Full-duplex, Symmetric flow-control, Debug [796d,0301,0de1,0300,c5e1,3800]
    9/20/14 10:38:37.322 PM awacsd[74]: KV HTTP 0
    9/20/14 10:38:37.000 PM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en1, 1-Gigabit, Full-duplex, Symmetric flow-control, Debug [796d,0301,0de1,0300,cde1,3800]
    9/20/14 10:38:37.000 PM kernel[0]: en2: 802.11d country code set to 'US'.
    9/20/14 10:38:37.000 PM kernel[0]: en2: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 144 149 153 157 161 165
    9/20/14 10:38:38.103 PM configd[18]: network changed: v4(en0+:10.0.1.17) DNS+ Proxy+ SMB
    9/20/14 10:38:39.788 PM ntpd[91]: proto: precision = 1.000 usec
    9/20/14 10:38:40.062 PM racoon[145]: accepted connection on vpn control socket.
    9/20/14 10:38:40.000 PM kernel[0]: [BNBTrackpadDevice::init][80.14] init is complete
    9/20/14 10:38:40.000 PM kernel[0]: [BNBTrackpadDevice::handleStart][80.14] returning 1
    9/20/14 10:38:40.000 PM kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    9/20/14 10:38:40.000 PM kernel[0]: [AppleMultitouchDevice::start] entered
    9/20/14 10:38:41.219 PM apsd[76]: Unrecognized leaf certificate
    9/20/14 10:38:41.332 PM awacsd[74]: Connecting AWACS client: 65803744.p01.members.btmm.icloud.com.
    9/20/14 10:38:43.632 PM apsd[76]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    9/20/14 10:38:46.841 PM ntpd[91]: ntpd: time set +0.179008 s
    9/20/14 10:38:48.071 PM stackshot[97]: Timed out waiting for IOKit to finish matching.
    9/20/14 10:38:49.000 PM kernel[0]: utun_ctl_connect: creating interface utun0
    9/20/14 10:38:50.232 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.232 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.232 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.232 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.000 PM kernel[0]: utun_ctl_connect: creating interface utun1
    9/20/14 10:38:50.964 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.964 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.964 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.964 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.966 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.968 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.968 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.968 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.968 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.968 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.969 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.969 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.969 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.970 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.971 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.000 PM kernel[0]: en3: promiscuous mode enable succeeded
    9/20/14 10:38:50.000 PM kernel[0]: en4: promiscuous mode enable succeeded
    9/20/14 10:38:50.000 PM kernel[0]: en5: promiscuous mode enable succeeded
    9/20/14 10:38:50.000 PM kernel[0]: en6: promiscuous mode enable succeeded
    9/20/14 10:38:50.000 PM kernel[0]: en7: promiscuous mode enable succeeded
    9/20/14 10:38:50.000 PM kernel[0]: en8: promiscuous mode enable succeeded
    9/20/14 10:38:50.000 PM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    9/20/14 10:38:50.997 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.997 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.997 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.998 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.998 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.998 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.998 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:50.998 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:50.999 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:50.999 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.000 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.000 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.000 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.000 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.000 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.000 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.001 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.001 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.001 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.001 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.001 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.002 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.002 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.002 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.003 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.005 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.007 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:51.009 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:52.070 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:52.070 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:52.070 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:52.071 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:52.072 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:52.072 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:52.072 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:52.072 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:52.074 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:38:52.074 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:52.074 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:38:52.074 PM racoon[145]: failed to bind to address fd40:1fae:c54:a071:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:38:58.293 PM configd[18]: network changed: v4(en0:10.0.1.17) DNS Proxy SMB
    9/20/14 10:38:59.449 PM ntpd[91]: FREQ state ignoring -0.150476 s
    9/20/14 10:39:00.370 PM mDNSResponder[52]: getExtendedFlags: SIOCGIFEFLAGS failed, errno = 6 (Device not configured)
    9/20/14 10:39:00.370 PM racoon[145]: ioctl(SIOCGIFAFLAG_IN6) failed:Device not configured
    9/20/14 10:39:00.370 PM racoon[145]: ioctl(SIOCGIFAFLAG_IN6) failed:Device not configured
    9/20/14 10:39:00.371 PM racoon[145]: failed to bind to address fe80::23e:e1ff:febf:aa57%en1[500] (Address already in use).
    9/20/14 10:39:00.371 PM racoon[145]: failed to bind to address fe80::23e:e1ff:febf:aa57%en1[4500] (Address already in use).
    9/20/14 10:39:00.371 PM racoon[145]: failed to bind to address fe80::23e:e1ff:febf:aa58%en0[500] (Address already in use).
    9/20/14 10:39:00.371 PM racoon[145]: failed to bind to address fe80::23e:e1ff:febf:aa58%en0[4500] (Address already in use).
    9/20/14 10:39:00.371 PM racoon[145]: failed to bind to address fe80::1%lo0[500] (Address already in use).
    9/20/14 10:39:00.371 PM racoon[145]: failed to bind to address fe80::1%lo0[4500] (Address already in use).
    9/20/14 10:39:00.372 PM racoon[145]: failed to bind to address ::1[4500] (Address already in use).
    9/20/14 10:39:04.000 PM kernel[0]: utun_ctl_connect: creating interface utun0
    9/20/14 10:39:04.000 PM kernel[0]: utun0: attached with 0 suspended link-layer multicast membership(s)
    9/20/14 10:39:05.634 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500] (Can't assign requested address).
    9/20/14 10:39:05.634 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[500]: because interface address is/was not ready (flags 2).
    9/20/14 10:39:05.634 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500] (Can't assign requested address).
    9/20/14 10:39:05.634 PM racoon[145]: failed to bind to address fd00:6587:52d7:417:7892:697d:8b2c:1d81[4500]: because interface address is/was not ready (flags 2).
    9/20/14 10:39:06.036 PM ntpd[91]: FREQ state ignoring +0.039133 s
    9/20/14 10:39:09.023 PM WindowServer[133]: Session 256 retained (2 references)
    9/20/14 10:39:09.023 PM WindowServer[133]: Session 256 released (1 references)
    9/20/14 10:39:09.033 PM WindowServer[133]: Session 256 retained (2 references)
    9/20/14 10:39:09.035 PM WindowServer[133]: init_page_flip: page flip mode is on
    9/20/14 10:39:09.266 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.306 PM WindowServer[133]: Found 57 modes for display 0x00000000 [57, 0]
    9/20/14 10:39:09.321 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.338 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.354 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.372 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.388 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.400 PM WindowServer[133]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe00002bc)
    9/20/14 10:39:09.400 PM WindowServer[133]: mux_initialize: Mode is safe
    9/20/14 10:39:09.402 PM WindowServer[133]: Found 57 modes for display 0x00000000 [57, 0]
    9/20/14 10:39:09.412 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.412 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.413 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.413 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.413 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.413 PM WindowServer[133]: Found 1 modes for display 0x00000000 [1, 0]
    9/20/14 10:39:09.440 PM WindowServer[133]: WSMachineUsesNewStyleMirroring: false
    9/20/14 10:39:09.442 PM WindowServer[133]: Display 0x2b1036b4: GL mask 0x1; bounds (0, 0)[2560 x 1600], 57 modes available
    Main, Active, on-line, enabled, boot, Vendor 10ac, Model 4016, S/N 47313335, Unit 0, Rotation 0
    UUID 0xfe3887844d592291e709779879259811
    9/20/14 10:39:09.442 PM WindowServer[133]: Display 0x003f0042: GL mask 0x40; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.442 PM WindowServer[133]: Display 0x003f0041: GL mask 0x20; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.442 PM WindowServer[133]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.442 PM WindowServer[133]: 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
    9/20/14 10:39:09.442 PM WindowServer[133]: 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
    9/20/14 10:39:09.442 PM WindowServer[133]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.442 PM WindowServer[133]: Display 0x003f0043: GL mask 0x80; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.443 PM WindowServer[133]: WSSetWindowTransform: Singular matrix
    9/20/14 10:39:09.443 PM WindowServer[133]: WSSetWindowTransform: Singular matrix
    9/20/14 10:39:09.443 PM WindowServer[133]: WSSetWindowTransform: Singular matrix
    9/20/14 10:39:09.443 PM WindowServer[133]: WSSetWindowTransform: Singular matrix
    9/20/14 10:39:09.443 PM WindowServer[133]: WSSetWindowTransform: Singular matrix
    9/20/14 10:39:09.443 PM WindowServer[133]: WSSetWindowTransform: Singular matrix
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x2b1036b4: GL mask 0x1; bounds (0, 0)[2560 x 1600], 57 modes available
    Main, Active, on-line, enabled, boot, Vendor 10ac, Model 4016, S/N 47313335, Unit 0, Rotation 0
    UUID 0xfe3887844d592291e709779879259811
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f0042: GL mask 0x40; bounds (3584, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f0041: GL mask 0x20; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f0040: GL mask 0x10; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f003f: GL mask 0x8; bounds (3587, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f003e: GL mask 0x4; bounds (3588, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f003d: GL mask 0x2; bounds (3589, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: Display 0x003f0043: GL mask 0x80; bounds (3590, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:09.446 PM WindowServer[133]: CGXPerformInitialDisplayConfiguration
    9/20/14 10:39:09.446 PM WindowServer[133]:   Display 0x2b1036b4: Unit 0; Vendor 0x10ac Model 0x4016 S/N 1194406709 Dimensions 25.43 x 15.98; online enabled, Bounds (0,0)[2560 x 1600], Rotation 0, Resolution 1
    9/20/14 10:39:09.446 PM WindowServer[133]:   Display 0x003f0042: Unit 6; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.446 PM WindowServer[133]:   Display 0x003f0041: Unit 5; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3585,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.446 PM WindowServer[133]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3586,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.446 PM WindowServer[133]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3587,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.446 PM WindowServer[133]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3588,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.447 PM WindowServer[133]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3589,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.447 PM WindowServer[133]:   Display 0x003f0043: Unit 7; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3590,0)[1 x 1], Rotation 0, Resolution 1
    9/20/14 10:39:09.447 PM WindowServer[133]: CGXMuxBoot: Boot normal
    9/20/14 10:39:09.455 PM WindowServer[133]: GLCompositor: GL renderer id 0x01021c02, GL mask 0x0000007f, accelerator 0x00005703, unit 0, caps QEX|MIPMAP, vram 2048 MB
    9/20/14 10:39:09.455 PM WindowServer[133]: GLCompositor: GL renderer id 0x01021c02, GL mask 0x0000007f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/14 10:39:09.455 PM WindowServer[133]: GLCompositor: GL renderer id 0x02021c02, GL mask 0x00000080, accelerator 0x0000342b, unit 7, caps QEX|MIPMAP, vram 2048 MB
    9/20/14 10:39:09.456 PM WindowServer[133]: GLCompositor: GL renderer id 0x02021c02, GL mask 0x00000080, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/14 10:39:09.456 PM WindowServer[133]: GLCompositor enabled for tile size [256 x 256]
    9/20/14 10:39:09.456 PM WindowServer[133]: CGXGLInitMipMap: mip map mode is on
    9/20/14 10:39:09.461 PM loginwindow[110]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    9/20/14 10:39:09.482 PM WindowServer[133]: Display 0x2b1036b4: Unit 0; ColorProfile { 2, "DELL 3007WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    9/20/14 10:39:09.500 PM launchctl[170]: com.apple.findmymacmessenger: Already loaded
    9/20/14 10:39:09.515 PM com.apple.SecurityServer[15]: Session 100006 created
    9/20/14 10:39:09.548 PM UserEventAgent[172]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    9/20/14 10:39:09.576 PM loginwindow[110]: Login Window Started Security Agent
    9/20/14 10:39:09.632 PM SecurityAgent[178]: This is the first run
    9/20/14 10:39:09.632 PM SecurityAgent[178]: MacBuddy was run = 0
    9/20/14 10:39:09.656 PM WindowServer[133]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x2b1036b4 device: 0x7fa5c2001af0  isBackBuffered: 1 numComp: 3 numDisp: 3
    9/20/14 10:39:09.656 PM WindowServer[133]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa5c2001af0) - enabling OpenGL
    9/20/14 10:39:09.000 PM kernel[0]: hfs: early journal init: volume on disk3 is read-only and journal is dirty.  Can not mount volume.
    9/20/14 10:39:09.000 PM kernel[0]: hfs_mountfs: hfs_early_journal_init failed, erroring out
    9/20/14 10:39:09.000 PM kernel[0]: hfs_mount: hfs_mountfs returned error=22 for device disk3
    9/20/14 10:39:09.874 PM diskarbitrationd[17]: unable to mount /dev/disk3 (status code 0x00000001).
    9/20/14 10:39:10.000 PM kernel[0]: jnl: disk3: replay_journal: from: 372322304 to: 375562240 (joffset 0x5756000)
    9/20/14 10:39:10.109 PM WindowServer[133]: Received display connect changed for display 0x2b1036b4
    9/20/14 10:39:10.110 PM WindowServer[133]: Found 57 modes for display 0x2b1036b4 [57, 0]
    9/20/14 10:39:10.111 PM WindowServer[133]: Received display connect changed for display 0x3f003d
    9/20/14 10:39:10.113 PM WindowServer[133]: Found 84 modes for display 0x003f003d [84, 0]
    9/20/14 10:39:10.113 PM WindowServer[133]: Display 0x003f003d changed state to online
    9/20/14 10:39:10.119 PM WindowServer[133]: Received display connect changed for display 0x3f003e
    9/20/14 10:39:10.120 PM WindowServer[133]: Found 1 modes for display 0x003f003e [1, 0]
    9/20/14 10:39:10.120 PM WindowServer[133]: Received display connect changed for display 0x3f003f
    9/20/14 10:39:10.120 PM WindowServer[133]: Found 1 modes for display 0x003f003f [1, 0]
    9/20/14 10:39:10.120 PM WindowServer[133]: Received display connect changed for display 0x3f0040
    9/20/14 10:39:10.120 PM WindowServer[133]: Found 1 modes for display 0x003f0040 [1, 0]
    9/20/14 10:39:10.120 PM WindowServer[133]: Received display connect changed for display 0x3f0041
    9/20/14 10:39:10.120 PM WindowServer[133]: Found 1 modes for display 0x003f0041 [1, 0]
    9/20/14 10:39:10.136 PM WindowServer[133]: MPServiceForDisplayDevice: Invalid device alias (0)
    9/20/14 10:39:10.136 PM WindowServer[133]: Display 0x2b1036b4: GL mask 0x1; bounds (0, 0)[2560 x 1600], 57 modes available
    Main, Active, on-line, enabled, boot, OpenGL-accel, Vendor 10ac, Model 4016, S/N 47313335, Unit 0, Rotation 0
    UUID 0xfe3887844d592291e709779879259811, ColorProfile { 2, "DELL 3007WFP"}
    9/20/14 10:39:10.136 PM WindowServer[133]: GLCompositor: GL renderer id 0x01021c02, GL mask 0x0000007f, accelerator 0x00005703, unit 0, caps QEX|MIPMAP, vram 2048 MB
    texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/14 10:39:10.136 PM WindowServer[133]: Display 0x003f0042: GL mask 0x40; bounds (3584, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.136 PM WindowServer[133]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa5c2005a00) - enabling OpenGL
    9/20/14 10:39:10.136 PM WindowServer[133]: GLCompositor: GL renderer id 0x01021c02, GL mask 0x0000007f, accelerator 0x00005703, unit 0, caps QEX|MIPMAP, vram 2048 MB
    texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/14 10:39:10.137 PM WindowServer[133]: Display 0x003f0041: GL mask 0x20; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.137 PM WindowServer[133]: Display 0x003f0040: GL mask 0x10; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.137 PM WindowServer[133]: Display 0x003f003f: GL mask 0x8; bounds (3587, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.137 PM WindowServer[133]: Display 0x003f003e: GL mask 0x4; bounds (3588, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.137 PM WindowServer[133]: Display 0x2b2859d1: GL mask 0x2; bounds (-1200, 0)[1200 x 1920], 84 modes available
    Active, on-line, enabled, Vendor 10ac, Model a026, S/N 33475053, Unit 1, Rotation 90
    UUID 0xa08d0193ff042eeb2fa7fbbaa1336065
    9/20/14 10:39:10.137 PM WindowServer[133]: Display 0x003f0043: GL mask 0x80; bounds (3590, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.388 PM WindowServer[133]: CGError post_notification(const CGSNotificationType, void *const, const size_t, const bool, const CGSRealTimeDelta, const int, const CGSConnectionID *const, const pid_t): Timed out 0.250 second wait for reply from "universalaccessd" for synchronous notification type 100 (kCGSDisplayWillReconfigure) (CID 0xa20f, PID 173)
    9/20/14 10:39:10.406 PM parentalcontrolsd[197]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    9/20/14 10:39:10.478 PM WindowServer[133]: Display added
    9/20/14 10:39:10.478 PM WindowServer[133]: Display removed
    9/20/14 10:39:10.479 PM WindowServer[133]: Display 0x2b1036b4: GL mask 0x1; bounds (0, 0)[2560 x 1600], 57 modes available
    Main, Active, on-line, enabled, boot, OpenGL-accel, Vendor 10ac, Model 4016, S/N 47313335, Unit 0, Rotation 0
    UUID 0xfe3887844d592291e709779879259811, ColorProfile { 2, "DELL 3007WFP"}
    9/20/14 10:39:10.479 PM WindowServer[133]: GLCompositor: GL renderer id 0x01021c02, GL mask 0x0000007f, accelerator 0x00005703, unit 0, caps QEX|MIPMAP, vram 2048 MB
    texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/14 10:39:10.479 PM WindowServer[133]: Display 0x003f0042: GL mask 0x40; bounds (3584, 0)[1 x 1], 2 modes available
    off-line, enabled, OpenGL-accel, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.479 PM WindowServer[133]: GLCompositor: GL renderer id 0x01021c02, GL mask 0x0000007f, accelerator 0x00005703, unit 0, caps QEX|MIPMAP, vram 2048 MB
    texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    9/20/14 10:39:10.479 PM WindowServer[133]: Display 0x003f0041: GL mask 0x20; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.479 PM WindowServer[133]: Display 0x003f0040: GL mask 0x10; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.480 PM WindowServer[133]: Display 0x003f003f: GL mask 0x8; bounds (3587, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.480 PM WindowServer[133]: Display 0x003f003e: GL mask 0x4; bounds (3588, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    9/20/14 10:39:10.480 PM WindowServer[133]: Display 0x2b2859d1: GL mask 0x2; bounds (-1200, 0)[1200 x 1920], 84 modes available
    Active, on-line, enabled, Vendor 10ac, Model a026, S/N 33475053, Unit 1, Rotation 90
    UUID 0xa08d0193ff042eeb2fa7fbbaa1336065
    9/20/14 10:39:10.480 PM WindowServer[133]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa5c200

    I've also been having this problem. My computer now consistently shuts down between 10 seconds and 2 minutes of startup. This only happens if my computer is not plugged in. (my battery has been between 70-90% the entire time.) If I keep it plugged in...no problems.
    13-inch, Mid 2013 MacBook Air
    1.3 Ghz Intel Core i5, 8 GB 1600 Mhz DDr3).

  • Can't update, do not have permissions

    First off, cards on table, I am the sort of lazy person who just wants to switch on my computer and start using Photoshop or my other applications, I have no real interest in the background stuff (at which point I begin to display luddite tendencies)
    Recently my old imac ceased to work and, given its age, didn't bother with a repair option. I bought a new imac and asked the shop to remove the hard drive from the old one as indications were that it was OK. While waiting for this I set up the new mac as I didn't want delay in access to emails and the internet so did not use Setup Assistant. On receiving the hard drive I used Migration to transfer my stuff.
    At one point in this process a message flashed up, I can't remember the exact wording, but something about not being able to transfer some items as it had an identical account name as the account on the machine I was transferring to. Without thinking of any ramifications I entered a new name and the transfer continued. Some applications appeared on my new machine in a folder assigned to this 'phoney' name but I was able to transfer and activate them using my 'real' account password.
    Everything has been working well until I just tried to install an update to one application. On dragging to install I get a message stating I do not have permission to do so. Going to Get Info I discovered that read and write permissions are held by the 'phoney' name I created for migration. Further checks show this applies to some, but not all, of the applications I transferred. Looking at system preferences I see that under 'other accounts' the 'phoney' name is listed (as admin).
    Am I correct in thinking that I could install the upgrade by either logging in as the 'phoney' name, or, alternatively, staying logged in as me and trashing the old version of the application before installing the upgrade. (Would this work for all other upgrades for any other applications that 'phoney' has permissions for, I've never understood if an upgrade is always a complete new clean installation or the installation of small alterations to an existing programme) If this method would work would it gradually put 'phoney' out of the system.
    Finally (and apologies for this rambling post but as I stated I am in territory I don't fully understand and would prefer in an ideal world not have to bother about – same with my car oil, water and tyre pressure are about my limit of interest) ) is their a simple solution to changing all the permissions over to me and then deleting 'phoney'.
    Thanks

    If you are dragging and dropping a new application that replaces the old one, then what you can do is first delete the old version, which will require your admin password, and then drag the new version into the Applications folder.
    As you say you don't understand if it is changes or full replacement, that would be really important to know right now. However, if you download the update and it is one which to drag from the install disk into Applications, then it is replacing the whole thing. My above advice should fix that case.
    If the Application is modifying itself, then you'd need to change the permissions on the app.
    My suggestion would be to download [BatChmod|http://www.macchampion.com/arbysoft/BatchMod/Welcome.html] and set the permissions that way. While most apps you drag and drop install get the name of the person who dropped them, you can use root:admin as the owner:group. What you want is for the owner to have read, write, execute permissions, and group and others (everyone) to have read and execute. You also want to apply to enclosed and files.
    You can drag the app to the BatChmod interface and it will show you the permissions and owner. What you want to see is
    owner: group: everyone
    root (or your real user name) admin
    R W X R X R X

  • Get OLD&NEW value of an UPDATED column selected dynamically in a Trigger

    Hi All,
    I am writting a trigger which take column name dynamically. And on the basis of that column it should give me old value as well as updated value of a column corresponding to a modified row.
    OOO_SCHEDULE is my table name;
    Note: This is only for test so I am writting only for update not for insert and delete.
    create or replace trigger "OOO_SCHEDULE_AUDIT"
    BEFORE
    insert or update or delete on "OOO_SCHEDULE"
    for each row
    begin
    DECLARE
    v_username varchar2(30);
    AUDIT_EMP_ID varchar2(30);
    AUDIT_EMP_ID_NEW varchar2(30);
    v_Column_name VARCHAR(30);
    v_stmt1 VARCHAR(40);
    v_stmt2 VARCHAR(40);
    CURSOR C1 is
    select COLUMN_NAME from user_tab_columns where table_name='OOO_SCHEDULE';
    BEGIN
    OPEN c1;
    LOOP
    FETCH c1 into v_Column_name;
    EXIT WHEN c1%NOTFOUND;
    v_stmt1:=('OLD.'||v_Column_name);
    v_stmt2:=('NEW.'||v_Column_name);
    AUDIT_EMP_ID:=v_stmt1;
    AUDIT_EMP_ID_NEW:=v_stmt2;
    INSERT INTO TEMPTEST VALUES(v_stmt1);
    INSERT INTO TEMPTEST VALUES(AUDIT_EMP_ID);
    END LOOP;
    CLOSE c1;
    END;
    end;
    Suppose OOO_EMP_NAME is the column name where user made the change.
    If i do like this..
    AUDIT_EMP_ID:=OLD.OOO_EMP_NAME;
    AUDIT_EMP_ID_NEW:=NEW.OOO_EMP_NAME;
    Then it is working fine because I have given column name statically. But I want the column name to be selected dynamically and I am able to do it through cursor. Also I am able to fetch all column names in v_Column_name variable one by one dyanamically for the cursor.
    But by executing these statements
    AUDIT_EMP_ID:=v_stmt1;
    AUDIT_EMP_ID_NEW:=v_stmt2;
    I am getting OLD.OOO_EMP_NAME and NEW.OOO_EMP_NAME rather then old and new values of the updated column.
    Please help me identifying the problem, where I am doing the mistake? What is the correct way to execute these statements? So that I can get old and new values of the column (updated column).
    I have tried it by passing in a procedure also but don't know how to execute this dynamic statement to get the old and new values.
    Thanks,
    Ishrat.

    In the given link, column name has been selected statically. But i want that column name should be selected daynamically throgh loop and then check the
    condition for any update corresponding to that column value. I don't want to write as many if condition as the no. of column name. I just want one if condition for all column namesDon't be lazy. Write all column names into your trigger. Or use a way to create the trigger "dynamically".
    What is the problem that you have with static column names? "I don't want to write many..." is not a problem, but an opinion.

  • Error while updating JAVA stack patchs

    hi i was updating JAVA stack patches from JSPM. and i got this error
    10/12/09 15:53:33 -  Start updating EAR file...
    10/12/09 15:53:33 -  start-up mode is lazy
    10/12/09 15:53:33 -  EAR file updated successfully for 118ms.
    10/12/09 15:53:33 -  Start deploying ...
    10/12/09 15:53:41 -  EAR file uploaded to server for 7537ms.
    10/12/09 15:53:43 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/tcwdsamplestestsuiteuuie..
                         Reason: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:
                            com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:569)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
                         Caused by: com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
                            at com.sap.engine.services.webdynpro.WebDynproContainer.deploy(WebDynproContainer.java:1052)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
                            at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3187)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:554)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    predecessor system -
                         com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
                            at com.sap.engine.services.webdynpro.WebDynproContainer.deploy(WebDynproContainer.java:1052)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
                            at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3187)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:554)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
                         For detailed information see the log file of the Deploy Service.
    10/12/09 15:53:43 -  ***********************************************************
    Dec 9, 2010 3:53:43 PM   Info: End of log messages of the target system.
    Dec 9, 2010 3:53:43 PM   Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Dec 9, 2010 3:53:43 PM   Error: Aborted: development component 'tc/wd/samples/testsuite/uuie'/'sap.com'/'SAP AG'/'7.0013.20070703112808.0000'/'8', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214121635''/'7':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/tcwdsamplestestsuiteuuie..
    Reason: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:
            com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Dec 9, 2010 3:53:43 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:43 PM   Info: Finished saving the repository for 205 ms.
    Dec 9, 2010 3:53:43 PM   Info: Starting: Initial deployment: Selected software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214121635''/'7' will be deployed.
    Dec 9, 2010 3:53:43 PM   Error: Aborted: software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214121635''/'7':
    Failed deployment of SDAs:
    development component 'tc/wd/samples/testsuite/uuie'/'sap.com'/'SAP AG'/'7.0013.20070703112808.0000'/'8' : aborted
    Please, look at error logs above for more information!
    Dec 9, 2010 3:53:43 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:43 PM   Info: Finished saving the repository for 209 ms.
    Dec 9, 2010 3:53:43 PM   Info: Starting: Update: Selected software component 'BI_UDI'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214120518''/'7' updates currently deployed software component 'BI_UDI'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210170522''/'0'.
    Dec 9, 2010 3:53:43 PM   Error: Aborted: software component 'BI_UDI'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214120518''/'7':
    No further description found.
    Dec 9, 2010 3:53:43 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:44 PM   Info: Finished saving the repository for 313 ms.
    Dec 9, 2010 3:53:44 PM   Info: Starting: Update: Selected software component 'CAF'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118105934''/'7' updates currently deployed software component 'CAF'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071210162941''/'0'.
    Dec 9, 2010 3:53:44 PM   Error: Aborted: software component 'CAF'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118105934''/'7':
    No further description found.
    Dec 9, 2010 3:53:44 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:44 PM   Info: Finished saving the repository for 229 ms.
    Dec 9, 2010 3:53:44 PM   Info: Starting: Update: Selected software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20100122081155''/'5' updates currently deployed software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210193159''/'0'.
    Dec 9, 2010 3:53:44 PM   Error: Aborted: software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20100122081155''/'5':
    No further description found.
    Dec 9, 2010 3:53:44 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:44 PM   Info: Finished saving the repository for 210 ms.
    Dec 9, 2010 3:53:44 PM   Info: Starting: Update: Selected software component 'LM-TOOLS'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118110644''/'7' updates currently deployed software component 'LM-TOOLS'/'sap.com'/'MAIN_APL70P14_C'/'1000.7.00.14.1.20080124101556''/'0'.
    Dec 9, 2010 3:53:44 PM   Error: Aborted: software component 'LM-TOOLS'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118110644''/'7':
    No further description found.
    Dec 9, 2010 3:53:44 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 353 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'UWLJWF'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204516''/'5' updates currently deployed software component 'UWLJWF'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210194048''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'UWLJWF'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204516''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 213 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'SAP-EU'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118101502''/'5' updates currently deployed software component 'SAP-EU'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071210153525''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'SAP-EU'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118101502''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 213 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'VCFLEX'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204617''/'5' updates currently deployed software component 'VCFLEX'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210153724''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'VCFLEX'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204617''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 331 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'VCFRAMEWORK'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204625''/'5' updates currently deployed software component 'VCFRAMEWORK'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210153730''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'VCFRAMEWORK'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204625''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:46 PM   Info: Finished saving the repository for 230 ms.
    Dec 9, 2010 3:53:46 PM   Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Dec 9, 2010 3:53:46 PM   Error: -
    At least one of the Deployments failed -
    lgsep:/usr/sap/LEP/JC00/SDM/program/log #

    Hi ,
    Please check :
    https://wiki.sdn.sap.com/wiki/display/WDJava/Clusterwideexception-FailedtodeployWebDynprocontentforapplication
    Regards,
    Nibu Antony
    Edited by: Nibu Antony on Dec 13, 2010 2:52 PM

  • Onboard Mac Lan no longer works after 1.9 update!!!

    I was using bios v1.8 and both my Mac Lan and my Giga Lan were working perfectly fine. Now that i updated to v1.9 my Mac Lan no longer works but my Giga is fine!!! 
    My Mac Lan still gets an ip address from my router, but i cannot ping the router nor anyone else on the network and my internet does not work!! So right now im using my Giga lan but i want my other one working like it was.
    I tried going BACK to v1.8 but it did not fix the problem, so i went back yet again to v1.9 and im still left with the same problem.  Ive tired disabling it and re-enabling it in both the bios and in windows and still nothing. Ive also tried re-installing the drivers and that did not work either. I even ran a Winsock Fix but that didn't fix the problem either.
    Is anyone else having this problem besides me? what can i do to fix it???

    Download new bios and extract it to a directory where you can find it (root of c:\ if you are lazy like me).  Run wminfo if you are paranoid about losing your mac address and copy it down for your nvidia adapter.
    Restart windows in safe mode.  Close every application down in task manager. 
    Run winflash as described below and CHECK ALL THE RIGHT BOXES TO UPDATE BOOTBLOCK AND TO CLEAR THY CMOS.  Read Syar's description below as that is what I used:
    Quote from: syar2003 on 30-July-05, 00:24:48
    No , floppy flash is not neccesary !
    Can use
    C:\Program Files\MSI\Live Update 3\FlashUty\Award
    winflash.exe
    Place checkmarks on bootblock/dmi area/update all/clear cmos
    During flashing you see it will verify the programming of the bios chip .
    And the good thing is unlike dos flash you can redo it if it fails , just by starting taskmanager and kill winflash.exe
    and start over (as long as the machine isn't powered down or restarted).
    I always say no after the flashing when asked to restart , exit the winflash utility , make a normal shutdown , turn off PSU for 10 seconds , then turn back
    on , enter bios and load optimized default , followed by a boot to build/update dmi pool .
    Kill all unwanted apps in the systemtray before running winflash and dont have any other applications running .
    Best way is to boot to windows safemode .

Maybe you are looking for

  • Import photos to FCP Images stretch out

    While I import photos to FCP, it stretch the images, I have been change the images size to 720x480, and adjust setting to 16:9 or 4:3, the problem still there, look like wide screen images fitting into the full screen. any help will be appreciate. Tk

  • Cisco ASA Upgrade from 7.0(8) to 8.2(1)

    Hi,   i need to upgrade my 5510 ASA from 7.0(8) to 8.2(1)       ( Please note its different query from my last thread) what i found online is i will have to do this upgrade in sequence, that is 7.0.x -> 7.2.x --> 8.0.x --> 8.2.1 is that correct? or i

  • Clicked on Send for a cmposed email but it was not sent and the symbol circling showed something was happening.

    I clicked on Send for an email I had composed. All that happened is that the rotating symbol showed that something was happening but the usual message that the email had been sent did not appear within about ten minutes. I have had this problem occur

  • Help with expression

    I am using a simple line of PS to pull a list of users display names and their employee ID's, along with an expression to get their managers display names.  Is there an easy way to modify the expression to pull the manager's name AND manager's employ

  • Should I Be Concerned About My Hard disk?

    Hey, This is probably really stupid to ask, but I have a question about the Hard Disk on my MacBook... I just bought it the other day and knew it was a 60GB MacBook when I bought it. As of right now it has around 38.74GB available, but that number se