EmptyStackException when exit from nested page flow on SP2

I have tried to call a nested page flow (TestNestedController.jpf) from page flow
and using redirect="true". After exit from nested page flow, it supposes that
return to the action testNestedDone() in page flow(TestPageController). It works
on SP1, but it fails on SP2.
Please suggest any solutions for this issues.
public class TestPageController extends PageFlowController
// Uncomment this declaration to access Global.app.
// protected global.Global globalApp;
// For an example of page flow exception handling see the example "catch"
and "exception-handler"
// annotations in {project}/WEB-INF/src/global/Global.app
* This method represents the point of entry into the pageflow
* @jpf:action
* @jpf:forward name="success" path="page.jsp"
protected Forward begin()
return new Forward("success");
* @jpf:action
* @jpf:forward name="success" path="/test/testNested/TestNestedController.jpf"
redirect="true"
protected Forward goToNested()
System.out.println("go to nested redirect = true");
return new Forward("success");
* @jpf:action
* @jpf:forward name="success" path="index.jsp"
protected Forward testNestedDone()
return new Forward("success");

The error message like this:
Empty nesting stack for returned action BackToPrevious from Page Flow /xxxx/viewMemberController.jpf.
com.bea.wlw.netui.pageflow.EmptyNestingStackException: Empty nesting stack for
returned action BackToPrevious from page flow /xxxx/viewMember/viewMemberController.jpf.
at com.bea.wlw.netui.pageflow.FlowController.forwardTo(FlowController.java:1103)
"patrick" <[email protected]> wrote:
>
I have tried to call a nested page flow (TestNestedController.jpf) from
page flow
and using redirect="true". After exit from nested page flow, it supposes
that
return to the action testNestedDone() in page flow(TestPageController).
It works
on SP1, but it fails on SP2.
Please suggest any solutions for this issues.
public class TestPageController extends PageFlowController
// Uncomment this declaration to access Global.app.
// protected global.Global globalApp;
// For an example of page flow exception handling see the example
"catch"
and "exception-handler"
// annotations in {project}/WEB-INF/src/global/Global.app
* This method represents the point of entry into the pageflow
* @jpf:action
* @jpf:forward name="success" path="page.jsp"
protected Forward begin()
return new Forward("success");
* @jpf:action
* @jpf:forward name="success" path="/test/testNested/TestNestedController.jpf"
redirect="true"
protected Forward goToNested()
System.out.println("go to nested redirect = true");
return new Forward("success");
* @jpf:action
* @jpf:forward name="success" path="index.jsp"
protected Forward testNestedDone()
return new Forward("success");

