Readouts from Console.app

How can i know from Console logs, if & when special events related to my mini occurred?
e.g. if i want to know when a power failure took place, (& i'm not at home, or power failed in the night), I don't think there is any specific logging of this in console. What wording in console's log can lead me to say with 90% confidence that power had failed?

There would not be any specific log entry. You could figure out when by the difference between the time on a clock that isn't affected by the outage and the time on a clock that would have stopped when the outage occurred. If the computer is set to restart after an outage, then there is a console.log entry when the restart occurs.

Similar Messages

  • Accessing EJB from Console App.

    I have deployed in EJB with JNDI name "greeter" in Sun Java� System Application Server Platform Edition 8.
    Then i am trying to access EJB using a console app (given below).
    import javax.ejb.*;
    import javax.rmi.*;
    import java.util.*;
    import javax.naming.*;
    public class Client
    public static void main(String args[])
    Greeter myGreeterBean;
    GreeterHome myGreeterHome;
    Greeter myGreeterRemote;
    Context context = null;
    try
    context = new javax.naming.InitialContext();
    catch (Exception e)
    System.out.println( "Unable To Get Initial Context");
    return;
    System.out.println("Got Context...");
    try {
    String JNDIName = "greeter";
    Object objref = context.lookup(JNDIName);
    System.out.println("Got Access To Object");
    myGreeterHome =(GreeterHome) PortableRemoteObject.narrow(objref,
    GreeterHome.class);
    myGreeterRemote = myGreeterHome.create();
    String theMessage = myGreeterRemote.getGreeting();
    System.out.println(theMessage);
    catch(Exception ex) { System.out.println( ex.getMessage()); }
    } // end of main
    } // end of Client
    But, while i am running this program i am getting the following error:
    Got Context...
    Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    I don't know where i am wrong. Any idea about it ?
    Thank you,
    P.Srikanth.

    This is what you need to modify :)
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "<<your
    initial context factory>>");
    env.put(Context.PROVIDER_URL, "<<JNDI provider
    URL>>");
    // Check documentation for exact Strings to be set.
    // Pass the environment parameters to
    InitialContext.
    Context context = new InitialContext(env);
    Angel
    No this is not correct. Lookups in SUN AS works a bit differently.

  • Jpublisher from console

    I have 2 schemas (a,b) in schema a ,have object Obj1.
    Using jpub with schema a I have created custom objects.
    Schema b have access to Obj1 ,so i'm trying to create custon objects using schema b also ,but it is throwing below exception.
    oracle.jpub.JPubException: J2T-116, ERROR: Type or package UFOAPP.OBJTYP_FUNDACCOUNT_LIST_A was not found in the database

    There are actually two ways to get access the console log again.  One is through Console.app and one is via terminal.
    In Console.app...
    Go to File --> New System Log Query...
    your expression should be:   [Facility] [is equal to] "com.apple.console"
    and you can can make the 'Search Name' equal to "Console Messages".
    Once you click OK, you will return the same functionality to your console.app that you had previous to 10.7.
    In Terminal...
    symply type tye following and strike return:
    syslog -C
    terminal then prints all the conosoel messages to the standard output (your screen), then exits back to the command prompt.
    If you want to clean it up and keep the console listing live (waiting for new messages to appear), type the following:
    syslog -B -C -w
    This displays yoru console log, but only messages that have ben generated since the last boot, and waits for new messages.
    strike ^C  (command+c) to exit
    For more information, you can use the manpage for syslog to better understand the tool set.
    (man syslog)
    Hope this helps.
    Just FYI the removal fo Console Messages from console.app persists through 10.9.2 (time of this writing).
    Also FYI, with the terminal method it is quite handy to monitor multiple systems (or rack full of xserves like I still have the pleasure of managing) via SSH

  • Is it possible to open the Java plugin / WebStart Console from my app ?

    Hi,
    I would like to know if it is possible to add a menuitem to my application that would start the Java plugin/web start console.
    That would be nice when people have errors in my application.
    Martin

    Thanks for the information, but is there a way to do it without using exec methods ?
    I just want to bring up the Java Console from my app, in the more portable way possible ;-)
    Martin

  • Console app from labview VI

    Hi,
    I have a VI which I have turned into an EXE and it works fine (as a dialog-based app). I now want to use this EXE as a console app -- be able to give the input AND receive the resulting output on the command prompt. How can I do this?
    I know how to pass in arguments to my EXE from command line. The problem is how do I output the result (bunch of strings) back to the command prompt?
    One solution I guess is to build a DLL from my VI and then create a console app in VC++ calling this dll in it.
    Any other ideas? examples?
    TiA!
    Khalid

    Hi,
    For the output...
    Use GetStdHandle, kernel32 to get a handle, (handle GetStdHandle(long
    param), use -11 for parameter);
    Use WriteFile, kernel32 to write a string (long WriteFile(long handle, CStr
    message, long length, long *written, long overlapped));
    It actually works!
    Regards,
    Wiebe.
    "Wiebe@AIR" wrote in message
    news:3e6ef96f$0$157$[email protected]..
    > Hi,
    >
    > If it is a windows app, you can read the command line, just line you would
    > in another language. This is tricky, because the GetCommandLine api works
    > with an array of strings, where each element is \00 delimited, and the
    last
    > element is \00 \00 deleimited.
    >
    > For the output, I have no idea...
    >
    > If you want a VI to read the command line, let me kn
    ow your email address.
    > But be aware that the command line returns "LabVIEW.exe" when it's called
    > from the development environment. If you have started LabVIEW by dubble
    > clicking a VI in the windows explorer, it says "LabVIEW.exe "c:\vi
    > path\vi.vi"" (or something like this).
    >
    > Regards,
    >
    > Wiebe.
    >
    >
    > "Khalid" wrote in message
    > news:[email protected]..
    > >
    > > Hi,
    > >
    > > I have a VI which I have turned into an EXE and it works fine (as a
    > > dialog-based app). I now want to use this EXE as a console app -- be
    > > able to give the input AND receive the resulting output on the
    > > command prompt. How can I do this?
    > >
    > > I know how to pass in arguments to my EXE from command line. The
    > > problem is how do I output the result (bunch of strings) back to the
    > > command prompt?
    > >
    > > One solution I guess is to build a DLL from my VI and then create a
    > > console app in VC++ calling this dll in it.
    > >
    > > A
    ny other ideas? examples?
    > >
    > > TiA!
    > >
    > > Khalid
    > >
    >
    >

  • Reading each keystroke from a console app?

    I'm using Sun JDK 1.3.0_02 on RedHat Linux 7.1.
    I've written a console application (no GUI, no Swing), from which I need to read each keystroke from the keyboard as it is typed.
    My loop basically waits (blocks) on System.in.read(), and disposes of each byte as it is read.
    Unfortunately, the way the app executes, my Java app doesn't seem to be given any keyboard input until the user presses ENTER. In addition, each keystroke is echoed to the console display, which I don't want.
    Can anyone point me in the right direction to solve this? I can't use any GUI components as this needs to be a console app.
    Thank you,
    Bryan

    This can be fixed with a tiny JNI program. As long as the 'c' call getch() works the same on all platforms:
    // The Java class
    import java.io.*;
    public class ConsoleInputStream extends InputStream
        public native int read();
        static
            System.loadLibrary("ConsoleInputStream");
    // The JNI header
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class ConsoleInputStream */
    #ifndef _Included_ConsoleInputStream
    #define _Included_ConsoleInputStream
    #ifdef __cplusplus
    extern "C" {
    #endif
    #undef ConsoleInputStream_SKIP_BUFFER_SIZE
    #define ConsoleInputStream_SKIP_BUFFER_SIZE 2048L
    /* Inaccessible static: skipBuffer */
    * Class:     ConsoleInputStream
    * Method:    read
    * Signature: ()I
    JNIEXPORT jint JNICALL Java_ConsoleInputStream_read
      (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endif
    // The JNI 'C' code
    #include "..\classes\generated source\consoleInputStream.h"
    #include "conio.h"
    JNIEXPORT jint JNICALL Java_ConsoleInputStream_read(JNIEnv * env, jobject obj)
        return getch();
    // The test program
    public class Console
        public static void main(String[] args)
            try
                System.setIn(new ConsoleInputStream());
                while(true)
                    int ch=System.in.read();
                    if(ch=='\r')
                        break;
                    else
                        System.out.print((char)ch);
            catch(Exception ex)
                ex.printStackTrace();
    // the build script (Windows)
    cl -I\j2sdk1.4.0\include -I\j2sdk1.4.0\include\win32 ConsoleInputStream.cpp /MD /LD user32.lib /link/out:..\classes\ConsoleInputStream.dllHope this helps :)

  • Calling Console App from Win Interface

    Need to call a console app[long running process] from a windows interface, such that
    1. The interface remains active after calling the console app
    2. So that I am able to fire another call via interface to the console app
    3. And these two would run concurrently 
    Some googling around gave me certain solutions... will try today .
    1. From Win Forms Interface , I call my console app with this code
    [Link]
    ProcessStartInfo oStartInfo = new ProcessStartInfo()
    oStartInfo.FileName = ApplicationName;
    oStartInfo.Arguments = BaseOptions + MyLoopLoadedItemsHere;
    Process.Start(oStartInfo)
    2. Use the background worker class in the interface component and then call the console app.
    3. Or Any thing else ?
    However feedback required on whats the best approach according to you

    You are on the right track. However you don't need to use a background worker class in this particular case. The line "Process.Start(oStartInfo)" returns immediately  and the process will run in parallel to yours.

  • ERROR: Invoking BPEL PROCESS FROM ADF APP

    hi guys ,
    I have made a simple bpel process with invokes a webservice (This service only gets a string and returns the string).
    I have tested this bpel process and web service it works fine. when tested with bpel console.
    I copied the wsdl of bpel and created the datacontrol.
    the problem is that when i hit start the process from ADF App. it raises the error
    Sep 7, 2009 1:24:49 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component PolicyAccessService#oracle.wsm.policymanager.ejb.IStringPolicyAccessServiceRemote.
    Sep 7, 2009 1:24:49 PM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component PolicyAccessService#oracle.wsm.policymanager.ejb.IStringPolicyAccessServiceRemote.
    Sep 7, 2009 1:24:49 PM oracle.adf.model.connection.webservice.impl.WebServiceConnectionMessages debugExecuteFailure
    SEVERE: Failed to execute a SAAJ interaction.
    javax.xml.ws.WebServiceException: oracle.fabric.common.PolicyEnforcementException
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:741)
         at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:226)
         at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:97)
         at oracle.adf.model.connection.webservice.impl.SaajInteractionImpl.execute(SaajInteractionImpl.java:87)
         at oracle.adfinternal.model.adapter.webservice.provider.soap.SOAPProvider.execute(SOAPProvider.java:323)
         at oracle.adfinternal.model.adapter.webservice.WSDataControl.invokeOperation(WSDataControl.java:251)
         at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:427)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:256)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1437)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2120)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:464)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:307)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:693)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:394)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:217)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:176)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1245)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:673)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:165)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:54)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:96)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.wls.util.JpsWlsUtil.runJaasMode(JpsWlsUtil.java:146)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:140)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:202)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3588)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.fabric.common.PolicyEnforcementException
         at oracle.integration.platform.common.InterceptorChainImpl.createPolicyEnforcementException(InterceptorChainImpl.java:161)
         at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:97)
         at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:216)
         at oracle.j2ee.ws.client.mgmt.runtime.SuperClientInterceptorPipeline.handleRequest(SuperClientInterceptorPipeline.java:96)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:524)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.handleRequest(DispatchImpl.java:508)
         at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:693)
         ... 64 more
    Caused by: java.lang.NullPointerException
         at oracle.j2ee.ws.rm.interceptor.WSRMClientInterceptor.processRequest(WSRMClientInterceptor.java:169)
         at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:89)
         ... 69 more
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://xmlns.oracle.com/SOAApp1/Project1/BPELProcess1"><env:Header/><env:Body><ns1:process><ns1:input>Shakeel Anjum</ns1:input></ns1:process></env:Body></env:Envelope>
    Kindly help
    Regards,
    Tariq

    Hi,
      Check if your wsdl endpoint can accessed properly. If yes, check the soap-binding address is properly pointing to the server hosting the webservice.
    Regards,
    Harikiran.

  • How to migrate mails from Google Apps to MS Exchange Online IMAP (Getting error)

    Any tips on How to migrate mails from Google Apps to MSOL? What is required? When I am trying to migrate using IMAP but getting fpollowing error
    =======================
    Summary: 1 item(s). 0 succeeded, 1 failed.
    Elapsed time: 00:00:11
    [email protected]
    Failed
    Error:
    Failed to log on successfully for the following reason:
    Server rejected Basic login with following message : * CAPABILITY IMAP4rev1 UNSELECT LITERAL+ IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 UIDPLUS COMPRESS=DEFLATE.
    Exchange Management Shell command attempted:
    'Microsoft.Exchange.Transporter.Provider.PopImap.InternetMailboxMeta' | Move-XsIMAPMailboxToExchangeOnline -AllowUnsecureConnection $false -TargetCredential 'System.Management.Automation.PSCredential' -MaxThreadCount '10' -Quiet
    Elapsed Time: 00:00:11
    ======================
    Any help will be much appreciated.
    Regards
    Sunil DK

    I just finished migrating a client from Google Apps to Microsoft Exchange Online using the IMAP option in the Microsoft Online Services Migration Tool.  
    I added the mailboxes by creating a CSV file [i.e. GoogleApps(Gmail)_Mailboxes.csv] in the following format:
    SourceIdentity,SourceServer,SourceLoginID,SourcePassword,TargetIdentity
    [email protected],imap.gmail.com,[email protected],P@ssword1,[email protected]
    [email protected],imap.gmail.com,[email protected],P@ssword2,[email protected]
    [email protected],imap.gmail.com,[email protected],P@ssword3,[email protected]
    Then I created a custom folder map XML file [i.e. GoogleApps(Gmail)_FolderMap.xml] to map the Google Apps (Gmail) labels to the appropriate Exchange (Outlook) mailbox folders and create those that didn't exist (i.e. Important, Starred, Follow up,
    Misc, Priority) as sub-folders under the Inbox:
    <?xml version="1.0" encoding="utf-8"?>
    <FolderMappings xmlns="http://tempuri.org/FolderMap.xsd">
    <!-- This xml contains the mapping of foldername in source server to folders in target server -->
    <!--
    "path" is the name of the folder in source server
    "Name" is the name of the folder to be mapped into target server
    "SpecialFolder" is the name of the special folder to be mapped into
    target server (Name will be ignored) valid values are :
    Inbox
    Calendar
    Tasks
    Sent Items
    Deleted Items
    Drafts
    Junk E-mail
    Contacts
    Outbox
    Journal
    Notes
    "Description" Description of the folder
    "ExcludeFolder" indicates folders to exclude. Valid values are:
    true (case sensitive)
    false (case sensitive)
    0
    1
    -->
    <!-- Default Mapping Section -->
    <Folder path = "INBOX">
    <Property SpecialFolder = "Inbox"/>
    </Folder>
    <Folder path = "New Mail">
    <Property SpecialFolder = "Inbox"/>
    </Folder>
    <Folder path = "[Root]">
    <Property SpecialFolder = "Inbox"/>
    </Folder>
    <Folder path = "">
    <Property SpecialFolder = "Inbox"/>
    </Folder>
    <Folder path = "Calendar">
    <Property SpecialFolder = "Calendar"/>
    </Folder>
    <Folder path = "Tasks">
    <Property Name = "Migration items/Tasks"/>
    </Folder>
    <Folder path = "Sent Items">
    <Property SpecialFolder = "Sent Items"/>
    </Folder>
    <Folder path = "Sent Mail">
    <Property SpecialFolder = "Sent Items"/>
    </Folder>
    <Folder path = "Sent">
    <Property SpecialFolder = "Sent Items"/>
    </Folder>
    <Folder path = "Deleted Items">
    <Property SpecialFolder = "Deleted Items"/>
    </Folder>
    <Folder path = "Trash">
    <Property SpecialFolder = "Deleted Items"/>
    </Folder>
    <Folder path = "Drafts">
    <Property SpecialFolder = "Drafts"/>
    </Folder>
    <Folder path = "Draft">
    <Property SpecialFolder = "Drafts"/>
    </Folder>
    <Folder path = "Junk E-mail">
    <Property SpecialFolder = "Junk E-mail"/>
    </Folder>
    <Folder path = "Spam">
    <Property SpecialFolder = "Junk E-mail"/>
    </Folder>
    <Folder path = "Contacts">
    <Property Name = "Migration Items/Contacts"/>
    </Folder>
    <Folder path = "Outbox">
    <Property SpecialFolder = "Outbox"/>
    </Folder>
    <Folder path = "Journal">
    <Property SpecialFolder = "Journal"/>
    </Folder>
    <Folder path = "Notes">
    <Property SpecialFolder = "Notes"/>
    </Folder>
    <Folder path = "Public Folders">
    <Property ExcludeFolder = "true"/>
    </Folder>
    <!-- Google Apps (Gmail) Specific Mapping Section -->
    <Folder path = "[Gmail]/All Mail">
    <Property ExcludeFolder = "true"/>
    </Folder>
    <Folder path = "All Mail">
    <Property ExcludeFolder = "true"/>
    </Folder>
    <Folder path = "[Gmail]/Drafts">
    <Property SpecialFolder = "Drafts"/>
    </Folder>
    <Folder path = "[Gmail]/Important">
    <Property Name = "Inbox/Important"/>
    </Folder>
    <Folder path = "[Gmail]/Sent Mail">
    <Property SpecialFolder = "Sent Items"/>
    </Folder>
    <Folder path = "[Gmail]/Spam">
    <Property SpecialFolder = "Junk E-mail"/>
    </Folder>
    <Folder path = "[Gmail]/Starred">
    <Property Name = "Inbox/Starred"/>
    </Folder>
    <Folder path = "[Gmail]/Trash">
    <Property SpecialFolder = "Deleted Items"/>
    </Folder>
    <!-- Custom Mapping Section -->
    <Folder path = "Follow up">
    <Property Name = "Inbox/Follow up"/>
    </Folder>
    <Folder path = "Misc">
    <Property Name = "Inbox/Misc"/>
    </Folder>
    <Folder path = "Priority">
    <Property Name = "Inbox/Priority"/>
    </Folder>
    </FolderMappings>
    Additionally, I had to tell the Internet E-mail Mailbox Migration Wizard to use the "Individual Account Credentials" option since I was able to specify each account password in the CSV file when adding the mailboxes to Microsoft Online Services Migration
    Tools console.
    Just to note, the users had to manually export their contacts to a CSV file and calendars to iCal (ICS) files in order to import those items into Outlook.
    I hope this will benefit others since Microsoft doesn't seem to have a custom, specifically defined migration strategy for this scenario.  With Google Apps being in direct competition with BPOS/Office365, I assumed that Microsoft would have a simple
    strategy using something like ActiveSync to facilitate the migration of email, contacts, calendar entries, etc.  Hopefully we'll see something along those lines become available in a future release of the migration tools.
    --Jon Payne

  • Putting dual 1.8 GHz G5 to sleep breaks Mac OS X's  Console.app

    My mother's G5 is having problems with Leopard it seems.
    I did a fresh install of Mac OS X 10.5.1 (that's what's on the DVD) and everything seemed fine. I'm quite sure it's after the upgrade to 10.5.6 that the problem happens (of course it can be any of the updates in between too) because if I remember correctly the problem doesn't occur in 10.5.1.
    What happens after the wake is that after a few seconds (upon clicking something, i.e. a menu) the beach ball comes up and it takes a minute or so then there's a few seconds where the stall goes away only to come again. I once managed to ask it to restart, but it then got stuck at the spinning cogwheel (shut down process after the menu bar and Dock has disappeared) so I did a forced restart.
    After the restart the computer seems OK again, but when trying to launch Console.app to see if there would be anything in the logs Console.app crashes. Something is broken. It was this ”broken Console.app” that made me do the re-install in the first place, so in other words it's the sleep that triggers the problem and also (indirectly maybe) breaks the functionality of Console.app.
    Any ideas on this?
    As it is now at least version 10.5.6 of Mac OS X doesn't seem to work very well on at least this particular G5 model...

    Nap is a power saving feature.
    The following processor states are defined:
    ■ Run: The system is running at maximum processing capacity with the processor running at full speed.
    ■ Idle: The system is idling; this is the default state. All clocks are running and the system can return to running code within a few nanoseconds. If the system has no work to do, it will be in idle mode.
    From idle, the processor will enter deep nap state when the system is power-stepped to half frequency. In this state, the processor’s internal frequency is reduced to 1/64 of the maximum frequency. The processor frequency is returned to normal on exit from idle. The exit from idle takes a bit longer than the regular idle nap but is still in the nanoseconds.

  • I cannot down load Yosemite from the App Store. It keeps saying there is an error.  I have Mavericks installed now.  Can I download Yosemite anywhere else besides the App Store?

    I cannot down load Yosemite from the App Store. It keeps saying there is an error.  I have Mavericks installed now.  Can I download Yosemite anywhere else besides the App Store?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select
              /var/log ▹ appstore.log
    from the hierarchical list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    Each message in the log begins with the date and time when it was entered. Select the messages from the last installation or update attempt, starting from the time when you initiated it. If you're not sure when that was, click the Clear Display button in the toolbar of the Console window and then try the installation again.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    ☞ The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.

  • How do you make console apps the default application for a file type?

    I have a console movie player, mplayer, that I like a lot. I've compiled it from source on my intel core2 macbook pro and it works fine. There is no gui, but to play movie files you open up a terminal and type the command mplayer /path/to/file. I would like mplayer to play a movie file automatically when I double click on the file, but I can't seem to figure out how to do it. I tried setting it in the file info dialogue, but when I go to the path of the binary I want, it is not selected. How can I set a console app as my default application for my file type?

    there is a GUI mplayer for OS X. why don't you use it instead of the command line one?
    if you insist on using the command line mplayer then the only way to do this is to put a GUI wrapper on it. this can be done with automator or apple script for example. but really, why don't you just use the GUI mplayer?

  • Can't 'print to pdf' from ANY app, it just...

    stops after processing some bytes.
    As the title says, happens from any app, text, preview, word, safari, firefox...
    and upon further inspection, distiller crashes when trying to distil a .PS file (generated from indesigncs2) into a pdf.
    i have tried:
    repair prefs
    deleted distiller and acrobat related prefs
    reinstalled acrobat (version 7 btw)
    tried to use distiller and 'print to pdf' option prior to each option - still no go.
    however, i created a new account, and in the new account, it worked fine hmmm, so its my account..
    what can i do to fix my pdf problems??
    thanks in advance.
    --its osx 10.4.8, 12" powerbook--

    sim888,
    Welcome to the Apple Discussions!
    Nice troubleshooting, particularly using another user account to determine it's something in your account that's causing the problem. Without dragging your entire user Library/ Preferences file to the Desktop and then returning .plists a few at a time to watch for the problem to return, you could check your user preferences (.plist) files in Terminal by entering the command:
    find ~/Library -name '*.plist' -exec /usr/bin/plutil -lint {} \;
    You can also download Preferential Treatment
    I've seen scattered reports of problems using OS X's built-in print-to-PDF when some versions of Adobe software are installed. Are Distiller etc. installed for general use or under the relatively rare single-user access? In the hunting in the dark category, with no programs open, you could look at Activity Monitor in both user accounts and see if you spot any background user (non-system) processes running in your normal user account that aren't in the test user, then force-quit those user processes to see if printing to PDF works without conflicts. I'm not sure what log a failed print to PDF would go into, but you can open Console look through console.log, system.log, and CrashReporter et al. for events timestamped around the time of a failed print-to-PDF attempt. The backtrace of any failure report may provide additional clues.

  • Console.app doesn't show up (window)

    Hi,
    a week or so after I've upgraded to 10.9.2 my console.app stopped opening any log file and it doesn't show even a (blank) window.
    I checked the activity monitor and it seems to be working.
    I've typed "tail -f /var/log/system.log" in a terminal window and opened the Console and it showed this lines:
            15  Foundation                          0x00007fff87c187ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
            16  AppKit                              0x00007fff8da50cf9 -[NSApplication _postDidFinishNotification] + 289
            17  AppKit                              0x00007fff8da50a2c -[NSApplication _sendFinishLaunchingNotification] + 195
            18  AppKit                              0x00007fff8da4931a _DPSNextEvent + 1238
            19  AppKit                              0x00007fff8da48a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
            20  AppKit                              0x00007fff8da3cb2c -[NSApplication run] + 553
            21  AppKit                              0x00007fff8da27913 NSApplicationMain + 940
            22  libdyld.dylib                       0x00007fff89b0a5fd start + 1
    After readind some posts I've deleted com.apple.console* from ~/Library/Preferences and /Library/Preferences but no luck.
    Any idea how to solve this issue?

    Not sure if this is a typo in your post but:
    ref="networkmanagementconsole.jnlp"
    should be href= .......
    John

  • Console.app not updates in LOG DATABASE

    After a forced shutdown of the MacBook Pro, the console.app displays all logfiles and also LOG DATABASE QUERIES, but the content of the LOG DATABASE only date back to the fored shutdown point in time. Afterwards, system.log, etc are updated, but the LOG DATABASE is not.
    I have checked for the /var/log/asl.db, which I do not have (touching it also did not help). I have an /var/log/asl directory containing following files (the LongTTL.asl was updated after forced shutdown, 14:19 was restart time):
    drwxr-xr-x 11 root wheel 374 4 Jan 15:55 .
    drwxr-xr-x 53 root wheel 1802 4 Jan 15:41 ..
    -rw------- 1 marcus wheel 81500 2 Jan 23:42 2009.01.02.U501.asl
    -rw-r--r-- 1 root wheel 51312 2 Jan 23:40 2009.01.02.asl
    -rw------- 1 marcus wheel 102955 3 Jan 22:10 2009.01.03.U501.asl
    -rw-r--r-- 1 root wheel 61440 4 Jan 00:09 2009.01.03.asl
    -rw------- 1 marcus wheel 41827 4 Jan 14:19 2009.01.04.U501.asl
    -rw-r--r-- 1 root wheel 38431 4 Jan 14:18 2009.01.04.asl
    -rw-r--r-- 1 root wheel 3547 4 Jan 15:55 LongTTL.U0.asl
    -rw-r--r-- 1 root wheel 113923 4 Jan 15:55 LongTTL.asl
    -rw-r--r-- 1 root wheel 8 4 Jan 14:19 StoreData
    Any more ideas how to repair/enable LOG DATABASE in console.app?
    thx.

    Somehow the forced shutdown corrupted that date files in var/log/asl subdirectory. Restarting machine the following day showed new messages within LOG DATABASE, but messages from the day before are not displayed any more. So the LOG DATABASE seems to work again.

