Correct LDAP property definition in JAZN config ?

I specified LDAP in the orion-application.xml file for my app and also specified that in the jazn config file. But it seems to create only GenericProvider object.
Also, when I try to get realms from the realm manager object, I get an exception -
oracle.security.jazn.JAZNException: The system is unable to retreive the specified realm(s).
at oracle.security.jazn.spi.ldap.LDAPRealmManager.searchRealms(LDAPRealmManager.java:1194)
at oracle.security.jazn.spi.ldap.LDAPRealmManager.getRealms(LDAPRealmManager.java:200)
at index.jspService(_index.java:101)
[SRC:/index.jsp:51]
at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)
at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.lang.IllegalStateException: LDAP properties not properly defined. Please check your JAZN configuration.
at oracle.security.jazn.spi.ldap.LDAPContext.getDirContext(LDAPContext.java:476)
at oracle.security.jazn.spi.ldap.LDAPContext.getDefaultDirContext(LDAPContext.java:246)
at oracle.security.jazn.spi.ldap.LDAPContext.getOrclRootCtxDN(LDAPContext.java:187)
at oracle.security.jazn.spi.ldap.LDAPContext.getSiteJAZNCtxDN(LDAPContext.java:222)
at oracle.security.jazn.spi.ldap.LDAPRealmManager.searchRealms(LDAPRealmManager.java:1087)
... 20 more
My configuration in orion-application.xml looks like this -
<jazn
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/jazn-10_0.xsd"
schema-major-version="10"
schema-minor-version="0"
provider="LDAP"
location="ldap://<oid_URL>:389"
/>
where oid_url is the URL of my OID.