Similar Messages

  • Nested page flow navigation problem

    I created a portlet based on a page flow, pf1. pf1 invokes an action "callPageFlow2"
    to call a nested page flow 'pf2'. When I navigate from pf1 to pf2, everything
    is OK. But if I click the BROWSER's "Back" button to move back from pf2 to pf1,
    then click the link to invoke "callPageFlow2" again, I got the error saying "callPageFlow2
    not found". In fact the portal was looking for "callPageFlow2" within pf2 instead
    of pf1 (although I click the link within pf1).
    If I run the page flow I did not get this error. Only when I tried this within
    a portal, it failed.
    Any idea?
    Thanks

    The browser back button has been a perpetual pain in the neck for server side applications,
    but the truth is, if it's causing any problems, then the application design should
    be revisited. In this particular case, when you call pf2, portal server marks
    pf2 as the current pageflow in session so that future actions can be invoked on
    this pageflow. pf1 is pushed onto a stack also tracked in the session. When you
    exit from pf2 through an exit action, the stack is popped and pf1 is set as the
    current pageflow BUT when you go back by pressing the back button, the server
    never gets a chance to pop the stack and reset pf1 as the current pageflow. Hence
    when you submit an action belonging to pf1, the server chokes because it can't
    find the action on pf2 which has been pinned as the current pageflow because of
    the previous request that did hit the server.
    SO, a possible fix is that the underlying pageflowcontroller code is modified
    to lookup the action in the parent pageflow if the action is not found in the
    nested pageflow. I hope BEA will make that fix. You do have a workaround which
    should work in most of the cases. If the action is not found in the current pageflow,
    portal server DOES look for the action in another place, and that is the Global
    pageflow as defined in the Global.app file. So as a workaround, if your flow logic
    will allow it, you can duplicate the actions called on pf1 in the global.app.
    You DO NOT need to duplicate all the actions, just the one or two that are on
    the JSP that allows you to invoke callPageFlow2. Make sure you edit your jsp paths
    in the forwards to point to absolute paths from the root of your app instead of
    relative paths that you may have.
    I tried to hack around this using the backing file mechanism, but the server chokes
    before it gets to any of the backing class methods, so I resorted to this work
    around temporarily.
    Cheers
    Khurram
    "zli" <[email protected]> wrote:
    >
    I created a portlet based on a page flow, pf1. pf1 invokes an action
    "callPageFlow2"
    to call a nested page flow 'pf2'. When I navigate from pf1 to pf2, everything
    is OK. But if I click the BROWSER's "Back" button to move back from pf2
    to pf1,
    then click the link to invoke "callPageFlow2" again, I got the error
    saying "callPageFlow2
    not found". In fact the portal was looking for "callPageFlow2" within
    pf2 instead
    of pf1 (although I click the link within pf1).
    If I run the page flow I did not get this error. Only when I tried this
    within
    a portal, it failed.
    Any idea?
    Thanks

  • Nested Page Flows

    Hi,
              I am getting ActionNotFoundException when browsing through my pages which use the Nested Page Flows.
              The complete description of the Nested Page Flow we are using in our Application .
              CustomerController --> Parent Controller
              ServiceAddressController --> Child Controller
              OrganizationHierarchyController --> Child Controller
              The CustomerController.saveCustomerContacts() action invokes the ServiceAddressController.begin().
              ServiceAddressController performs some actions and returns the Control back to the CustomerController.serviceAddressDone().
              CustomerController.serviceAddressDone() inturn again immediately invokes the OrganizationHierarchyController.begin().
              After performing some actions the OrganizationHierarchyController returns the control back to CustomerController.organizationHierarchyDone().
              The logs indicate that the Exception is occuring after returning from the OrganizationHierarchyController.begin().
              This is happening in the Integration environment.
              And one more thing…
              We have found from the Bea Web site
              (link: http://edocs.bea.com/workshop/docs81/doc/en/core/index.html ) that the following Exception occurs in the development environment..
              com.bea.wlw.netui.pageflow
              EmptyNestingStackException Class
              public class EmptyNestingStackException
              extends PageFlowException
              Exception that occurs when the user invokes an action in a nested page flow that is qualified with a @jpf:forward return-action="action-name-in-calling-pageflow " annotation, but there is no calling page flow. This can happen in iterative development mode when you have modified files and caused the web application to be redeployed, or when the session expires.
              Hierarchy
              Object
              Throwable
              Exception
              RuntimeException
              PageFlowException
              EmptyNestingStackException
              All Implemented Interfaces
              Serializable
              We initially thought that the above Exception might be the cause for ActionNotFoundException.
              Since the Weblogic Server removes the Controller from the nesting stack, and hence the Controller is lost and there by resulting in ActionNotFoundException.
              And we thought that this happens only in the iterative development Environment.
              But, we are getting this Exception even in the Integration Environment.
              This is causing problems for us to test the Application, and resolve the defects, and considerably hindering the progress of our development and the testing phase.
              We would appreciate any one who could find a quick solution for the above problem.
              We are Using Weblogic 8.1.3 with ServicePack 3.
              thanks,
              Venkatesh Pagadala.
              :-)

    Did you get to the bottom of this ?
              The exception can be generated when you try to access /invoke an action on a pageflow that is no longer in the stack.
              Once you use the return-to and go back to a parent page flow then then nested page flow is destroyed.

  • Nested Page Flows and Pop Ups - Workshop 8.1

    Hi, everybody.
    I'm facing the following problem:
    I've a "main" page flow within some page flow-scoped data and forms. Now i need to open/execute another page flow (a "secondary" one) inside a pop up window. The tricky is i cannot "lose" the data in the first page flow. I will navigate to main page, fill some data, open the pop up, execute some queries, close the pop up and continue previous navigation.
    If i don't use a "nested" page flow for my pop up, i loose the page flow-scoped data from my main page flow (a new page flow is created).
    If i use a nested page flow, the following scene does not work:
    - Go to main page (create main page flow);
    - Fill some data;
    - Open pop up (create nested page flow);
    - Perform some queries (execute actions inside nested page flow);
    - Close pop up window;
    - Fill some data;
    - Submit main page;
    - Execute form validation using Struts Validator.
    When i execute the last step and there are errors in the submitted form, netui data binding tags fail. I believe that the engine "thinks" that it should use nested page flow (and form) instead of the main page flow (and form).
    I've found a workaround for this situation: When the pop up is closed, the main page execute a "dummy refresh action" in the main page flow.
    Is this the correct behaviour ? Is there another way of do it ?
    Thanks in advance.

    Hi Vimala.
    I cannot lose page flow data because i have other kind of data (beside a form) inside my page flow: Options values, previous search result list, ...
    Can i close the pop up window without call "return-action" ? How should i proceed if i don't need/have a "return-action" ?
    How should i proceed if i should to specify the forward of a "return-action" as a request parameter/attribute ?
    Thanks.

  • Make an existing page flow as nested page flow

    Hi
    I have a page flow and want to make it as a nested page flow. I observed that there is a checkbox for making a page flow as nested when we create a page flow. I haven't selected that option during creation.
    Is there any property i can set for a page flow to make it nested.
    Appreciate your help in this.
    Thanks,
    RK

    Hi,
    Just update the entry after the import in your existing page flow controller from @jpf controller to @jpf controller nested="true".
    Once you do this, Worksop would indicate an error saying that this pageflow does not have an @jpf forward with the return action. To overcome this error add the following code in your jpf
    * @jpf:action
    * @jpf:forward name="done" return-action="newpageflow1Done"
    public Forward done()
    return new Forward("done");
    This should make your pageflow a nested pageflow
    -Jagan

  • Exceeding max 25 of nested page flows

    I got this error message, can someone help me out? Thanks
    Page Flow, forward overflow
    27 pageflows have been nested, and this number exceeds the nesting maximum of
    25, the stack has been cleared

    Shiye,
         I am not sure from your mail if you want to have such a deeply nested
    stack of page flows and want to get past the limit or if you are seeing
    this behavior when you don't intend to be nesting many page flows. Here
    is a link to some documentation on setting the limit on nested page flows.
         - john
    http://edocs.bea.com/workshop/docs81/doc/en/workshop/guide/netui/guide/conConfiguringPageFlowApplications.html
    Shiye Qiu wrote:
    I got this error message, can someone help me out? Thanks
    Page Flow, forward overflow
    27 pageflows have been nested, and this number exceeds the nesting maximum of
    25, the stack has been cleared

  • Nested page flows with a common popup

    Hello,
    I would appreciate some help with the following problem...
    I have a web application that utilizes nested page flows. I need the
    ability to popup a window (with dynamic data) that can be initialized from
    any page flow in the application. The catch is that after popup is opened,
    the active page flow in the application must be the flow that created the
    popup. Also, I want to have one copy of this JSP in my application, and it
    requires page flow data binding.
    My solution as it stands works, but throws an Exception. Basically, the
    popup has its own nested page flow that is initialized by an action in any
    other flow that needs it. The popup flow uses the response to send a
    redirect to a blank window, then forwards to a return action to get back to
    the popup flow's parent flow. Functionally this works perfectly, however,
    the following exception is thrown:
    java.lang.IllegalStateException: Cannot forward to a response that is
    already committed
    Obviously, I'm not going about this correctly. Thanks for any help in
    advance,
    Chris

    Hello,
    I would appreciate some help with the following problem...
    I have a web application that utilizes nested page flows. I need the
    ability to popup a window (with dynamic data) that can be initialized from
    any page flow in the application. The catch is that after popup is opened,
    the active page flow in the application must be the flow that created the
    popup. Also, I want to have one copy of this JSP in my application, and it
    requires page flow data binding.
    My solution as it stands works, but throws an Exception. Basically, the
    popup has its own nested page flow that is initialized by an action in any
    other flow that needs it. The popup flow uses the response to send a
    redirect to a blank window, then forwards to a return action to get back to
    the popup flow's parent flow. Functionally this works perfectly, however,
    the following exception is thrown:
    java.lang.IllegalStateException: Cannot forward to a response that is
    already committed
    Obviously, I'm not going about this correctly. Thanks for any help in
    advance,
    Chris

  • When switching from one page to another, browser timeouts and have to refresh

    I know I am antiquated, however, I have dial up still. I have never had this problem until recently. When going from one page (even in email) the browser does not load and I have to refresh or it will sit there giving no error and doing nothing. Resetting fire fox does not work.

    Check the connection settings.
    *Tools > Options > Advanced > Network : Connection > Settings
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel
    If you do not need to use a proxy to connect to internet then try to select "No Proxy" if "Use the system proxy settings" or one of the others do not work properly.
    See "Firefox connection settings":
    *https://support.mozilla.org/kb/Firefox+cannot+load+websites+but+other+programs+can
    You can also try to disable IPv6
    *http://kb.mozillazine.org/Error_loading_websites
    You can try to reset (power off/on) the router.
    You can check the Network tab in the Web Console (Firefox/Tools > Web Developer;Ctrl+Shift+K) to see if that gives any clues about the cause.<br />
    You can click an entry to see the response headers and check the Timings tab in the right pane.
    *https://developer.mozilla.org/en/Tools/Web_Console
    Note that your System Details List shows that you have a user.js file in the profile folder to initialize some prefs on each start of Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    you can check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    *http://kb.mozillazine.org/Preferences_not_saved

  • Code to call another Page Flow URL from one page flow URL

    Can anyone send me the code to call another pageflow url from one page flow URL.

    thanks...
    In my appication there is no Form page. Only based on Canvas in that ,
    i implemented Text box, Text Field And Drop down list etc..by own coding without using any abstract methods.
    I did every thing with in single Midlet file.While developng goes on i got the problem ,
    Like "your application exceeds the memorylimit you cant
    use more than 32Kb of byte code in Canvas"...
    So the application is not opened.
    I tried to call the next file in same package to proceed, i got it. codition goes to next file, but its not return back to the Main(MIDlet) file, throws the excepton as "Security exception".
    How to solve this problem,is any other way? please...

  • Error page flow weblogic sp2

    I was using weblogic platform sp1 and upgraded to sp2 .
    In sp2 i get following error during build.
    ERROR: Controller.jpf:287: There is no @jpf:forward with the
    return-action attribute defined for this nested PageFlowController.
    ERROR:      SUGGESTION: Create a @jpf:forward annotation on an action
    method and mark it with a return-action attribute.
    Can any one help in solving this problem
    tia
    Mahesh

    Mahesh,
    David is correct about the requirement for the return-action attribute but I
    believe this was just as true in the initial 8.1 release.
    - john
    "David Karr" <[email protected]> wrote in message
    news:40631e05$[email protected]..
    >
    I can give you a little background on the problem, which may lead you to asolution.
    >
    When you have a nested page flow, there has to be some way to get out ofthe nested
    page flow and back to the containing page flow. You can see this in theFlow
    View with an action that connects with the red box. The connection betweenthat
    action and the red box represents a jpf:forward with a return-actionattribute.
    The value of the "return-action" attribute is the name of the action tocall
    in the calling page flow.
    You can see useful examples of this in the Avitek EvalGuide example, inthe "RegisterReferralController.jpf"
    for example.
    As you say you're just upgrading from sp1 to sp2, I would guess that therewas
    a change in whether a forward with "return-action" was required or not. Ihave
    no idea.
    "Mahesh" <[email protected]> wrote:
    I was using weblogic platform sp1 and upgraded to sp2 .
    In sp2 i get following error during build.
    ERROR: Controller.jpf:287: There is no @jpf:forward with the
    return-action attribute defined for this nested PageFlowController.
    ERROR: SUGGESTION: Create a @jpf:forward annotation on an action
    method and mark it with a return-action attribute.
    Can any one help in solving this problem
    tia
    Mahesh

  • Exception when trying to use page flow diagrammer

    I can no longer use the struts-config page flow diagrammer (jdeveloper 9.0.5.2). In the jdeveloper console the following error is displayed when i try to open the diagrammer:
    java.lang.NoSuchMethodError: org.apache.batik.dom.svg.ExtensibleSVGDOMImplementation.registerCustomCSSValueManager(Lorg/apache/batik/css/engine/value/ValueManag
    er;)V
    at org.apache.batik.extension.svg.BatikDomExtension.registerTags(Unknown
    Source)
    at org.apache.batik.dom.svg.ExtensibleSVGDOMImplementation.<init>(Unknow
    n Source)
    at org.apache.batik.dom.svg.ExtensibleSVGDOMImplementation.<clinit>(Unkn
    own Source)
    at org.apache.batik.dom.svg.SAXSVGDocumentFactory.<init>(Unknown Source)
    at org.apache.batik.bridge.DocumentLoader.<init>(Unknown Source)
    at oracle.bm.data.resolve.ImageHelper.resolveElementReference(ImageHelpe
    r.java:286)
    Any ideas how to solve this?
    Thanks,
    Andrej

    It has actually gotten worse: jdeveloper doesn't even start anymore.
    I've removed all workspaces from jdeveloper, restarted, created a new workspace and project. I added a struts-config file. I could open it, but when i tried to drop a data-page component on it, an error message was displayed. Then i removed the workspace and restarted jdeveloper. BUt it doesn't want to restart anymore. The console shows the following message:
    Jalopy Java Source Code Formatter 1.0b10 JDeveloper Extension 1.1.4
    Copyright (c) 2001-2003 Marco Hunsicker. All rights reserved.
    java.lang.NoSuchMethodError: org.apache.batik.dom.svg.ExtensibleSVGDOMImplementa
    tion.registerCustomCSSValueManager(Lorg/apache/batik/css/engine/value/ValueManag
    er;)V
    at org.apache.batik.extension.svg.BatikDomExtension.registerTags(Unknown
    Source)
    at org.apache.batik.dom.svg.ExtensibleSVGDOMImplementation.<init>(Unknow
    n Source)
    at org.apache.batik.dom.svg.ExtensibleSVGDOMImplementation.<clinit>(Unkn
    own Source)
    at org.apache.batik.dom.svg.SAXSVGDocumentFactory.<init>(Unknown Source)
    at org.apache.batik.bridge.DocumentLoader.<init>(Unknown Source)
    at oracle.bm.data.resolve.ImageHelper.resolveElementReference(ImageHelpe
    r.java:286)
    at oracle.bm.data.ResolveController.resolveElementReference(ResolveContr
    oller.java:114)
    at oracle.bm.data.ElementReference.getElementReferenced(ElementReference
    .java:97)
    at oracle.bm.diagrammer.shape.ImageShape.notifyChange(ImageShape.java:29
    5)
    at oracle.bm.diagrammer.shape.BaseDiagramShape.notifyChange(BaseDiagramS
    Any tips how to bring jdeveloper back to life, or do i have to reinstall it?
    Thanks,
    Andrej

  • OBIEE  is slow when move from one page to another in OBIEE Dashboard

    Hi Experts,
    When I move from one page(Tab) to another page in OBIEE dashbord. It is taking too much time . Please suggest how can we overcome this.
    Thanks,

    Server is in UK.
    It is running fine in Production for same time zone,But stuck in stage.
    Thanks,

  • X crash the PC when exit from X (dixGetPrivateAddr: Assertion)

    I installed Arch Linux on my new PC (had Arch on my 6 year old notebook for about 2 years) but each time I want to exit form X (KDE or TWN) crash the video output. The display switch to standby and the keyboard doesn't work any more, so I can't switch to a terminal.
    My PC config:
    Arch x86_64, new net installation up-to-date (pacman -Syu)
    AMD X6, Radeon HD5830, dual head installation
    I tried some AUR radeon-git driver (a lot of artefacts, exit from X works) , catalyst (closed source , radeon r300g on my notebook just rocks ). After all this installation of different drivers I set a new Arch Linux installation up (no KDE, only TWN). But the problem remains. With a remote ssh login I can access the crashed PC and shut it down or restart X and X starts again (now I can switch to a terminal until I exit again from X).
    Terminal output when I start X over ssh:
    abc@xsix ~]$ su root
    Passwort:
    [root@xsix abc]# startx
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.35-ARCH x86_64
    Current Operating System: Linux xsix 2.6.36-ARCH #1 SMP PREEMPT Sat Jan 8 14:15:27 CET 2011 x86_64
    Kernel command line: BOOT_IMAGE=/vmlinuz26 root=/dev/disk/by-uuid/ed0f04ab-b16c-4a11-8c1b-175c25f7ddb1 ro
    Build Date: 01 November 2010 10:29:19PM
    Current version of pixman: 0.20.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 15 00:24:48 2011
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (II) [KMS] Kernel modesetting enabled.
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    > Ignoring extra symbols
    Errors from xkbcomp are not fatal to the X server
    xinit: connection to X server lost
    waiting for X server to shut down XIO: fatal IO error 4 (Unterbrechung während des Betriebssystemaufrufs) on X server ":0"
    after 1027 requests (1027 known processed) with 2 events remaining.
    X: ../../../include/privates.h:122: dixGetPrivateAddr: Assertion `key->initialized' failed.
    [root@xsix abc]#
    Xorg log:
    http://archlinux.pastebin.com/MaBAbWJL
    no EE errors
    Xorg config:
    [root@xsix log]# cat /etc/X11/xorg.conf.d/20-radeon.conf
    Section "Device"
    Identifier "HD5830"
    Driver "radeon"
    EndSection
    [root@xsix log]#
    radeon is in /etc/rc.conf under MODULES and dbus is in DAEMONS, late KMS enabled.
    Has someone an idea to solve this problem or has/had a similar problems with X,radeon,...? Any piece of information is welcome.
    Last edited by devnow (2011-01-15 00:03:40)

    After add Repo from https://bbs.archlinux.org/viewtopic.php?id=79509 and install
    - dri2proto-git
    - glproto-git
    - libdrm-git
    - mesa-full (replaces mesa, libgl and ati-dri)
    - mesa-demos-git (optional: needed for glxinfo and glxgears)
    - mesa-full-gallium (optional)
    - xf86-video-ati-git
    with Kernel 2.6.37 from testing (kernel26-drm-radeon-testing and linux-firmware-git not installed)
    X don't crash any more
    But exit from X isn't clean compare last few lines:
    [root@xsix abc]# startx
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.9.3.901 (1.9.4 RC 1)
    Release Date: 2011-01-07
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.36-ARCH x86_64
    Current Operating System: Linux xsix 2.6.37-ARCH #1 SMP PREEMPT Fri Jan 7 17:32:33 CET 2011 x86_64
    Kernel command line: BOOT_IMAGE=/vmlinuz26 root=/dev/disk/by-uuid/ed0f04ab-b16c-4a11-8c1b-175c25f7ddb1 ro
    Build Date: 08 January 2011 11:24:47PM
    Current version of pixman: 0.20.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 15 16:56:08 2011
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (II) [KMS] Kernel modesetting enabled.
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    > Ignoring extra symbols
    Errors from xkbcomp are not fatal to the X server
    xinit: connection to X server lost
    waiting for X server to shut down XIO: fatal IO error 4 (Unterbrechung während des Betriebssystemaufrufs) on X server ":0"
    after 1354 requests (1354 known processed) with 2 events remaining.
    Now I will install KDE again and hope there are no wired artefacts with this driver.
    Btw, is it possible to move this topic to Desktop Environments?

  • Error when exiting from ANY JavaFX app. (any workaround?)

    I've had an ongoing problem when working with JavaFX, and even using applications created with it like SceneBuilder and FXExperience tools. As I reported in this bug: http://javafx-jira.kenai.com/browse/RT-27458 , any time I exit from any application that uses JavaFX, I get an error. My bug turned out to be a duplicate, and looking at the other report, it seems to be a result of the combination of the ATI-Radeon graphics card, Ubuntu, and JavaFX. It doesn't seem to matter whether the app is solely JavaFX, or embedded in Swing, whether it is installed as a native bundle or run directly from class files, or an executable jar. If it uses JavaFX and I run it, when I close it I get this error. It also doesn't matter whether I use jdk7 or an early-access build of jdk8.
    This is becoming increasingly irritating as I further explore the technology and begin trying to work with it, going beyond simply following tutorials and whatnot, because it means I frequently run my programs to see if they actually work, and am much more frequently using tools like SceneBuilder. It doesn't seem to matter whether I run things from the command line, start them from an IDE, or in the case of installed applications, run them through Ubuntu's Launcher or Dash, when I exit I get an error message and an error log shows up somewhere. Especially when testing an application I'm working on, these logs quickly clutter up my directories and become an annoyance.
    Does anyone have any suggestions or workarounds which might help avoid some of the annoyances from the problem? I have the ability to dual-boot Windows 7, and as the problem becomes increasingly annoying, have given some thought to doing my development there. However, I'm really not very comfortable in Windows, and it would involve making some pretty big changes to my workflow, so this isn't my favorite option.
    I imagine that using another distro like Linux Mint would probably continue to have the same issues, since I think it would be using the same drivers for the graphics.
    Changing computers is not currently an option for me. I'd love a Mac to develop on, but that's just not possible currently.
    If anyone has any ideas, suggestions, workaround or tips I would greatly appreciate them. Thanks in advance for your help.

    Okay. Do you have any third-party iTunes plug-ins/add-ons installed?
    (They can sometimes produce similar symptoms if they were written for an earlier version of iTunes, and they aren't liking a new version ... last time I can think of a major outbreak of add-on-related crashes-when-quitting was with the transition from iTunes versions 6.0.x to 7.0.x, though.)
    If so, the following document might be of some assistance:
    Troubleshooting issues with 3rd-party iTunes add-ons

  • My keynote is very slow when exiting from a slideshow, why

    Anyone else suffering from keynote acting very slowly when exiting a slideshow?

    Yes it's slow in Mavericks, not in other OS versions.
    The software is only weeks old so there are many issues with both products.

Maybe you are looking for

  • Change textfield on BUTTON at runtime

    I have a movieclip in my symbol library named "sButton", inside this symbol there is a textfield named "tLabel". when I attach this clip at runtime... this.attachMovie("sButton", "mcNew", this.getNextHighestDepth()); ... I am able to change the label

  • Font color against dark font backgrounds changing to white in Word 2010

    Hello.  I am a long-time Word and VBA user and have been experiencing a problem with Word 2010 wherein font colors against a dark font background color always appear, and print, as if they had been set to white.  By contrast, Word 2007 would retain w

  • Employment discount program

    I was notified in October that I needed to update my information for my employment. I sent everything requested in to them but after 3 months the discount was still not applied. I contacted Verizon in January and was told that I did what I was suppos

  • Over-ride Windows NT Authentication

    Hi All, I want to know something about Windows NT Authentication. What is the URL when the user is directly logged in to the Portal. Can I parameterize the URL. Is it possible to override the Windows NT Authentication by giving the user parameter in

  • SCXI-1520 Calibratio​n Techniques

    I have a question about calibration. There are a lot of things that you can do to better calibrate the channels, like null offset calibration, shunt calibration, multi-point calibration, etc. What is the difference between doing the offset and shunt