Maybe you are looking for

  • Error while insert into database using DB adpater for Field BLOB

    Hello All I am trying to tranfer data from Database A to Database B using Oracle DB adapter. Table of databse A contains field BLOB, which cotains the resume /doc file.After transformation in Database B format ,while invoking the DB adapter to insert

  • How can I attach files from the mac so pc can open them

    Hi, I am having trouble when I send a word document from my mac to other companies who are using PCs.  They seem to always come back saying they are unable to open them.  What can I do about this?

  • Can't get rid of noise in external Roland speakers

    I have some Roland MA-8 micro-monitor speakers that i realllly like, but i haven't been able to use them with my iMac G5. As soon as they are connected and turned on, they have an annoying hiss/hum, and when i launch Garage Band, there's an additiona

  • Use Formula variable in planning function

    Hello, I would like to use a formula variable in a planning function. The problem is that when I execute this function all keyfigures values are set to 0 so the FOX is not executed. The idea is to have something like = VARV(FORMULAVARIABLE). How coul

  • Error importacion  abap:

    Hello  i got this message  in the  import abap phase import_mnonitor.log TRACE: 2010-03-13 14:14:54 com.sap.inst.migmon.LoadTask processPackage Task file generation for 'SASACONT1' import package: /usr/sap/SOL/SYS/exe/run/R3load -ctf I /instaladores/