Behavior of afterRowUpdate method

In method afterRowUpdate of ViewObjectImpl class you iterate over a enumeration of querycollections and if the parameter "joinFKChanged" is true and the variable "firstTime" is also true the method 'updateReferenceEntities' is called.
My question is if the behavior of this code can be different for the same user actions because the order of the elements in the enumeration is random.
For example, you have a detail VO composed of two EOs, one of them updatable and the other one reference. This VO has 3 QueryCollections called QC1, QC2, QC3.
If you modify the join FK between the two entities in some circumstances the first element of the enumeration can be QC3, but for the same user actions the first element of the enumeration can be QC2.
In the first case you call the method 'updateReferenceEntities' only for the QueryCollection QC3 and in the second case only for the QueryCollection QC2 but the user actions are the same.
Thanks,
Lew Archer

Hi all,
I am using JDeveloper 10.1.2.1.0(Build 1913).
The version of JVM is 1.4.2_06.
Lew Archer

Similar Messages

  • Inscrutable behavior of NavigationBar methods

    My JDeveloper 2 applet has two navigationBars and two Buttons
    (one navigationBar is bound to a sessionInfo; the other, to a rowSetInfo under the sessionInfo)
    The methods
    navigationBar1.doClick(navigationBar1.BUTTON_INSERT);
    and
    navigationBar2.doClick(navigationBar2.BUTTON_COMMIT);
    do what they're supposed to do when placed in the action events of two separate buttons as shown below:
    void jButton1_actionPerformed(ActionEvent e) {
    navigationBar1.doClick(navigationBar1.BUTTON_INSERT);
    and
    void jButton2_actionPerformed(ActionEvent e) {
    navigationBar2.doClick(navigationBar2.BUTTON_COMMIT);
    However, when the two methods are placed in the action event of a single button as shown below:
    void jButton1_actionPerformed(ActionEvent e) {
    navigationBar1.doClick(navigationBar1.BUTTON_INSERT);
    navigationBar2.doClick(navigationBar2.BUTTON_COMMIT);
    the INSERT takes place, but the COMMIT does not.
    I'd appreciate hearing of a way to fire the INSERT and COMMIT in response to a SINGLE mouse click.
    null

    > Any idea what gives?
    Clearly bugs!
    I have reported it.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "tommyb709" <[email protected]> wrote in
    message
    news:g993r1$ie$[email protected]..
    >I have a question about guides, if anyone can help.
    > First, I have a CSS layout with a centered DIV
    containing my content. I
    > drag
    > the origin of the rulers, just like in any other Adobe
    program, to the
    > upper
    > left corner of the DIV, and it appears to move
    correctly. When I have
    > tried to
    > drag a guide, the popup info gives me a number that has
    no relevance to
    > the
    > ruler origin (or any other point on my page that I can
    fathom) The help
    > file
    > says that by default, the number should be in pixels,
    relevant to the edge
    > of
    > the page. It is not. Nor can I find any dialog that I
    can change this
    > behavior. This makes guides very difficult to use.
    > Second, I set the origin zoomed in for greater accuracy.
    When I zoom out,
    > it
    > has moved back. Any way to stop this?
    > Third, the guides appear to be in different places at
    different zoom
    > levels.
    > I set a guide zoomed in. I turn on snap to guides and
    zoom out. I
    > place
    > something, it snaps to guide, and I adjust to the guide
    by various methods
    > (padding, margins, blank pixels in original image, etc).
    When I zoom in,
    > it
    > is nowhere close to the location I thought it was. When
    zoomed out, it
    > still
    > appears correct.
    > Any idea what gives?
    >

  • How to override java editor scroll behavior when adding method templates

    The java editor scrolls to top of the page every time I click 'implement methods...' from the editor line # gutter. Is there any way to disable this action? It started scrolling to top when I updated to 11.1.2 on Win7. Tks

    The java editor scrolls to top of the page every time I click 'implement methods...' from the editor line # gutter. Is there any way to disable this action? It started scrolling to top when I updated to 11.1.2 on Win7. Tks

  • How to reach a method of an object from within another class

    I am stuck in a situation with my program. The current situation is as follows:
    1- There is a class in which I draw images. This class is an extension of JPanel
    2- And there is a main class (the one that has main method) which is an extension of JFrame
    3- In the main class a create an instance(object) of StatusBar class and add it to the main class
    4- I also add to the main class an instance of image drawing class I mentioned in item 1 above.
    5- In the image drawing class i define mousemove method and as the mouse
    moves over the image, i want to display some info on the status bar
    6- How can do it?
    7- Thanks!

    It would make sense that the panel not be forced to understand its context (in this case a JFrame, but perhaps an applet or something else later on) but offer a means of tracking.
    class DrawingPanel extends JPanel {
      HashSet listeners = new HashSet();
      public void addDrawingListener(DrawingListener l) {
         listeners.add(l);
      protected void fireMouseMove(MouseEvent me) {
         Iterator i = listeners.iterator();
         while (i.hasNext()) {
            ((DrawingListener) i.next()).mouseMoved(me.getX(),me.getY());
    class Main implements DrawingListener {
      JFrame frame;
      JLabel status;
      DrawingPanel panel;
      private void init() {
         panel.addDrawingListener(this);
      public void mouseMoved(int x,int y) {
         status.setText("x : " + x + " y: " + y);
    public interface DrawingListener {
      void mouseMoved(int x,int y);
    }Of course you could always just have the Main class add a MouseMotionListener to the DrawingPanel, but if the DrawingPanel has a scale or gets embedded in a scroll pane and there is some virtual coordinate transformation (not using screen coordinates) then the Main class would have to know about how to do the transformation. This way, the DrawingPanel can encapsulate that knowledge and the Main class simply provides a means to listen to the DrawingPanel. By using a DrawingListener, you could add other methods as well (versus using only a MouseMotionListener).
    Obviously, lots of code is missing above. In general, its not a good idea to extend JFrame unless you really are changing the JFrames behavior by overrding methods, etc. Extending JPanel is okay, as you are presumably modifiying the drawing code, but you'd be better off extending JComponent.

  • OSB, web service with GET method

    Hello! Can i create business service which will look at web service which working via GET requests ?

    Ok, it's working now in my case =/
    Proxy service:
    The first step is creating a Conditional Branch. Its properties define the behavior for the method GET.
    >
    Selected Path :      ./ctx:transport/ctx:request/http:http-method/text()
    Variable :      inbound
    Operator: =
    Value: "GET"
    Label: GET
    >
    The second step in the properties of the branch "GET" create a Pipeline Pair.
    In the Request Pipeline create a Stage, inside of which define a pair Assign actions to determine the required variables:
    >
    Assign $inbound/ctx:transport/ctx:request/http:query-string to variable vQueryString
    Assign $inbound/ctx:transport/ctx:request/http:relative-URI/text() to variable vRelativeUri
    >
    The third step. Adding a Route Node after the Pipeline Pair. Its properties specify the necessary parameters.
    Send to the appropriate business service:
    >
    Route to bs_gate_MessagingService
    Request Actions:
    Insert <http:http-method>GET</http:http-method> as first child of ./ctx:transport/ctx:request in variable outbound
    Insert <http:query-string>{$vQueryString}</http:query-string> as first child of ./ctx:transport/ctx:request in variable outbound
    Insert <http:relative-URI>{$vRelativeUri}</http:relative-URI> as first child of ./ctx:transport/ctx:request in variable outbound
    >
    ps_gate_01.proxy.xml:
    >
    <?xml version="1.0" encoding="UTF-8"?>
    <xml-fragment xmlns:ser="http://www.bea.com/wli/sb/services" xmlns:tran="http://www.bea.com/wli/sb/transports" xmlns:env="http://www.bea.com/wli/config/env" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:con="http://www.bea.com/wli/sb/pipeline/config" xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config" xmlns:con2="http://www.bea.com/wli/sb/stages/config" xmlns:con3="http://www.bea.com/wli/sb/stages/logging/config" xmlns:con4="http://www.bea.com/wli/sb/stages/publish/config">
    <ser:coreEntry isProxy="true" isEnabled="true" isAutoPublish="false" isTracingEnabled="false">
    <ser:description/>
    <ser:binding type="abstract XML" xmlns:con="http://www.bea.com/wli/sb/services/bindings/config"/>
    <ser:monitoring isEnabled="true">
    <ser:aggregationInterval>1</ser:aggregationInterval>
    <ser:pipelineMonitoringLevel>Pipeline</ser:pipelineMonitoringLevel>
    </ser:monitoring>
    <ser:reporting>true</ser:reporting>
    <ser:logging isEnabled="true">
    <ser:logLevel>debug</ser:logLevel>
    </ser:logging>
    <ser:sla-alerting isEnabled="true">
    <ser:alertLevel>normal</ser:alertLevel>
    </ser:sla-alerting>
    <ser:pipeline-alerting isEnabled="true">
    <ser:alertLevel>normal</ser:alertLevel>
    </ser:pipeline-alerting>
    <ser:throttling enabled="false">
    <ser:capacity>0</ser:capacity>
    <ser:maxQueueLength>0</ser:maxQueueLength>
    <ser:timeToLive>0</ser:timeToLive>
    </ser:throttling>
    <ser:messageTracing enabled="true">
    <ser:detailsLevel>Full</ser:detailsLevel>
    <ser:maxSize>8192</ser:maxSize>
    </ser:messageTracing>
    <ser:pageAttachments isEnabled="false"/>
    <ser:transactions isRequired="false" sameTxForResponse="false"/>
    </ser:coreEntry>
    <ser:endpointConfig>
    <tran:provider-id>http</tran:provider-id>
    <tran:inbound>true</tran:inbound>
    <tran:URI>
    <env:value>/project_01/ps_gate_01</env:value>
    </tran:URI>
    <tran:inbound-properties/>
    <tran:all-headers>false</tran:all-headers>
    <tran:provider-specific>
    <http:inbound-properties/>
    </tran:provider-specific>
    </ser:endpointConfig>
    <ser:router>
    <con:pipeline name="PipelinePairNode1_request" type="request">
    <con:stage name="stage1">
    <con:context/>
    <con:actions>
    <con1:assign varName="vQueryString">
    <con2:id>_ActionId-366173683669241693--1c45792f.13813204fcf.-7fa3</con2:id>
    <con1:expr>
    <con:xqueryText xmlns:con="http://www.bea.com/wli/sb/stages/config">$inbound/ctx:transport/ctx:request/http:query-string</con:xqueryText>
    </con1:expr>
    </con1:assign>
    <con1:assign varName="vRelativeUri">
    <con2:id>_ActionId-366173683669241693--1c45792f.13813204fcf.-7fa1</con2:id>
    <con1:expr>
    <con:xqueryText xmlns:con="http://www.bea.com/wli/sb/stages/config">$inbound/ctx:transport/ctx:request/http:relative-URI/text()</con:xqueryText>
    </con1:expr>
    </con1:assign>
    </con:actions>
    </con:stage>
    </con:pipeline>
    <con:pipeline name="PipelinePairNode1_response" type="response"/>
    <con:flow>
    <con:branch-node type="condition" name="HTTP Method Branch">
    <con:comment/>
    <con:context/>
    <con:branch-table variable="inbound">
    <con:xpath>
    <con:xpathText xmlns:con="http://www.bea.com/wli/sb/stages/config">./ctx:transport/ctx:request/http:http-method/text()</con:xpathText>
    </con:xpath>
    <con:branch name="GET">
    <con:operator>equals</con:operator>
    <con:value>"GET"</con:value>
    <con:flow>
    <con:pipeline-node name="PipelinePairNode1">
    <con:request>PipelinePairNode1_request</con:request>
    <con:response>PipelinePairNode1_response</con:response>
    </con:pipeline-node>
    <con:route-node name="RouteNode1">
    <con:context/>
    <con:actions>
    <con5:route xmlns:con5="http://www.bea.com/wli/sb/stages/routing/config">
    <con2:id>_ActionId-366173683669241693--1c45792f.13813204fcf.-7fa9</con2:id>
    <con5:service ref="project_01/bs_gate_MessagingService" xsi:type="ref:BusinessServiceRef" xmlns:ref="http://www.bea.com/wli/sb/reference"/>
    <con5:outboundTransform>
    <con1:insert varName="outbound">
    <con2:id>_ActionId-366173683669241693--1c45792f.13813204fcf.-7fa4</con2:id>
    <con1:location>
    <con:xpathText xmlns:con="http://www.bea.com/wli/sb/stages/config">./ctx:transport/ctx:request</con:xpathText>
    </con1:location>
    <con1:where>first-child</con1:where>
    <con1:expr>
    <con:xqueryText xmlns:con="http://www.bea.com/wli/sb/stages/config">&lt;http:http-method>GET&lt;/http:http-method></con:xqueryText>
    </con1:expr>
    </con1:insert>
    <con1:insert varName="outbound">
    <con2:id>_ActionId-366173683669241693--1c45792f.13813204fcf.-7fa5</con2:id>
    <con1:location>
    <con:xpathText xmlns:con="http://www.bea.com/wli/sb/stages/config">./ctx:transport/ctx:request</con:xpathText>
    </con1:location>
    <con1:where>first-child</con1:where>
    <con1:expr>
    <con:xqueryText xmlns:con="http://www.bea.com/wli/sb/stages/config">&lt;http:query-string>{$vQueryString}&lt;/http:query-string></con:xqueryText>
    </con1:expr>
    </con1:insert>
    <con1:insert varName="outbound">
    <con2:id>_ActionId-366173683669241693--1c45792f.13813204fcf.-7fa2</con2:id>
    <con1:location>
    <con:xpathText xmlns:con="http://www.bea.com/wli/sb/stages/config">./ctx:transport/ctx:request</con:xpathText>
    </con1:location>
    <con1:where>first-child</con1:where>
    <con1:expr>
    <con:xqueryText xmlns:con="http://www.bea.com/wli/sb/stages/config">&lt;http:relative-URI>{$vRelativeUri}&lt;/http:relative-URI></con:xqueryText>
    </con1:expr>
    </con1:insert>
    </con5:outboundTransform>
    <con5:responseTransform/>
    </con5:route>
    </con:actions>
    </con:route-node>
    </con:flow>
    </con:branch>
    <con:branch name="POST">
    <con:operator>equals</con:operator>
    <con:value>"POST"</con:value>
    <con:flow/>
    </con:branch>
    <con:default-branch>
    <con:flow/>
    </con:default-branch>
    </con:branch-table>
    </con:branch-node>
    </con:flow>
    </ser:router>
    <ser:alertRules xsi:nil="true"/>
    </xml-fragment>
    >
    Edited by: 915814 on 17.07.2012 22:22
    How to pass query string values to a Proxy Service
    https://blogs.oracle.com/jeffdavies/entry/enhanced_rest_support_in_oracl

  • Simple Method/Object Concept Question

    I really appreciate everyone's help! Thanks you. I know that for action to take place in Java objects, blocks of code called methods are used. Methods tell an application what to do when buttons are clicked, menus are opened, and text is typed. Methods are either predefined or are created from scratch to manipulate objects, or the data within those objects, but what does the data type identifier that is attached to java methods mean? What is the data type identifier?
    Also, what are the major components of an object? I know objects are based on classes that detail how the object is defined and how it behaves. It is starting to click, but I need more explanation. Thanks a lot
    Stephen

    The datatype of the method represents the datatype of the value returned or void if nothing is retured. Consider the following: int getAge() In this case, the method getAge() will return a value that is an integer. If the method does not return a value, void is used as in the following line:void setAge(int age)As far as the "major parts of an object", well there can be many answers to that. One answer comes from the simple definition of an Object, i.e., "data surrounded by code". In other words, an object is a person, place or thing (or process). The object has sate (data about itself) and it has behavior (code or methods). In that respect, the major parts of an object, in it's simplest form, are it's state (member variables) and it's behavior (member functions/methods).
    Hope this helps.

  • FIREFOX 26 changed the 'post crash' page with the list of windows and pages. It was a real HTML page with links for each page. Now it isn't (and blows)

    * You changed the page that comes up after a crash - the one which shows the windows and pages that were up before the
    crash.
    This used to be a real HTML page and it isn't any more. THis choice was pure isiocy consider how peopel used that page every day (try taking to your users for a change).
    The pages listed on that 'post crash page' used to be actual LINKS (you could right click them &
    manually open them in another tab - and most peope DID that every day). You could also (and I did this a lot) drag a second
    copy of the page, into a new tab (to keep track of all the pages I had not wanted to open)
    Now the pages are no longer links. You cannot right-click them.
    The thing in the probser is no longer a page that I can drag into a new tab.
    Roll the version back and throw this one in the bin...and have a good long talk with your developers about the definition of
    'STUPIDITIY'
    Then I try to type anything in the addres bar it is suppose to repoond with the history of old things I have types in the past, or
    search for what I type (and in some cases I think it tyes to convert it intoa URL). However it no longer does any of these
    things. When I type in the ADDRESS BAR ONLY, I do not get all of my letters to appear. I have to type into a notepad or
    into the search and to copy and paste to go to a URL. Nothing that is typed into the address bad responds normally at all
    anymore, and I am fairly certain there are no new addons on this machine at all. It does not matter which things I disable. It
    still does this. W of course points the finger back at a change to FIREFOX. I wich I could just sitct with one stable release
    forever but the MOZILLA folk thing it is best to force peopel awy from a working broswer release to a horrible one (due to it
    being out of date).
    FIREFOX 26.0 has 'issues' (ie new *features*/bugs)
    1) History is no longer accurate. My Proof? This machine is the primary one for the entire family (the only PC working). It is
    logged in with same user every time and never has its history cleared. It now January 7 so I ought to have a list of all of last
    months browing available to me.
    However, according to FIREFOX history, in all of December 2013, the entire family only went to 51 primary URL's. None of
    the official TV sites I use to get episodes are listed. None of the official movie sites I use are listed. The primary URL for
    ebay is not listed. Only 1 out of our 4 weather sites that I use (at least once a week) are listed. Only 1 of our 3 FINANCE
    sites is listed. There ought to be several; hundred root URLs listed.
    Please fix history as this change seriously "blows greasy chunks"
    PROBLEM (a stupid change in the new FIREFOX version)
    FOr a long time, after a crash you got a useful page (a real HTML page) which gave you a list of all of your last sessions
    'winwos and tabs' that were open when the browser crashed. there were certain ways of using this page that are no longer
    able to be done.
    The old method was wonderful as it had this behavior :
    *** The old method for displaying your 'Recovered Tabs' allowed you to :
    a) right click an individual item and open it in a tab without getting rid of that lovely window of your previous session of
    'recovered windows and tabs '.
    2) drag the URL for the entire window of 'recovered windows and tabs ' to a new tab (to make a second copy) so that you
    could select just a few of them to open as a group, and stil have the old list handy.
    You can no longer do either of these things. The 'recovered windows and tabs ' page no longer has links in it and can no longer be dragged, so you cant select a few of them to use, and keep the rest around for later. NOW - once you choose which pages to open the window is gone forever (can can't get a second copy).
    People used to make a copy of the page for later use (with a drag)
    we also used to open pages with a right click (which no longer functions
    This new method seriously blows big greasy chunks. A parge loss in function has occurred.
    Put things back as they were. 26 is full of terrible changes that NOBODY likes. It also has a lot of bugs (history is not reliable at all)

    (1) Firefox's built-in post-crash page has not been a real HTML page for a long time (for example, from the time of Firefox 22, see: [https://support.mozilla.org/en-US/questions/968212 Want to save LOTS of versions of "Restore Session.xht" from the "oops ..." page for later use]). If you had this working differently with Firefox 25, that might have been created by an extension.
    You can check to see whether extensions are disabled or need an update on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. The disabled extensions cluster toward the bottom of the list. To poll for updates, use the "gear" button above the list and choose Check for Updates.
    If you used the Reset feature (or Firefox automatically did a reset due to some problem during upgrading), you will need to reinstall missing extensions. The reset feature creates a folder on the desktop named Old Firefox Data. Do you have that folder? There may be data you can recover from it.
    (2) There are many ways for history to get cleared, both internal to Firefox and external. Could you double-check your Privacy settings?
    orange Firefox button (or Tools menu) > Options > Privacy
    * The "Firefox will" drop-down says Remember History: Firefox shouldn't be clearing history, but an add-on or external software could do it
    * The "Firefox will" drop-down says Use custom settings for history: inspect the "Clear history when Firefox closes" setting to make Firefox isn't set to clear history. Also check your add-ons and consider external software.
    Firefox normally accumulates months of history. However, some of Firefox's database sizes are based on disk space available. If your hard drive is very full, Firefox might reduce the amount of history stored.

  • What is the diff b/w Abstract class and an interface ?

    Hey
    I am always confused as with this issue : diff b/w Abstract class and an interface ?
    Which is more powerful in what situation.
    Regards
    Vinay

    Hi, Don't worry I am teach you
    Abstract class and Interface
    An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. An interface has all public members and no implementation. An abstract class is a class which may have the usual flavors of class members (private, protected, etc.), but has some abstract methods.
    Edited by SASIKUMARA
    SIT INNOVATIONS- Chennai
    Message was edited by:
    sasikumara
    Message was edited by:
    sasikumara

  • Focus issue with CardLayout (Java 2 SDK, Standard Edition 1.4.0_01)

    I am having an issue with focus and CardLayout with Java 2 SDK, Standard Edition 1.4.0_01. I have created a small sample application to illustrate my problem. In general, I am trying to create a "Wizard" that the user will enter information and then press a "Next" button to proceed to the next step.
    When the first card is displayed, the focus is on the first text field as expected.
    When I go to the next card by clicking "Next", the focus is not on the text field that has requested it (through the requestFocusInWindow method). The focus is on the "Cancel" button, which is the next component to receive focus after the "Next" button on that panel. I do notice that if I use my mouse to bring focus to the window the text field will gain focus.
    Similarly, when I proceed to the last card, the focus is not on the "Finish" button until the mouse moves over the window.
    Is there something I am doing wrong or is there a bug with focus and CardLayout?
    One other problem I have noticed is that the buttons no longer respond to the "Enter" key press and instead respond to the space bar. Any suggestions as to why this is the case?
    Thanks,
    S.L.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CardWindow extends JFrame implements ActionListener {
    public CardWindow() {       
    setTitle("Focus Problems with CardLayout");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    cards = new JPanel();
    cardLayout = new CardLayout();
    cards.setLayout(cardLayout);
    cards.add(createFirstNamePanel(), "FirstNamePanel");
    cards.add(createLastNamePanel(), "LastNamePanel");
    cards.add(createFullNamePanel(), "FullNamePanel");
    getContentPane().add(cards,BorderLayout.CENTER);
    getContentPane().add(createButtonPanel(), BorderLayout.SOUTH);
    resetButtonPanel();
    pack();
    private JPanel createFirstNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your first name:");
    txtFirstName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtFirstName);
    return panel;
    private JPanel createLastNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your last name:");
    txtLastName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtLastName);
    return panel;
    private JPanel createFullNamePanel(){
    JPanel panel = new JPanel();
    lblFullName = new JLabel();
    resetTextOnFullNamePanel();
    panel.add(lblFullName);
    return panel;
    private JPanel createButtonPanel() {
    buttonPanel = new JPanel();
    btnPrevious = new JButton("< " + "Back");
    btnPrevious.setMnemonic('B');
    btnPrevious.addActionListener(this);
    btnNext = new JButton("Next" + " >");
    btnNext.setMnemonic('N');
    btnNext.addActionListener(this);
    btnCancel = new JButton("Cancel");
    btnCancel.setMnemonic('C');
    btnCancel.addActionListener(this);
    btnFinish = new JButton("Finish");
    btnFinish.setMnemonic('F');
    btnFinish.addActionListener(this);
    buttonPanel.add(btnPrevious);
    buttonPanel.add(btnNext);
    buttonPanel.add(btnCancel);
    buttonPanel.add(btnFinish);
    return buttonPanel;
    private void resetTextOnFullNamePanel(){
    lblFullName.setText("Your name is: " + getFirstName() + " " + getLastName());
    private void resetButtonPanel(){
    Component c[] = buttonPanel.getComponents();
    for(int i = 0; i < c.length; i++){
    c.setVisible(false);
    switch(iWizardStep){
    case FIRSTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case LASTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case FULLNAMEPANEL:
    btnFinish.setVisible(true);
    break;
    buttonPanel.validate();
    public void actionPerformed(ActionEvent e) {
    Object object = e.getSource();
    if (object == btnNext) {           
    btnNextPressed();
    } else if (object == btnPrevious) {           
    btnPreviousPressed();
    } else if (object == btnFinish) {
    System.exit(0);
    } else if (object == btnCancel) {
    System.exit(0);
    private void btnNextPressed() {       
    switch (iWizardStep) {
    case FIRSTNAMEPANEL:
    setFirstName(txtFirstName.getText());
    break;
    case LASTNAMEPANEL:
    setLastName(txtLastName.getText());
    resetTextOnFullNamePanel();
    break;
    iWizardStep++;
    resetButtonPanel();
    this.cardLayout.next(this.cards);
    switch (iWizardStep) {             
    case LASTNAMEPANEL:
    txtLastName.requestFocusInWindow();
    break;
    case FULLNAMEPANEL:
    btnFinish.requestFocusInWindow();
    break;
    private void btnPreviousPressed() {
    iWizardStep--;
    resetButtonPanel();
    this.cardLayout.previous(this.cards);
    public void setFirstName(String value) {
    firstName = value;
    public String getFirstName() {
    return firstName;
    public void setLastName(String value) {
    lastName = value;
    public String getLastName() {
    return lastName;
    public static void main (String[] args) {
    CardWindow c = new CardWindow();
    c.show();
    private CardLayout cardLayout;
    private JPanel cards, buttonPanel;
    private JTextField txtLastName, txtFirstName;
    private JLabel lblFullName;
    private JButton btnNext, btnPrevious, btnCancel, btnFinish;
    private String firstName = "";
    private String lastName = "";
    private int iWizardStep = 0;
    private static final int FIRSTNAMEPANEL = 0;
    private static final int LASTNAMEPANEL = 1;
    private static final int FULLNAMEPANEL = 2;

    Manfred,
    Thanks for your reply. I tried requestFocus() and it gives the same results. Also Sun's 1.4.0 API (http://java.sun.com/j2se/1.4/docs/api/) mentions the following with respect to the requestFocus() method in the JComponent class:
    Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
    That is why I used requestFocusInWindow.
    S.L.

  • Table Maintenance View

    I have created a custom table with fields EKORG, EKGRP,APPROVER(XUBNAME), Release Code (FRGAB), Financial Limit (CURR 15), WAERS, USER_CHANGE, DATE_CHANGE, TIME_CHANGE.
    Also, created a maintanence view for the table.
    If I create an entry in sm30 and save it, my requirement is that the last three fields named User Change, Date Change and Time Change should be populated automatically. Is events will do for this ? If so, please let me know how to find the subroutine to code for!

    Hai Clara
    Go through the following Document & Example for Search Helps
    The Matchcode is replaced by search help from the version 4.6C.
    I will tell u how create the search help.
    Name of a search help
    A search help is an object of the ABAP Dictionary with which input helps
    (F4 helps) can be defined.
    There are the following types of search helps:
    o Elementary search helps implement a search path for determining the
    possible entries.
    o Collective search helps contain several elementary search helps. A
    collective search help therefore provides several alternative search
    paths for possible entries.
    o Append search helps can be used to enhance collective search helps
    delivered by SAP with customer-specific search paths without
    requiring a modification.
    The three components of the input help process described by a search
    help are the outer interface, the online behavior and the method of data
    Go to Tcode SE11. Select the search help radio button.
    Give name as ztest and click create
    There are two types of search help.
    Once is elementary search help
    & collective search help
    Choose one.
    Add the data element.
    MatchCode is replaced by search helps.
    To attach a search help to a field.
    Use this code.
    at selection-screen on value-request for source.
    progname = sy-repid.
    dynnum = sy-dynnr.
    clear value_tab.
    refresh value_tab.
    Filling the Value_tab internal table by itab2 internal table.
    loop at itab_desc.
    write itab_desc-description to value_tab.
    append value_tab.
    endloop.
    prog = sy-repid.
    no = 1000.
    clear tab.
    refresh tab.
    Building the Structure of the Seach Help.
    tab-tabname = 'FMFCTRT'.
    tab-fieldname = 'BESCHR'.
    collect tab.
    Function Used to provide Search Help.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'BESCHR'
    dynpprog = prog
    dynpnr = no
    dynprofield = 'SOURCE'
    window_title = 'Function'
    TABLES
    value_tab = value_tab
    field_tab = tab.
    Regards
    Sreeni

  • IPhone 4s 64GB Network Issues

    I have a iPhone 4s 64GB that has intermident wifi network issues. I have completely restored the phone and am running in factory configuration with only one app installed (ping utility)and am still experiencing the following issue. When using the network (safari, facetime, etc) the network will become unresponsive. If i start a ping from the device the to the network gateway I get no response. If I ping the iPhone from the computer I get no response. If I toggle airplane move on then off everything starts working and the device will start to function normally and respond to pings. This happens continually throughout the day to any network I am connected to. I have received a replacement device and still have the same issue. I have talked to apple numerous times and they still say it is hardware. I have also deployed 100 iphone 4s to our company and hear of similar issues. Has anyone else had this issue or found a resolution? I am a very big advocate of apple products but after this exprience I will no longer be upgrading to the latest and greatest. I have reverted to using my iPhone 4 with ios5 with no issues.
    I have attached the console logs from my iphone that  retrieved from the iPhone configuration utility from a time when the issue was occuring.
    Nov 14 12:07:25 unknown lockdownd[22] <Error>: 0173b000 __handle_watcher_service_start_block_invoke_1: Stopping heartbeat service for host 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 0, dev 0x81609000 (this 0, provider 1)
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOffSystem() : Powering Off and sleeping
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): fStateFlags(34822)
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Unicast IP filter enabled
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled WOMP filter  0 (ID=103)
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled WOMP filter  1 (ID=104)
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled the '!ICMP' packet filter
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLAN Sleeping on BSS:   @ 0xc1b50c00, BSSID = 5c:d9:98:02:9a:40, rssi = -48, rate = 54 (100%), channel =  7, encryption = 0xc, ap = 1, failures =   0, age = 2498, ssid[ 9] = "CMSFLWLAN"
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::prepareForWoW(): Sending disconnect command..
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::sendDisconnectCommand()
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): Associated & WoW enabled, WiFi will remain up
    Nov 14 12:07:29 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 0 swapBusy: 0  fController: 0 -> 0
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Nov 14 12:07:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 0, pol 0x81609000 (this 0, provider 1)
    Nov 14 12:07:29 unknown kernel[0] <Debug>:
    Nov 14 12:09:05 unknown CommCenter[17] <Notice>: Telling CSI to exit low power.
    Nov 14 12:09:05 unknown kernel[0] <Debug>: pmu wake events: wlan
    Nov 14 12:09:05 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 0  fController: 0 -> 0
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleSynopsysUSBEHCI[0xc143bc00]::UIMInitialize - HSIC ports enabled
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 1, dev 0x81609000 (this 0, provider 1)
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 1, pol 0x81609000 (this 0, provider 1)
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): No fBus, deferring reconnect bus...
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 0
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType Detached
    Nov 14 12:09:05 unknown kernel[0] <Debug>: AppleBaseband::resetDetectInterrupt with 0
    Nov 14 12:09:05 unknown CLTM[12] <Error>: CLTM: resetting temps: now = 1321290545, last update = 1321290444
    Nov 14 12:09:05 unknown timed[2618] <Notice>: (Note ) CoreTime: Received network time zone "NITZ" with 342983343.00 -300 NO DST in 310
    Nov 14 12:09:05 unknown timed[2618] <Notice>: (Note ) CoreTime: Searching in NO DST time zone map for offset -300 and MCC 310
    Nov 14 12:09:05 unknown timed[2618] <Notice>: (Note ) CoreTime: Received timezone "America/New_York" from "NITZ"
    Nov 14 12:09:05 unknown timed[2618] <Notice>: (Note ) CoreTime: Not setting time zone to America/New_York from NITZ
    Nov 14 12:09:05 unknown MobileMail[79] <Warning>: message data temporarily unavailable for messageInfo: (1199, 5)
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOnSystem() : Powering On
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): stateFlags(24823)
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): Tearing down WoW mode
    Nov 14 12:09:06 unknown kernel[0] <Debug>: [95599.463363125]: AppleBCMWLANCore::systemWokenByWiFi(): Wake reason = wlan
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::handleDataPacket(): Wake up packet received: Data
    Nov 14 12:09:06 unknown kernel[0] <Debug>: Wakeup Packet: f0cba106a30c0050568952630800450001793a52400080063c29c0a80012c0a801a101bbccfffd1 21b7bd29b0c2c8018fe27ac9b00000101080a1785f7b13ca56e6f17030101403431c2351e7ee3052 e97886a25233433f1f1457a3c8b132c78c218cd508942bce0325b156c8c17222ab30cb4a99331401 b1d1bc0f1c4b8b21752b218d068570e097065786e60062250a26d351e541f5c291e6220cc053b5fd baa2d7abdbe7224eff815b5154dcb783dce8cd9a00a6da15cf4f5565355a80894f1d68cff527f54b 7ad7423fb8f39093a0ef40acf9c2de6eeb492f8f8ae20bd73b61b3a1b2df30cb982b941217fe8a34 08e01045804dc254da191d4b1f3a9d1cea7b9d192e61eda2473aed4a48f6c178c765b1f82c166521 e22a3a408893216761fa77b9388bcec9b2b8cd519ac9c8b053c00889c95b8003420dbb4561300eaf 6f6a59675db183260039f62eed7afb348d9fb3147238e116ad6ac4f1ebf5b22ee99b1cb92a5c3fb3 d43c25db5bfc761ea0feda538b53bedbaa0f948ac7c63f41822a8c5f882b400 (391 bytes)
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLAN Woke on same BSS:  @ 0xc1b50c00, BSSID = 5c:d9:98:02:9a:40, rssi = -47, rate = 54 (100%), channel =  7, encryption = 0xc, ap = 1, failures =   0, age = 2499, ssid[ 9] = "CMSFLWLAN"
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled the '!ICMP' packet filter
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled the '!ICMP' packet filter
    Nov 14 12:09:06 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled packet filters
    Nov 14 12:09:06 unknown kernel[0] <Debug>: en0: BSSID changed to 5c:d9:98:02:9a:40
    Nov 14 12:09:06 unknown lockdownd[22] <Error>: 00386000 handle_watcher_service_start: Got a service sock 13 for hostID 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:09:08 unknown timed[2618] <Notice>: (Note ) CoreTime: Want active time in 34.48hrs. Need active time in 117.81hrs.
    Nov 14 12:09:09 unknown MobileMail[79] <Warning>: message data temporarily unavailable for messageInfo: (1199, 5)
    Nov 14 12:09:18 unknown timed[2618] <Notice>: (Note ) CoreTime: Not setting system time to 11/14/2011 17:09:19 from GPS because time is unchanged
    Nov 14 12:09:23 unknown CommCenter[17] <Notice>: Telling CSI to go low power.
    Nov 14 12:09:25 unknown lockdownd[22] <Error>: 0173b000 __handle_watcher_service_start_block_invoke_1: Stopping heartbeat service for host 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 0, dev 0x81609000 (this 0, provider 1)
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOffSystem() : Powering Off and sleeping
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): fStateFlags(34822)
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Unicast IP filter enabled
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled WOMP filter  0 (ID=103)
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled WOMP filter  1 (ID=104)
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled the '!ICMP' packet filter
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLAN Sleeping on BSS:   @ 0xc1b50c00, BSSID = 5c:d9:98:02:9a:40, rssi = -50, rate = 54 (100%), channel =  7, encryption = 0xc, ap = 1, failures =   0, age = 2523, ssid[ 9] = "CMSFLWLAN"
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::prepareForWoW(): Sending disconnect command..
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::sendDisconnectCommand()
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): Associated & WoW enabled, WiFi will remain up
    Nov 14 12:09:29 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 0 swapBusy: 0  fController: 0 -> 0
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Nov 14 12:09:29 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 0, pol 0x81609000 (this 0, provider 1)
    Nov 14 12:09:29 unknown kernel[0] <Debug>:
    Nov 14 12:11:25 unknown kernel[0] <Debug>: pmu wake events: menu
    Nov 14 12:11:25 unknown CommCenter[17] <Notice>: Telling CSI to exit low power.
    Nov 14 12:11:25 unknown SpringBoard[15] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Nov 14 12:11:25 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 255->3 (deferring until bootloaded)
    Nov 14 12:11:25 unknown SpringBoard[15] <Notice>: MultitouchHID: device bootloaded
    Nov 14 12:11:25 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 3->3
    Nov 14 12:11:25 unknown CLTM[12] <Error>: CLTM: resetting temps: now = 1321290685, last update = 1321290564
    Nov 14 12:11:25 unknown timed[2619] <Notice>: (Note ) CoreTime: Received network time zone "NITZ" with 342983483.00 -300 NO DST in 310
    Nov 14 12:11:25 unknown timed[2619] <Notice>: (Note ) CoreTime: Searching in NO DST time zone map for offset -300 and MCC 310
    Nov 14 12:11:25 unknown timed[2619] <Notice>: (Note ) CoreTime: Received timezone "America/New_York" from "NITZ"
    Nov 14 12:11:25 unknown timed[2619] <Notice>: (Note ) CoreTime: Not setting time zone to America/New_York from NITZ
    Nov 14 12:11:26 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 0  fController: 0 -> 0
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleSynopsysUSBEHCI[0xc143bc00]::UIMInitialize - HSIC ports enabled
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 1, dev 0x81609000 (this 0, provider 1)
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 1, pol 0x81609000 (this 0, provider 1)
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): No fBus, deferring reconnect bus...
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 0
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType Detached
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBaseband::resetDetectInterrupt with 0
    Nov 14 12:11:26 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOnSystem() : Powering On
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): stateFlags(24823)
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): Tearing down WoW mode
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLAN Woke on same BSS:  @ 0xc1b50c00, BSSID = 5c:d9:98:02:9a:40, rssi = -48, rate = 54 (100%), channel =  7, encryption = 0xc, ap = 1, failures =   0, age = 2524, ssid[ 9] = "CMSFLWLAN"
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled the '!ICMP' packet filter
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled the '!ICMP' packet filter
    Nov 14 12:11:26 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled packet filters
    Nov 14 12:11:26 unknown kernel[0] <Debug>: en0: BSSID changed to 5c:d9:98:02:9a:40
    Nov 14 12:11:27 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:11:17 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:11:27 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:11:17 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:11:27 unknown lockdownd[22] <Error>: 016b9000 handle_watcher_service_start: Got a service sock 13 for hostID 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:11:28 unknown kernel[0] <Debug>: AppleKeyStore:cp_key_store_action(1)
    Nov 14 12:11:28 unknown kernel[0] <Debug>: AppleKeyStore:Sending lock change
    Nov 14 12:11:28 unknown timed[2619] <Notice>: (Note ) CoreTime: Want active time in 34.44hrs. Need active time in 117.78hrs.
    Nov 14 12:11:29 unknown configd[14] <Notice>: network configuration changed.
    Nov 14 12:11:29 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:11:17 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:11:30 unknown CommCenter[17] <Notice>: No more assertions for PDP context 0.  Returning it back to normal.
    Nov 14 12:11:30 unknown CommCenter[17] <Notice>: Scheduling PDP tear down timer for (342983790.026476) (current time == 342983490.026488)
    Nov 14 12:11:30 unknown wifid[29] <Error>: WiFi:[342983490.109759]: Client dataaccessd set type to background application
    Nov 14 12:11:31 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Error|Could not find the current user principal. Found properties: [{
                  "DAV::displayname" = "[<CoreDAVLeafItem: 0xdea1ae0>]: DAV:displayname";
                  "DAV::principal-URL" = "[[<CoreDAVItemWithHrefChildItem: 0xf1b79b0>]: DAV:principal-URL]
      HREF: [[[<CoreDAVHrefItem: 0xdeb4b30>]: DAV:href]
      Payload as original URL: [/calendar/dav/[email protected]/user/]
      Payload as full URL: [https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/]
      Base URL: [https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/]]";
                  "urn:ietf:params:xml:ns:caldav:calendar-home-set" = "[[<CoreDAVItemWithHrefChildren: 0xf1b6f30>]: urn:ietf:params:xml:ns:caldavcalendar-home-set]
      Number of HREFs: [1]
      Unauthenticated: [(null)]";
                  "urn:ietf:params:xml:ns:caldav:calendar-user-address-set" = "[[<CoreDAVItemWithHrefChildren: 0xde8f6f0>]: urn:ietf:params:xml:ns:caldavcalendar-user-address-set]
      Number of HREFs: [2]
      Unauthenticated: [(null)]";
                  "urn:ietf:params:xml:ns:caldav:schedule-inbox-URL" = "[[<CoreDAVItemWithHrefChildItem: 0xde755f0>]: urn:ietf:params:xml:ns:caldavschedule-inbox-URL]
      HREF: [[[<CoreDAVHrefItem: 0xdeb4de0>]: DAV:href]
      Payload as original URL: [/calendar/dav/anyoneemail.com/inbox/]
      Payload as full URL: [https://[email protected]/calendar/dav/anyoneemail.com/inbox///[email protected]/calendar/dav/anyoneemail.com/inbox/]
      Base URL: [https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/]]";
                  "urn:ietf:params:xml:ns:caldav:schedule-outbox-URL" = "[[<CoreDAVItemWithHrefChildItem: 0xdeac3a0>]: urn:ietf:params:xml:ns:caldavschedule-outbox-URL]
      HREF: [[[<CoreDAVHrefItem: 0xdeb7450>]: DAV:href]
      Payload as original URL: [/calendar/dav/anyoneemail.com/outbox/]
      Payload as full URL: [https://[email protected]/calendar/dav/anyoneemail.com/outbox///[email protected]/calendar/dav/anyoneemail.com/outbox/]
      Base URL: [https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/]]";
    Nov 14 12:11:32 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Error|There were some failures changing properties, according to the following response: [[[<CoreDAVResponseItem: 0xf2dfd20>]: DAV:response | Number of HREFs: [1]| Status: [(null)]| Number of prop stats: [1]| Error: [(null)]| Response description: [(null)]| Location: [(null)]]].
    Nov 14 12:11:34 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:11:19 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:11:38 unknown timed[2619] <Notice>: (Note ) CoreTime: Not setting system time to 11/14/2011 17:11:39 from GPS because time is unchanged
    Nov 14 12:11:42 unknown wifid[29] <Error>: WiFi:[342983502.660924]: Client itunesstored is background application
    Nov 14 12:12:29 unknown wifid[29] <Error>: WiFi:[342983549.925022]: Disable WoW requested by "apsd"
    Nov 14 12:12:29 unknown wifid[29] <Error>: WiFi:[342983549.927995]: Disable WoW requested by "dataaccessd"
    Nov 14 12:12:37 unknown SpringBoard[15] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=0
    Nov 14 12:12:37 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 3->255
    Nov 14 12:13:38 unknown profiled[2629] <Notice>: (Note ) profiled: Service starting...
    Nov 14 12:13:38 unknown profiled[2629] <Notice>: (Note ) profiled: Locking device
    Nov 14 12:13:39 unknown kernel[0] <Debug>: AppleKeyStore:Sending lock change
    Nov 14 12:13:43 unknown CommCenter[17] <Notice>: Telling CSI to go low power.
    Nov 14 12:13:44 unknown lockdownd[22] <Error>: 016b9000 __handle_watcher_service_start_block_invoke_1: Stopping heartbeat service for host 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleKeyStore:timer fired
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleKeyStore:cp_key_store_action(0)
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleKeyStore:Removing timer
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleKeyStore:Sending lock change
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 0, dev 0x81609000 (this 0, provider 1)
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOffSystem() : Powering Off and sleeping
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): fStateFlags(34822)
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Unicast IP filter enabled
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled WOMP filter  0 (ID=103)
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled WOMP filter  1 (ID=104)
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedEntry(): Enabled the '!ICMP' packet filter
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLAN Sleeping on BSS:   @ 0xc1b50c00, BSSID = 5c:d9:98:02:9a:40, rssi = -42, rate = 54 (100%), channel =  7, encryption = 0xc, ap = 1, failures =   0, age = 2667, ssid[ 9] = "CMSFLWLAN"
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::prepareForWoW(): Sending disconnect command..
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANBusInterfaceHSIC::sendDisconnectCommand()
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOff(): Associated & WoW enabled, WiFi will remain up
    Nov 14 12:13:48 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 0 swapBusy: 0  fController: 0 -> 0
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Nov 14 12:13:48 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 0, pol 0x81609000 (this 0, provider 1)
    Nov 14 12:13:48 unknown kernel[0] <Debug>:
    Nov 14 12:14:20 unknown CommCenter[17] <Notice>: Telling CSI to exit low power.
    Nov 14 12:14:20 unknown SpringBoard[15] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Nov 14 12:14:20 unknown kernel[0] <Debug>: pmu wake events: menu
    Nov 14 12:14:20 unknown kernel[0] <Debug>: virtual void AppleRGBOUT::do_power_state_change(): fSoft: 0 fHard: 1 swapBusy: 0  fController: 0 -> 0
    Nov 14 12:14:20 unknown kernel[0] <Debug>: AppleEmbeddedUSBArbitrator::setPowerState: calling handleUSBCableTypeChange from setPowerState
    Nov 14 12:14:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBCableDisconnect
    Nov 14 12:14:20 unknown kernel[0] <Debug>: AppleSynopsysUSBEHCI[0xc199f000]::UIMInitialize - HSIC ports enabled
    Nov 14 12:14:20 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateWillChangeToGated(): cap 0x8000, stateNum 1, dev 0x81609000 (this 0, provider 1)
    Nov 14 12:14:20 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): stateNum 1, pol 0x81609000 (this 0, provider 1)
    Nov 14 12:14:20 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerStateDidChangeToGated(): No fBus, deferring reconnect bus...
    Nov 14 12:14:20 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 255->3 (deferring until bootloaded)
    Nov 14 12:14:20 unknown SpringBoard[15] <Notice>: MultitouchHID: device bootloaded
    Nov 14 12:14:20 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 3->3
    Nov 14 12:14:20 unknown timed[2631] <Notice>: (Note ) CoreTime: Received network time zone "NITZ" with 342983659.00 -300 NO DST in 310
    Nov 14 12:14:20 unknown timed[2631] <Notice>: (Note ) CoreTime: Searching in NO DST time zone map for offset -300 and MCC 310
    Nov 14 12:14:20 unknown timed[2631] <Notice>: (Note ) CoreTime: Received timezone "America/New_York" from "NITZ"
    Nov 14 12:14:20 unknown timed[2631] <Notice>: (Note ) CoreTime: Not setting time zone to America/New_York from NITZ
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 0
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType Detached
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBaseband::resetDetectInterrupt with 0
    Nov 14 12:14:21 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOnSystem() : Powering On
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): stateFlags(24823)
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLANCore::powerOn(): Tearing down WoW mode
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLAN Woke on same BSS:  @ 0xc1b50c00, BSSID = 5c:d9:98:02:9a:40, rssi = -40, rate = 54 (100%), channel =  7, encryption = 0xc, ap = 1, failures =   0, age = 2668, ssid[ 9] = "CMSFLWLAN"
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled the '!ICMP' packet filter
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled the '!ICMP' packet filter
    Nov 14 12:14:21 unknown kernel[0] <Debug>: AppleBCMWLANCore::configureWoWAssociatedExit(): Disabled packet filters
    Nov 14 12:14:21 unknown kernel[0] <Debug>: en0: BSSID changed to 5c:d9:98:02:9a:40
    Nov 14 12:14:21 unknown lockdownd[22] <Error>: 016b9000 handle_watcher_service_start: Got a service sock 13 for hostID 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:14:22 unknown profiled[2629] <Notice>: (Note ) profiled: Device unlock notification received
    Nov 14 12:14:23 unknown kernel[0] <Debug>: AppleKeyStore:cp_key_store_action(1)
    Nov 14 12:14:23 unknown kernel[0] <Debug>: AppleKeyStore:Sending lock change
    Nov 14 12:14:23 unknown timed[2631] <Notice>: (Note ) CoreTime: Want active time in 34.39hrs. Need active time in 117.73hrs.
    Nov 14 12:14:33 unknown Preferences[1862] <Warning>: -[VPNConnectionStore reloadVPN]: The active VPN configuration has changed from  to (null)
    Nov 14 12:14:33 unknown timed[2631] <Notice>: (Note ) CoreTime: Not setting system time to 11/14/2011 17:14:34 from GPS because time is unchanged
    Nov 14 12:14:34 unknown Preferences[1862] <Warning>: -[VPNBundleController _vpnConfigurationChanged:] (0x13d7b0:<VPNBundleController: 0x13d7b0>): _serviceCount(0), serviceCount(0), toggleInRootMenu(0), RootMenuItem(1)
    Nov 14 12:14:34 unknown com.apple.misd[2635] <Notice>: allowing special port forwarding for test fixtures
    Nov 14 12:14:41 unknown Preferences[1862] <Warning>: BTM: attaching to BTServer
    Nov 14 12:14:41 unknown Preferences[1862] <Warning>: BTM: posting notification BluetoothAvailabilityChangedNotification
    Nov 14 12:14:44 unknown Preferences[1862] <Warning>: Should show voicemail? YES
    Nov 14 12:14:44 unknown Preferences[1862] <Warning>: Should show voicemail? YES
    Nov 14 12:14:44 unknown Preferences[1862] <Warning>: Should show voicemail? YES
    Nov 14 12:14:44 unknown Preferences[1862] <Warning>: Should show voicemail? YES
    Nov 14 12:15:01 unknown CommCenter[17] <Notice>: removing received message 2147483663
    Nov 14 12:15:22 unknown profiled[2629] <Notice>: (Note ) profiled: Idled.
    Nov 14 12:15:22 unknown profiled[2629] <Notice>: (Note ) profiled: Service stopping.
    Nov 14 12:15:38 unknown kernel[0] <Debug>: launchd[2643] Builtin profile: container2 (sandbox)
    Nov 14 12:15:38 unknown kernel[0] <Debug>: launchd[2643] Container: /private/var/mobile/Applications/E45DB0BB-3802-413A-B858-D5EE2F5C8DFF [69] (sandbox)
    Nov 14 12:15:38 unknown wifid[29] <Error>: WiFi:[342983738.764213]: Client itunesstored is background application
    Nov 14 12:15:41 unknown UIKitApplication:com.apple.iBooks[0xdd89][2643] <Notice>: DictinaryServices: Dictionary cache was updated
    Nov 14 12:19:40 unknown kernel[0] <Debug>: 096088.069853 hsic-baseband::portActionGated: start device 0x00020001 (bus 1 port 2) completed with 0xe00002ed, retrying in 50ms
    Nov 14 12:20:50 unknown wifid[29] <Error>: WiFi:[342984050.417001]: Client dataaccessd set type to background application
    Nov 14 12:21:11 unknown lockdownd[22] <Error>: 00386000 __handle_watcher_service_start_block_invoke_1: Stopping heartbeat service for host 30225B68-00D2-49E3-AE4A-38D7AA7B605B
    Nov 14 12:21:11 unknown com.apple.mobile.lockdown[22] <Notice>: Could not shutdown SSL connection: -9806
    Nov 14 12:21:53 unknown wifid[29] <Error>: WiFi:[342984113.211059]: Client itunesstored is background application
    Nov 14 12:22:06 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Error|connection died with error Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x1934d0 {NSErrorFailingURLStringKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSErrorFailingURLKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x108be0 "The request timed out."} 0xde94790
    Nov 14 12:22:06 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Error|Error refreshing properties for account: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x1934d0 {NSErrorFailingURLStringKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSErrorFailingURLKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x108be0 "The request timed out."}
    Nov 14 12:22:06 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Warn |CalDAV refresh task failed wih error Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x1934d0 {NSErrorFailingURLStringKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSErrorFailingURLKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x108be0 "The request timed out."}
    Nov 14 12:22:06 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Warn |==== CalDAV refresh FAILED for "email" (8B3B7412-5AB7-4636-85FC-0613452101C4): Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x1934d0 {NSErrorFailingURLStringKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSErrorFailingURLKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x108be0 "The request timed out."}.
    Nov 14 12:22:06 unknown dataaccessd[54] <Notice>: 1127d0|CalDAV|Error|CoreDAVPropFindTask failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x1934d0 {NSErrorFailingURLStringKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSErrorFailingURLKey=https://[email protected]/calendar/dav/anyoneemail.com/user///[email protected]/calendar/dav/anyoneemail.com/user/, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x108be0 "The request timed out."}
    Nov 14 12:23:24 unknown kernel[0] <Debug>: launchd[2659] Builtin profile: PasteBoard (sandbox)
    Nov 14 12:23:25 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 3->1
    Nov 14 12:23:25 unknown MobileSMS[117] <Error>: clip: empty path.
    Nov 14 12:23:25 unknown UIKitApplication:com.apple.MobileSMS[0x1a48][117] <Notice>: Nov 14 12:23:25 users-iPhone MobileSMS[117] <Error>: clip: empty path.
    Nov 14 12:23:26 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|connection died with error Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0xd6ebe90 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0xd6c7a50 "The request timed out."} 0x112d18d0
    Nov 14 12:23:26 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|ASMoveItemsTask failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0xd6ebe90 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0xd6c7a50 "The request timed out."}
    Nov 14 12:23:29 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 1->3
    Nov 14 12:23:29 unknown MobileSMS[117] <Warning>: Trying to remove already removed image
    Nov 14 12:23:33 unknown MobileSMS[117] <Error>: CGAffineTransformInvert: singular matrix.
    Nov 14 12:23:33 unknown UIKitApplication:com.apple.MobileSMS[0x1a48][117] <Notice>: Nov 14 12:23:33 users-iPhone MobileSMS[117] <Error>: CGAffineTransformInvert: singular matrix.
    Nov 14 12:23:40 unknown imagent[49] <Warning>: [Warning] Async loading of bag failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0xeeb64c0 {NSErrorFailingURLStringKey=http://init-p01md.apple.com/bag, NSErrorFailingURLKey=http://init-p01md.apple.com/bag, NSLocalizedDescription=The request timed out., NSUnderlyingError=0xee9e340 "The request timed out."}
    Nov 14 12:23:40 unknown imagent[49] <Warning>: [Warning] Bag loading failed! Error (NSURLErrorDomain:-1001): The request timed out. http://init-p01md.apple.com/bag
    Nov 14 12:23:45 unknown SpringBoard[15] <Notice>: Connection to the change hub got interrupted.
    Nov 14 12:23:49 unknown wifid[29] <Error>: WiFi:[342984229.632067]: Client itunesstored is background application
    Nov 14 12:24:28 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:18 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:29 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:18 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:29 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:18 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:31 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:18 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:31 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:21 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:31 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:21 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:36 unknown UserEventAgent[12] <Warning>: Unable to cancel system wake for 2011-11-14 12:24:21 -0500. IOPMCancelScheduledPowerEvent() returned 0xe00002c2
    Nov 14 12:24:47 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|connection died with error Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x113bdf50 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x113b5750 "The request timed out."} 0x1127a260
    Nov 14 12:24:47 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|ASMoveItemsTask failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x113bdf50 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x113b5750 "The request timed out."}
    Nov 14 12:26:07 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|connection died with error Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x2c7230 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x2a0b10 "The request timed out."} 0x11257260
    Nov 14 12:26:07 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|ASMoveItemsTask failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x2c7230 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x2a0b10 "The request timed out."}
    Nov 14 12:26:31 unknown imagent[49] <Warning>: [Warning] Async loading of bag failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x19b500 {NSErrorFailingURLStringKey=http://init-p01md.apple.com/bag, NSErrorFailingURLKey=http://init-p01md.apple.com/bag, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x18d740 "The request timed out."}
    Nov 14 12:26:31 unknown imagent[49] <Warning>: [Warning] Bag loading failed! Error (NSURLErrorDomain:-1001): The request timed out. http://init-p01md.apple.com/bag
    Nov 14 12:31:45 unknown kernel[0] <Debug>: launchd[2681] Builtin profile: container (sandbox)
    Nov 14 12:31:45 unknown kernel[0] <Debug>: launchd[2681] Container: /private/var/mobile/Applications/DD219E23-801C-44FF-A939-FC1E23D7B5CD [69] (sandbox)
    Nov 14 12:31:48 unknown Ping[2681] <Warning>: WARNING: Using legacy cell layout due to delegate implementation of tableView:accessoryTypeForRowWithIndexPath: in <myping: 0x161090>.  Please remove your implementation of this method and set the cell properties accessoryType and/or editingAccessoryType to move to the new cell layout behavior.  This method will no longer be called in a future release.
    Nov 14 12:31:49 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|connection died with error Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x11344bc0 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x113fb400 "The request timed out."} 0x2f3eb0
    Nov 14 12:31:49 unknown MobileMail[79] <Notice>: d65c270|EAS|Error|ASMoveItemsTask failed: Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x11344bc0 {NSErrorFailingURLStringKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSErrorFailingURLKey=https://email.website.com/Microsoft-Server-ActiveSync?User=user&DeviceId=ApplC39 GKPU5DTDK&DeviceType=iPhone&Cmd=MoveItems, NSLocalizedDescription=The request timed out., NSUnderlyingError=0x113fb400 "The request timed out."}
    Nov 14 12:32:48 unknown SpringBoard[15] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=0
    Nov 14 12:32:48 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 3->255
    Nov 14 12:33:01 unknown SpringBoard[15] <Notice>: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Nov 14 12:33:01 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 255->3 (deferring until bootloaded)
    Nov 14 12:33:01 unknown SpringBoard[15] <Notice>: MultitouchHID: device bootloaded
    Nov 14 12:33:01 unknown SpringBoard[15] <Notice>: MultitouchHID: detection mode: 3->3
    Nov 14 12:33:02 unknown kernel[0] <Debug>: set_crc_notification_state 0
    Nov 14 12:33:11 unknown com.apple.misd[2685] <Notice>: allowing special port forwarding for test fixtures
    Nov 14 12:33:13 unknown profiled[2686] <Notice>: (Note ) profiled: Service starting...
    Nov 14 12:33:13 unknown Preferences[1862] <Warning>: loadAPTableCellImages: loading images
    Nov 14 12:33:15 unknown Preferences[1862] <Warning>: -[APSettingsController specifiers]: CMSFLWLAN: _canForget(1), _canSetAutoJoin(0), _canSetAutoLogin(0)
    Nov 14 12:33:23 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 1
    Nov 14 12:33:23 unknown kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType USBHost
    Nov 14 12:33:23 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::handleUSBReset
    Nov 14 12:33:23 unknown kernel[0] <Debug>: launchd[2688] Builtin profile: ptpd (sandbox)
    Nov 14 12:33:23 unknown lockdownd[22] <Error>: libMobileGestalt copyMobileEquipmentIdentifier: No MEID in CT mobile equipment info dictionary - <CFBasicHash 0xfe164d0 [0x3fced630]>{type = mutable dict, count = 5,
              entries =>
                        1 : <CFString 0xfe2dc20 [0x3fced630]>{contents = "kCTMobileEquipmentInfoCurrentSubscriberId"} = <CFString 0xfe16770 [0x3fced630]>{contents = "310410438874235"}
                        2 : <CFString 0xfe1cd20 [0x3fced630]>{contents = "kCTMobileEquipmentInfoCurrentMobileId"} = <CFString 0xfe2cd90 [0x3fced630]>{contents = "012937000519404"}
                        4 : <CFString 0xfe2e1b0 [0x3fced630]>{contents = "kCTMobileEquipmentInfoICCID"} = <CFString 0xfe2e1e0 [0x3fced630]>{contents = "89014103254388742359"}
                        11 : <CFString 0xfe2d750 [0x3fced630]>{contents = "kCTMobileEquipmentInfoIMEI"} = <CFString 0xfe2cd90 [0x3fced630]>{contents = "012937000519404"}
                        12 : <CFString 0xfe2e280 [0x3fced630]>{contents = "kCTMobileEquipmentInfoIMSI"} = <CFString 0xfe16770 [0x3fced630]>{contents = "310410438874235"}
    Nov 14 12:33:23 unknown lockdownd[22] <Error>: 00386000 copy_meid: MobileGestalt failed to provide an MEID but returned no error (?)
    Nov 14 12:33:24 unknown atc[2690] <Warning>: Error: Connection invalid
    Nov 14 12:33:28 unknown ptpd[2688] <Notice>: PTP interface has been activated at high speed.
    Nov 14 12:33:37 unknown lockdownd[22] <Error>: 0173b000 special_case_get_domain: NN: checking BT MAC Address reported back f0:cb:a1:06:a3:0d
    Nov 14 12:33:38 users-iPhone mc_mobile_tunnel[2700] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
    Nov 14 12:33:38 users-iPhone mc_mobile_tunnel[2700] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.

    *228 option 2 might work. All phones can be different.

  • Highlight in Adobe Reader X not working after update to 10.1.1

    Hello
    We have an application aimed at assisting people with reading difficulties. For that purpose we have written an Adobe Reader plugin which makes our application able to read text from PDF documents. While it reads it also highlights the words it is reading so that the user can keep up with it. However, after the 10.1.1 update of the Reader the highlighting no longer works.
    The plugin was originally developed using Acrobat SDK 8.1, but the problem remained even after I upgraded to SDK 10. The highlighting is done using the AV-layer with the AVPageViewHighlightText() method.
    We need to know if there is something in this recent update which breaks the highlight functionality, and if so, is it intentional?
    PS: We are running with Protected Mode disabled since reading doesn’t work at all with it.

    Ok, I found the problem.
    We are using the void AVPageViewDrawNow(AVPageView pageView) method to make sure that some changes are applied in certain cases. The behavior of this method seems to be different in Adobe Reader 10.1.1. Removing the call brought our highlighting back to life.

  • Taking a screenshot of StageWebView for websites running a plugin?

    I've been trying to take a screenshot of an instance of StageWebView for websites with embedded SWF and PDF content on the Android. The method drawViewPortToBitmapData works fine for regular websites after enabling hardware acceleration in the manifest.
    //create a bitmap from the webview and display it
    var bitmap_data:BitmapData = new BitmapData(stage.stageWidth - 2*WEBVIEWOFFSET, stage.stageHeight - 40 - WEBVIEWOFFSET);
    webView.drawViewPortToBitmapData(bitmap_data); 
    //remove webview and display snapshot
    webView.stage = null;
    var webViewBitmap:Bitmap = new Bitmap(bitmap_data);
    addChild(webViewBitmap);
    The previous code works for embedded content only on the emulator in the Flash IDE. The image is generated  in the folder I specified in Windows but on the Android a blank image is created instead.
    The API states "The behavior of this method is not guaranteed for pages that contain plugin content (such as embedded PDF and SWF files)."
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageWebVie w.html#drawViewPortToBitmapData%28%29
    I tried using Context3D instead:
    var stage3D:Stage3D = webView.stage.stage3Ds[0];
    stage3D.addEventListener(Event.CONTEXT3D_CREATE, context3dCreated);
    stage3D.requestContext3D(Context3DRenderMode.AUTO);
    function context3dCreated(evt:Event ):void {
        //context 3d creation handler
        var bitmap_data:BitmapData = new BitmapData(stage.stageWidth - 2*WEBVIEWOFFSET, stage.stageHeight - 40 - WEBVIEWOFFSET);
        var renderContext:Context3D = Stage3D(evt.target).context3D;
        trace("3D driver: " + renderContext.driverInfo);
        renderContext.drawToBitmapData(bitmap_data);
        renderContext.present();
        //remove webview and display snapshot
        webView.stage = null;
        var webViewBitmap:Bitmap = new Bitmap(bitmap_data);
        addChild(webViewBitmap);      
    but this approach only generates blank images on both the emulator and the device.
    Does anybody know of a way to take a screenshot from a StageWebView displaying embedded SWF or PDF content? or is there a free native extension that can trigger the screenshot in Android (power + home)?

    andylow wrote:
    When I press shift + command + 4, I always go into this highlight-for-screenshot mode (good). However, if I'm attempting to screenshot something in a VMWare session, when I press my left mouse button to start highlighting, I can still manipulate the applications running in it. Ex: I press shift + command + 4, my mouse pointer changes, I then start my screen highlight by beginning over the top of the close button on an application. That application will close because I've clicked the close button.
    This may not help, but what if you start creating the screenshot rectangle in a different corner than the upper left?

  • Don't understand error message from HTML parser?

    I've written a simple test program to parse a simple html file.
    Everything works fine accept for the <img src="test.gif"> tag.
    It understands the img tag and the handleSimpleTag gets called.
    I can even pick out the src attribute. But I get a very strange error message.
    When I run the test program below on the test.html file (also below) I get the following output:
    handleError(134) = req.att srcimg?
    What does "req.att srcimg?" mean?!?!?
    /John
    This is my test program:
    import javax.swing.text.html.*;
    import javax.swing.text.*;
    import javax.swing.text.html.parser.*;
    import java.io.*;
    public class htmltest extends HTMLEditorKit.ParserCallback
    public htmltest()
       super();
    public void handleError(String errorMsg, int pos)
       System.err.println("handleError("+pos+") = " + errorMsg);
    static public void main (String[] argv) throws Exception
        Reader reader = new FileReader("test.html");
        new ParserDelegator().parse(reader, new htmltest(), false);
    This is the "test.html" file
    <html>
    <head>
    </head>
    <body>
    This is a plain text.<br>
    This is <b>bold</b> and this is <i>itallic</i>!<br>
    <img src="test.gif">
    "This >is also a plain test text."<br>
    </body>
    </html>
    ----------------------------------------------------------------------

    The handleError() method is not well documented any more than whole javax.swing.text.html package and its design structure. You can ignore the behavior of the method if other result of the parser and your HTML file are proper.

  • T1s: Mac to PC-- stroke thickening?

    I apologise that I'm posting this one here, but I'm not sure which other forum would include as many font experts.
    Here's the question-
    If you have a font from the same foundry, available on both platforms, will the results on film, from the same file always be identical?
    I'm PC based, but many other designers working on the Mac have told me that they have tried this in production and noticed that the PC version always comes out thicker. Again, given identical foundry, identical hints, why should this happen? Sub Q: would a PDF workflow circumvent this?
    Many thanks.
    -BR

    Thanks again Tom.
    If by "select and reset" you mean add again F041 from the Unicode Hex to Favorites, and from there double click or drag & drop to the document, I did it and same results: a rectangle in Word, an "A" in Excel & Powerpoint and my signature in Outlook, Mail, Pages, Numbers and Keynote. All this by double clicking or drag & dropping the SAME F041, in which I can actually see my signature in Character Viewer.
    The interesting thing is that it works well in MS Outlook and not in the other 3 components of MS Office.
    Same thinking apply to text substitutions: Outllook take the Apple text substitution, but Word, Excel & Powerpoint do not.
    On the other hand, David at MacForums suggested to change to Unicode Hex and from there hold the option key and type F041. It has the same behavior as your method (the drag & drop or double clik): It works in MS Outllok, Mail, Pages & Numbers (not Keynote). It does not work in Word (get a rectangle), Excel (get an "A"), Powerpoint (get an "A") and Keynote (get a square).
    Is there anything else I can do to get it work in Word, Excel and Powerpoint, if not by text substitution (the ideal solution) at least by double click or drag & drop?
    Thanks

Maybe you are looking for