Tree does not work

When I take the tree component from the Flex 3 Comp Exp. and
put it into Flex and compile it does not work. I get an 1119 error.
"Access ----"

I figured out the problem.
Is there anyway to have have the user click a tree link and
have an image appear?

Similar Messages

  • Apex 4.0 tree does not work with more than 2 levels.

    When I have more than 2 levels in my tree, I only see the root node. The query works fine and returns 132 rows when I run it in SQL. It is just the tree that does not work.
    The same tree when built in 3.2 works fine.
    This is my tree query:
    select case when connect_by_isleaf = 1 then 0
    when level = 1 then 1
    else -1
    end as status,
    level,
    "NAME" as title,
    null as icon,
    "ID" as value,
    null as tooltip,
    null as link
    from (
    SELECT '__TOP_NODE__' id
    , NULL pid
    , 'BI Applications' name
    , '' link_id
    , null a1
         , null a2
    FROM dual
    1 b) BIA Modules
    UNION ALL
    SELECT '__MD_'||module_key id
    , '__TOP_NODE__' pid
    , module_name name
    , module_key link_id
    , '__MD__' a1
         , null a2
    FROM c_bia_module
    Level = 2
    Parent = Module
    Node = Functional Areas
    ID = '__FA_' prefixing functional area code
    UNION ALL
    SELECT '__FA_'||funcarea_key id
    , '__MD_'||module_key pid
    , funcarea_name name
    , funcarea_key link_id
    , '__FA__' a1
         , null a2
    FROM c_functional_area
    Level = 3
    Parent = Functional Area
    Node = Fact Group
    ID = '__FG_' prefixing fact group key
    UNION ALL
    SELECT '__FG_'||factgroup_key id
    , '__FA_'||funcarea_key pid
    , factgroup_name name
    , factgroup_key link_id
    , '__FG__' a1
         , null a2
    FROM c_fact_group
    start with "PID" is null
    connect by prior "ID" = "PID"
    order siblings by "NAME"
    If I reduce the query to just use two levels like:
    SELECT '__TOP_NODE__' id
    , NULL pid
    , 'BI Applications' name
    , '' link_id
    , null a1
         , null a2
    FROM dual
    1 b) BIA Modules
    UNION ALL
    SELECT '__MD_'||module_key id
    , '__TOP_NODE__' pid
    , module_name name
    , module_key link_id
    , '__MD__' a1
         , null a2
    FROM c_bia_module
    It works fine. Can somebody let me know what I am doing wrong? Is there a way to set the number of levels supported in 4.0?

    Hi Vidya,
    Thanks for posting your example. You may want to remove your workspace details from the previous posting, or at least update the password on the workspace. I've taken a look at your example and initially couldn't see anything wrong with your tree query. However, when I ran your query in SQL Workshop, it only returned one row, which would explain why you were only seeing one node in your tree! I've updated your query to use a WITH clause, and the tree is now working correctly. I believe you've hit an underlying database bug where the CONNECT BY query is only returning 1 row, when in fact it should return > 1 row. By re-writing the query to use a WITH clause, you can get around the problem.
    Regards,
    Hilary

  • Tree Multiple Selection does not work ???

    Hello, while migrating my application from Flex 1.5 to Flex
    2, I had the disgreement to discover that multiple selection in
    tree does not work anymore.
    I event tried the basic example found in Flex documentation
    (see below), which does not work
    Please, I need this feature in my application ! How can I do
    ? Is it normal ?
    Thanks

    Multiple selection in the tree was removed for the General
    release.. I am sure they plan to put it back as soon as possible.
    Tracy

  • Crystal 8.5 (Minimum function in the function tree does not appear to work)

    HI I would greatly appreciate some help with this problem I am having.
    I am creating a report in which there is a group of records printed . Within each record there could be any number of results related to that record of which I want to extract both the maximium and minimum value and print these. This bit is fine as I do this using the maximum and minimum function available within the summary function.
    However with each of these max and min values calculated and printed I then want to create a footer that adds all these max and min values up. (This is not immediately possible using the 'summary function' max and min values as they are not presented on the 'Field explorer' dialog box for selection.
    However I can individually using the maximum 'tree function' get the report to store these values so that I can do the calculations once I have got to the footer (as the  fields defined are accessible through the field explorer. But the same minimum function does not appear to extract a result (and no I do not have zeros in the data).
    Is there a known problem with the minimum function?
    Is there another way of getting this data?
    Thank you in advance
    seyviv

    Hi Debi, it would be easier for mean to demonstrate what I wnat/am doing in the report by use of data.
    I have a file with a list of sample results. There may be many results for one sample. ie
    Sample      Result Number      Result
    98-01          1                           3
    98-01          2                           5
    98-01          3                           6
    98-02          1                           3
    98-02          2                           7
    98-02          3                           9
    98-03          1                           4
    98-03          2                           5
    98-03          3                           11
    On the first page I want to see the max and min values across all samples listed for each result number. Then as a total value (once all the result numbers max and mins are displayed I want to perform a calculation on the max and min values displayed in the list (ie. max 4 + 7 -11  and for min 3 + 5 - 6)  
                          Result 
                          Number        Max           MIn 
                          1                    4                3
                          2                    7                5
                          3                    11              6
    Result of                             0                2
    Calculation
    I have been able to do this for the max values but the minimum function does not work.
    How I currently extract this data is that I use a 'Summary field ' to calculate the max and min values in the list. However to get the data for the calculation at the bottom I use the 'Formula fields' to extract the values listed for all the results for 'result number 1, 2 & 3' and then use the 'Function tree' to get the 'Maximum value for each individual result number and then finally do a calculation on the max values. However, the same minimum function does not appear to work.
    I hope this explains what my problem is.
    Thank you in advance of any suggestions you may have
    Regards
    Viv

  • Dynamic Height in Graphs does not work properly when the graph is in an list

    Help please,
    I have an report in SQL Server 2008 (SP1) Reporting Services which uses Dynamic Height to dynamically increase the size of the graph for the data. For a single dataset this works great!
    When I place this graph in a list/tablix (to display this graph on each group) things go bad... Only the first graph on every page is resized, all other graphs on the same page are equal in size of the first!
    When I place a pagebreak on the lists property all graphs are drawn fine!! But then I will have a page for every question in my data (which can be a lot!)
    What is going on here? Please help.

    Hi Jerry,
    thanks for your reply, but this does not work. The graphs are now all the same size (the size of the first one that is), and on the same page for that matter...
    It looks like the renderer calculates the value of the dynamic height only once on a page in stead of each graph. That's a bug in my opinion.
    Any suggestions on how to fix this?
    The inner workings of the report are like this: The data contains anwers from a survey by question, so i have a unknown count of answers with each question; I placed a list on my report with a groupingproperty on the question asked. On this list i place a horizontal bar-graph which must grow in height when it is too small. The dynamic height should be calculated like this =70 + (CountDistinct(AnswerValue.Value)*10) & "pt".
    When i place this calculation in a textbox, every item in the group is calculated correctly. Each graph is drawn, but the graphs are sized only to the size of the first graph on the page. When I place a pagebreak after each list-repeat (so i get each question on a seperate page) each graph is drawn correctly! This results however in more than 100 pages with all used for just a few centimeters (think about trees!).
    I'm using SQL 2008 / SSRS2008 with SP1 by the way ( without SP1, the behaviour is the same).
    Any more suggestions are appreciated.
    Danny

  • F1 help does not work in transaction SE80

    Hi Experts!
    A strange error occurred in our ECC 6.0 SR3 system (Windows 2003 SE 64 bit based, MaxDB 7.6.03.009). F1 help does not work in transaction SE80. Either nothing is shown when a keyword as SELECT is marked and F1 key is pressed, or a strange popup appears with title u201CABAP Keyword Documentationu201D and root u201CHit List of Index Searchu201D - [screenshot|http://i43.tinypic.com/aox7d.jpg]. No matter what I choose in the tree it always closes, no help is displayed and SAP GUI returns in the main screen in transaction SE80.
    I found this thread [Re: SAP F1 Help and SE80 issue|Re: SAP F1 Help and SE80 issue] but it did not help me. This is my system information:
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon за Windows
       Final Release 710
       7100.3.12.1042
       1046700
    SYSTEM INFORMATION:
       Operating system: Microsoft Windows XP 5.1 (2600) Service Pack 3
       Internet Explorer v. 7.0
    Application help works perfect - I checked the configuration in transaction SR13 too.
    Any ideas will be appreciated!
    Thanks!

    Hi Presu,
    As it is seen from my previous post SAP GUI version is 7.10 SP 12. I downloaded the last SP 13 and installed it. Now SAP GUI information looks like this:
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon за Windows
       Final Release 710
       7100.3.13.1045
       1063164
    The problem is not resolved.
    This happens from different workstations with different versions and sub-versions of SAP GUI, so the problem is not caused from the GUI I think. It happens using different logon users and in all SAP system cliens.
    Any other suggestions?
    Best regards,
    Pit

  • I look for integrated in the legend bloc of diaporama, a widget such as "Accordion" for, with a click, or passing with mouse, open a new legend for each photo. I tried with "Accordion" of Muse, it does not work. I tried copy/paste, mais no result. The wid

    Question.
    I look for integrated in the legend bloc of diaporama, a widget such as "Accordion" for, with a click, or passing with mouse, open a new legend for each photo. I tried with "Accordion" of Muse, it does not work. I tried copy/paste, mais no result. The widget disappear in bloc legend. disparaître. Have you one solution?
    Thank you,
    Loïc

    Accordion or Tabbed panel should to it, with click and open container.
    Please provide site url where this does not work, also if you can provide an example where we can see the exact action then it would help us.
    Thanks,
    Sanjit

  • Early Adopter release : Extract DDL for tables does not work

    Hi,
    just had a look at Raptor - really nice tool - easy install - could be a replacement for SQLnavigator for us. One or two things I noticed though ...
    1)
    Export->DDL for tables does not work throws following error
    java.lang.ClassNotFoundException: oracle.dbtools.raptor.dialogs.actions.TableDMLExport
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at oracle.ideimpl.IdeClassLoader.loadClass(IdeClassLoader.java:140)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at oracle.dbtools.raptor.dialogs.BasicObjectModifier.launch(BasicObjectModifier.java:142)
         at oracle.dbtools.raptor.dialogs.BasicObjectModifier.handleEvent(BasicObjectModifier.java:210)
         at oracle.dbtools.raptor.dialogs.actions.XMLBasedObjectAction$DefaultController.handleEvent(XMLBasedObjectAction.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:530)
         at oracle.ide.controller.IdeAction$1.run(IdeAction.java:785)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:499)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    and 2)
    when I click on a package body - I get "loading ..." below it but it never puts the
    procedure names in and the "loading ..."message stays in the tree view - however you do get to see the packages in the source window.
    Realise this is very much a work in progress and am grateful to see an early release such as this. Looking forward to the production release.
    Best regards,
    David.

    OK thanks for looking ....you've obviously got the fixes on your to do lists
    Noticed that the SQL tab when you select an object works fine - displays the
    DDL for the object
    Do you think you'll have functionality so you can select many objects (shift left click) and
    then create a DDL script for them? It looks like you can do this for all objects in a schema but
    the ability to select a subset of objects in a schema would be very useful for our DBA's.
    Couldn't see any good reason for keeping using SQLNavigator
    Many congratulations on producing such a useful tool.
    Kind regards,
    David.

  • Performance Point Decomposition Tree does not Showing the Any Dimensions

    Hi,
     Actually i have created three (dimension) filters in Dashboard which is associated with Analytic grid. Among those three dimension two of them in Analytic Chart 'Bottom axis' remaining one dimension in Analytic Chart 'Background'.
    Now the decomposition tree is not working. but i would moved BackGround dimension to bottom axis then then decomposition  tree is working fine.
    Why? Does decomposition tree not work, if any dimension would be in analytic chart 'BackGround'.
    Can anyone tell answer for issue? Any work around for this?
    It would be great if any one would give a correct Solution. Thanks in Advance.
    Thanks & Regards
    Poomani Sankaran

    One  observation which is, if All the filter Dimensions would be in bottom axis  then the Analytic grid Decomposition Tree is working fine. If i would keep any one of dimension in 'Back Ground' then it is not showing any dimension in Decomposition
    Tree.

  • Huawei e3276 does not work on OSX 10.10 please help

    After I installed Yosemite Huawei e3276 does not work on OSX 10.10, please advise any work around for this issue - Thank you

    Found a very easy solution online.  Just download the software here and install. works immediately.
    http://translate.google.com/translate?hl=en&sl=sv&u=http://www.tre.se/privat/kun dservice/teknisk-support/Mobilt-bredband/Uppgradering-modemrouter/Yosemite/&prev =search

  • Only posted values for Navigation does not work

    Hi,
    I have a problem where all master data is shown in the input help for a variable, even when the setting for the info object is to show only posted values.
    In a WEB template I have tree reports using tree different data providers. The setting in the web template is to show the same variable only once and that works. The setting of the info objects is to show only posted values. That does not work!
    When using the input help for a variable, all master data shows, not only the poster values in the data providers.
    When unchecking the setting Display Same Variable Only Once (MELT_VARBLES) the variables appears tree times each and the input help works as expected. It shows only posted values.
    Any experience of this?
    Best Regards
    Kent

    Hi Kent,
    If you build several queries on different infoproviders, then put them into one web template or workbook. Variables from different queries with the same technical name will get merged in variable screen (Set parameter MERGE_VARIABLES=True in web template property. Set "Display Duplicated Variables Only Once" in workbook settings for variables).
    This means, that it is not possible to decide which infoprovider the variable is based on. The provider is unknown to the system when doing F4 help so that D mode is not possible since D mode [Only Values in InfoProvider]  is also infoprovider dependent. So only M mode ['Values in Master Data Table'] is possible.
    In such merge variable situation, the authorizated values in F4 help is also retrieved without specific infoprovider.
    Regards,
    Nishant

  • [svn:cairngorm3:] 21174: Landmark does not work under complex situations

    Revision: 21174
    Revision: 21174
    Author:   [email protected]
    Date:     2011-04-29 11:21:00 -0700 (Fri, 29 Apr 2011)
    Log Message:
    Landmark does not work under complex situations
    https://bugs.adobe.com/jira/browse/CGM-39
    Ticket Links:
        http://bugs.adobe.com/jira/browse/CGM-39
    Modified Paths:
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/core/EnterAndExi tInvoker.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/waypoint/Waypoin tHandler.as

    Hi John,
    1) I like that the new model adds parameterization. It's cleaner than pulling in parameters from pre-set variables. However, the given example didn't actually make much use of it. The only non-constant parameter multiply-used in the example is the "table" variable. Seems like a lot of work for not a lot of gain, at least in this case?
    2) I am cautious that this new template/model condenses the paradigm sooo much, that it is no longer clear where XPath is involved vs straight constant tag names. Yes, Adobe's example is overly-expanded but that's common in code meant to be a demonstration.
    3) I also am cautious that the example intermingles direct node creation into the XPath search/processing chain. I've learned to be VERY careful with this. It only can work when the changes made do not interfere with the rule processing. In my model, I simply avoid it completely (by not making node-position or node-add/remove/move changes until after tree parsing is complete.) This will always be a safe model.
    Bottom line: while I very much appreciate the parameterization and lintability (is that a word? Sure makes sense to me )... I think I would still define each rule separately rather than bring them all together as an inline array in the rule processing call. To me it seems sooo condensed that the XPath meaning can become lost. (Would someone recognize that //para/section-head is actually an XPath statement that could (in another situation) be //para/* or //para/following-siblings::* ... while some of the other strings are exact-match tag names?)
    I realize this is all a matter of style... my preference: clarity for the future reader, particularly when the future reader is me a year later who forgot what all those parameters and embedded methods were all about ...
    Blessings,
    Pete

  • 4.1EA. Open Body button in toolbar does not work

    Hi, All!
    4.1EA. Open Body button in toolbar does not work. In object tree click on some Package. Next - in toolbar click on OpenBody button. Body is not opened.

    Ow, that's a bad one, good catch.
    As a workaround the 'gutter blue arrow' hyperlinks DO work.
    Once I DO manage to get the body open, the button works for me without fail, even after an application restart. And I'm able to open other package bodies. So I can reproduce this bug once, but only once.
    Do you see the same?

  • Printer does not work on Windows 10

    I cannot install the driver. HP Print and Scan Doctor Does not hlep, neither does the HP Support Assistant and i even downloaded direct 8.1 driver from a third party, which does not work as well. Please Help Me.
    How do i install the printer driver so that windows is able to recognise it. As before i had installed all of it on 8.1 and could even use the 'Netgear Wirless Router Driver' with it.

    Figured it myself.
    For some reason, the tool does NOT support source locations on ReFS formatted drives. Move the D:\ISOFOLDER location to NTFS formatted drive, and the tool works flawless:
    E:\Images>bin\oscdimg.exe -bootdata:2#p0,e,b"D:\ISOFOLDER\boot\etfsboot.com"#pEF,e,b"D:\ISOFOLDER\efi\Microsoft\boot\efisys.bin" -o -h -m -u2 -udfver102 -lwinsetup D:\ISOFOLDER D:\TEMP\test.iso
    OSCDIMG 2.56 CD-ROM and DVD-ROM Premastering Utility
    Copyright (C) Microsoft, 1993-2012. All rights reserved.
    Licensed only for producing Microsoft authorized content.
    Scanning source tree (500 files in 15 directories)
    Scanning source tree complete (950 files in 95 directories)
    Computing directory information complete
    Image file is 3591864320 bytes (before optimization)
    Writing 950 files in 95 directories to D:\TEMP\test.iso
    100% complete
    Storage optimization saved 45 files, 16310272 bytes (1% of image)
    After optimization, image file is 3577761792 bytes
    Space saved because of embedding, sparseness or optimization = 16310272
    Done
    Well this is the world we live in And these are the hands we're given...

  • WLEC does not work

    Hello,
    after trying unsuccessfully for several hours to get WLEC to work on
    WLS 5.1, I think I might ask this group.
    It simply does not work.
    I have installed the latest service pack (6) and I'm now trying to
    install the WLEC version included therein. I've merged the files from
    wlec_classes.jar (some classes in the package
    com.beasys.CORBA.pool.weblogic) into the $WLS_HOME/classes tree,
    copied the files wleorb.jar and wlepool.jar to $WLS_HOME/lib and added
    them to the appropriate class paths as described in the
    README_wlec.txt file that comes with WLEC. WLS is started as follows:
    /opt/JAVA/JDK/1.2.2/bin/java -ms64m -mx64m -classpath ./lib/weblogic510sp6boot.jar:./lib/wleorb.jar:./classes/boot:./eval/cloudscape/lib/cloudscape.jar -Dweblogic.class.path=./lib/weblogic510sp6.jar:./lib/wlepool.jar:./license:./classes:./lib/weblogicaux.jar:./myserver/serverclasses -Dweblogic.home=. -Djava.security.manager -Djava.security.policy=$WLSHOME/weblogic.policy -Dweblogic.system.name=myserver -Djava.naming.ldap.version=2 weblogic.Server
    (README_wlec.txt does not document the order in which the jar files
    should appear in the class paths..?)
    Furthermore, I've defined an IIOP connection pool in
    weblogic.properties like this:
    weblogic.CORBA.connectionPool.myIIOPConnectionPool=\
    appaddrlist=//wlehost:3800,\
    failoverlist=//wlehost:3800,\
    minpoolsize=4,\
    maxpoolsize=7,\
    domainname=test
    A WLE 5.1 instance is waiting for IIOP connections at wlehost:3800,
    providing the WLE domain "test".
    WLS starts up and functions flawlessly, but the IIOP connection pool
    doesn't show up in the WebLogic Console (the "IIOP Connection Pool
    Manager" branch is missing completely). An attempt to connect to the
    pool with the following code:
    com.beasys.Tobj_Bootstrap tBootstrap
    = com.beasys.BootstrapFactory.getClientContext("myIIOPConnectionPool")
    results in a NullPointerException in getClientContext.
    I can connect to the running WLE server directly, bypassing the pool,
    like this:
    String[] args = new String[0];
    org.omg.CORBA.ORB tOrb = org.omg.CORBA.ORB.init(args, null);
    com.beasys.Tobj_Bootstrap tBootstrap
    = new com.beasys.Tobj_Bootstrap(tOrb,"//wlehost:3800");
    This works, which proves that WLE is not the problem, right?
    The java version is:
    $ /opt/JAVA/JDK/1.2.2/bin/java -version
    java version "1.2.2"
    Classic VM (build JDK-1.2.2_006, green threads, sunwjit)
    $
    (I've tried 1.3, too)
    running on:
    $ uname -a
    SunOS bird 5.8 Generic_108528-01 sun4u sparc
    $
    WLE runs on:
    wlehost:~$ uname -a
    AIX wlehost 3 4 002013145700
    wlehost:~$
    What might be the problem here?
    Thanks,
    Olaf
    Olaf Klischat | Fraunhofer ISST
    Oberfeldstrasse 132 | Mollstrasse 1
    12683 Berlin, Germany | 10178 Berlin, Germany
    phone: +49 30 54986231 | mail: [email protected]

    Craig Perez <[email protected]> writes:
    WLS starts up and functions flawlessly, but the IIOP connection pool
    doesn't show up in the WebLogic Console (the "IIOP Connection Pool
    Manager" branch is missing completely). An attempt to connect to the
    pool with the following code:
    com.beasys.Tobj_Bootstrap tBootstrap
    = com.beasys.BootstrapFactory.getClientContext("myIIOPConnectionPool")
    results in a NullPointerException in getClientContext.Have you examined your WLS startup log very carefully to look
    for any connection pool errors?Yes I have. I've searched (case-insensitively) for "iiop" and the
    hostname of the host running WLE ("wlehost"), and there was always
    only one log entry per WLS session:
    Mon Dec 04 16:36:50 CET 2000:<I> <Config> Property name: 'weblogic.CORBA.connectionPool', current value: '[weblogic.CORBA.connectionPool.myIIOPConnectionPool=appaddrlist=//wlehost:3800,failoverlist=//wlehost:3800,minpoolsize=4,maxpoolsize=7,domainname=test ]'
    This seems to be a generic notification that the property was read and
    that the property name
    "weblogic.CORBA.connectionPool.myIIOPConnectionPool" was recognized
    (otherwise there would have been an "undeclared property" error
    message, right?).
    How would a log message look which notifies the user that an IIOP
    conection pool has been set up successfully?
    When I delete or rename the file wleorb.jar or remove it from the
    classpath, I get the following exception when WLS boots:
    Tue Dec 05 15:42:11 CET 2000:<E> <WebLogicServer> Failed startup on com.beasys.CORBA.pool.weblogic.PoolStartUp
    java.lang.NoClassDefFoundError: com/beasys/CORBA/pool/ConnectionPoolManagerImpl
    at java.lang.Class.getMethod0(Native Method)
    at java.lang.Class.getMethod(Class.java:888)
    at weblogic.t3.srvr.T3Srvr.callPoolStartupMehtod(T3Srvr.java:1444)
    at weblogic.t3.srvr.T3Srvr.startIIOPConnectionPools(T3Srvr.java:1422)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1262)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    (note the spelling mistake ("callPoolStartupMehtod"). Could this be
    part of the problem?)
    When I remove the connection pool entry from weblogic.properties, the
    exception disappears.
    I examined the file $WLS_HOME/myserver/weblogic.log as well as the
    standard output and standard error of the WLS process. Are there any
    other places to look at?
    I'm still suspecting the order in which the JAR files appear in my
    system class path and weblogic class path. As pointed out in my
    previous posting, the order is as follows:
    system class path:
    ./lib/weblogic510sp6boot.jar:./lib/wleorb.jar:./classes/boot:./eval/cloudscape/lib/cloudscape.jar
    weblogic.class.path:
    ./lib/weblogic510sp6.jar:./lib/wlepool.jar:./license:./classes:./lib/weblogicaux.jar:./myserver/serverclasses
    Is anything wrong with that? I could try out all permutations, but
    that would take a while....
    Could anybody post the class paths of a WLS configuration with a
    working WLEC?
    Thank you,
    Olaf
    Olaf Klischat | Fraunhofer ISST
    Oberfeldstrasse 132 | Mollstrasse 1
    12683 Berlin, Germany | 10178 Berlin, Germany
    phone: +49 30 54986231 | mail: [email protected]

Maybe you are looking for

  • Adobe Creative Cloud CC - Adobe, Were you in a Hurry ?

    Hi Adobe, were you in a rush releasing this code ????? I have never ever worked with a suite of software so buggy and full of old bugs. I think I may have to seriously look elsewhere for professional software. 1) You DO NOT address old bugs but keep

  • Backing up iPad "Notes"

    I manually backed-up iPad to PC running Windows and then reset iPad to factory default erasing everything. I am able to find photos and videos in the back up location, but I cannot find "Note" files; are they backed up the same way as photos and vide

  • Error During view report

    Migrating from HP(FORMS/WEB) to Win-2000 box.I am getting this error during view any report/log file through application. Need Help. App-FND-01632 : Cann't open file "/u09/logdir/concr.mgr" Cause :[Routine] encountered an error when attempting to ope

  • Multiple proxy services Polling on same Table

    Hi All, I have 2 proxy services in OSB Polling on the same status column in orders table.Proxy1 polls on status 'N' ad Proxy 2 polls on status 'Z'.However I see that only one proxy service is polling the orders table.Even though there are records wit

  • Use only the BPM components of the suite

    Where can I download the complete installer of 11g(with the virtual machine option)? There is posible just use the BPM components and for instance the WSO2 suite for SOA? thanks Ray