Instantiation attempted on a non-constructor problem

Hi,
I've got the following error in my application: "TypeError: Error #1007: Instantiation attempted on a non-constructor".
I've created a class that represents a 2D Vector. But when I instanciate it inside another class, I get this error.
Here is a little piece of code of my problem:
public class Player extends MovieClip {
          private var position:Vector = new Vector();
          public function Player() {
                    // constructor code
public class Vector {
          public var xValue:Number;
          public var yValue:Number;
          public function Vector() {
                    // constructor code
                    xValue = 0;
                    yValue = 0;
These 2 classes are in separated files. The Player's class is a Movie Clip in the library, while Vector's class is just a class file. What can I be doing wrong?

Vector is a native top level class in AS3.

Similar Messages

  • Custom Component: Instantiation attempted on a non-constructor.

    Hi all, i've created an empty class that extends the Slider
    control. it compiles fine, but when i run it, i get the following
    error: Error #1007: Instantiation attempted on a non-constructor.
    this is how i'm calling it:
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:tix="com.tixsmart.flex.controls.*" >
    <tix:SeekBar x="91" y="223" width="424"
    height="11"/>

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - Metadata tags:
    This MXML code generates an error because Flex cannot convert
    the Strings ' abc ' and ' def ' to a Number. You insert the
    [ArrayElementType] metadata tag
    Link:
    http://livedocs.adobe.com/flex/3/html/metadata_3.html
    How to highlight the ticks ina slider - Flex India Community:
    Apr 15, 2008 ... There was an error processing your request.
    Please try again. Standard view View as tree ... I am new to Flex
    and I have created a slider.
    Link:
    http://groups.google.com/group/flex_india/browse_thread/thread/f0f5b69c171ae859
    [#SDK-11271] A Flash Container can only take a Flex container
    as a:
    See code: <?xml version='1.0'?> <!--
    skins/PictureFrame.mxml --> <mx:Application xmlns:mx='
    http://www.adobe.com/2006/mxml'
    xmlns:myComps='*'>
    Link:
    http://bugs.adobe.com/jira/browse/SDK-11271
    Slider and Text Input Issue - Flex India Community | Google
    Groups:
    Aug 7, 2008 ... following code is solution for ur problem
    <?xml version='1.0' encoding='utf-8'?> <mx:Application
    xmlns:mx='
    http://www.adobe.com/2006/mxml'
    Link:
    http://groups.google.com/group/flex_india/browse_thread/thread/8bc9cccc3681711b?fwc=1
    HSlider and VSlider controls -- Flex 2:
    Flex provides two sliders: the HSlider (Horizontal Slider)
    control, which creates ... <mx:Application xmlns:mx='
    http://www.adobe.com/2006/mxml'>
    <mx:HSlider
    Link:
    http://livedocs.adobe.com/flex/2/docs/00000542.html
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Instantiation attempted on a non-constructor.

    I'm new to flex and trying to convert a project from a purely AS3 project to a Flex 4 project.  I'm trying to use a custom application class, and getting this strange error:
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
    at mx.preloaders::Preloader/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\pre loaders\Preloader.as:253]
    at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::initialize()[E:\dev\4.x\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:1925]
    at mx.managers::SystemManager/initHandler()[E:\dev\4.x\frameworks\projects\framework\src\mx\ managers\SystemManager.as:2419]
    Here's a minimal example of the code causing this error:
    (FancyAppClass.mxml)
    <?xml version="1.0" encoding="utf-8"?>
    <main:FancyApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx"
                      xmlns:main="main.*">
    </main:FancyApplication>
    And in FancyApplication.as:
    package main {
         import spark.components.Application;
         public class FancyApplication extends Application {
              public function FancyApplication() {
                   super();
    What am I doing wrong?  The weirdest part is that sometimes the error goes away only to come back later after some minor code change that seems completely unrelated.

    Bad news first: I did full reinstalls of flash CS4, CS5 and Flash Builder, and saw no change.  Good news:  At least I know nothing is wrong with my machine to have corrupted any of those installs, and I found what was causing the problem in the end.
    By turning on the -keep-generated-actionscript option, I was able to inspect the SystemManager subclasses the compiler was building for me.  It builds one for each "Applicaiton" in your project, and because my actionscript class extends Application, it was included by default in the project's list of application files and the compiler was building a SystemManager sublcass for it as well. However, when building that version (from the actionscript file rather than from the mxml), it was not including the default preloader class in the info() method returned object.  The randomness was a result of which "application" was being launched (which came down to which file in the IDE I had selected):  If the FancyAppClass (mxml) version was launched, it had the preloader subclass, and everything worked.  If the actionscript version was launched, it didn't have the preloader class and caused the error.  I have resolved this specific problem by removing the actionscript file from the list of applications in the project config.
    So now my question is: Is the behavior of not including the preloader in the info method of the generated SystemManager subclass the intended functionality, or is this a bug?

  • TypeError: Error #1007: Instantiation attempted on a non-constructor.

    So I am trying out Flex 4 and started so by creating a basic class that extends the spark.components.Application class.
    package
        import spark.components.Application; 
        public class SimpleApp extends Application
            public function SimpleApp():void
                super();
    It compiles time but at runtime I am getting this error:
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
    at mx.preloaders::Preloader/initialize()
    at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::initialize()
    at mx.managers::SystemManager/initHandler()
    Anyone have any insight into this? I found this http://forums.adobe.com/message/2724794 but it doesn't really seem to be a whole lot of help in my case.

    K so I just setup a simple mxml file for it
    <?xml version="1.0"?>
    <sa:SimpleApp xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:sa="com.simpleapp.*" />
    Now it seems to be happy. Thanks.

  • TypeError: Error #1007: Instantiation attempted on a non-constructor... sometimes

    package{
              import flash.display.MovieClip;
              import flash.events.MouseEvent;
              public class MainTimeline extends MovieClip{
                             private var movieArray:Array = new Array(8);
                             private          var myMovieClip:Array = new Array(18);
                             private          var sco:Array = new Array(6);
                             private var i:Number = 0;
                             private var rangeX:Number = 0;
                             private          var sumScore:Number = 0;
                             public function MainTimeline(){
                                            movieArray = [tele01, tele02, tele03, tele04, duck01, monkey01, pig01, boom01]; //Animation MovieClip from library
                                            myMovieClip = [myMovieClip1, myMovieClip2, myMovieClip3, myMovieClip4, myMovieClip5, myMovieClip6]; //Blank MovieClip from library
                                            for (i = 0; i < 6; i++)
                                                           var number:Number = Math.floor(Math.random() * 9);
                                                           myMovieClip[i] = new movieArray[number]; //create Animation MovieClip to Blank MovieClip
                       myMovieClip[i].x = rangeX;
                                                           myMovieClip[i].y = 90;
                                                           sco[i] = 50;
                                                           addChild(myMovieClip[i]);
                                                           rangeX += 132;
               myMovieClip[0].addEventListener(MouseEvent.CLICK, disappear1);
               myMovieClip[1].addEventListener(MouseEvent.CLICK, disappear2);
               function disappear1(e:MouseEvent):void {
                                                          myMovieClip[0].visible=false;
                      sumScore = sumScore + sco[0];
                      score.text = sumScore.toString();
                                        function disappear2(e:MouseEvent):void {
                                                      myMovieClip[1].visible=false;
                                                      sumScore = sumScore + sco[1];
                                                      score.text = sumScore.toString();
    I am a Newbie of AS3 and I dont't undersatnd why this code can run successfully sometimes, sometimes not and told me "TypeError: Error #1007: Instantiation attempted on a non-constructor."
    Please, help me... I try to solve anything. Thank you.

    Change...
    myMovieClip[i] = new movieArray[number];
    to
    myMovieClip[i] = new Array[number];
    OR
    myMovieClip[i] = movieArray[number];
    I'm not sure of the intention

  • Instantiation attempted of a non-constructor???

    I'm getting the following error:
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
    at Website()[/Design/The Silver Collective/_classes/Website.as:42]
    This is line 42:
    var top = new top();
    package {
         import flash.display.*;
         import FluidLayout.*;
         import flash.display.Sprite;
         import flash.display.StageAlign;
         import flash.display.StageScaleMode;
         import flash.events.Event;
         import gs.*;
         import gs.easing.*;
         import fl.motion.easing.*;
         import com.greensock.*;
         import flash.text.AntiAliasType;
         import flash.text.TextField;
         import flash.text.TextFieldAutoSize;
         //import flash.text.TextFormat;
         //import greensock.*;
         import flash.events.MouseEvent;
    import flash.events.FullScreenEvent;
         import flash.display.*;
         import flash.events.*;
         import flash.net.URLRequest;
         public class Website extends MovieClip {
              public function Website() {
                   /* Set the Scale Mode of the Stage */
                   stage.scaleMode=StageScaleMode.NO_SCALE;
                   stage.align=StageAlign.TOP_LEFT;
                   /* Add the symbols to stage 
                               var bg = new Background(); 
                               addChild(bg); 
                   var top = new top();
                   addChild(top);
                   var toprightoption = new toprightoption();
                   addChild(toprightoption);
                   //var middle = new Middle(); 
                   //addChild(middle); 
                   var btmrightfooter = new btmrightfooter();
                   addChild(btmrightfooter);
                   /* Apply the alignment to the background  
                                 var bgParam = { 
                                     x:0, 
                                     y:0, 
                                    offsetX: 0, 
                                      offsetY: 0 
                                 new FluidObject(bg,bgParam); 
                   /* Apply the alignment to the top */
                   var topParam = { 
                                      x:0, 
                                     y:0, 
                                      offsetX:0, 
                                    offsetY:0 
                   new FluidObject(top,topParam);
                   /* Apply the alignment to the toprightoption */
                   var toprightoptionParam = { 
                                   x:1, 
                                   y:0, 
                                     offsetX: -toprightoption.width - 20, 
                                    offsetY: 20 
                   new FluidObject(toprightoption,toprightoptionParam);
                   /* Apply the alignment to the content
                                var middleParam = { 
                                    x:0.5, 
                                   y:0.5, 
                                    offsetX: -middle.width/2, 
                                    offsetY: -middle.height/2 
                                new FluidObject(middle,middleParam); 
                   /* Apply the alignment to the btmrightfooter */
                   var btmrightfooterParam = { 
                                    x:1, 
                                    y:1, 
                                    offsetX: -btmrightfooter.width - 10, 
                                    offsetY: -btmrightfooter.height -10 
                   new FluidObject(btmrightfooter,btmrightfooterParam);
         private var currentlyShowing:MovieClip=null;
              public function showModalContent(clip:MovieClip):void {
                   if (currentlyShowing!=null) {
                        removeChild(currentlyShowing);
                   currentlyShowing=clip;
                   addChild(currentlyShowing);
              public function removeModalContent():void {
                   if (currentlyShowing!=null) {
                        removeChild(currentlyShowing);
                        currentlyShowing=null;

    You need to used different names for the variable and class.
    Like var tp = new top();

  • TypeError: Error #1007: Instantiation attempted on a non-constructor. on port to Flex 4

    I have been porting an app from Flex 3.4.x to 4.0.. I have successfully ported the app and its libraries to flex 4.0 (everything build successfully, all the CSS has the new Namespace stuff added, and warnings are down to the same stuff pre-port).  I've also removed ALL the references to http://www.adobe.com/2006/flex/mx in any of my mxml files... In short I "think" I have moved everything over to the new mx and fx namespaces. But I still get the following error (which never happend in 3.4 or 3.5 with this same app) when I try to run my flex app.
    TypeError: Error #1007: Instantiation attempted on a non-constructor. at mx.preloaders::Preloader/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\preloaders\Preloader.as:253] at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\managers\SystemManager.as:1925] at mx.managers::SystemManager/initHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\managers\SystemManager.as:2419]
    At this point I am completely stumped.. anyone have any ideas?
    Thanks
    Josh

    *Scratches head*
    Ok so I did a -keep and checked my  ***SystemManager-generated.as   the funciton info() was setting the sparkdownload progress just fine
    preloader: SparkDownloadProgressBar
    and it was importing both ths spark and mx progress bars
    import mx.preloaders.DownloadProgressBar;
    import mx.preloaders.SparkDownloadProgressBar;
    then I checked my link report.. and sure enough the spark preloader was there
    <script name="C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.0.0\frameworks\libs\framework.swc(mx.preloaders:SparkDownloadProgressBar)" mod="1263586859699" size="13103" optimizedsize="6977">
    as was the mx.preloaders.preloader
    <script name="C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.0.0\frameworks\libs\framework.swc(mx.preloaders:Preloader)" mod="1262975731760" size="6770" optimizedsize="4160">
    as was the IPreloaderDisplay
    <script name="C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.0.0\frameworks\libs\framework.swc(mx.preloaders:IPreloaderDisplay)" mod="1262975731869" size="2113" optimizedsize="508">
    what wasn't in my link report was the mx.preloaders.DownloadProgressBar, but it was probably optmized out because it isn't actually ever called...
    And I can tell that info() is the one being called the first time through (when the first RSL decompression happens), so that's not it..
    Is there a way to figure out what tha second RSL decompression is?    It seems to me thats where the issue is.. (from what it looks like (based on width and hight numbers that the first decompression is my application (having my apps height and width) the second decomression is my object tag in my browser (because it has the height and width numbers I am setting there.. (which are different because I am trying to use the scaleMode to make the app scale to fit different sizes)..
    Oh and if I haven't said it yet, Thank you very much for your guidence on this.. Its a real headscratcher for me.
    Josh

  • Error #1007 - attempting to instantiate a non-constructor

    I am receiving said message on an actionscript-only project. I tried to reduce the application to a nonsensical example:
    package
    {       import flash.display.Sprite;
            public class zz extends Sprite
                    public function zz()
                            var dummies:Array = [];
                            dummies.push(new dummy());
                            dummies.push(new dummy());
                            var newdata:Array = dummy.mixup(dummies);
    package
            import flash.geom.Point;
            public dynamic class dummy extends Array
                    public function addp(pt:Point):void
                            this.push(pt.clone());
                    public static function mixup(dummies:Array):Array
                            var ret:Array = [];
                            function local_makeresult():void
                            {       for(var n:int = 0 ; n < 3 ; n++)
                                    {       var b:dummy = new dummy();
                                            ret.push(b);
                            local_makeresult();
                            for(var m:int = 0 ; m < dummies.length ; m++)
                            {       for(var n:int = 0 ; n < 3 ; n++)
                                    {       var i:int = int(dummies[m].length * Math.random());
                                            var j:int = int(3 * Math.random());
                                            ret[j].push(dummies[m][i]);
                            return ret;
    So the problem class
    a) extends array
    b) includes a static utility function (converting an array of class objects into another one)
    c) that utility function includes nested functions
    Tge error message looks like this
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
        at dummy/mixup/local_makeresult()
        at dummy$/mixup()
    Does this mean we cannot use nested functions inside static ones?

    Hi
    as I said this is not actual code (several hundred lines) but just a contrived example modelling the application structure. While it is still something different, lets assume that the dummy class represents polygons (so it derives from array and would implement useful methods like finding total length, area, center of gravity).
    The static function could be intersection
    I am using quite a few nested functions in this project - they have access to local variables of the enclosing function. Without the m I wouldhave to pass in a handful of variables (or an object grouping them together)
    I have already noticed that nested functions are a mixed blessing, because there are fewer compile-time checks (such as number and type of arguments). However, they exist, so why shouldn't I use them?
    One of the things I stumbled over: when I got the error, I tried one thing ... that did make the code work in the end: I removed the static attribute from the function and changed the main class to call it as a method of the first element of the array (which is certainly making it unreadable)

  • Non Constructor Runtime error

    Here is the error:
    TypeError: Error #1007: Instantiation attempted on a
    non-constructor.
    at
    BitmapButtonExample()[C:\programming\flex\__FlexProfessional\Chap16\BitmapButtonExample.a s:33]
    Here is the code:
    package{
    import flash.display.Bitmap;
    import flash.display.SimpleButton;
    import flash.display.Sprite;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.filters.ColorMatrixFilter;
    public class BitmapButtonExample extends Sprite{
    [Ebbed(source="assets/DSCF3515.jpg")]
    private var logoClass:Class;
    public function BitmapButtonExample(){
    if(stage != null){
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    var myButton:SimpleButton = new SimpleButton();
    var filters:Array = new Array();
    var matrix:Array = new Array();
    matrix = matrix.concat([-1, 0, 0, 0, 256]); //red
    matrix = matrix.concat([0, -1, 0, 0, 256]); //green
    matrix = matrix.concat([0, 0, -1, 0, 256]); //blue
    matrix = matrix.concat([0, 0, 0, 0, 256]); //alpha
    var filter:ColorMatrixFilter = new
    ColorMatrixFilter(matrix);
    filters.push(filter);
    var myBitmap:Bitmap = new logoClass();
    var myBitmat2:Bitmap = new logoClass();
    myBitmat2.filters = filters;
    myButton.upState = myBitmap;
    myButton.overState = myBitmat2;
    myButton.downState = myBitmat2;
    myButton.useHandCursor = true;
    myButton.hitTestState = myBitmap;
    addChild(myButton);
    What is this?
    Thanks,
    Gene

    Typo? Ebbed vs Embed

  • Attempt to unregister non-registered thread in the ContextProvider

    Hi,
    I am running the baseline graph on Endeca integrator 2.3. While running the baseline graph I am getting the following error
    INFO  [main] - ***  CloverETL framework/transformation graph, (c) 2002-2012 Javlin a.s, released under GNU Lesser General Public License  ***
    INFO  [main] - Running with CloverETL library version 3.2.1 build#63 compiled 04/01/2012 12:53:21
    INFO  [main] - Running on 4 CPU(s), OS Windows 7, architecture amd64, Java version 1.6.0_20, max available memory for JVM 1818624 KB
    INFO  [main] - Loading default properties from: defaultProperties
    INFO  [main] - Graph definition file: graph/Baseline.grf
    INFO  [main] - Graph revision: 1.127 Modified by: alsukuma Modified: Tue Jan 28 14:37:06 IST 2014
    INFO  [main] - Checking graph configuration...
    INFO  [main] - Graph configuration is valid.
    INFO  [main] - Graph initialization (Baseline)
    INFO  [main] - [Clover] Initializing phase: 0
    INFO  [main] - [Clover] phase: 0 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 1
    INFO  [main] - [Clover] phase: 1 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 2
    INFO  [main] - [Clover] phase: 2 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 3
    INFO  [main] - [Clover] phase: 3 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 4
    INFO  [main] - [Clover] phase: 4 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 5
    INFO  [main] - [Clover] phase: 5 initialized successfully.
    INFO  [main] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1306871483270_0
    INFO  [WatchDog] - Starting up all nodes in phase [0]
    INFO  [WatchDog] - Successfully started all nodes in phase!
    INFO  [RUN_GRAPH1_0] - Running graph ./graph/admin/InitDataStore.grf in the same instance.
    INFO  [RUN_GRAPH1_0] - Checking graph configuration...
    INFO  [RUN_GRAPH1_0] - Graph configuration is valid.
    INFO  [RUN_GRAPH1_0] - Graph initialization (InitDataStore)
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 0
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#createDataStore'.
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#dataStoreStatus'.
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#startDataStore'.
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#attachDataStore'.
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 0 initialized successfully.
    INFO  [RUN_GRAPH1_0] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1331002769234_805
    INFO  [WatchDog] - Starting up all nodes in phase [0]
    INFO  [WatchDog] - Successfully started all nodes in phase!
    INFO  [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO  [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO  [WatchDog] - ----------------------** Final tracking Log for phase [0] **---------------------
    INFO  [WatchDog] - Time: 28/01/14 14:38:04
    INFO  [WatchDog] - Node                   ID         Port      #Records         #KB aRec/s   aKB/s
    INFO  [WatchDog] - ---------------------------------------------------------------------------------
    INFO  [WatchDog] - Verify Data Store      WEB_SERVICE_CLIENT1                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                          Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            1           0      0       0
    INFO  [WatchDog] - Check Fault Detail     PARTITION1                                   FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           0      0       0
    INFO  [WatchDog] -                                   Out:0            1           0      0       0
    INFO  [WatchDog] - Build WS Attach Req    BUILD_WS_ATTACH_REQ                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           0      0       0
    INFO  [WatchDog] -                                   Out:0            1           1      0       0
    INFO  [WatchDog] - Attach Data Store      WEB_SERVICE_CLIENT3                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           1      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            1           0      0       0
    INFO  [WatchDog] - Check Fault Detail     PARTITION2                                   FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           0      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            1           0      0       0
    INFO  [WatchDog] - Do nothing             TRASH0                                       FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] -                                    In:1            0           0      0       0
    INFO  [WatchDog] -                                    In:2            1           0      0       0
    INFO  [WatchDog] - Build WS Create Req    BUILD_WS_CREATE_REQ                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] - Create Data Store      WEB_SERVICE_CLIENT0                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] - Check Response State   CHECK_RESPONSE_STATE                         FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            0           0      0       0
    INFO  [WatchDog] - Start Data Store       WEB_SERVICE_CLIENT2                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] - ---------------------------------** End of Log **--------------------------------
    INFO  [WatchDog] - Execution of phase [0] successfully finished - elapsed time(sec): 0
    INFO  [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO  [WatchDog] - Phase#            Finished Status         RunTime(sec)    MemoryAllocation(KB)
    INFO  [WatchDog] - 0                 FINISHED_OK                        0             34859
    INFO  [WatchDog] - ------------------------------** End of Summary **---------------------------
    INFO  [WatchDog] - WatchDog thread finished - total execution time: 0 (sec)
    INFO  [RUN_GRAPH1_0] - Running graph ./graph/config/LoadPreDataConfig.grf in the same instance.
    INFO  [RUN_GRAPH1_0] - Checking graph configuration...
    INFO  [RUN_GRAPH1_0] - Graph configuration is valid.
    INFO  [RUN_GRAPH1_0] - Graph initialization (LoadPreConfig)
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 0
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 0 initialized successfully.
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 1
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 1 initialized successfully.
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 2
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 2 initialized successfully.
    INFO  [RUN_GRAPH1_0] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1338400039337_554
    INFO  [WatchDog] - Starting up all nodes in phase [0]
    INFO  [WatchDog] - Successfully started all nodes in phase!
    INFO  [RUN_GRAPH1_554] - Running graph ./graph/config/PreData/LoadInitialAttributes.grf in the same instance.
    INFO  [RUN_GRAPH1_554] - Checking graph configuration...
    INFO  [RUN_GRAPH1_554] - Graph configuration is valid.
    INFO  [RUN_GRAPH1_554] - Graph initialization (LoadConfiguration)
    INFO  [RUN_GRAPH1_554] - [Clover] Initializing phase: 0
    INFO  [RUN_GRAPH1_554] - Mapping type set to MAP_NAMES
    INFO  [RUN_GRAPH1_554] - Mapping type set to MAP_NAMES
    WARN  [RUN_GRAPH1_554] - WS messenger cleanup failed.
    java.lang.NullPointerException
      at org.apache.axis2.client.Stub.cleanup(Stub.java:134)
      at com.opensys.cloveretl.component.WebServiceClient.free(Unknown Source)
      at org.jetel.graph.Phase.free(Phase.java:487)
      at org.jetel.graph.TransformationGraph.freeResources(TransformationGraph.java:681)
      at org.jetel.graph.TransformationGraph.free(TransformationGraph.java:955)
      at org.jetel.graph.runtime.PrimitiveAuthorityProxy.executeGraph(PrimitiveAuthorityProxy.java:149)
      at org.jetel.component.RunGraph.runGraphThisInstance(RunGraph.java:511)
      at org.jetel.component.RunGraph.runSingleGraph(RunGraph.java:409)
      at org.jetel.component.RunGraph.execute(RunGraph.java:302)
      at org.jetel.graph.Node.run(Node.java:414)
      at java.lang.Thread.run(Thread.java:619)
    ./graph/config/PreData/LoadInitialAttributes.grf: Execution of graph failed! Error during graph initialization: Phase 0 can't be initilized.
    WARN  [RUN_GRAPH1_554] - Some graphs wasn't executed (because graph "./graph/config/PreData/LoadInitialAttributes.grf" finished with error).
    WARN  [RUN_GRAPH1_554] - Some graph(s) finished with error.
    WARN  [RUN_GRAPH1_554] - Attempt to unregister non-registered thread in the ContextProvider.
    ERROR [WatchDog] - Graph execution finished with error
    ERROR [WatchDog] - Node RUN_GRAPH1 finished with status: ERROR caused by: Graph './graph/config/PreData/LoadInitialAttributes.grf' failed!
    ERROR [WatchDog] - Node RUN_GRAPH1 error details:
    org.jetel.exception.JetelException: Graph './graph/config/PreData/LoadInitialAttributes.grf' failed!
      at org.jetel.component.RunGraph.execute(RunGraph.java:324)
      at org.jetel.graph.Node.run(Node.java:414)
      at java.lang.Thread.run(Thread.java:619)
    INFO  [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO  [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO  [WatchDog] - Execution of phase [0] finished with error - elapsed time(sec): 0
    ERROR [WatchDog] - !!! Phase finished with error - stopping graph run !!!
    INFO  [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO  [WatchDog] - Phase#            Finished Status         RunTime(sec)    MemoryAllocation(KB)
    INFO  [WatchDog] - 0                 ERROR                              0             21549
    INFO  [WatchDog] - 1                 N/A                                0                 0
    INFO  [WatchDog] - 2                 N/A                                0                 0
    INFO  [WatchDog] - ------------------------------** End of Summary **---------------------------
    INFO  [WatchDog] - WatchDog thread finished - total execution time: 0 (sec)
    ./graph/config/LoadPreDataConfig.grf: Execution of graph failed! null
    WARN  [RUN_GRAPH1_0] - Some graphs wasn't executed (because graph "./graph/config/LoadPreDataConfig.grf" finished with error).
    WARN  [RUN_GRAPH1_0] - Some graph(s) finished with error.
    WARN  [RUN_GRAPH1_0] - Attempt to unregister non-registered thread in the ContextProvider.
    ERROR [WatchDog] - Graph execution finished with error
    ERROR [WatchDog] - Node RUN_GRAPH1 finished with status: ERROR caused by: Graph './graph/config/LoadPreDataConfig.grf' failed!
    ERROR [WatchDog] - Node RUN_GRAPH1 error details:
    org.jetel.exception.JetelException: Graph './graph/config/LoadPreDataConfig.grf' failed!
      at org.jetel.component.RunGraph.execute(RunGraph.java:324)
      at org.jetel.graph.Node.run(Node.java:414)
      at java.lang.Thread.run(Thread.java:619)
    INFO  [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO  [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO  [WatchDog] - Execution of phase [0] finished with error - elapsed time(sec): 0
    ERROR [WatchDog] - !!! Phase finished with error - stopping graph run !!!
    INFO  [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO  [WatchDog] - Phase#            Finished Status         RunTime(sec)    MemoryAllocation(KB)
    INFO  [WatchDog] - 0                 ERROR                              0             21929
    INFO  [WatchDog] - 1                 N/A                                0                 0
    INFO  [WatchDog] - 2                 N/A                                0                 0
    INFO  [WatchDog] - 3                 N/A                                0                 0
    INFO  [WatchDog] - 4                 N/A                                0                 0
    INFO  [WatchDog] - 5                 N/A                                0                 0
    INFO  [WatchDog] - ------------------------------** End of Summary **---------------------------
    INFO  [WatchDog] - WatchDog thread finished - total execution time: 0 (sec)
    INFO  [main] - Freeing graph resources.
    ERROR [main] - Execution of graph failed !
    Kindly help
    Thanks

    java.lang.NullPointerException
      at org.apache.axis2.client.Stub.cleanup(Stub.java:134)
      at com.opensys.cloveretl.component.WebServiceClient.free(Unknown Source)
    It looks like there is a problem with your Web Services Client component.   Check the configuration of this component.
    RLJII

  • It says Lightroom encountered an error when reading from a previous cache and needs to quit. Light room will attempt to to fix the problem the next time it launches.

    how do i fix this. It says Lightroom encountered an error when reading from a previous cache and needs to quit. Light room will attempt to to fix the problem the next time it launches.

    Have a look at this thread.
    Lightroom encountered an error when reading from its preview cache and needs to quit.  Lightroom will attempt to fix this problem the next time it launches"."

  • [NSUserDefaults setObject:forKey:]: Attempt to insert non-property valu

    Hi all
    I have been writting classes at work in Xcode 4.? SL 10.6.8 and every thing has been working fine. When I bring a copy home to work on under Lion in Xcode 4.3.2 I get issues (Lots of them)
    While I have solved or worked around most I am unsure why I am getting an error with my NSUserDefaults.
    I have a method that I run in a singleton
    + (void)setSaveLocation : (NSString *) saveLocation
        NSMutableDictionary * ccLogManagerDictionaryFromUserDefaults = [[NSMutableDictionary alloc] initWithDictionary:[[NSUserDefaults standardUserDefaults] valueForKey:@"CCLogManager"]];
        [ccLogManagerDictionaryFromUserDefaults setObject:saveLocation forKey:@"Save Location"];
        [[NSUserDefaults standardUserDefaults] setObject:ccLogManagerDictionaryFromUserDefaults forKey:@"CCLogManager"];
        [ccLogManagerDictionaryFromUserDefaults release];
        // Post a notification to inform other classes that the savelocation has changed
        NSNotificationCenter *notification = [NSNotificationCenter defaultCenter];
        [notification postNotificationName:@"CCLogManagerNotificationSaveLocation" object:self];
    This worked fine before. The only change I have made is to the method in a different class that send the information :
    - (IBAction)changeSaveLocation: (id)sender
        NSOpenPanel* openDlg = [NSOpenPanel openPanel];
        [openDlg setCanChooseFiles:NO];
        [openDlg setCanChooseDirectories:YES];
        if ( [openDlg runModal] == NSOKButton )
            NSArray* files = [openDlg URLs];
            int i;
            for( i = 0; i < [files count]; i++ )
                NSString* fileName = [files objectAtIndex:i];
                [CCLogManager setSaveLocation:fileName];
    I had to change two lines due to depreciation:
        if ( [openDlg runModalForDirectory:nil file:nil] == NSOKButton )
    and
            NSArray* files = [openDlg filenames];
    What I dont understand is that I am still passing a NSString as required. And if in the first method I simpy insert a @"" string like so
        [ccLogManagerDictionaryFromUserDefaults setObject:
    @"file://localhost/Volumes/MacPro%20RAID/Home%20Folder/Downloads/8-tileable-meta l-textures/"  forKey:@"Save Location"];
    Then it works
    Any assistance would be most appreciated.
    Cheers
    Steve
    Oh and the error is:
    2012-06-14 22:41:31.843 ProControl[3630:403] *** -[NSUserDefaults setObject:forKey:]: Attempt to insert non-property value '{
        "Logging Enabled" = 1;
        "Save Location" = "file://localhost/Volumes/MacPro%20RAID/Home%20Folder/Downloads/8-tileable-meta l-textures/";
    }' of class '__NSCFDictionary'.  Note that dictionaries and arrays in property lists must also contain only property values.
    And it don't save to the User Defaults.

    Hi etresoft, thanks for the reply.
    Do you mean the number 1 pertaining to "Loggining Enabled" = 1?
    If so this should be a   [NSNumber numberWithBool: YES] which is already in the userdefauts.plist. before copying the original dictionary.
    The method save should be copying a dictionary from the .plist and only changing the dictionary entry for "Save Location" which is a NSString. It shouldn't be doing anything to the "Logging Enabled" entry which as I say should already be a NSNumber numberWithBool . Plus seeing as you can change the line
    [ccLogManagerDictionaryFromUserDefaults setObject:saveLocation forKey:@"Save Location"];
    to
    [ccLogManagerDictionaryFromUserDefaults setObject:
    @"file://localhost/Volumes/MacPro%20RAID/Home%20Folder/Downloads/8-tileable-meta l-textures/"  forKey:@"Save Location"];
    and still not touch the "Loggining Enabled" = 1 I don't that the 1 is an issue.
    Sorry if I'm being dense.

  • Transactional WebService, non-XA problem

    I have build a transactional web service and it is working fine on if the client and service are on same domain. If they are not am getting the following error:
    Exception thrown from bean; nested exception is: Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.1 (Build b60e-fcs (12/23/2008))): oracle.toplink.essentials.exceptions.DatabaseException Internal Exception: java.sql.SQLException: Error in allocating a connection. Cause: java.lang.IllegalStateException: cannot add non-XA Resource to global JTS transaction. Error Code: 0.
    This is my service
    @WebService()
    @Stateless()
    @TransactionManagement(TransactionManagementType.CONTAINER)
    public class EJBService {
    @PersistenceContext(unitName="EJBServicePU")
    private EntityManager em;
    @WebMethod(action="AddDiscount")
    @TransactionAttribute(REQUIRED)
    public void addDiscount(@WebParam(name = "discountCode") String discountCode,@WebParam(name = "rate") double rate)
    DiscountCode code = new DiscountCode(discountCode.charAt(0));
    code.setRate(BigDecimal.valueOf(rate));
    em.persist(code);
    @WebMethod(action="UpdateDiscount")
    @TransactionAttribute(REQUIRED)
    public void UpdateDiscount(@WebParam(name = "discountCode") String discountCode,@WebParam(name = "rate") double rate)
    DiscountCode code = (DiscountCode) em.find(DiscountCode.class, discountCode.charAt(0));
    code.setRate(BigDecimal.valueOf(rate));
    em.merge(code);
    }And this is my client code
    EJBService port = service.getEJBServicePort();
    try
    //out.println("Initial number: " +port.getBalance());+
    +transac.begin();+
    +port.addDiscount("B", 10);+
    +port.addDiscount("S", 44);+
    +transac.commit();+
    +}catch(Exception e)+
    +{+
    +out.println("An error occured, transaction abortedd.<br/>"+ e.getMessage());
    } I am connecting to derby database and using the sample database. I have checked the sample code for WSIT many times and I didnt know what is the problem here.
    Please Help.
    Thank you.

    xxxxx wrote:
    we create 2 pools, both the pools are created but the problem occurs when you start
    some transaction.
    Here there is an EJB transaction and this throws a known exception of weblogic
    that
    "java.sql.SQLException: Connection has already been created in this tx context
    for pool named <first pool's name>. Illegal attempt to create connection from
    another pool: <second pool's name>"
    we want to use more then one non xa drivers and use weblogic connection pools
    at the same time.. any help is appreciated.Hi. this is an EJB/transactional integrity issue. If you get non-XA connections,
    then the transaction coordinator will collude with the JTS driver to ensure that
    any given transaction can only really use one JDBC connection, so we can guarantee
    the commit or rollback will be atomic. Without 2PC, we would otherwise have to commit
    on both connections. If the first succeeded, and the second commit failed, we
    could not recover.
    If you really need to talk to multiple DBMSes, or even just one DBMS but as
    different users, then there is a way, with some risks you will have to accept.
    You can connect to any DBMS at any time if you use a non-TX datasource.
    This will give you a 'raw' pooled connection, whith the transaction coordinator
    knows nothing about. You can use this as you wish, but be very sure to close this
    connection in a finally block, else it will never get back into the pool. ALso note
    that any work you do on this connection is in your hands. If the EJB tx rolls back
    we won't do anything with this connection, so if there's any update you did, it's
    totally up to you to undo them, or respond in whatever way you need to in error
    conditions.
    Joe

  • [BUGGED] xmonad tri-screen non-xinerama problems

    Hello All!
    New Archer here.  I'm really enjoying playing with Arch.  Ran it about a week on a VM, and then promptly backed up/tore up/re-created my 3 TB RAID array as a shrine in deciation to its glory.  I haven't posted much along the process, because I've generally been able to put things together to my liking other than a few minor setbacks that I mostly managed to handle myself.  I have even gave Arch the coveted position of my "Laptop Linux."  I have a slightly odd setup and it seems to be tied in with an issue that I am having, so I thought I might post here, especially since some of you seem to be xmonad users.
    The Paragraph
    Most wm's seem to handle non-Xinerama multi-display fine (I've been trying out as many as I could find since switching over to Arch.  I figured new Linux/new Look).  It seems that xmonad handles Xinerama better but has a less friendly non-Xinerama out of the box experience, and it is terribly hard to find the information I am after since when I go looking for multi-monitor resources, I find alot about Xinerama and praise for its Xinerama way of doing things.  Apparently, you still can't enable Composite and Xinerama at the same time, and in general, I prefer funny fade effects and what not to being able to move windows from screen to screen so have opted for a standard non-Xinerama multi-card, multi-display setup of xorg.
    Bullet Points
    1 - Minor Problem:  xmonad only runs on one screen if I don't enable Xinerama
    2 - Entertwined Problem:  Composite extension becomes disabled if I enable Xinerama
    3 - Other Entertwined Problem:  Most wm's I try if they don't support dual screen natively, I can simply put calls in my .xinitrc to load on the various display (ie. 'DISPLAY=:0.2 wmii &; DISPLAY=:0.1 wmii&; exec wmii'), and it's no big.  If I try that with xmonad, the session on DISPLAY :0.0 won't give up control of the keyboard to the displays on the other monitors.  That's pretty weird, since it gives up control to my unmanaged windows just fine, or gives up control to another WM (as I type this, I have openbox managing my second monitor so I have an easy way to resize windows and such, but that is a somewhat imperfect solution in my opinion).  If I leave the screens unmanaged , I can launch apps on them easily enough by 'DISPLAY=:0.1 thunderbird' (like I do with openbox managing them if I don't want to use the menu) through command-line or scripts, but there is no way to move the apps or resize them or anything without some WM (like openbox) attached to the DISPLAY.
    4 - Minor Entertwined Problem That Makes This Whole Mess Harder To Ignore:
    When you go off the screen to an unmanaged window or a window managed by another window manager, apparently xmonad continues to think you are focused on the app that you hovered over last on your way to the other screen (ie. if I go over to Thunderbird now, xmonad will leave the active border around Firefox since I have it on the left side of my primary monitor and the other screen is to the left).  This is no big, although I would prefer it to gray out or whatever.  At the same time, xmobar displays that I am still over my Firefox window.  I am fine with it not knowing that I am over messing around in another WM or on an unmanaged screen.  The big problem is that when I bring the mouse back, it seems to get confused about whether I left or not, and doesn't pass focus back to the app in question.  It still thinks the app has focus (according to its border and xmobar), but keystrokes still go to the other screen and the window on the first screen will no longer even directly respond to mouse clicks.  It is easy to fix, I can simply move to any other window on the same screen, and then back to my firefox and things work fine.  I know that's a weird wall of text, so a quick explanation:
    If I take my mouse off the screen to the left, passing over Firefox, I end up on my Screen 1 that is currently displaying Thunderbird and managed by Openbox.  I can then click message, type things, all no problem.  If I move my mouse back to the Firefox screen, it looks like it is active, but I cannot click on anything (no links work, the buttons that control formatting of this message darken when I hover over them but do nothing on click, the check boxes at the bottom of this compose message window darken but do not respond to clicks, etc).  If I do nothing else other than but my mouse over one of my terminal windows (which will receive the focus border and receive input fine), and then move it back to Firefox - everything in Firefox will at that point work great.
    That last note is the primary reason I can't just let another WM loose on my secondary display and go about my day (I mean, I tend to just leave e-mail up on the thing, and I suppose a valid argument can be made for having a floating manager on your second screen anyway).  It's most annoying when I just barely go off the edge of the main monitor by mistake, say on my way to a tab or something, and can't click my tabs anymore without dragging the mouse back to a terminal and back over to Firefox.  Of course, I would be fine with messing with xmonad on all my screens really if I didn't have to turn off my Composite extension to do it.
    One easy solution is to just use Awesome.  It looks nice and seems to offer some of the same features, but I kind of like xmonad's way of configuring things and the idea that my configs seemingly shouldn't break on minor version numbers.  Awesome has already bit me in my playing around by making widget obselete two days after I put the widgets in my config file, and it seems they have a history of this type of action. 
    I can happily provide any configuration files on request.  My xorg.conf is probably of the most interest, I would think, but if I knew how to fix this, I wouldn't be on here asking for help.  It doesn't appear to be related to xmonad.hs, since I can use the default or a heavily customized one and get the same behavior.  There might be a way to fix the problem somehow in xmonad.hs; I don't know.
    Oh well, sorry my first post was such a wall of text, but I wanted to provide a solid idea of what was going on here.  Any help would be greatly appreciated.
    Lewis
    Last edited by llcawthorne (2009-11-18 02:26:08)

    vogt wrote:
    I have had composite enabled with xinerama.
    Some graphics drivers restrict the size of all screens to fit within 2048x2048 pixels if you still want compositing, but if you have 3 monitors, it is unlikely that that you can find an arrangement that satisfies that driver/hardware limitation.
    Yeah, 2048x2048 woudln't work for me.  My main monitor runs 1920x1200, secondary is 1680x1050, and the tv is at 1920x1080.
    Apparently since the xorg upgrade the other day, I can't even turn on Xinerama anymore.  I know it worked when I tested just to see if things worked in Xinerama mode the other day (but it automatically disabled Composite).  Now I can turn on Xinerama but I get a strange cursor flicker and segfault when trying to go to the other screen.  Apparently some other people have that problem with the latest x-server and xinerama with Nvidia, but I haven't looked into fixing it, since I don't tend to use Xinerama anyway.  It makes testing some solutions a bit harder though not being able to temporarily turn it on.
    I have done some more testing though.  With my current multi-screen Xinerama off X-layout, things definitely work as expected in other Window managers.  I have played around in GNOME, compiz, fluxbox, openbox, awesome and ratpoison with this separate screen X-layout without problems. 
    The problem seems to be more with xmonad accepting the cursor than letting it go.  When I run :0.1 unmanaged or with another window manager, I can switch over to the other display with 100% reliability, but only have the problem when coming back to my xmonad display.  However, if I spawn xmonad to :0.1 in addition to having xmonad on :0.0, I almost always have problems switching over to :0.1, but once I get switched over to :0.1, I have trouble coming back to :0.0.
    Also, strangely enough, I can reliably switch to any other display with two windows on it.  I have taken to running a clock on display :0.1, since 90% of the time when I switch over to my e-mail client I will not get proper focus.  I can fix this 100% of the time by mousing over the clock, then back over the e-mail client.  To come back to my main screen, I will not get focus on my browser 90% of the time, but can reliably get focus to it 100% of the time there is a problem by mousing over one of the terminals to the right of my browser and then coming back to the browser.  Since the problem is predictable, I can work around it, but either way it is annoying.
    The problem is easy to duplicate with both a default xmonad.hs, another xmonad.hs pulled off the site (tried it with andrea's and arossato's, and with my personal customized and overly large xmonad.hs that I have been trying out various features with.
    Curiously enough, since it was a focus problem, I though "maybe if it updated focus more often?" and I tried 'import XMonad.Actions.UpdateFocus" with the proper startupHook's and handleEventHooks to make it attempt to update focus whenever you move the mouse within a window.  This did nothing to alleviate the problem, although it obviously took ince I noticed the change in focus handling when I didn't leave a monitor.
    Oh, and as another test to see if it might relate back to my drivers somehow, I removed nvidia's proprietary drivers and installed Nouveau.  While the Nouveau drivers are pretty neat (the fast frame buffer switching is fun!), I found them annoying since I don't know how to make my console come up on the right monitor with them, but that is unrelated.  I changed around my config and brought up X and was able to duplicate the problem exactly with the alternate drivers (but same configuration otherwise). 
    And lastly, I booted to my Gentoo install (that does use the same hardware are xorg.conf).  I can't get the 0.9 xmonad from the overlay to compile on it for whatever reason, so it conveniently has 0.8 installed.  I see the same behavior with a default config and a sample config swiped from the website (I cannot test with my custom config, since it has multiple 0.9 imports in it, but I have no reason to believe it would react differently).
    I welcome any ideas.
    Lewis Cawthorne

  • WLI attempts to execute non existent template definition ID

    Reproduce Bug:
    Delete existing template definition and import again from jar.
    Input an XML event into EventQueue.
    WLI provides the following stack:
    <Aug 27, 2002 10:45:17 AM EDT> <Debug> <BPM> <000000> <EventProcessor 6442868
    ExecuteThread: '9' for queue: 'default': This EventCandidate TemplateDefinition:
    2003 is not the most active>
    I looked inside the TemplateDefinition table and it holds only one templateDefinitionID
    which is 5001. Clearly the WLI runtime attempts to execute a non existent templateDefinionID.
    Suggestions?

    To find the problem in the underlying WLI data, run the following SQL:
    select ew.EventDescriptor, ek.expression, t.name,td.templateDefinitionId, to.Templateid,
    to.orgid
    From EventWatch ew, EventKey ek, Template t, TemplateDefinition td, TemplateOrg
    to
    where ew.eventdescriptor = ew.eventdescriptor
    and t.templateid = ew.templateid
    and td.templateid = t.templateid
    and to.templateid = t.templateid
    "Giora Katz-Lichtenstein" <[email protected]> wrote:
    >
    Reproduce Bug:
    Delete existing template definition and import again from jar.
    Input an XML event into EventQueue.
    WLI provides the following stack:
    <Aug 27, 2002 10:45:17 AM EDT> <Debug> <BPM> <000000> <EventProcessor
    6442868
    ExecuteThread: '9' for queue: 'default': This EventCandidate TemplateDefinition:
    2003 is not the most active>
    I looked inside the TemplateDefinition table and it holds only one templateDefinitionID
    which is 5001. Clearly the WLI runtime attempts to execute a non existent
    templateDefinionID.
    Suggestions?

Maybe you are looking for

  • Can't log in / Error messages / Missing data

    Here are a few solutions to problems people have run into: Use only lowercase letters and no special characters for your username. If you use an uppercase or special character, Firefox Home may be able to log in but it will not be able to load your d

  • Array To Spreadsheet String, Empty Delimiter

    The Array To Spreadsheet String function does not accept an empty Delimiter, it uses the Tab character in such case. The same is true for the Spreadsheet String To Array function (but of course this function cannot work without a Delimiter). I would

  • Cloud for SAP

    Hi, We are planning tp migrate servers to Cloud. Can you please guide us what are different kind of Clouds we have? Which one will be the best for my environment. Our environment: windows 2003 64 bit EHP4 FOR SAP ERP 6.0 / NW7.01 Oracle 11g2. Best Re

  • HT2731 How to remove an old employee of the iPhone

    A new profile and worked when I was working updated software asks me old user name and password and I want to delete all terms of the old profile and replaced with new ..Thank you

  • HT1937 iPhone 5 Chile

    Hi, where can I buy an unlocked iPhone 5 in Chile?