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();

Similar Messages

  • 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

  • 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?

  • 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.

  • 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

  • [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.

  • 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?

  • Attempt to download non-file element

    When I click on certain link buttons at amazon.com a small window opens. The window is titled Opening ref=nb_sb_noss. In the window is the text "You have chosen to open ref=nb_sb_noss which is a: application/octet-stream from http://amazon.com" and it asks what I want to do with this file including opening or saving the file.
    If I close this window I can click again and get the normal activity intended by the link.

    I think you need to change certain settings on your Router under the wireless part. Login to the Router setup page and click on the wireless tab and change the settings for 2.4GHz wireless network...
    - Set the Radio Band to Wide-40MHz and change the Wide channel to 9 and Standard Channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on save settings...
    Click on the sub tab "Advanced Wireless Settings"
    Change the Beacon Interval to 75 >>Change the Fragmentation Threshold to 2304 Change the RTS Threshold to 2307 >>Click on "Save Settings"...
    Now see if you can locate your Wireless Network and attempt to connect...

  • Excel documents attempting to use non-existing Secure Store target application for unattended account

    Hey,
    I have been brought in to take a look at a few errors experienced on a SharePoint 2013 farm that will be used for BI functionality. One of the errors is the following:
    This happens when I attempt to refresh a Excel document that is using an unattended account. The application that it attempts to access (named in the error) does not exist in the Secure Store Service. I have checked the Excel Service Global Settings
    and the Target Application ID of the Unattended Service Account does not match what is given in the error (but matches a target application id that exists).
    Is there anywhere that you can override the global settings of the excel service? Is there something else that might be wrong?
    Any help is appreciated.
    Regards
    Knut

    Hi Knut,
    Thank you for your sharing! It will be beneficial to others in this forum who meet the same issue in the future.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • FRM-40112 Attempted go_item to non enabled item

    Hi,
    I get this error and as per the upgrade manual I am supposed to set the parameter "FORMS90_REJECT_GO_ITEM_DISABLED_ITEM to FALSE in the default enc file.
    There is no suh parameter either in the default env file or the formsweb.cfg file.
    Where exactly am I supposed to set this parameter.
    (I did enter a new line in both files and set the value to FALSE but still get the same error).
    Also I am trying to run the form on my local machine.
    Thanks

    Vijay,
    this parameter is an environment variable and should be in teh default.env file. If it is not in there, just create it. Otherwise teh default setting is used which - if i remember well - is true
    Frank

Maybe you are looking for

  • How to propagate a BPEL fault into ESB

    Hi I have a problem with getting errors that occur in my BPEL process propagate up to the calling ESB service. I have an ESB service that via a routing rule invokes a BPEL process. I'm using direct Java-call (i think) between ESB and BPEL by simply c

  • Installing itunes on new dell/ Vista, error that no audio cd can be found

    After installing intunes on my new dell laptop, got message that it "was not properly installed. If you wish to import or burn cd's, you need to reintall iTunes". I uninstalled and reinstalled it. Same error message. Diagnostics says "no audio CD fou

  • Problems freeing up memory

    i've been having a problem of late with my iPhone 5s 16 GB. I have been receiving a warning box, advising me that my memory is low; problem is, no matter how many apps I delete, I'm still advised that I have no memory available despite the fact that

  • Table of all Partners related to an Activity (for BW extraction)???

    Hi all, could anyone please let me know the table where the relational information between activities and ALL related Business Partners (not only contact partner, etc.) are stored). Thanks in advance. Stefan

  • Location of Motion content

    Where are the Motion,LiveType, and Soundtrack Pro content files located? I need to delete all and start from scratch on my PowerBook Pro. Any help will be welcomed. Thanks much, Tom