Thanks for the reply Yvonne. Sorry I haven't updated this after my testing. I think you're close to correct.
I did some more testing and figured out that any time the protocol is included in a path (protocol://d:/my/path/client.jar) that jazn does not understand. When the referenced file (jazn.xml) is in a jar file, it includes the protocol in the path. For example the path to the jazn.xml file (the value that the java.security.auth.policy property needs to be set to) would be jar:file://my/path/client.jar!/my/path/jazn.xml
I think the oracle.security.jazn.spi.PolicyProvider (the value of the java.security.auth.policy.provider property) causes the jazn.xml file to be read. That class is, I think, what fails to find that file because it doesn't understand when the protocol (jar:file:) is included in the path to the file. That's my guess anyway.
I did figure out a work around and it goes like this:
1. create a new jazn.xml file
File tmp = new File ("jazn.xml");
2. and set it to be deleted on exit
tmp.deleteOnExit();
3. get a ByteArrayInputStream for the jazn.xml file and read it out of the jar file.
4. then write the stream to the tmp file
5. then set the system property
System.setProperty("java.security.auth.policy", tmp.toURL().getPath());
It is kind of a pain since I have to check to see if the property I'm setting is "jazn.xml", but it seems to work.
I think the oracle.security.jazn.spi.PolicyProvider problem is a defect, which I'll report on meta-link.
tcoker

Similar Messages

  • JAAS, jazn.xml, & oracle.security.jazn.config

    I have a swing application using LDAP to authenticate users that will typically be launched via Java Web Start, thus the application is deploy using a jar file.
    I can run this application from JDev or from the command-line when the jazn.xml file is located in the root (start-in) directory.
    Unfortunately, when the jazn.xml file is only in the jar file (as it would be when launched via JWS) the application cannot find it and throws an exception:
    oracle.security.jazn.JAZNInitException: d:\path\.\jazn-data.xml (The system cannot find the file specified).
    I found some documentation that indicates that I can specify the path to the jazn.xml file with
    System.setProperty("oracle.security.jazn.config", "path/to/jazn/xml/file");
    If I set it to a relative path without the filename on the end (ex. "./my/path" or "my/path") I get the above exception.
    If I set it to a relative path with the filename (ex. "./my/path/jazn.xml" or "my/path/jazn.xml") it works.
    What I can't figure out is how to tell it that it is in a jar file that is in my classpath. It doesn't find it from the path examples above. I've tried things like "client.jar/jazn.xml", "d:/my/path/client.jar/jazn.xml", and a host of other things with the jazn.xml filename on the end.
    Oddly enough, when I set it to "d:/my/path/client.jar" I get a different exception:
    Caused by: oracle.security.jazn.JAZNInitException: no protocol: "ldap://hostname.com:389">
         at oracle.security.jazn.spi.xml.FSXMLStore.<init>(FSXMLStore.java:128)
         ... 59 more
    Caused by: java.net.MalformedURLException: no protocol: "ldap://hostname.com:389">
         at java.net.URL.<init>(URL.java:537)
         at java.net.URL.<init>(URL.java:434)
         at java.net.URL.<init>(URL.java:383)
    So it seems like it read the file but parsed it incorrectly. Any ideas?

    Thanks for the reply Yvonne. Sorry I haven't updated this after my testing. I think you're close to correct.
    I did some more testing and figured out that any time the protocol is included in a path (protocol://d:/my/path/client.jar) that jazn does not understand. When the referenced file (jazn.xml) is in a jar file, it includes the protocol in the path. For example the path to the jazn.xml file (the value that the java.security.auth.policy property needs to be set to) would be jar:file://my/path/client.jar!/my/path/jazn.xml
    I think the oracle.security.jazn.spi.PolicyProvider (the value of the java.security.auth.policy.provider property) causes the jazn.xml file to be read. That class is, I think, what fails to find that file because it doesn't understand when the protocol (jar:file:) is included in the path to the file. That's my guess anyway.
    I did figure out a work around and it goes like this:
    1. create a new jazn.xml file
    File tmp = new File ("jazn.xml");
    2. and set it to be deleted on exit
    tmp.deleteOnExit();
    3. get a ByteArrayInputStream for the jazn.xml file and read it out of the jar file.
    4. then write the stream to the tmp file
    5. then set the system property
    System.setProperty("java.security.auth.policy", tmp.toURL().getPath());
    It is kind of a pain since I have to check to see if the property I'm setting is "jazn.xml", but it seems to work.
    I think the oracle.security.jazn.spi.PolicyProvider problem is a defect, which I'll report on meta-link.
    tcoker

  • Setting v$session.program property in application module config

    How can I set the v$session.program property in the AM config, so that when a new connection is created, the v$session.program field is documented with the property value.
    I added the following in JClient JCLoginDialog:
    ((Hashtable)connEnvironment).put("v$session.program", "my program name");
    I traced the V$SESSION TABLE:
    The added connection has "my program name" in the program field but if I open other application module instances, the new connections have an empty v$session.program field.
    I suppose that a property must be added to all application module configurations.
    Can somebody help me on this one?
    The v$session.program field is helpful when sessions must be killed.
    Thanks
    Fred

    I don't believe there is a built-in mechanism for that.
    But you can easily do it yourself. In you AM class:
    public void prepareSession( Session session ) {
        super.prepareSession( session );
        setDatabaseClientInfo( Bc4jConstants.APPLICATION_NAME );
        setDatabaseModuleInfo( moduleInfo );
    }And then:
      public void setDatabaseClientInfo( String clientInfo ) {
        try {
          this.getTransaction( ).executeCommand(
            "BEGIN dbms_application_info.set_client_info('" + clientInfo + "'); END;" );
        } catch( Exception e ) {
          // uncritical error
          log.warn( "Error setting the database client info: " + clientInfo, e );
      }and
      public void setDatabaseModuleInfo( String moduleInfo ) {
        if( moduleInfo != null ) {
          try {
            this.getTransaction( ).executeCommand( "BEGIN dbms_application_info.set_module('"
              + moduleInfo + "', NULL); END;" );
          } catch( Exception exception ) {
            // uncritical error
            log.warn( "Error setting the database module info: " + moduleInfo, exception );
      }In a similar fashion you can set the client identifier. We use the moduleInfo to identify the module of the session. The client info helps us to identify the application.
    Sascha

  • [svn:bz-trunk] 13477: Bug: BLZ-455 - Document client-load-balancing property in the sample config

    Revision: 13477
    Revision: 13477
    Author:   [email protected]
    Date:     2010-01-13 05:17:10 -0800 (Wed, 13 Jan 2010)
    Log Message:
    Bug: BLZ-455 - Document client-load-balancing property in the sample config
    QA: No
    Doc: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-455
    Modified Paths:
        blazeds/trunk/resources/config/services-config.xml

  • Can't find the correct ASN.1 definition of Name

    Hi,
    I simply can't find the correct ASN.1 definition of Name.
    I was trying to look around in ISO 7816-15, and also in the code of pkcs15, but no success.
    Any help would be greatly appreciated.
    Cheers,
    Peter

    Not sure which "Name" you are looking for, but you'll find all of them here: http://www.alvestrand.no/cgi-bin/hta/oidwordsearch?text=Name&prefix=top. The most common one is, obviously, commonName (OID 2.5.4.3) at http://www.alvestrand.no/objectid/2.5.4.3.html. Hope that helps.
    Arshad Noor
    StrongAuth, Inc.

  • Property and Property Definition for a Node

    Hi all,
    While retrieving meta data for each node, I could not understand whether Property for a node represents meta data or Property Definition. Please provide a clear understanding and difference between the two.
    Second, is there a predefined fixed set of Property and Property Definition for a node (for any given portal application)?
    Provide inputs.
    Thanks,
    Shakti

    Hi Shakti,
    A node has two types of metadata -- the built-in system metadata such as node name, node path, node objectClass, create date, modified date, created by, etc -- visible via getXXX methods on the Node object, and the user-defined metadata.
    The system metadata applies to all nodes regardless of ObjectClass (and also to nodes without any ObjectClass).
    The user-defined metadata depends on the Node's ObjectClass. A node with no objectClass cannot have any user-defined metadata. A node with an objectClass can have the metadata defined by the ObjectClass's Property Definitions.
    Suppose Node n has ObjectClass "StringType", and StringType ObjectClass has two property definitions -- StringVal (single-valued string), and BinaryVal (single-valued binary). In this case, Node n can have zero, one, or two user-defined properties from the set 'StirngVal' and 'BinaryVal'.
    In short, a PropertyDefinition is a schema, part of the ObjectClass definition, whereas a Property is an instance of a PropertyDefinition attached to a node of the ObjectClass.
    -Steve

  • Private attributes & class property definition errors

    I'm setting up functions in a document class file, then from there I am going to call that function from a movieclip in flash.  For some reason, maybe I have things set up wrong, but it is throwing me errors such as below:
    Line 37 1013: The private attribute may be used only on class property definitions.
    What am I doing wrong here and is there something I am not understanding?
    Here is my .as code.
    modal.as >
    package {
         import flash.display.*;
         import flash.events.Event;
         import flash.events.MouseEvent;
         import flash.display.*;
         import flash.events.*;
         import flash.net.URLRequest;
         public class modal extends MovieClip {
              public function modal() {
         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;
    And here is my code that is on the timeline:
    slideshowimages_mc.one_mc.addEventListener(MouseEvent.CLICK, oneClick);
    function oneClick(event:MouseEvent):void {
         var bigimagebg_mc=new mc_bigimagebg  ;
         showModalContent(bigimagebg_mc);
         bigimagebg_mc.x=200;
         bigimagebg_mc.y=170;

    unnest all the named functions and that variable:
    package {
        import flash.display.*;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.display.*;
        import flash.events.*;
        import flash.net.URLRequest;
        public class modal extends MovieClip {
            private var currentlyShowing:MovieClip=null;
            public function modal() {
            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;

  • Accessing Terminal Services Attributes from Active Directory LDAP property userParameters

    After many years of complaints, Microsoft has done little to address the overwhelming outcry for information on the accessing the Terminal Services properties through LDAP.
    I found this document that fully describes the Encode/Decode mechanism for the userParameters attribute.
    https://msdn.microsoft.com/en-us/library/ff635189.aspx
    The property is used for more than terminal services, but even Microsoft is confused about it's use it would seem.  I won't go into details, but for all those trying to access the terminal services attributes, this document should help.
    I have not yet converted the mapping into a JAVA module, so please don't ask for help.  I just need a more public place to put this, than the currently buried location at microsoft, to make for easier retrieval from the web community of java developers.

    Hi,
    What about other changed attributes? Are other attributes retrieved by DirSync control turn to be encrypted form?
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Forward to Tiles definition from faces-config.xml

    Hello,
    can anybody explain me how to make a forward to a Tiles definition from the faces-config.xml file? I�m using MyFaces with Tomahawk and Tiles, but I also tried with Jsf without myFaces and lots of combinations but I can�t fix it.
    Here is my faces-config file:
    <faces-config>
    <navigation-rule>
    <from-view-id>/pages/JP000.jsp</from-view-id>
    <navigation-case>
    <from-outcome>loginFrm</from-outcome>
    <to-view-id>/JP002.tiles</to-view-id>
    </navigation-case>
    </navigation-rule>
    <application>
    <view-handler>org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl</view-handler>
    </application>
    </faces-config>
    and this is the tiles-defs.xml:
    <tiles-definitions>
         <!-- === layouts === -->
         <definition name="general.menu"
              path="/pages/tiles/templates/general.menu.jsp">
              <put name="titleHTML" type="string"     value="mi_title" />
              <put name="menu" value="/pages/tiles/menu.jsp" />
         </definition>
         <!-- === pages === -->
         <definition name="JP002.tiles" extends="general.menu">
              <put name="titleHTML" type="string"     value="mi_title" />
              <put name="content" value="/pages/menus/JP002.jsp" />
              <put name="menu" value="0" />
         </definition>
    </tiles-definitions>
    Lots of thanks!!!!

    Today I downloaded tomahawk-examples-1.1.5-bin. (http://myfaces.apache.org/download.html). They have one example with tiles, and it works the way I want it to.
    I'm still trying to figure it out what is causing this behaviour.
    At least, I tried to change the value they're using for linkage between <to-view-id> and tiles definition, and found that JSF is still ignoring the real value in <to-view-id>
    : it was originally 'blah.jsp', but 'blah' or 'blah.tiles' worked the same way, while in tiles definition the corresponding name was always blah.tiles.
    It seems that they are looking into tiles definitions first with the key composed of the first part of the value in <to-view-id> (before the dot) concatenated with hardcoded '.faces'.
    I tried to change the key value in both config files to something like 'blah.ttt', and it did not work.
    I'm not sure at the moment if this would be a problem for me, I may use this framework, knowing the limitations.
    Also, I'll look into the code, if this may be altered and at what cost.
    Still, the basic jsf problem with always interpreting the value in <to-view-id> as blah.jsp remains.

  • Code 1013: The private attribute may be used only on class property definitions.

    Ok guys, being new to the Action scripting game, I am already finding myself with Errors.  I have researched this for the last few days, and each time I come up with an answered solution, the solution is always the curly bracket.  But for the life of me, I can not find a missing bracket!  Could someone look at this for me and guide me in the right direction before I lose the rest of my hair. :-)
    package
      import flash.display.Sprite;
      import flash.events.MouseEvent;
      public class Main extends Sprite
      var xPos:int; //Stores the initial x position
      var yPos:int; //Stores the initial y position
    public function Main():void
      addListeners(alpine,armadillo,battery,blizzard,cactus,carnivoreplant,cloud,coolfire,coral,crystal,dandelion,darkfire); //A function to add the listeners to the clips in the parameters
    private function getPosition(target:Object):void
      xPos = target.x;
      yPos = target.y;
    private function dragObject(e:MouseEvent):void
      getPosition(e.target);
      e.target.startDrag(true);
    private function stopDragObject(e:MouseEvent):void
      if (e.target.hitTestObject(getChildByName(e.target.name + "Target"))) //Checks the correct drop target
      e.target.x = getChildByName(e.target.name + "Target").x; //If its correct, place the clip in the same position as the target
      e.target.y = getChildByName(e.target.name + "Target").y;
      else
      e.target.x = xPos; //If not, return the clip to its original position
      e.target.y = yPos;
      e.target.stopDrag(); //Stop drag
    private function addListeners(... objects):void
      for (var i:int = 0; i < objects.length; i++)
      objects[i].addEventListener(MouseEvent.MOUSE_DOWN, dragObject);
      objects[i].addEventListener(MouseEvent.MOUSE_UP, stopDragObject);

    Thank you for the reply Ned.
    I took your advice and moved the Closing Bracket with this result in the coding change.
    package
              import flash.display.Sprite;
              import flash.events.MouseEvent;
              public class Main extends Sprite
                        var xPos:int; //Stores the initial x position
                        var yPos:int; //Stores the initial y position
    public function Main():void
                        addListeners(alpine,armadillo,battery,blizzard,cactus,carnivoreplant,cloud,coolfire,coral,crystal,dandelion,darkfire); //A function to add the listeners to the clips in the parameters
    private function getPosition(target:Object):void
                        xPos = target.x;
                        yPos = target.y;
    private function dragObject(e:MouseEvent):void
                        getPosition(e.target);
                        e.target.startDrag(true);
    private function stopDragObject(e:MouseEvent):void
                        if (e.target.hitTestObject(getChildByName(e.target.name + "Target"))) //Checks the correct drop target
                                            e.target.x = getChildByName(e.target.name + "Target").x; //If its correct, place the clip in the same position as the target
                                            e.target.y = getChildByName(e.target.name + "Target").y;
                        else
                                            e.target.x = xPos; //If not, return the clip to its original position
                                            e.target.y = yPos;
                        e.target.stopDrag(); //Stop drag
    private function addListeners(... objects):void
              for (var i:int = 0; i < objects.length; i++)
                                  objects[i].addEventListener(MouseEvent.MOUSE_DOWN, dragObject);
                                  objects[i].addEventListener(MouseEvent.MOUSE_UP, stopDragObject);
    The 4 errors still remain on Line 14, 19, 25, and 40.  All the same Error Code.

  • 1013: The private attribute may be used only on class property definitions.

    import com.doitflash.consts.Orientation;
    import com.doitflash.consts.Easing;
    import com.doitflash.events.ScrollEvent;
    import com.doitflash.starling.utils.scroller.Scroller;
    import starling.events.TouchEvent;
    import starling.events.TouchPhase;
    import starling.events.Touch;
    import starling.extensions.ClippedSprite;
    import flash.geom.Point;
    var content:ClippedSprite = new ClippedSprite(); // the content you want to scroll
    content.clipRect = new Rectangle(0, 0, 500, 500); // set the space that you want your content to be visible at, set its mask actually
    content.addEventListener(TouchEvent.TOUCH, onTouch);
    this.addChild(content);
    var scroll:Scroller = new Scroller();
    scroll.boundWidth = 500; // set boundWidth according to the mask width
    scroll.boundHeight = 500; // set boundHeight according to the mask height
    scroll.content = content; // you MUST set scroller content before doing anything else
    scroll.orientation = Orientation.VERTICAL; // accepted values: Orientation.AUTO, Orientation.VERTICAL, Orientation.HORIZONTAL
    // you call this function, to start scrolling
    private function onTouch(e:TouchEvent):void
        var touch:Touch = e.getTouch(stage);
        var pos:Point = touch.getLocation(stage);
        if (touch.phase == TouchPhase.BEGAN)
            scroll.startScroll(pos); // on touch begin
        else if (touch.phase == TouchPhase.MOVED)
            scroll.startScroll(pos); // on touch move
            //trace(_scroll.isHoldAreaDone); // to see that we have got out of the hold area or not
        else if (touch.phase == TouchPhase.ENDED)
            scroll.fling(); // on touch ended
    i got this error after pasting this code in.. i cant figure out the problem.. some help pls?

    use:
    import com.doitflash.consts.Orientation;
    import com.doitflash.consts.Easing;
    import com.doitflash.events.ScrollEvent;
    import com.doitflash.starling.utils.scroller.Scroller;
    import starling.events.TouchEvent;
    import starling.events.TouchPhase;
    import starling.events.Touch;
    import starling.extensions.ClippedSprite;
    import flash.geom.Point;
    var content:ClippedSprite = new ClippedSprite(); // the content you want to scroll
    content.clipRect = new Rectangle(0, 0, 500, 500); // set the space that you want your content to be visible at, set its mask actually
    content.addEventListener(TouchEvent.TOUCH, onTouch);
    this.addChild(content);
    var scroll:Scroller = new Scroller();
    scroll.boundWidth = 500; // set boundWidth according to the mask width
    scroll.boundHeight = 500; // set boundHeight according to the mask height
    scroll.content = content; // you MUST set scroller content before doing anything else
    scroll.orientation = Orientation.VERTICAL; // accepted values: Orientation.AUTO, Orientation.VERTICAL, Orientation.HORIZONTAL
    // you call this function, to start scrolling
    function onTouch(e:TouchEvent):void
        var touch:Touch = e.getTouch(stage);
        var pos:Point = touch.getLocation(stage);
        if (touch.phase == TouchPhase.BEGAN)
            scroll.startScroll(pos); // on touch begin
        else if (touch.phase == TouchPhase.MOVED)
            scroll.startScroll(pos); // on touch move
            //trace(_scroll.isHoldAreaDone); // to see that we have got out of the hold area or not
        else if (touch.phase == TouchPhase.ENDED)
            scroll.fling(); // on touch ended

  • Error 1013: The private attribute may be used only on class property definitions

    Been trying to solve this problem for the past 4 hours, been searching all over different forums and I still don't get it, I'm a complete newbie with AS3 and just starting to learn it. Can someone tell me what I have done wrong to get this error.
    package {
              import flash.display.Sprite;
              import flash.events.Event;
              public class Main extends Sprite {
                        private const FIELD_WIDTH:uint=16;
                        private const FIELD_HEIGHT:uint=12;
                        private const TILE_SIZE:uint=40;
                        private var the_snake:the_snake_mc;
                        private var snakeDirection:uint;
                        private var snakeContainer:Sprite= new Sprite();
                        private var bg:bg_mc=new bg_mc();
                        public function Main() {
                                  addChild(bg);
                                  placeSnake(); }
                                  addEventListener(Event.ENTER_FRAME,onEnterFr);
    private function placeSnake():void {
              addChild(snakeContainer);
              var col:uint=Math.floor(Math.random()*(FIELD_WIDTH-10))+5;
              var row:uint=Math.floor(Math.random()*(FIELD_HEIGHT-10))+5;
              snakeDirection=Math.floor(Math.random()*4);
              the_snake=new the_snake_mc(col*TILE_SIZE,row*TILE_SIZE,snakeDirection+1);
              snakeContainer.addChild(the_snake);
              switch (snakeDirection) {
                        case 0 : // facing left
                        trace("left");
                        the_snake = new the_snake_mc((col+1)*TILE_SIZE,row*TILE_SIZE,6);
                        snakeContainer.addChild(the_snake);
                        the_snake = new the_snake_mc((col+2)*TILE_SIZE,row*TILE_SIZE,6);
                        snakeContainer.addChild(the_snake);
                        break;
                        case 1 : // facing up
                        trace ("up");
                        the_snake = new the_snake_mc(col*TILE_SIZE,(row+1)*TILE_SIZE,5);
                        snakeContainer.addChild(the_snake);
                        the_snake = new the_snake_mc(col*TILE_SIZE,(row+2)*TILE_SIZE,5);
                        snakeContainer.addChild(the_snake);
                        break;
                        case 2 : // facing down
                        trace ("down");
                        the_snake = new the_snake_mc((col-1)*TILE_SIZE.row*TILE_SIZE,6);
                        snakeContainer.addChild(the_snake);
                        the_snake = new the_snake_mc((col-2)*TILE_SIZE.row*TILE_SIZE,6);
                        snakeContainer.addChild(the_snake);
                        break
                        case 3 : // facing right
                        trace ("right");
                        the_snake = new the_snake_mc(col*TILE_SIZE,(row-1)*TILE_SIZE,5);
                        snakeContainer.addChild(the_snake);
                        the_snake = new the_snake_mc(col*TILE_SIZE,(row-2)*TILE_SIZE,5);
                        snakeContainer.addChild(the_snake);
                        break;
    private function onEnterFr(e:Event) {     <<   ERROR ON THIS LINE
              var the_head:the_snake_mc=snakeContainer.addChildAt(0) as the_snake_mc;
              var new_piece:the_snake_mc=new the_snake_mc(the_head.x,the_head.y,1);
              snakeContainer.addChildAt(new_piece,1);
              var the_body:the_snake_mc=snakeContainer.getChildAt(2) as the_snake_mc;
              var p:uint=snakeContainer.numChildren;
              var the_tail:the_snake_mc=snakeContainer.getChildAt(p-1) as the_snake_mc;
              var the_new_tail:the_snake_mc=snakeContainer.getChildAt(p-2) as the_snake_mc;
              the_head.moveHead(snakeDirection,TILE_SIZE);
              // brute force
              if (is_up(new_piece,the_head)&&is_down(new_piece,the_body)) {
                        new_piece.gotoAndStop(5);
              if (is_down(new_piece,the_head)&&is_up(new_piece,the_body)) {
                        new_piece.gotoAndStop(5);
              if (is_left(new_piece,the_head)&&is_right(new_piece,the_body)) {
                        new_piece.gotoAndStop(6);
              if (is_right(new_piece,the_head)&&is_left(new_piece,the_body)) {
                        new_piece.gotoAndStop(6);
              // end of brute force
              snakeContainer.removeChild(the_tail);

    does this solve your problem
    package
              import flash.display.Sprite;
              import flash.events.Event;
              public class Main extends Sprite
                        private const FIELD_WIDTH:uint = 16;
                        private const FIELD_HEIGHT:uint = 12;
                        private const TILE_SIZE:uint = 40;
                        private var the_snake:the_snake_mc;
                        private var snakeDirection:uint;
                        private var snakeContainer:Sprite = new Sprite();
                        private var bg:bg_mc = new bg_mc();
                        public function Main()
                                  addChild(bg);
                                  placeSnake();
                                  addEventListener(Event.ENTER_FRAME, onEnterFr);
                        private function placeSnake():void
                                  addChild(snakeContainer);
                                  var col:uint = Math.floor(Math.random() * (FIELD_WIDTH - 10)) + 5;
                                  var row:uint = Math.floor(Math.random() * (FIELD_HEIGHT - 10)) + 5;
                                  snakeDirection = Math.floor(Math.random() * 4);
                                  the_snake = new the_snake_mc(col * TILE_SIZE, row * TILE_SIZE, snakeDirection + 1);
                                  snakeContainer.addChild(the_snake);
                                  switch (snakeDirection)
                                            case 0: // facing left
                                                      trace("left");
                                                      the_snake = new the_snake_mc((col + 1) * TILE_SIZE, row * TILE_SIZE, 6);
                                                      snakeContainer.addChild(the_snake);
                                                      the_snake = new the_snake_mc((col + 2) * TILE_SIZE, row * TILE_SIZE, 6);
                                                      snakeContainer.addChild(the_snake);
                                                      break;
                                            case 1: // facing up
                                                      trace("up");
                                                      the_snake = new the_snake_mc(col * TILE_SIZE, (row + 1) * TILE_SIZE, 5);
                                                      snakeContainer.addChild(the_snake);
                                                      the_snake = new the_snake_mc(col * TILE_SIZE, (row + 2) * TILE_SIZE, 5);
                                                      snakeContainer.addChild(the_snake);
                                                      break;
                                            case 2: // facing down
                                                      trace("down");
                                                      the_snake = new the_snake_mc((col - 1) * TILE_SIZE.row * TILE_SIZE, 6);
                                                      snakeContainer.addChild(the_snake);
                                                      the_snake = new the_snake_mc((col - 2) * TILE_SIZE.row * TILE_SIZE, 6);
                                                      snakeContainer.addChild(the_snake);
                                                      break;
                                            case 3: // facing right
                                                      trace("right");
                                                      the_snake = new the_snake_mc(col * TILE_SIZE, (row - 1) * TILE_SIZE, 5);
                                                      snakeContainer.addChild(the_snake);
                                                      the_snake = new the_snake_mc(col * TILE_SIZE, (row - 2) * TILE_SIZE, 5);
                                                      snakeContainer.addChild(the_snake);
                                                      break;
                        private function onEnterFr(e:Event)
                                  var the_head:the_snake_mc = snakeContainer.addChildAt(0) as the_snake_mc;
                                  var new_piece:the_snake_mc = new the_snake_mc(the_head.x, the_head.y, 1);
                                  snakeContainer.addChildAt(new_piece, 1);
                                  var the_body:the_snake_mc = snakeContainer.getChildAt(2) as the_snake_mc;
                                  var p:uint = snakeContainer.numChildren;
                                  var the_tail:the_snake_mc = snakeContainer.getChildAt(p - 1) as the_snake_mc;
                                  var the_new_tail:the_snake_mc = snakeContainer.getChildAt(p - 2) as the_snake_mc;
                                  the_head.moveHead(snakeDirection, TILE_SIZE);
                                  // brute force
                                  if (is_up(new_piece, the_head) && is_down(new_piece, the_body))
                                            new_piece.gotoAndStop(5);
                                  if (is_down(new_piece, the_head) && is_up(new_piece, the_body))
                                            new_piece.gotoAndStop(5);
                                  if (is_left(new_piece, the_head) && is_right(new_piece, the_body))
                                            new_piece.gotoAndStop(6);
                                  if (is_right(new_piece, the_head) && is_left(new_piece, the_body))
                                            new_piece.gotoAndStop(6);
                                  // end of brute force
                                  snakeContainer.removeChild(the_tail);

  • [SOLVED]Connecting DB problem

    Hi
    i have an error connecting with DX XE from TP3 View objects
    07/12/24 11:49:06 [364] java.sql.SQLException: ORA-01882: timezone region not found
    how to correct this ?
    Thanks
    here is a full lof
    07/12/24 11:49:01 Diagnostics: (BC4J Bootstrap) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    07/12/24 11:49:01 [00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:9
    07/12/24 11:49:01 [01] JavaVMVersion: 1.5.0_11-b03
    07/12/24 11:49:01 [02] JavaVMVendor: Sun Microsystems Inc.
    07/12/24 11:49:01 [03] JavaVMName: Java HotSpot(TM) Client VM
    07/12/24 11:49:01 [04] OperatingSystemName: Windows XP
    07/12/24 11:49:01 [05] OperatingSystemVersion: 5.1
    07/12/24 11:49:01 [06] OperatingSystemUsername: soso
    07/12/24 11:49:01 [07] jbo.323.compatible Flag: false, str: null
    07/12/24 11:49:01 [08] jbo.903.compatible Flag: false, str: null
    07/12/24 11:49:01 [09] oracle.adfm.usemds Flag: true, str: null
    07/12/24 11:49:01 [10] MDS parser created
    07/12/24 11:49:01 [11] Accumulated view/DataBindings.cpx from file:/C:/JDeveloper/mywork/WebApp1.0/View/classes/view/DataBindings.cpx
    07/12/24 11:49:01 [12] Created cpxList, size: 1 for current-workspace-app.web.WebApp1.0-View-webapp:0.0.0
    07/12/24 11:49:01 [13] loadCpx used services: view.DataBindings.cpx
    07/12/24 11:49:03 [14] Loading the Containees for the Package 'DataBindings.DataBindings'.
    07/12/24 11:49:03 [15] Loading Child Containers for the container 'DataBindings.DataBindings'.
    07/12/24 11:49:03 [16] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.adf.model.binding.DCDataControlReference )
    07/12/24 11:49:03 [17] BindingContext.put( indexPageDef, oracle.adf.model.binding.DCBindingContainerReference )
    07/12/24 11:49:03 [18] MDS parser created
    07/12/24 11:49:03 [19] BC4J: Instrumentation is enabled.....
    07/12/24 11:49:03 [20] {{ type: 'METAOBJECT_LOAD' Loading meta-object: view.pageDefs.indexPageDef
    07/12/24 11:49:03 [21] {{ type: 'METAOBJECT_LOAD' Loading meta-object: view.pageDefs.pageDefs
    07/12/24 11:49:03 [22] No XML file /view/pageDefs/pageDefs.xml for metaobject view.pageDefs.pageDefs
    07/12/24 11:49:03 [23] MDS error (MetadataNotFoundException): MDS-00013: No metadata found for metadata object "/view/pageDefs/pageDefs.xml"
    07/12/24 11:49:03 [24] }}+++ End Event2 null
    07/12/24 11:49:03 [25] Cannot Load parent Package : view.pageDefs.pageDefs
    07/12/24 11:49:03 [26] Business Object Browsing may be unavailable
    07/12/24 11:49:03 [27] }}+++ End Event1 null
    07/12/24 11:49:03 [28] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:03 [29] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:03 [30] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:03 [31] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:04 [32] DCUtil, returning:oracle.adf.model.binding.DCParameter, for TasksModuleDataControl
    07/12/24 11:49:04 [33] getDCKey for data.indexPageDef yielded view.DataBindings.cpx
    07/12/24 11:49:04 [34] Reusing DC transform for TasksModuleDataControl_indexPageDef
    07/12/24 11:49:04 [35] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.jbo.uicli.binding.JUApplication )
    07/12/24 11:49:05 [36] BC4J Property jbo.maxpoolcookieage='-1' -->(Configuration) from System Default
    07/12/24 11:49:05 [37] * jbo.ejb.useampool='false'
    07/12/24 11:49:06 [38] SessionCookieImpl SSOUSER anonymous
    07/12/24 11:49:06 [39] SessionCookieImpl SSOSUBSCRIBER null
    07/12/24 11:49:06 [40] SessionCookieImpl User Principal oracle.oc4j.security.BasicUserProxy
    07/12/24 11:49:06 [41] Reusing DC transform for TasksModuleDataControl_indexPageDef
    07/12/24 11:49:06 [42] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.jbo.uicli.binding.JUApplication )
    07/12/24 11:49:06 [43] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    07/12/24 11:49:06 [44] Creating a new pool resource
    07/12/24 11:49:06 [45] BC4JDeployPlatform: LOCAL
    07/12/24 11:49:06 [46] Propertymanager: searching for file and system based properties
    07/12/24 11:49:06 [47] {{ begin Loading BC4J properties
    07/12/24 11:49:06 [48] -----------------------------------------------------------
    07/12/24 11:49:06 [49] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [50] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [51] Skipping empty Property jbo.default.locale.variant from System Default
    07/12/24 11:49:06 [52] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [53] Skipping empty Property ConnectionMode from System Default
    07/12/24 11:49:06 [54] Skipping empty Property HostName from System Default
    07/12/24 11:49:06 [55] Skipping empty Property ConnectionPort from System Default
    07/12/24 11:49:06 [56] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [57] BC4J Property jbo.txn.disconnect_level='0' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [58] Skipping empty Property ApplicationPath from System Default
    07/12/24 11:49:06 [59] BC4J Property AppModuleJndiName='model.tasks.TasksModule' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [60] Skipping empty Property java.naming.security.principal from System Default
    07/12/24 11:49:06 [61] Skipping empty Property java.naming.security.credentials from System Default
    07/12/24 11:49:06 [62] BC4J Property jbo.user.principal='anonymous' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [63] BC4J Property jbo.simulate.remote='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [64] BC4J Property jbo.security.context='oracle.security.jazn' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [65] Skipping empty Property jbo.object.marshaller from System Default
    07/12/24 11:49:06 [66] BC4J Property jbo.use.pers.coll='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [67] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [68] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [69] BC4J Property jbo.validation.threshold='10' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [70] Skipping empty Property jbo.pcoll.mgr from System Default
    07/12/24 11:49:06 [71] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [72] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [73] BC4J Property jbo.txn_seq_inc='50' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [74] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [75] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [76] BC4J Property jbo.domain.date.suppress_zero_time='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [77] BC4J Property jbo.domain.bind_sql_date='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [78] BC4J Property jbo.domain.string.as.bytes.for.raw='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [79] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [80] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [81] BC4J Property jbo.903.compatible='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [82] Skipping empty Property JBODynamicObjectsPackage from System Default
    07/12/24 11:49:06 [83] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [84] BC4J Property jbo.load.components.lazily='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [85] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [86] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [87] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    07/12/24 11:49:06 [88] BC4J Property oracle.jbo.usemds='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [89] BC4J Property oracle.adfm.usemds='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [90] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [91] Skipping empty Property HandleName from System Default
    07/12/24 11:49:06 [92] Skipping empty Property Factory-Substitution-List from System Default
    07/12/24 11:49:06 [93] BC4J Property jbo.project='model.Model' -->(Configuration) from Client Environment
    07/12/24 11:49:06 [94] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [95] BC4J Property jbo.dofailover='false' -->(Configuration) from System Default
    07/12/24 11:49:06 [96] Skipping empty Property jbo.envinfoprovider from System Default
    07/12/24 11:49:06 [97] BC4J Property jbo.rowid_am_conn_name='ROWIDAM_DB' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [98] BC4J Property jbo.ampool.writecookietoclient='false' -->(Configuration) from System Default
    07/12/24 11:49:06 [99] BC4J Property jbo.doconnectionpooling='false' -->(Configuration) from System Default
    07/12/24 11:49:06 [100] BC4J Property jbo.recyclethreshold='10' -->(Configuration) from System Default
    07/12/24 11:49:06 [101] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [102] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [103] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(Configuration) from System Default
    07/12/24 11:49:06 [104] BC4J Property jbo.ampool.connectionstrategyclass='oracle.jbo.common.ampool.DefaultConnectionStrategy' -->(Configuration) from System Default
    07/12/24 11:49:06 [105] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(Configuration) from System Default
    07/12/24 11:49:06 [106] BC4J Property jbo.ampool.initpoolsize='0' -->(Configuration) from System Default
    07/12/24 11:49:06 [107] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(Configuration) from System Default
    07/12/24 11:49:06 [108] BC4J Property jbo.ampool.minavailablesize='5' -->(Configuration) from System Default
    07/12/24 11:49:06 [109] BC4J Property jbo.ampool.maxavailablesize='25' -->(Configuration) from System Default
    07/12/24 11:49:06 [110] BC4J Property jbo.ampool.maxinactiveage='600000' -->(Configuration) from System Default
    07/12/24 11:49:06 [111] BC4J Property jbo.ampool.timetolive='-1' -->(Configuration) from System Default
    07/12/24 11:49:06 [112] BC4J Property jbo.ampool.doampooling='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [113] BC4J Property jbo.ampool.issupportspassivation='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [114] BC4J Property jbo.ampool.isuseexclusive='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [115] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [116] BC4J Property jbo.saveforlater='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [117] BC4J Property jbo.snapshotstore.undo='persistent' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [118] BC4J Property jbo.maxpassivationstacksize='10' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [119] BC4J Property jbo.txn.handleafterpostexc='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [120] BC4J Property jbo.connectfailover='true' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [121] BC4J Property jbo.maxpoolcookieage='-1' -->(Configuration) from System Default
    07/12/24 11:49:06 [122] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl' -->(Configuration) from System Default
    07/12/24 11:49:06 [123] BC4J Property jbo.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [124] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [125] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [126] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [127] BC4J Property jbo.poolminavailablesize='5' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [128] BC4J Property jbo.poolmaxavailablesize='25' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [129] BC4J Property jbo.poolmaxinactiveage='600000' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [130] BC4J Property jbo.pooltimetolive='-1' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [131] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [132] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [133] BC4J Property jbo.viewlink.consistent='DEFAULT' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [134] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [135] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    07/12/24 11:49:06 [136] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    07/12/24 11:49:06 [137] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [138] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    07/12/24 11:49:06 [139] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    07/12/24 11:49:06 [140] BC4J Property jbo.sql92.LockTrailer='FOR UPDATE' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [141] BC4J Property jbo.jdbc.trace='true' -->(MetaObjectManager) from System Property
    07/12/24 11:49:06 [142] BC4J Property jbo.abstract.base.check='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [143] BC4J Property jbo.assoc.where.early.set='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [144] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [145] BC4J Property oracle.jbo.defineColumnLength='skipDefines' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [146] BC4J Property jbo.jdbc_bytes_conversion='jdbc' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [147] Skipping empty Property jbo.tmpdir from System Default
    07/12/24 11:49:06 [148] Skipping empty Property jbo.server.internal_connection from System Default
    07/12/24 11:49:06 [149] BC4J Property SessionClass='oracle.jbo.server.SessionImpl' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [150] Skipping empty Property TransactionFactory from System Default
    07/12/24 11:49:06 [151] Skipping empty Property jbo.def.mgr.listener from System Default
    07/12/24 11:49:06 [152] Skipping empty Property jbo.use.global.sub.map from System Default
    07/12/24 11:49:06 [153] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    07/12/24 11:49:06 [154] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [155] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [156] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [157] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [158] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [159] BC4J Property jbo.logging.trace.threshold='9' -->(Diagnostic) from System Property
    07/12/24 11:49:06 [160] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    07/12/24 11:49:06 [161] BC4J Property oracle.home='C:\JDeveloper' -->(Diagnostic) from System Property
    07/12/24 11:49:06 [162] Skipping empty Property oc4j.name from System Default
    07/12/24 11:49:06 [163] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [164] BC4J Property jbo.ejb.txntype='global' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [165] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [166] BC4J Property jbo.ejb.useampool='false' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [167] Skipping empty Property oracle.jbo.schema from System Default
    07/12/24 11:49:06 [168] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [169] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [170] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [171] Skipping empty Property ord.HttpTempDir from System Default
    07/12/24 11:49:06 [172] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [173] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [174] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [175] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [176] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [177] Skipping empty Property ord.rp.codebase from System Default
    07/12/24 11:49:06 [178] BC4J Property ord.wmp.plugins.page='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [179] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [180] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [181] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [182] BC4J Property jbo.security.loginmodule='oracle.security.jazn.oc4j.JAZNUserManager' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [183] Skipping empty Property jbo.security.config from System Default
    07/12/24 11:49:06 [184] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [185] BC4J Property jbo.domain.reopenblobstream='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [186] Copying unknown Client property (user='soso') to session
    07/12/24 11:49:06 [187] Copying unknown Client property (java.naming.factory.url.pkgs='oracle.oc4j.naming.url') to session
    07/12/24 11:49:06 [188] Copying unknown Client property (jbo.applicationmoduleclassname='model.tasks.TasksModule') to session
    07/12/24 11:49:06 [189] Copying unknown Client property (jbo.security.authorized='true') to session
    07/12/24 11:49:06 [190] Copying unknown Client property (JDBCName='XE') to session
    07/12/24 11:49:06 [191] Copying unknown Client property (name='TasksModuleLocal') to session
    07/12/24 11:49:06 [192] Copying unknown Client property (ApplicationName='model.tasks.TasksModule') to session
    07/12/24 11:49:06 [193] Copying unknown Client property (password='*****') to session
    07/12/24 11:49:06 [194] Copying unknown Client property (jbo.jndi.use_default_context='true') to session
    07/12/24 11:49:06 [195] Copying unknown Client property (DBconnection='jdbc:oracle:thin:@localhost:1521:XE') to session
    07/12/24 11:49:06 [196] WARNING: Unused property: sun.io.unicode.encoding='UnicodeLittle' found in System Property
    07/12/24 11:49:06 [197] WARNING: Unused property: java.version='1.5.0_11' found in System Property
    07/12/24 11:49:06 [198] WARNING: Unused property: java.awt.graphicsenv='sun.awt.Win32GraphicsEnvironment' found in System Property
    07/12/24 11:49:06 [199] WARNING: Unused property: jacorb.security.support_ssl='on' found in System Property
    07/12/24 11:49:06 [200] WARNING: Unused property: java.specification.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [201] WARNING: Unused property: os.version='5.1' found in System Property
    07/12/24 11:49:06 [202] WARNING: Unused property: sun.boot.class.path='C:\JDeveloper\jdk\jre\lib\rt.jar;C:\JDeveloper\jdk\jre\lib\i18n.jar;C:\JDeveloper\jdk\jre\lib\sunrsasign.jar;C:\JDeveloper\jdk\jre\lib\jsse.jar;C:\JDeveloper\jdk\jre\lib\jce.jar;C:\JDeveloper\jdk\jre\lib\charsets.jar;C:\JDeveloper\jdk\jre\classes' found in System Property
    07/12/24 11:49:06 [203] WARNING: Unused property: http.proxyHost='10.30.0.100' found in System Property
    07/12/24 11:49:06 [204] WARNING: Unused property: file.encoding='Cp1252' found in System Property
    07/12/24 11:49:06 [205] WARNING: Unused property: org.xml.sax.driver='oracle.xml.parser.v2.SAXParser' found in System Property
    07/12/24 11:49:06 [206] WARNING: Unused property: disable.checkForUpdate='true' found in System Property
    07/12/24 11:49:06 [207] WARNING: Unused property: https.proxyHost='10.30.0.100' found in System Property
    07/12/24 11:49:06 [208] WARNING: Unused property: oracle.containers.for.j2ee='true' found in System Property
    07/12/24 11:49:06 [209] WARNING: Unused property: oracle.security.jazn.persistence.enable='true' found in System Property
    07/12/24 11:49:06 [210] WARNING: Unused property: javax.management.builder.initial='oracle.oc4j.admin.jmx.server.Oc4jMBeanServerBuilder' found in System Property
    07/12/24 11:49:06 [211] WARNING: Unused property: https.proxyPort='80' found in System Property
    07/12/24 11:49:06 [212] WARNING: Unused property: oracle.dms.sensors='5' found in System Property
    07/12/24 11:49:06 [213] WARNING: Unused property: jacorb.security.ssl.client.required_options='0' found in System Property
    07/12/24 11:49:06 [214] WARNING: Unused property: java.io.tmpdir='C:\DOCUME~1\soso\LOCALS~1\Temp\' found in System Property
    07/12/24 11:49:06 [215] WARNING: Unused property: user.name='soso' found in System Property
    07/12/24 11:49:06 [216] WARNING: Unused property: awt.toolkit='sun.awt.windows.WToolkit' found in System Property
    07/12/24 11:49:06 [217] WARNING: Unused property: code.source.policy='index2' found in System Property
    07/12/24 11:49:06 [218] WARNING: Unused property: java.specification.name='Java Platform API Specification' found in System Property
    07/12/24 11:49:06 [219] WARNING: Unused property: oracle.j2ee.home='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j' found in System Property
    07/12/24 11:49:06 [220] WARNING: Unused property: oracle.j2ee.container.version='11.1.1.0.0' found in System Property
    07/12/24 11:49:06 [221] WARNING: Unused property: user.variant='' found in System Property
    07/12/24 11:49:06 [222] WARNING: Unused property: java.ext.dirs='C:\JDeveloper\jdk\jre\lib\ext' found in System Property
    07/12/24 11:49:06 [223] WARNING: Unused property: oracle.security.jazn.config='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\jazn.xml' found in System Property
    07/12/24 11:49:06 [224] WARNING: Unused property: jacorb.ssl.server_socket_factory='oracle.oc4j.corba.iiop.security.JacorbServerSecureSocketFactory' found in System Property
    07/12/24 11:49:06 [225] WARNING: Unused property: java.vm.specification.version='1.0' found in System Property
    07/12/24 11:49:06 [226] WARNING: Unused property: OAPort='5655' found in System Property
    07/12/24 11:49:06 [227] WARNING: Unused property: java.vm.name='Java HotSpot(TM) Client VM' found in System Property
    07/12/24 11:49:06 [228] WARNING: Unused property: org.omg.PortableInterceptor.ORBInitializerClass.oc4j_tx='oracle.oc4j.corba.jacorb.JacorbServerInterceptorInitializer' found in System Property
    07/12/24 11:49:06 [229] WARNING: Unused property: oracle.j2ee.http.socket.timeout='500' found in System Property
    07/12/24 11:49:06 [230] WARNING: Unused property: user.timezone='GMT+03:00' found in System Property
    07/12/24 11:49:06 [231] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [232] WARNING: Unused property: jacorb.interop.strict_check_on_tc_creation='off' found in System Property
    07/12/24 11:49:06 [233] WARNING: Unused property: ajp.connection.listener.state='down' found in System Property
    07/12/24 11:49:06 [234] WARNING: Unused property: class.load.log.level='CONFIG' found in System Property
    07/12/24 11:49:06 [235] WARNING: Unused property: sun.boot.library.path='C:\JDeveloper\jdk\jre\bin' found in System Property
    07/12/24 11:49:06 [236] WARNING: Unused property: line.separator='
    ' found in System Property
    07/12/24 11:49:06 [237] WARNING: Unused property: java.vm.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [238] WARNING: Unused property: java.security.policy='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\java2.policy' found in System Property
    07/12/24 11:49:06 [239] WARNING: Unused property: java.awt.printerjob='sun.awt.windows.WPrinterJob' found in System Property
    07/12/24 11:49:06 [240] WARNING: Unused property: sun.java.launcher='SUN_STANDARD' found in System Property
    07/12/24 11:49:06 [241] WARNING: Unused property: java.runtime.version='1.5.0_11-b03' found in System Property
    07/12/24 11:49:06 [242] WARNING: Unused property: java.endorsed.dirs='C:\JDeveloper\jdk\jre\lib\endorsed' found in System Property
    07/12/24 11:49:06 [243] WARNING: Unused property: java.library.path='C:\JDeveloper\jdk\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Program Files\CodeGear\RAD Studio\5.0\bin;C:\Documents and Settings\All Users\Documents\RAD Studio\5.0\Bpl;C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\;C:\Program Files\Borland\BDS\4.0\Bin;D:\oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;C:\Program Files\Borland\Delphi7\Bin;C:\Program Files\Borland\Delphi7\Projects\Bpl\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\Documents and Settings\soso\My Documents\Borland Studio Projects\Bpl' found in System Property
    07/12/24 11:49:06 [244] WARNING: Unused property: sun.cpu.isalist='' found in System Property
    07/12/24 11:49:06 [245] WARNING: Unused property: j2ee.home='C:\JDeveloper\j2ee\home' found in System Property
    07/12/24 11:49:06 [246] WARNING: Unused property: user.dir='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config' found in System Property
    07/12/24 11:49:06 [247] WARNING: Unused property: java.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [248] WARNING: Unused property: oracle.j2ee.container.name='Oracle Containers for J2EE 11g (11.1.1.0.0) ' found in System Property
    07/12/24 11:49:06 [249] WARNING: Unused property: java.class.path='C:\JDeveloper\j2ee\home\oc4j.jar;C:\JDeveloper\jdev\lib\jdev-oc4j-embedded.jar' found in System Property
    07/12/24 11:49:06 [250] WARNING: Unused property: user.language='en' found in System Property
    07/12/24 11:49:06 [251] WARNING: Unused property: sun.os.patch.level='Service Pack 2' found in System Property
    07/12/24 11:49:06 [252] WARNING: Unused property: jacorb.ssl.socket_factory='oracle.oc4j.corba.iiop.security.JacorbClientSecureSocketFactory' found in System Property
    07/12/24 11:49:06 [253] WARNING: Unused property: java.class.version='49.0' found in System Property
    07/12/24 11:49:06 [254] WARNING: Unused property: oracle.j2ee.dont.use.memory.archive='true' found in System Property
    07/12/24 11:49:06 [255] WARNING: Unused property: java.vm.version='1.5.0_11-b03' found in System Property
    07/12/24 11:49:06 [256] WARNING: Unused property: sun.desktop='windows' found in System Property
    07/12/24 11:49:06 [257] WARNING: Unused property: java.util.logging.manager='oracle.classloader.util.ApplicationLogManager' found in System Property
    07/12/24 11:49:06 [258] WARNING: Unused property: http.proxyPort='80' found in System Property
    07/12/24 11:49:06 [259] WARNING: Unused property: oracle.application.environment='development' found in System Property
    07/12/24 11:49:06 [260] WARNING: Unused property: java.home='C:\JDeveloper\jdk\jre' found in System Property
    07/12/24 11:49:06 [261] WARNING: Unused property: oracle.security.jps.config='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\jps-config.xml' found in System Property
    07/12/24 11:49:06 [262] WARNING: Unused property: java.net.preferIPv4Stack='true' found in System Property
    07/12/24 11:49:06 [263] WARNING: Unused property: java.vm.info='mixed mode' found in System Property
    07/12/24 11:49:06 [264] WARNING: Unused property: org.omg.CORBA.ORBSingletonClass='org.jacorb.orb.ORBSingleton' found in System Property
    07/12/24 11:49:06 [265] WARNING: Unused property: sun.arch.data.model='32' found in System Property
    07/12/24 11:49:06 [266] WARNING: Unused property: java.vm.specification.name='Java Virtual Machine Specification' found in System Property
    07/12/24 11:49:06 [267] WARNING: Unused property: sun.cpu.endian='little' found in System Property
    07/12/24 11:49:06 [268] WARNING: Unused property: sun.management.compiler='HotSpot Client Compiler' found in System Property
    07/12/24 11:49:06 [269] WARNING: Unused property: path.separator=';' found in System Property
    07/12/24 11:49:06 [270] WARNING: Unused property: oracle.security.enablejps='true' found in System Property
    07/12/24 11:49:06 [271] WARNING: Unused property: java.protocol.handler.pkgs='com.evermind.protocol' found in System Property
    07/12/24 11:49:06 [272] WARNING: Unused property: user.country='US' found in System Property
    07/12/24 11:49:06 [273] WARNING: Unused property: jacorb.orb.objectKeyMap.NameService='StandardNS/NameServer-POA/_root' found in System Property
    07/12/24 11:49:06 [274] WARNING: Unused property: jacorb.orb.objectKeyMap.INIT='StandardNS/NameServer-POA/_init' found in System Property
    07/12/24 11:49:06 [275] WARNING: Unused property: file.separator='\' found in System Property
    07/12/24 11:49:06 [276] WARNING: Unused property: os.arch='x86' found in System Property
    07/12/24 11:49:06 [277] WARNING: Unused property: org.omg.PortableInterceptor.ORBInitializerClass.oc4j_client='oracle.oc4j.corba.jacorb.JacorbClientInterceptorInitializer' found in System Property
    07/12/24 11:49:06 [278] WARNING: Unused property: file.encoding.pkg='sun.io' found in System Property
    07/12/24 11:49:06 [279] WARNING: Unused property: oracle.oc4j.http.socket.sendbuffersize='16384' found in System Property
    07/12/24 11:49:06 [280] WARNING: Unused property: org.omg.CORBA.ORBClass='org.jacorb.orb.ORB' found in System Property
    07/12/24 11:49:06 [281] WARNING: Unused property: jacorb.implname='StandardNS' found in System Property
    07/12/24 11:49:06 [282] WARNING: Unused property: https.nonProxyHosts='localhost|127.0.0.1' found in System Property
    07/12/24 11:49:06 [283] WARNING: Unused property: java.vendor.url.bug='http://java.sun.com/cgi-bin/bugreport.cgi' found in System Property
    07/12/24 11:49:06 [284] WARNING: Unused property: os.name='Windows XP' found in System Property
    07/12/24 11:49:06 [285] WARNING: Unused property: java.vendor.url='http://java.sun.com/' found in System Property
    07/12/24 11:49:06 [286] WARNING: Unused property: java.naming.factory.url.pkgs='oracle.oc4j.naming.url' found in System Property
    07/12/24 11:49:06 [287] WARNING: Unused property: http.nonProxyHosts='localhost|127.0.0.1' found in System Property
    07/12/24 11:49:06 [288] WARNING: Unused property: sun.jnu.encoding='Cp1252' found in System Property
    07/12/24 11:49:06 [289] WARNING: Unused property: oc4j.jms.usePersistenceLockFiles='false' found in System Property
    07/12/24 11:49:06 [290] WARNING: Unused property: java.vm.specification.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [291] WARNING: Unused property: jacorb.security.ssl.client.supported_options='64' found in System Property
    07/12/24 11:49:06 [292] WARNING: Unused property: java.runtime.name='Java(TM) 2 Runtime Environment, Standard Edition' found in System Property
    07/12/24 11:49:06 [293] WARNING: Unused property: user.home='C:\Documents and Settings\soso' found in System Property
    07/12/24 11:49:06 [294] WARNING: Unused property: java.specification.version='1.5' found in System Property
    07/12/24 11:49:06 [295] WARNING: Unused property: org.omg.PortableInterceptor.ORBInitializerClass.standard_init='org.jacorb.orb.standardInterceptors.IORInterceptorInitializer' found in System Property
    07/12/24 11:49:06 [296] }} finished loading BC4J properties
    07/12/24 11:49:06 [297] -----------------------------------------------------------
    07/12/24 11:49:06 Diagnostics: (Properties (re)loaded) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    07/12/24 11:49:06 [298] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:9
    07/12/24 11:49:06 [299] JavaVMVersion: 1.5.0_11-b03
    07/12/24 11:49:06 [300] JavaVMVendor: Sun Microsystems Inc.
    07/12/24 11:49:06 [301] JavaVMName: Java HotSpot(TM) Client VM
    07/12/24 11:49:06 [302] OperatingSystemName: Windows XP
    07/12/24 11:49:06 [303] OperatingSystemVersion: 5.1
    07/12/24 11:49:06 [304] OperatingSystemUsername: soso
    07/12/24 11:49:06 [305] jbo.323.compatible Flag: false, str: false
    07/12/24 11:49:06 [306] jbo.903.compatible Flag: false, str: false
    07/12/24 11:49:06 [307] oracle.jbo.usemds Flag: true, str: true
    07/12/24 11:49:06 [308] MDS parser created
    07/12/24 11:49:06 [309] Loading from individual XML files
    07/12/24 11:49:06 [310] Loading the Containees for the Package 'model.Model'.
    07/12/24 11:49:06 [311] Connected to Oracle JBO Server - Version: 11.1.1.47.96
    07/12/24 11:49:06 [312] {{ type: 'BC4J_CREATE_ROOTAM' Create Root Application Module 'model.tasks.TasksModule'
    07/12/24 11:49:06 [313] {{ type: 'METAOBJECT_LOAD' Loading meta-object: model.tasks.TasksModule
    07/12/24 11:49:06 [314] {{ type: 'METAOBJECT_LOAD' Loading meta-object: model.tasks.tasks
    07/12/24 11:49:06 [315] No XML file /model/tasks/tasks.xml for metaobject model.tasks.tasks
    07/12/24 11:49:06 [316] MDS error (MetadataNotFoundException): MDS-00013: No metadata found for metadata object "/model/tasks/tasks.xml"
    07/12/24 11:49:06 [317] }}+++ End Event5 null
    07/12/24 11:49:06 [318] Cannot Load parent Package : model.tasks.tasks
    07/12/24 11:49:06 [319] Business Object Browsing may be unavailable
    07/12/24 11:49:06 [320] }}+++ End Event4 null
    07/12/24 11:49:06 [321] {{ type: 'METAOBJECT_LOAD' Loading meta-object: model.tasks.FunctionsView
    07/12/24 11:49:06 [322] ViewObjectImpl's default fetch mode = 0
    07/12/24 11:49:06 [323] Loading Typemap entries from oracle.jbo.common.OracleTypeMapEntries
    07/12/24 11:49:06 [324] CSMessageBundle (language base) being initialized
    07/12/24 11:49:06 [325] OracleSQLBuilder reached getInterface
    07/12/24 11:49:06 [326] * * * Use jdbc with no defineColumnType calls * * *
    07/12/24 11:49:06 [327] Oracle SQL Builder Version 3.2.0.0.0
    07/12/24 11:49:06 [328] }}+++ End Event6 null
    07/12/24 11:49:06 [329] {{ type: 'BC4J_CREATE_VIEWOBJECT' Create ViewObject 'FunctionsView1'
    07/12/24 11:49:06 [330] }}+++ End Event7 null
    07/12/24 11:49:06 [331] Using DatabaseTransactionFactory implementation oracle.jbo.server.DatabaseTransactionFactory
    07/12/24 11:49:06 [332] DBTransactionImpl.mDefaultValidationThreshold is 10
    07/12/24 11:49:06 [333] mPCollUsePMgr is false
    07/12/24 11:49:06 [334] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    07/12/24 11:49:06 [335] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    07/12/24 11:49:06 [336] DBTransactionImpl Max Cursors is 50
    07/12/24 11:49:06 [337] Created root application module: 'model.tasks.TasksModule'
    07/12/24 11:49:06 [338] Locale is: 'en_US'
    07/12/24 11:49:06 [339] }}+++ End Event3 null
    07/12/24 11:49:06 [340] ApplicationPoolImpl.resourceStateChanged wasn't release related. No notify invoked.
    07/12/24 11:49:06 [341] Oracle SQLBuilder: Registered driver: oracle.jdbc.OracleDriver
    07/12/24 11:49:06 [342] import java.util.*; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [343] import java.sql.*; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [344] import java.io.*; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [345] public class JDBCCalls // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [346] {  // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [347] public Connection conn = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [348] public CallableStatement cStmt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [349] public PreparedStatement pStmt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [350] public Statement stmt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [351] public ResultSet rslt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [352] public static void main(String argv[]) // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [353] {  // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [354] DriverManager.registerDriver(new oracle.jdbc.OracleDriver()); // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [355] {{ type: 'JDBC_CONNECT' ADF Instrumented Event
    07/12/24 11:49:06 [356] Creating a new pool resource
    07/12/24 11:49:06 [357] Trying connection/2: url='jdbc:oracle:thin:@localhost:1521:XE' ...
    07/12/24 11:49:06 [358] conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE", /*properties*/); // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [359] }}+++ End Event8 null
    07/12/24 11:49:06 [360] **** DBTransactionImpl establishNewConnection
    07/12/24 11:49:06 [361] conn.setAutoCommit(false); // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [362] OracleSQLBuilderImpl.setSessionTimeZone failed...
    07/12/24 11:49:06 [363] X/Open SQL State is: 22008
    07/12/24 11:49:06 [364] java.sql.SQLException: ORA-01882: timezone region not found
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:77)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:111)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:472)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:422)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1089)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:192)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1021)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1347)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1963)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1913)
         at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:299)
         at oracle.jdbc.driver.PhysicalConnection.setSessionTimeZone(PhysicalConnection.java:11840)
         at oracle.jbo.server.OracleSQLBuilderImpl.setSessionTimeZone(OracleSQLBuilderImpl.java:4798)
         at oracle.jbo.server.DBTransactionImpl.refreshConnectionMetadata(DBTransactionImpl.java:4965)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1271)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:6326)
         at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:118)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:217)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:527)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:383)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:8155)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4299)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2370)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2156)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3023)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:487)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:815)
         at oracle.adf.model.binding.DCDataControl.setErrorHandler(DCDataControl.java:471)
         at oracle.jbo.uicli.binding.JUApplication.setErrorHandler(JUApplication.java:265)
         at oracle.adf.model.BindingContext.put(BindingContext.java:914)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:167)
         at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:673)
         at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:730)
         at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:650)
         at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:769)
         at oracle.adf.model.BindingContext.get(BindingContext.java:755)
         at oracle.adf.model.binding.DCBindingContainer.findDataControl(DCBindingContainer.java:1327)
         at oracle.adf.model.binding.DCIteratorBinding.initDataControl(DCIteratorBinding.java:2310)
         at oracle.adf.model.binding.DCIteratorBinding.getDataControl(DCIteratorBinding.java:2265)
         at oracle.adf.model.binding.DCIteratorBinding.getAttributeDefs(DCIteratorBinding.java:2933)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeDefs(JUCtrlValueBinding.java:420)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.findAttributeDef(JUCtrlValueBinding.java:552)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.lookupAttributeDef(JUCtrlValueBinding.java:522)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding$1JUCtrlHierHintsMap.internalGet(JUCtrlHierBinding.java:148)
         at oracle.jbo.common.JboAbstractMap.get(JboAbstractMap.java:58)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:64)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:117)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:70)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.getProperty(BaseColumnRenderer.java:768)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.layoutHeader(BaseColumnRenderer.java:374)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:81)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.layoutColumnHeader(BaseTableRenderer.java:791)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:275)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.ShowDetailItemRenderer._encodeChildren(ShowDetailItemRenderer.java:332)
         at oracle.adfinternal.view.faces.renderkit.rich.ShowDetailItemRenderer.encodeAll(ShowDetailItemRenderer.java:69)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:1246)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelAccordionRenderer._encodeDetailItem(PanelAccordionRenderer.java:1250)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelAccordionRenderer._encodeChildren(PanelAccordionRenderer.java:843)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelAccordionRenderer.encodeAll(PanelAccordionRenderer.java:268)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:1246)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:860)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderFirstPane(PanelSplitterRenderer.java:744)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:130)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:228)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:455)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:178)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:163)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:441)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1287)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:769)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:245)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:241)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:198)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:141)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:434)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:308)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:452)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:583)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:334)
         at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:942)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:843)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:646)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:614)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:405)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:168)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:149)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:877)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    07/12/24 11:49:06 [365] Successfully logged in
    07/12/24 11:49:06 [366] JDBCDriverVersion: 11.1.0.6.0-Production+
    07/12/24 11:49:06 [367] DatabaseProductName: Oracle
    07/12/24 11:49:06 [368] DatabaseProductVersion: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    07/12/24 11:49:06 [369] DBTransactionImpl initTransaction
    07/12/24 11:49:06 [370] MDS parser created
    07/12/24 11:49:06 [371] Reusing DC transform for TasksModuleDataControl_indexPageDef
    07/12/24 11:49:06 [372] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.jbo.uicli.binding.JUApplication )
    07/12/24 11:49:06 [373] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:06 [374] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:06 [375] Deferred refresh for :FunctionsView1Iterator
    07/12/24 11:49:06 [376] Executing and syncing on IteratorBinding.refresh from :FunctionsView1Iterator
    07/12/24 11:49:06 [377] Resolving VO:FunctionsView1 for iterator binding:FunctionsView1Iterator
    07/12/24 11:49:06 [378] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding, for FunctionsView1
    07/12/24 11:49:06 [379] Changing iterator range size from :1 to :25
    07/12/24 11:49:06 [380] releasing hier_binding..FunctionsView1
    07/12/24 11:49:06 [381] releasing hier_binding..FunctionsView1
    07/12/24 11:49:06 [382] releasing hier_binding..FunctionsView1
    07/12/24 11:49:06 [383] **** PoolMessage REQ ATTACH LWS
    07/12/24 11:49:06 [384] **** PoolMessage REQ DETACH LWS
    07/12/24 11:49:06 [385] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    07/12/24 11:49:06 [386] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:06 [387] valiateToken:Decompressed BC state:BCST:=0%V%=NFunctionsView1Iterator=-D-,
    07/12/24 11:49:06 [388] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:06 [389] Deferred refresh for :FunctionsView1Iterator
    07/12/24 11:49:06 [390] Executing and syncing on IteratorBinding.refresh from :FunctionsView1Iterator
    07/12/24 11:49:06 [391] DCUtil, returning:oracle.adf.model.binding.DCParameter, for TasksModuleDataControl
    07/12/24 11:49:06 [392] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    07/12/24 11:49:06 [393] Reusing a cached session application module instance
    07/12/24 11:49:06 [394] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:07 [395] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:07 [396] Resolving VO:FunctionsView1 for iterator binding:FunctionsView1Iterator
    07/12/24 11:49:07 [397] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding, for FunctionsView1
    07/12/24 11:49:07 [398] FunctionsView1 ViewRowSetImpl.execute caused params to be "un"changed
    07/12/24 11:49:07 [399] Column count: 4
    07/12/24 11:49:07 [400] {{ type: 'EXECUTE_QUERY' ViewObject executeQueryForCollection FunctionsView1
    07/12/24 11:49:07 [401] {{ type: 'VIEWOBJECT_GETSTATEMENT' Viewobject: FunctionsView1 getting prepared statement
    07/12/24 11:49:07 [402] ViewObject: FunctionsView1 Created new QUERY statement
    07/12/24 11:49:07 [403] FunctionsView1>#q computed SQLStmtBufLen: 211, actual=171, storing=201
    07/12/24 11:49:07 [404] SELECT T.FUNCTION_ID FUNCTION_ID,
    T.FUNCTION_NAME FUNCTION_NAME,
    T.FUNCTION_URL FUNCTION_URL,
    T.FUNCTION_PARAMS FUNCTION_PARAMS
    FROM TASKS.FUNCTIONS T
    07/12/24 11:49:07 [405] {{ type: 'JDBC_CREATE_STATEMENT' createPreparedStatement - prefetch size: 1
    07/12/24 11:49:07 [406] pStmt = conn.prepareStatement("SELECT T.FUNCTION_ID FUNCTION_ID,
    T.FUNCTION_NAME FUNCTION_NAME,
    T.FUNCTION_URL FUNCTION_URL,
    T.FUNCTION_PARAMS FUNCTION_PARAMS
    FROM TASKS.FUNCTIONS T"); // JBO-JDBC-INTERACT
    07/12/24 11:49:07 [407] }}+++ End Event11 null
    07/12/24 11:49:07 [408] }}+++ End Event10 ViewObject: Creating new QUERY statementSELECT T.FUNCTION_ID FUNCTION_ID,
    T.FUNCTION_NAME FUNCTION_NAME,
    T.FUNCTION_URL FUNCTION_URL,
    T.FUNCTION_PARAMS FUNCTION_PARAMS
    FROM TASKS.FUNCTIONS T
    07/12/24 11:49:07 [409] Bind params for ViewObject: FunctionsView1
    07/12/24 11:49:07 [410] {{ type: 'JDBC_EXECUTE' QueryCollection jdbc executeQuery FunctionsView1
    07/12/24 11:49:07 [411] }}+++ End Event12 null
    07/12/24 11:49:07 [412] ViewObject: FunctionsView1 close single-use prepared statements
    07/12/24 11:49:07 [413] pStmt.close(); // JBO-JDBC-INTERACT
    07/12/24 11:49:07 [414] QueryCollection.executeQuery failed...
    07/12/24 11:49:07 [415] java.sql.SQLException: ORA-01866: the datetime class is invalid
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:77)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:111)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:472)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:422)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1089)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:204)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:861)
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:945)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1303)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3556)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3608)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1341)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:993)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:722)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:5256)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:921)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1071)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:991)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:985)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:5176)
         at oracle.adf.model.bc4j.DCJboDataControl.executeIteratorBindingIfNeeded(DCJboDataControl.java:1307)
         at oracle.adf.model.binding.DCIteratorBinding.executeQueryIfNeeded(DCIteratorBinding.java:2037)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding.getRootNodeBinding(JUCtrlHierBinding.java:71)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager.getParent(RowDataManager.java:229)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager.getRowCount(RowDataManager.java:215)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.getRowCount(FacesCtrlHierBinding.java:414)
         at org.apache.myfaces.trinidad.component.UIXCollection.getRowCount(UIXCollection.java:337)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1080)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1008)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:633)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:255)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.t

    I don't know if is the same issue or solution. I'm using a linux (FC7) and setting the enviroment variable TZ='America/Buenos_Aires' works for me.

  • Error configuring BI Publisher 10.1.3.3.2 with OID LDAP Security Config

    I have installed BI Publisher Enterprise Standalone version 10.1.3.3.2 and am able to successfully log in as Administrator. I need to integrate BI Publisher with LDAP. I accessed the Security Configuration section and updated the LDAP information and set up the required XMLP_* groups in OID and assigned them to OID users as instructed in the BI Publisher users document, however the LDAP connection does not appear to be working. When I log in as a user that has been assigned to the XMLP_ADMIN or users that have been assigned to one of the other XMLP_* groups I get an error message:
    Error
    The server can not be used due to a configuration error, please contact the administrator. If you are the administrator, please consult BI Publisher user guide for proper configuration. Then when I click on the Error Details link I get the following information:
    oracle.apps.xdo.security.ValidateException
    I have verified that the LDAP information entered is correct. The values in my xmlp-server-config.xml are below:
    <property name="SUPERUSER_PASSWORD" value="value not included for security reasons"/>
    <property name="SUPERUSER_USERNAME" value="Administrator"/>
    <property name="GUEST_FOLDER" value="false"/>
    <property name="LDAP_PROVIDER_GROUP_ATTR_DESCRIPTION" value="description"/>
    <property name="SAW_SERVER" value=""/>
    <property name="SAW_USERNAME" value="Administrator"/>
    <property name="LDAP_PROVIDER_GROUP_ATTR_MEMBER" value="uniquemember"/>
    <property name="LDAP_PROVIDER_ADMIN_USERNAME" value="orcladmin"/>
    <property name="SAW_VERSION" value="v4"/>
    <property name="ENABLE_SUPERUSER" value="true"/>
    <property name="LDAP_PROVIDER_URL" value="ldap://stars.rogersgroupinc.com:389/"/>
    <property name="DEBUG_LEVEL" value="debug"/>
    <property name="LDAP_PROVIDER_GROUP_SEARCH" value="(&(objectclass=groupofuniquenames)(cn=*))"/>
    <property name="SAW_SESSION_TIMEOUT" value="90"/>
    <property name="SAW_PORT" value=""/>
    <property name="SAW_PROTOCOL" value="http"/>
    <property name="SECURITY_MODEL" value="LDAP"/>
    <property name="LDAP_PROVIDER_ADMIN_PASSWORD_ENC" value="value not included for security reasons"/>
    <property name="LDAP_PROVIDER_GROUP_SEARCH_ROOT" value="cn=groups,dc=rogersgroupinc,dc=com"/>
    <property name="SAW_PASSWORD_ENC" value="41671566C02C7880B95B49C7F8D40467"/>
    <property name="LDAP_PROVIDER_FACTORY" value="com.sun.jndi.ldap.LdapCtxFactory"/>
    <property name="LDAP_PROVIDER_USER_DN" value="cn=hrsyncuserstest,cn=users,dc=rogersgroupinc,dc=com"/>
    <property name="LDAP_PROVIDER_GROUP_ATTR_NAME" value="cn"/>
    I have opened an SR on this but so far have not gotten anywhere. Any assistance is appreciated. Thanks.
    New information: I found the following messages in the default_group~home~default_group~1.log file:
    When the service starts the following message appears -
    [021208_091215109][][STATEMENT] oracle.apps.xdo.servlet.resources.ResourceNotFoundException: /data/oracle/bipubtest/10.1.3/xmlp/XMLP/Admin/Security/pkiconfig.xml
    at oracle.apps.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)......
    and when I attempt to log in I get the following error:
    [021208_091704879][][EXCEPTION] javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:2985)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2931)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2732)
    at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2646)
    at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:283)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:193)
    at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:136)
    at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:66).......
    I have tested this user with ldapbind as shown below and
    I get a bind successful so I am not sure why I am getting the Invalid Credentials error:
    ldapbind -h stars.rogersgroupinc.com -p 389 -D "cn=droberts,cn=hrsyncuserstest,cn=users,dc=rogersgroupinc,dc=com" -w <password not included>
    Message was edited by:
    user571286
    I am disappointed that I have received no responses to this issue either on the forum or on my SR with Support. If I need to provide more detailed information in order to get assistance please let me know. Our project is at a standstill until this issue is corrected so I really need some assistance in finding a solution.
    Message was edited by:
    user571286

    Thank you SO MUCH, Dave! I had entered cn=orcladmin in the Security Configuration screen and did not notice that it was saved to the xmlp-server-config.xml as orcladmin... I manually editted the xmlp-server-config.xml file to cn=orcladmin and it appears to be working now!
    Why is the entry not saving correctly from the Security Configuration screen? Is this a bug?
    Thanks again, Dawna.

  • Setting up LDAP for authentication to portal:default property set named "ldap

    Hi
    I am trying to implement the LDAP authentication to WebLogic Portal .Iam went
    thru the docmentation ( http://edocs.bea.com/wlp/docs40/p13ndev/users.htm#1131824).It
    mentions using the default property set named "ldap" and deploying ldapprofile.jar.My
    quenstion is:
    -Is there a way to look into the property using EBCC
    - Apart from deploying,configuring the ldapprofile.jar,do I have to do any additional
    steps in order to make my portal(say,stockportal) authenticate users from LDAP?
    -If a create my own portal,should I create a similar "ldap" property set?If so,how.
    Any suggestions/help is appreciated.Thanks
    - Mike

    Thanks Dave.
    "David Anderson" <[email protected]> wrote:
    You should be able to view the property set for LDAP through the EBCC
    if you
    have the propertysetws.jar installed in your Portal domain. This provides
    the ability for the EBCC to retrieve property set information from your
    server.
    Dave
    "mike" <[email protected]> wrote in message
    news:[email protected]...
    Hi Adrian
    Thank you for the pointers.Much appreciate it.However,one questionstill
    persists.
    What is the significance of the property set "ldap" mentioned in the
    document(http://edocs.bea.com/wlp/docs40/p13ndev/users.htm#1131824).Where
    does this property set feature vis-a-vis setting up LDAP securityrealm;does it
    mater prior to/after the setting up as mentioned in the document pointeryou just
    gave .
    Is it sufficinet that i follow the procedure to set up the LDAP oris
    there more
    to post setting,like creating a property set (similar to "ldap" orcloning
    it)
    apaprt frpom deploying ldapprofile.jar.
    Thanks.
    - Mike
    "Adrian Fletcher" <[email protected]> wrote:
    Mike,
    The documentation that covers LDAP authentication is listed under
    Weblogic
    Server rather than Weblogic Portal.
    See Configuring the LDAP Security Realm in Managing Security
    (http://e-docs.bea.com/wls/docs61////adminguide/cnfgsec.html#1071872)
    Also take a look at the FAQ - Why can't I boot WebLogic Server whenusing
    the LDAP Security Realm?
    (http://e-docs.bea.com/wls/docs61//faq/security.html#25833)
    Hope this helps,
    Sincerely,
    Adrian.
    Adrian Fletcher.
    Senior Software Engineer,
    BEA Systems, Inc.
    Boulder, CO.
    email: [email protected]
    "mike" <[email protected]> wrote in message
    news:[email protected]...
    Hi
    I am trying to implement the LDAP authentication to WebLogic Portal.Iam
    went
    thru the docmentation
    http://edocs.bea.com/wlp/docs40/p13ndev/users.htm#1131824).It
    mentions using the default property set named "ldap" and deployingldapprofile.jar.My
    quenstion is:
    -Is there a way to look into the property using EBCC
    - Apart from deploying,configuring the ldapprofile.jar,do I have
    to
    do any
    additional
    steps in order to make my portal(say,stockportal) authenticate usersfrom
    LDAP?
    -If a create my own portal,should I create a similar "ldap" propertyset?If so,how.
    Any suggestions/help is appreciated.Thanks
    - Mike

Maybe you are looking for

  • User status linking between wbs and network

    Dear All, I got one requirement in which i am using user status at wbs level to block all the transactions. Now the  problem which i am getting is that even though i am maintaining the user status at wbs level, users are able to post the data on netw

  • Payment terms for Vendors

    Hi Friends, Can anybody tell me how o do the setting for payment terms as described below: 1. 30 days due from the date of posting 2. 45 days due from the date of posting 3. 60 days due from the date of posting 4. Payment against document Please advi

  • Apex_util.get_blob_file?

    Dears , i want to display the image in sidebar region , i make all steps : 1- add column in the table ( FLAG   blob , FILENAME  varchar2(4000), MIMTYPE  varchar2(4000), FILESIZE   varchar2(4000) )2- create new region html type and but in condition PL

  • Verity difference between CF5 and MX7

    Hi, I'm wondering where I can find what is different in MX7 verity's. I have some collections that worked in CF5 but they don't work in MX7 for a number of reasons (number of error reasons) Is there documentation on this? Thanks

  • Ipad video on TV

    I bought a VGA connector to watch TV shows we missed from ABC.com. Works fine for photos and Utube videos so the connection is good. But when I try a TV show or a video from Itune I get just a black screen. Tried on both our large Samsung LCD and sma