Java loggers - append

I'm am looking for a way to append to an already existing xml-style log file generated by java's logger class. Here is my setup:
1 program runs as a thread, the thread loops every 5 minutes. If a fatal exception is caught, an entry is made in the xml file via java's logger class.
another program monitors the first program. If a fatal exception causes the above program to exit, this monitor program restarts it. Therefore, I need a way to append to the already existing log file in the above program so it is not overwriten if this monitoring program restarts it.
Oh, and please do not tell me to use "new FileHandler(LOG_FN, true)". This does not solve my problem. If you look carefully, you'll see that each time a handler is added to the logger, a new XML header is ALSO appended to the file. Obviously, I do not want this.

There are other cases when this monitor would want to restart an individual program/process. Such as if the process is hung in an infinite loop or is no longer responding for some reason. This monitor will be in charge of checking over 140 programs, some of which were written poorly, before my time. Unfortunatly, I can't re-write 140 programs in one day, so, until I get around to re-writing them all, this is my solution.
Now, back to my question...

Similar Messages

  • Java write/append to each line of a text file

    I have spent numerous hours trying to figure out what I am doing wrong. If anyone more experienced could tell me what is wrong with my code.
    I have a very simple text file with 5 lines:
    line1
    line2
    line3
    line4
    line5
    All I am trying to do is append some string to the end of each of those lines. Everytime I run my code, it erases all content but does not write/append anything to the file. Any help is greatly appreciated.
    Thanks! I am about to throw this monitor out the window!!
    package Chapter6;
    import java.io.*;
    public class fileNavigation2 {
         public static void main(String[] args) {
              File dir = new File("C:\\testing");
              System.out.println(dir.isDirectory());
              try {
                   File file = new File(dir, "Test.txt");
                   FileReader fr = new FileReader(file);
                   BufferedReader br = new BufferedReader(fr);
                   FileWriter fw = new FileWriter(file);
                   BufferedWriter bw = new BufferedWriter(fw);
                   String s = "Add1,";
                   String s2 = "Add2\n";
                   String str;
                   while((str = br.readLine()) != null) {
                   StringBuffer sb = new StringBuffer(str);
                   sb.append(s + s2);
                   String y = sb.toString();
                   System.out.println(sb);
                   System.out.println("Appending");
                   bw.write(y);
                   bw.close();
                   System.out.println("Done");
              }catch(IOException e) {}
    }

    First, thanks a lot for your feedback. The code makes a lot of sense but it does not update the content of my Test.txt file.
    I only edited the line of code that creates the new file so that it could find the location of the file.
    Scanner file = new Scanner(new File("C:\\testing",fileName));==============================
    The code now looks like:
    import java.io.*;
    import java.util.*;
    public class Main {
        static void appendTo(String fileName, String[] newLines) throws IOException {
            List<String> allLines = getLinesFrom(fileName);
            for(String line : newLines) {
                allLines.add(line);
            writeLinesTo(fileName, allLines);
        static List<String> getLinesFrom(String fileName) throws IOException {
            List<String> lines = new ArrayList<String>();
            Scanner file = new Scanner(new File("C:\\testing",fileName));
            while(file.hasNextLine()) {
                lines.add(file.nextLine());
            file.close();
            System.out.println(lines);
            return lines;
        static void writeLinesTo(String fileName, List<String> lines) throws IOException {
            BufferedWriter out = new BufferedWriter(new FileWriter(fileName));
            for(String line : lines) {
                out.write(line);
                out.write(System.getProperty("line.separator"));
            out.close();
        public static void main(String[] args) {
            String fileName = "Test.txt";
            String[] extraLines = {
                    "a new line",
                    "and yet another new line"
            try {
                appendTo(fileName, extraLines);
                System.out.println("Done.");
            } catch (IOException e) {
                e.printStackTrace();
    }Again, thanks for the help.

  • Java/html: append information to html file at top, head tag

    I've the following code, however I need to append to a specific location in the html doc, mainly the top, between the <head> tags. How can this be accomlished?
    import java.io.*;
    public class WriteToHTML {
    * @param args
    public static void main(String[] args) {
    try
    // This line sets up a document to write to
    BufferedWriter document = new BufferedWriter(new FileWriter("testingHTML.html", true));
    // Write to the document
    document.append("Info");
    System.out.println("done");
    // When you are done, close the document
    document.close();
    catch (IOException e)
    System.out.println("Error: " + e);
    }

    Don't cross-post. It's rude.
    http://forums.sun.com/thread.jspa?threadID=5336231

  • Urgent: How to find out the size in bytes of java object

    Hi Experts,
    We've a requirement that we need to find out the size of a java object at run time, is there a direct java API to get the size of a composite object in memory?
    Here is my requirement: We are adding string objects (which is an xml string of considerable size) into a List. After reaching certain size limit (lets say 5MB) of the list i need to put this data into DB as a CLOB. So every time I add a string object to the list, I need to see if the total size of the list exceeds the limit and if yes, flush the results into DB.
    I am not sure if java has a direct API for this, if not what is the beast way to do it, it s critical requirement for us.
    It would be really great if someone could help us out.
    Thank you,
    -Shibu.

    >
    We've a requirement that we need to find out the size of a java object at run time, is there a direct java API to get the size of a composite object in memory?
    Here is my requirement: We are adding string objects (which is an xml string of considerable size) into a List. After reaching certain size limit (lets say 5MB) of the list i need to put this data into DB as a CLOB. So every time I add a string object to the list, I need to see if the total size of the list exceeds the limit and if yes, flush the results into DB.
    I am not sure if java has a direct API for this, if not what is the beast way to do it, it s critical requirement for us.
    It would be really great if someone could help us out.
    >
    Could you explain your actual requirement a little more fully.
    1. Is each individual string a separate XML string? Or is it just a fragment? Why would you just concatenate them together into a CLOB? That won't produce valid XML and it won't let you easily separate the pieces again later. So provide a simple example showing some strings and how you need to manipulate them.
    2. Are you using these xml strings in Java at all? Or are you just loading them into the database?
    For example if you are just loading them into the database you don't need to create a list. Just create a CLOB in Java and append each string to the CLOB. Before you append each one you can check to see if the new string will put you over your length limit. If it will then you write the CLOB to the database, empty the CLOB and start appending again to the new clob instance.
    If you explain what you are really trying to do we might be able to suggest some better ways to do it.

  • Problem with  java.lang.reflect in Eclipse

    I'm just reading java tutorial about that library, but when i'm trying to execute those example program's e.g
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Type;
    import static java.lang.System.out;
    public class ConstructorSift {
        public static void main(String... args) {
         try {
             Class<?> cArg = Class.forName(args[1]);
             Class<?> c = Class.forName(args[0]);
             Constructor[] allConstructors = c.getDeclaredConstructors();
             for (Constructor ctor : allConstructors) {
              Class<?>[] pType  = ctor.getParameterTypes();
              for (int i = 0; i < pType.length; i++) {
                  if (pType.equals(cArg)) {
                   out.format("%s%n", ctor.toGenericString());
                   Type[] gpType = ctor.getGenericParameterTypes();
                   for (int j = 0; j < gpType.length; j++) {
                   char ch = (pType[j].equals(cArg) ? '*' : ' ');
                   out.format("%7c%s[%d]: %s%n", ch,
                        "GenericParameterType", j, gpType[j]);
                   break;
    // production code should handle this exception more gracefully
         } catch (ClassNotFoundException x) {
         x.printStackTrace();
    in Eclipse i've got nothing in my output console :/
    no errors, no warnings, no text ..... (it was terminated correctly)
    Can somebody tell me what should I do to make it work properly ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi,
    In program arguments, you should not have ConstructorSift but only java.util.Formatter and java.util.Locale.
    (Eclipse : run dialog | arguments tab | program arguments)
    This is the output you should get:
    $ java ConstructorSift java.util.Formatter java.util.Locale
    public java.util.Formatter(java.util.Locale)
    *GenericParameterType[0]: class java.util.Locale
    public java.util.Formatter(java.lang.Appendable,java.util.Locale)
    GenericParameterType[0]: interface java.lang.Appendable
    *GenericParameterType[1]: class java.util.Locale
    public java.util.Formatter(java.lang.String,java.lang.String,java.util.Locale) throws java.io.FileNotFoundException,java.io.UnsupportedEncodingException
    GenericParameterType[0]: class java.lang.String
    GenericParameterType[1]: class java.lang.String
    *GenericParameterType[2]: class java.util.Locale
    public java.util.Formatter(java.io.File,java.lang.String,java.util.Locale) throws java.io.FileNotFoundException,java.io.UnsupportedEncodingException
    GenericParameterType[0]: class java.io.File
    GenericParameterType[1]: class java.lang.String
    *GenericParameterType[2]: class java.util.Locale
    public java.util.Formatter(java.io.OutputStream,java.lang.String,java.util.Locale) throws java.io.UnsupportedEncodingException
    GenericParameterType[0]: class java.io.OutputStream
    GenericParameterType[1]: class java.lang.String
    *GenericParameterType[2]: class java.util.Locale
    Hope that help,
    Jack

  • I've 2 versions of Java installed! How can I uninstall Apple's Java 6?

    This is where I'm at
    * Updated from Snow Leopard to Mountain Lion
    * Installed Oracle Java 7 update 7 dmg
    * Misread an out of date OS X Daily blog where I got this Terminal command java -version. It lead me to think Java 7 wasn't installed
    * Installed Apple Java 6 via the Java Prefs app. Thought this would somehow lead to a Java 7 upgrade along the way.
    * Realised that Oracle Java 7 was installed fine the first time, but java -version doesn't work with it !!
    * Now I have 2 versions of Java installed!
    * I reinstalled Java 7 (this time using 7 update 10) hoping it would remove Apple's Java 6 but it didn't remove it.
    *For some reason too the old Java Prefs app has been automatically deleted too, so I can't switch Apple Java 6 off.
    Confirmation that I have 2 Java versions installed
    If I type the terminal command java -version it says I have Apple Java 6 installed.
    If I open LibreOffice/Preferences/Java it says I have Apple Java 6 installed.
    If I open Play Station 3 Media Server it says it's using Apple Java 6.
    If I open some other Java .jar apps like JOSM it says it's using Oracle Java 7
    Oracle has a FAQ that recomnds deleteing old versions of Java, but very helpfully only gives instructions for Windows.
    How can I uninstall Apple's Java 6?
    Thanks

    Reinstall the OS …  meaning reinstall OS X?!   Is that not a bit over the top?
    >"BTW, do note that all you're really doing is changing the Java Runtime Environment component and not Java."
    At this stage I don't have a clue what I doing !!
    In the past week and a half I have had a belly-full of Java name permutations. What kind of sick, twisted mind came up with Java naming scheme: Just take the word Java and append two or three letters to it using every permutation possible, throw in a few numbers for good measure, and then when discussing it just use the generic term Java… that'll really catch 'em out.
    …Java SE, Jave RE, Java JDK,Java Platform, Apple Java 6, Oracle Java 7, Java 1.6.0_27, Java 1.7.0_10, Java 6, Java 7, ….. not to mention Java FX, Java DB, Java ME, Java EE, Java DST…

  • Using query strings works on every browser except IE7

    I made this file to pass the variables through the url and
    then use aps or java to append the variables either to the
    flashvars in ex: <param name="flashvars"
    value="'+document.location.search+'" or to the filename in ex:
    <embed src="swf/cpk_prod_kids.swf'+document.location.search+'"
    width="544" height="397" Both methods work on all browsers EXCEPT
    IE7 ???? below is all the Actionscript in the file: in advance
    thanks for any and all help!!!!
    // variables to hold common info....
    aspPage = "cpk_prod_kids.aspx?";
    sectionNSub ="&section=products&subs=mtcs";
    //watch the commercial link...
    wtcLink = "
    http://www.playalongtoys.com";
    // Product array
    //change values to store each file name / location. Add to
    the array as needed.
    prod_a = new Array;
    prod_a[0] = "productSWF/1.swf";// number of products in
    array. This feature is currently unused....
    prod_a[1] = "productSWF/1.swf";
    prod_a[2] = "productSWF/2.swf";
    prod_a[3] = "productSWF/3.swf";
    prod_a[4] = "productSWF/4.swf";
    prod_a[5] = "productSWF/5.swf";
    prod_a[6] = "productSWF/1.swf";
    prod_a[7] = "productSWF/2.swf";
    prod_a[8] = "productSWF/3.swf";
    prod_a[9] = "productSWF/4.swf";
    prod_a[10] = "productSWF/5.swf";
    prod_a[11] = "productSWF/1.swf";
    prod_a[12] = "productSWF/2.swf";
    //sets the dynamic text
    dt = new Array;
    dt[0] = 1;
    dt[1] = "this is text1";
    dt[2] = "this is text 2";
    dt[3] = "Lorem ipsum dolor sit amet, ";
    defaultText = "this is the standard text, either the correct
    text has not loaded or will load in a moment";
    // button functions
    button_mc.button1_but.onPress = function()
    getURL(aspPage+"p=1","_self");
    button_mc.button2_but.onPress = function()
    getURL(aspPage+"p=2","_self");
    button_mc.button3_but.onPress = function()
    getURL(aspPage+"p=3","_self");
    button_mc.button4_but.onPress = function()
    getURL(aspPage+"p=4","_self");
    button_mc.button5_but.onPress = function()
    getURL(aspPage+"p=5","_self");
    button_mc.button6_but.onPress = function()
    getURL(aspPage+"p=6","_self");
    button_mc.button7_but.onPress = function()
    getURL(aspPage+"p=7","_self");
    button_mc.button8_but.onPress = function()
    getURL(aspPage+"p=8","_self");
    // DO NOT EDIT BELOW THIS LINE THERE IS NO REASON YOU SHOULD
    HAVE TO !!!!!! *
    onLoad = function()
    productState();
    description();
    moveScroller();
    onEnterFrame = function()
    moveScroller();
    function productState()
    p = parseInt(p, 10); // parses the string "1" to a integer
    001 ( 10 = base 10)
    if( p >0) // if p = 0 then it defaults to the else
    statement below
    loader_mc.loadMovie(prod_a[p]); // places the parsed value
    of "p" in the selection for the array
    else
    loader_mc.loadMovie(prod_a[1]); // default product to load.
    // calculates the necessarry movement of the scroller when
    the page refreshes...
    numItems = .25;
    movement= p*numItems;
    pDivided = p/4;
    neededMove = parseInt(pDivided, 10);
    if (movement> neededMove)
    A= parseInt(movement, 10);
    //A= A-1;
    leftMove(281* A);
    else if (movement = neededMove)
    A= parseInt(movement, 10);
    A= A-1;
    leftMove(281* A);
    delete p; // deletes the var, if it is left in 2 p variables
    will be passed and the application won't work.
    // end Load logic
    function moveScroller()
    // generates temp vars to hold basic information and makes
    it easier to change later if necessary.
    tempA = button_mc._width;
    tempB = button_mc._x; // distance traveled where it started
    - how far it moved
    tempC = 168.5;
    tempD = tempB - 446.5; // distance traveled where it started
    - how far it moved - initial position and its length.
    tempE = tempC - tempA; // where it started - total length
    // Below actuates the buttons on the Left side of the
    screen.
    if(button_mc._x > 160)
    aRight_but._visible=false;
    aRight_mc._visible=false;
    aRight_mc._alpha=0;
    else
    aRight_but._visible=true;
    aRight_mc._visible=true;
    aRight_mc._alpha=100;
    // below statements make the button on the right actuate
    if(tempE < tempD)
    aLeft_but._visible=true;
    aLeft_mc._visible=true;
    aLeft_mc._alpha=100;
    else
    aLeft_but._visible=false;
    aLeft_mc._visible=false;
    aLeft_mc._alpha=0;
    wtcDisplay();
    // script to move the scroll left or right
    aLeft_but.onPress = function ()
    leftMove(281);
    aRight_but.onPress = function ()
    if(button_mc._x < 169)
    if( button_mc._width >= (button_mc._width-281))
    rightMove(281);
    function leftMove(distance)
    button_mc._x = (button_mc._x - distance);
    function rightMove(distance)
    button_mc._x = (button_mc._x + distance);
    // watch the commercials button
    wtc_mc.wtc_but.onPress = function()
    getURL(wtcLink,"_blank");
    function description()
    d = parseInt(d, 10);
    if(d>0)
    dynamicText = dt[d];
    else
    dynamicText = defaultText;
    function wtcDisplay()
    if(wtc == "yes")
    _root.wtc_mc._visible = true;
    _root.wtc_mc._alpha = 100;
    else
    _root.wtc_mc._visible = false;
    _root.wtc_mc._alpha = 0;
    // obligitory stop command.
    stop();

    Thanks for the advice, I have tried Javascript to resolve the
    problem. In response to the <object> tag missing, There is
    one I just included a snippet of the html code sorry for the
    confusion. Due to deadlines I abandoned the functionality of the
    script and "dumbed" down the script. Thank you again for the help

  • How to add icons and images for my forms ?

    Hi everyone:
    My forms were upgraded from 6i to 11g. Then all customized images and icons can not display.
    Icon filename in property palette of forms and menus are the filename without path.
    Following http://docs.oracle.com/cd/B14099_19/web.1012/b14032/configure009.htm
    I set default.icons.iconpath to be a absolute path to all icons folder in Registry.dat, and make imageBase= documentbase in formsweb.cfg, doesn't work.
    What is the DocumentBase folder ? Is it $ORACLE_HOME/forms ??
    I also tried imageBase= codebase, package all images( gif files.) in a jar, store it into the forms/java directory. append icons.jar to archive parameter in formsweb.cfg. still doesn't work.
    What's the solution steps to do this please ?

    Frank,
    The preferred method of using Icons is to deploy them in a signed .jar file. The Oracle document you references is a little vague in this respect (paragraph 4.9.2.1). If you are going to use a jar file for your icons, you need to do the following:
    1) You must digitally sign the jar file (preferably with a Trusted Certificate - such as Verisign). You can use your own keystore, but you will get a Trusted Certificate warning in your application.
    2) Upload your <YOUR_ICON_FILE_NAME>.jar file to the %FORMS_HOME%/forms/java directory. If you use the default installation, the %FORMS_HOME% directory is typically "/Oracle_FRHome1".
    3) Update the default.env to include the full path to the jar file in the CLASSPATH variable.
    4) Then you need to update the following variables in the formsweb.cfg :
    4.1) archive=frmall.jar, <YOUR_ICON_FILE_NAME>.jar
    4.2) imageBase=codebase
    After making these changes I recommend restarting your WLS_FORMS instance to ensure the changes takes affect.
    Hope this helps.
    Craig...

  • Oci8 driver for JDBC on Redhat 6.1

    I have oracle 8.1.5.0.1 Enterprise server loaded on RedHat linux 6.1 and i am trying to access database through jdbc. When I am trying to execute one of the compiled class say Employee.class provided in the JDBC samples directory using OCI* driver it is coming up with an error libocijdbc8.so can not open shared object file: no such file or directory. This libocijdbc8.so file can not be found on the disk. Can some one please provide me leads where can find this driver? ar Oracle's website or somewhere else?. Any help in this regard will be greatly appreciated.
    Thanks
    Naidu

    One more ething I tried this with both jdk1.1.6_v5 and jdk1.1.8 and my class path is pointing to the $Oracle_Home/jdbc/lib/classes111.zip?. ANd the the Example i am using is Employee.java and appending my database name NaiduT2.
    Thanks
    Naidu

  • Converting double to strings

    I'm having a problem in getting my double to convert to a string, here's my code so far.
         public void calculatePayments()
              double paymentAmount;
              double monthlyInterestRate = (Double.parseDouble(interestBox.getText())/12)/100;
              double amountOfLoan = Double.parseDouble(balanceBox.getText());
              double numberOfPayments = Double.parseDouble(yearsBox.getText()) * 12;
              paymentAmount = (amountOfLoan * monthlyInterestRate) / (1 - Math.pow(1/(1 + monthlyInterestRate),numberOfPayments));
              Double.toString(paymentAmount);
              tableBox.append(paymentAmount);
    And here's the error message I get:
    ProgramInterface.java:134: append(java.lang.String) in javax.swing.JTextArea cannot be applied to (double)
              tableBox.append(paymentAmount);
    As always, help is appreciated.

    This line returns a String but has no affect on paymentAmount.
    Double.toString(paymentAmount);To covert the double to String you can save the return in a variable
    String s = Double.toString(paymentAmount);
    tableBox.append(s);or combine them
    tableBox.append(Double.toString(paymentAmount));

  • Platform921_generic.jar hangs on Solaris 10 x86

    I downloaded platform921_generic.jar for Soalris x86 platform. The installer hangs in either graphic mode or console mode. Did anyone have installed Weblogic 9.2.1 for soalris 10 on x86 successfully? If so, please let me know how you did. I appreciate any thoughts.
    My install stucks at
    Loaded com.bea.plateng.common.util.Execute from file:/apps/regress/tmp/platform921_generic.jar]
    Here are the complete verbose output:
    528:regress@sol-nona-tc/apps/regress/jdk1.5.0_06/bin>./java -jar /apps/regress/tmp/platform921_generic.jar -mode=console -Djava.io.tmpdir=/apps/regress/tmp
    Extracting 0%....................................................................................................100%
    <------------------------ BEA Installer - BEA Products ----------------------->
    Welcome:
    This installer will guide you through the installation of BEA Products. Type
    "Next" or enter to proceed to the next prompt. If you want to change data
    entered previously, type "Previous". You may quit the installer at any time by typing "Exit".
    Enter [Exit][Next]>
    <------------------------ BEA Installer - BEA Products ----------------------->
    BEA Systems License Agreement:
    BEA SYSTEMS, INC. SOFTWARE LICENSE AGREEMENT
    USE OF SOFTWARE ORDERED FROM BEA SYSTEMS, INC. ("BEA") IS PROVIDED ONLY UNDER
    LICENSE FROM BEA. PLEASE READ THE FOLLOWING LICENSE CAREFULLY AND INDICATE YOUR ACCEPTANCE BY CLICKING THE ACCEPTANCE BOX. CERTAIN CAPITALIZED TERMS ARE
    DEFINED IN SECTION 11.
    1. LICENSE TERMS
    a. WebLogic SDK Use. The terms of this Section 1(a) are applicable to you if
    you have registered as a WebLogic SDK customer. Subject to the terms of this
    Agreement, BEA grants to you a non-exclusive, non-transferable, royalty-free
    license to use WebLogic SDK solely for Development Use and Scale-Limited
    Personal Use for the number of users and/or developers and the number of CPU's, Servers and/or at the Sites, as specified at the time of registration. Third
    party software products or modules supplied by BEA, if any, may be used solely
    with the Software. All rights not specifically granted to you herein are
    retained by BEA.
    b. WebLogic SDK Pro Use. The terms of this Section 1(b) are applicable to you
    if you have registered as a WebLogic SDK Pro customer. Subject to the terms of
    this Agreement, BEA grants to you a non-exclusive, non-transferable,
    Use above value or select another option:
    1 - Yes, I agree with the terms of the license
    2 - No, I do not agree with the terms of the license
    Enter option number to select OR [Down][Exit][Previous]> 1
    <------------------------ BEA Installer - BEA Products ----------------------->
    Choose BEA Home Directory:
    "BEA Home" = [Enter new value or use default "/home/regress/bea"]
    Enter new BEA Home OR [Exit][Previous][Next]> /apps/regress/bea921
    <------------------------ BEA Installer - BEA Products ----------------------->
    Choose BEA Home Directory:
    "BEA Home" = [apps/regress/bea921]
    Use above value or select another option:
    1 - Enter new BEA Home
    2 - Change to default [home/regress/bea]
    Enter option number to select OR [Exit][Previous][Next]>
    -Done-jar.info: Enable INFO level diagnostics. These show high-level operations inside the One-JAR support code.
    -Done-jar.verbose: Enable VERBOSE level diagnostics. These show in tedious detail the operations inside One-JAR, including class-loading and resource resolution.
    549:regress@sol-nona-tc/apps/regress/jdk1.5.0_06/bin>./java -jar -verbose /apps/regress/tmp/platform921_generic.jar -mode=console -log=/apps/regress/tmp/bea_install.log -Djava.io.tmpdir=/apps/regress/tmp
    [Opened /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Opened /apps/regress/jdk1.5.0_06/jre/lib/jsse.jar]
    [Opened /apps/regress/jdk1.5.0_06/jre/lib/jce.jar]
    [Opened /apps/regress/jdk1.5.0_06/jre/lib/charsets.jar]
    [Loaded java.lang.Object from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.Serializable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Comparable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.CharSequence from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.String from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.GenericDeclaration from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Type from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.AnnotatedElement from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Class from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Cloneable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ClassLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.System from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Throwable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Error from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ThreadDeath from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Exception from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.RuntimeException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.ProtectionDomain from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.AccessControlContext from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ClassNotFoundException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.LinkageError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.NoClassDefFoundError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ClassCastException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ArrayStoreException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.VirtualMachineError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.OutOfMemoryError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StackOverflowError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.Reference from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.SoftReference from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.WeakReference from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.FinalReference from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.PhantomReference from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.Finalizer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Runnable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Thread from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Thread$UncaughtExceptionHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ThreadGroup from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Map from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Dictionary from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Hashtable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Properties from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.AccessibleObject from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Member from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Field from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Method from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Constructor from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.MagicAccessorImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.MethodAccessor from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.MethodAccessorImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.ConstructorAccessor from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.ConstructorAccessorImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.DelegatingClassLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.ConstantPool from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Iterable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.List from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.RandomAccess from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.AbstractCollection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.AbstractList from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Vector from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Appendable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.AbstractStringBuilder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StringBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StackTraceElement from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.Buffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.AtomicLong from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.AtomicLongCSImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Boolean from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Character from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Number from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Float from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Double from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Byte from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Short from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Integer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Long from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.management.MemoryUsage from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.NullPointerException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ArithmeticException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StrictMath from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamField from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Comparator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.String$CaseInsensitiveComparator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.Guard from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.Permission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.BasicPermission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.RuntimePermission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.AbstractMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.SoftCache from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.ReferenceQueue from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.ReferenceQueue$Null from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.ReferenceQueue$Lock from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.HashMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamClass from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.PrivilegedAction from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.ReflectionFactory$GetReflectionFactoryAction from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.AccessController from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Stack from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.ReflectionFactory from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Map$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.HashMap$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.IncompatibleClassChangeError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.NoSuchMethodError from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.annotation.Annotation from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.ReflectPermission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.Reference$Lock from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.Reference$ReferenceHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ref.Finalizer$FinalizerThread from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Enumeration from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Hashtable$EmptyEnumerator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Iterator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Hashtable$EmptyIterator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Hashtable$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Version from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.Closeable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.InputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FileInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FileDescriptor from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.Flushable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.OutputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FileOutputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FilterInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.BufferedInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.concurrent.atomic.AtomicReferenceFieldUpdater from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.concurrent.atomic.AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Unsafe from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.Reflection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collections from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Random from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.concurrent.atomic.AtomicLong from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Class$3 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Modifier from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.LangReflectAccess from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.reflect.ReflectAccess from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Set from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.AbstractSet from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collections$EmptySet from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collections$EmptyList from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collections$EmptyMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collections$ReverseComparator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Collections$SynchronizedMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.misc.ReflectUtil from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FilterOutputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.PrintStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.BufferedOutputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.Writer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.OutputStreamWriter from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StreamEncoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.io.Converters from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.security.action.GetPropertyAction from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.Charset from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.spi.CharsetProvider from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.FastCharsetProvider from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StandardCharsets from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.util.PreHashedMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StandardCharsets$Aliases from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StandardCharsets$Classes from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StandardCharsets$Cache from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ThreadLocal from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StringBuilder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.HistoricallyNamedCharset from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.ISO_8859_1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Class$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.ReflectionFactory$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.NativeConstructorAccessorImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.reflect.DelegatingConstructorAccessorImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.VM from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StreamEncoder$CharsetSE from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CharsetEncoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.ISO_8859_1$Encoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CodingErrorAction from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CharsetDecoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.ISO_8859_1$Decoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.ByteBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.HeapByteBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.Bits from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Runtime from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.ByteOrder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Readable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.CharBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.HeapCharBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CoderResult from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CoderResult$Cache from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CoderResult$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.charset.CoderResult$2 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.Surrogate$Parser from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.Surrogate from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.BufferedWriter from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.File from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FileSystem from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.UnixFileSystem from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ExpiringCache from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.LinkedHashMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ExpiringCache$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.LinkedHashMap$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ClassLoader$3 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ExpiringCache$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ClassLoader$NativeLibrary from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Terminator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.SignalHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Terminator$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Signal from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.NativeSignalHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.JavaLangAccess from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.System$2 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.SharedSecrets from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Compiler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Compiler$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.URLStreamHandlerFactory from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$Factory from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.SecureClassLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.URLClassLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$ExtClassLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.security.util.Debug from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.StringTokenizer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.PrivilegedExceptionAction from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$ExtClassLoader$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.net.www.ParseUtil from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.BitSet from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.URL from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Locale from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.CharacterDataLatin1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.Parts from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.URLStreamHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.net.www.protocol.file.Handler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.HashSet from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.ArrayList from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.net.www.protocol.jar.Handler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$AppClassLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$AppClassLoader$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.SystemClassLoaderAction from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipConstants from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.JarFile from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.JavaUtilJarAccess from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.JavaUtilJarAccessImpl from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StringCoding from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ThreadLocal$ThreadLocalMap from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.ThreadLocal$ThreadLocalMap$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StringCoding$StringDecoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.StringCoding$CharsetSD from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$ZipCloser from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.ch.DirectBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.MappedByteBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.nio.DirectByteBuffer from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Cleaner from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipEntry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.JarEntry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.JarFile$JarFileEntry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.DataInput from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.DataInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.ByteBuffered from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$ZipFileInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$MappedZipFileInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.InflaterInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$2 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.zip.Inflater from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.Manifest from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ByteArrayInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.Attributes from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.Manifest$FastInputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.UTF_8 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.UTF_8$Decoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.Surrogate$Generator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.Attributes$Name from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.ASCIICaseInsensitiveComparator from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Math from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.jar.JarVerifier from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.ByteArrayOutputStream from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.URLClassLoader$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$3 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$Loader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$JarLoader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.FileURLMapper from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.JarIndex from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.ExtensionDependency from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.PrivilegedActionException from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.Reader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.BufferedReader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.InputStreamReader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StreamDecoder from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.nio.cs.StreamDecoder$CharsetSD from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.Queue from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.AbstractSequentialList from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.LinkedList from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.LinkedList$Entry from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.Resource from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$JarLoader$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.lang.Package from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.CodeSource from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.PermissionCollection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.Permissions from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.URLConnection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.net.www.URLConnection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.net.www.protocol.file.FileURLConnection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.ContentHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.net.UnknownContentHandler from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded sun.net.www.MessageHeader from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FilePermission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FilePermission$1 from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.io.FilePermissionCollection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.AllPermission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.UnresolvedPermission from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.BasicPermissionCollection from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.Principal from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.security.cert.Certificate from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded java.util.EventListener from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded com.bea.plateng.wizard.event.WizardActionListener from file:/apps/regress/tmp/platform921_generic.jar]
    [Loaded com.bea.plateng.wizard.tasks.ITaskObserver from file:/apps/regress/tmp/platform921_generic.jar]
    [Loaded com.bea.plateng.wizard.IWizardController from file:/apps/regress/tmp/platform921_generic.jar]
    [Loaded java.util.Observable from /apps/regress/jdk1.5.0_06/jre/lib/rt.jar]
    [Loaded com.bea.plateng.wizard.WizardController from file:/apps/regress/tmp/platform921_generic.jar]
    [Loaded com.bea.plateng.common.CommonException from file:/apps/regress/tmp/platform921_generic.jar]
    [Loaded com.bea.plateng.wizard.WizardDefinitionException from file:/apps/regress/tmp/platform921_generic.jar]
    [Loaded com.bea                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  

    Interesting,
    we have the same problem on SunOS Generic_118833-36 on V440, V445, V240, V245, but not on an old E420, and not on a T2000.
    We upgraded them with patch cluster to Generic_138888-07, but it has not changed anything:
    E420 and T2000 are stable, the Fire-Vxxx have problem, each has its own "problem interval": one system 1.5 days, two systems 10 days, one every 3 months.
    The problem is: NFS/TCP is suddenly dead. Then all NFS mounts, e.g. a manual mount, is hung with "NFS server not responding". A reboot helps.
    We have added proto=udp to the mount options. No more problems since.
    Permanent mounts, without Automounter, would certainly work, too.
    But IMHO there is nothing wrong with Automounter itself, but the hanging occurs e.g. after 4000 NFS mounts, and Automounter is the enabler for that.

  • [JSP compiler] How to change it

    Hi, I get an error when compiling a HUGE JSP page!!! Code is too large for try block!
    So, I just want to change the compiler ...
    I'm using the 10.1.3.1.0 and each time, I get that error:
    OracleJSP : oracle.jsp.provider.JspCompileException:
    I have try to use "javaccmd" param-init but it is deprecated (you can find it here: http://download-east.oracle.com/docs/cd/B32110_01/web.1013/b28951.pdf ).
    So I'm stuck, I get borring, nothing work... OC4J WON'T work!!! All others work.
    How can I change the JSP compiler please, it's the LAST THING I MUST DONE FOR SCHOOL!
    What must I use instead of "javaccmd" param-init ?
    Thanks very very very much...

    Here is the debug output... :
    OracleJSP : oracle.jsp.provider.JspCompileException:
    Erreurs de compilation :D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java
    [parsing started D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java]
    [parsing completed 641ms]
    [search path for source files: [C:\Java\jdk1.5.0_11\jre\lib\rt.jar, C:\Java\jdk1.5.0_11\jre\lib\jsse.jar, C:\Java\jdk1.5.0_11\jre\lib\jce.jar, C:\Java\jdk1.5.0_11\jre\lib\charsets.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\activation.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\clibwrapper_jiio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\dnsns.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_codec.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_core.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_imageio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb1-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-xjc.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jsr173_api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\localedata.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\mlibwrapper_jai.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunjce_provider.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunpkcs11.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\which4j.jar, D:\oc4j_extended_101310\j2ee\home\oc4j-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-unsupported-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\activation.jar, D:\oc4j_extended_101310\j2ee\home\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\lib\persistence.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb30.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax77.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax88.jar, D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar, D:\oc4j_extended_101310\j2ee\home\lib\jms.jar, D:\oc4j_extended_101310\j2ee\home\lib\jta.jar, D:\oc4j_extended_101310\j2ee\home\lib\jacc-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\connector.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmx_remote_api.jar, D:\oc4j_extended_101310\j2ee\home\lib\jax-qname-namespace.jar, D:\oc4j_extended_101310\webservices\lib\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\jaxrpc-api.jar, D:\oc4j_extended_101310\webservices\lib\saaj-api.jar, D:\oc4j_extended_101310\webservices\lib\jws-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-oc4j.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-client.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-server.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-schemas.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j_orb.jar, D:\oc4j_extended_101310\j2ee\home\lib\iiop_support.jar, D:\oc4j_extended_101310\j2ee\home\lib\orbbase.jar, D:\oc4j_extended_101310\j2ee\home\iiop_gen_bin.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmxcluster.jar, D:\oc4j_extended_101310\j2ee\home\jaccprovider.jar, D:\oc4j_extended_101310\j2ee\home\jacc-spi.jar, D:\oc4j_extended_101310\j2ee\home\jazncore.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\oraclepki.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ojpse.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\j2ee\home\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\dms.jar, D:\oc4j_extended_101310\javavm\lib\jasper.zip, D:\oc4j_extended_101310\j2ee\home\lib\adminclient.jar, D:\oc4j_extended_101310\opmn\lib\optic.jar, D:\oc4j_extended_101310\j2ee\home\jazn.jar, D:\oc4j_extended_101310\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\webservices\lib\wsserver.jar, D:\oc4j_extended_101310\webservices\lib\wsif.jar, D:\oc4j_extended_101310\webservices\lib\orawsmetadata.jar, D:\oc4j_extended_101310\webservices\lib\orajaxr.jar, D:\oc4j_extended_101310\webservices\lib\.\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\.\orasaaj.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-oc4j.jar, D:\oc4j_extended_101310\toplink\jlib\antlr.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl2.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\xqs\lib\xqs-api.jar, D:\oc4j_extended_101310\xqs\lib\xds.jar, D:\oc4j_extended_101310\j2ee\home\lib\pcl.jar, D:\oc4j_extended_101310\webservices\lib\JMXSoapAdapterShared.jar, D:\oc4j_extended_101310\lib\dmsapp.jar, D:\oc4j_extended_101310\j2ee\home\applications\admin_ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\scheduler.jar, D:\oc4j_extended_101310\j2ee\home\connectors\datasources\datasources\datasources.jar, D:\oc4j_extended_101310\j2ee\home\connectors\OracleASjms\OracleASjms\gjra.jar, D:\oc4j_extended_101310\j2ee\home\applications\jmsrouter-ejb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\design.model.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\enext.webtools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.corbatools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.framework.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.generic.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.idl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.interfaces.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.featureBridge.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.jaxb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.generator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.widget.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.wmt.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oracleDriver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ecw.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.feature.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.kernel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.nis.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\ose.componentModel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\wms.capabilities.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\catalog.ejb3.jar, D:\oc4j_extended_101310\lib\dms.jar, D:\oc4j_extended_101310\jdbc\lib\ojdbc14dms.jar, D:\oc4j_extended_101310\opmn\lib\ons.jar, D:\oc4j_extended_101310\jdbc\lib\ocrs12.jar, D:\oc4j_extended_101310\rdbms\jlib\aqapi.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojms-provider.jar, D:\oc4j_extended_101310\jdbc\lib\orai18n.jar, D:\oc4j_extended_101310\lib\xmlparserv2.jar, D:\oc4j_extended_101310\lib\xml.jar, D:\oc4j_extended_101310\lib\xmlmesg.jar, D:\oc4j_extended_101310\lib\xsu12.jar, D:\oc4j_extended_101310\lib\xquery.jar, D:\oc4j_extended_101310\jlib\osdt_core.jar, D:\oc4j_extended_101310\jlib\osdt_cert.jar, D:\oc4j_extended_101310\jlib\osdt_xmlsec.jar, D:\oc4j_extended_101310\jlib\osdt_wss.jar, D:\oc4j_extended_101310\jlib\osdt_saml.jar, D:\oc4j_extended_101310\jlib\ojpse.jar, D:\oc4j_extended_101310\jlib\oraclepki.jar, D:\oc4j_extended_101310\toplink\jlib\toplink.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-essentials.jar, D:\oc4j_extended_101310\webservices\lib\wsclient.jar, D:\oc4j_extended_101310\webservices\lib\orasaaj.jar, D:\oc4j_extended_101310\webservices\lib\xsdlib.jar, D:\oc4j_extended_101310\webservices\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\webservices\lib\mdds.jar, D:\oc4j_extended_101310\javacache\lib\cache.jar, D:\oc4j_extended_101310\javacache\lib\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\javacache\lib\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\webservices\lib\soap.jar, D:\oc4j_extended_101310\sqlj\lib\runtime12.jar, D:\oc4j_extended_101310\sqlj\lib\translator.jar, D:\oc4j_extended_101310\webservices\lib\orawsdl.jar, D:\oc4j_extended_101310\j2ee\home\applib, D:\oc4j_extended_101310\j2ee\home\applib\jai_codec.jar, D:\oc4j_extended_101310\j2ee\home\applib\activation.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-awt-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-bridge.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-css.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-ext.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-extension.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gui-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gvt.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-parser.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-script.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svg-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svggen.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-swing.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-xml.jar, D:\oc4j_extended_101310\j2ee\home\applib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_core.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_imageio.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb1-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-xjc.jar, D:\oc4j_extended_101310\j2ee\home\applib\jsr173_api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jdbcora10fixed.jar, D:\oc4j_extended_101310\j2ee\home\applib\JdbcOraWrapper.jar, D:\oc4j_extended_101310\j2ee\home\applib\mjdfotf.jar, D:\oc4j_extended_101310\j2ee\home\applib\pdf-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\sdoapifixed.jar, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib\ojsputil.jar, D:\oc4j_extended_101310\lib\dsv2.jar, D:\oc4j_extended_101310\j2ee\home\lib\http_client.jar, D:\oc4j_extended_101310\j2ee\home\lib\jgroups-core.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\classes, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\aclibico-castrated.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-beanutils.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-collections.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-digester.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-fileupload.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-lang.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-logging.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-math-1.0.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-validator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.apic2next.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.importPlugIn.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\designSource.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j-compat.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jaas.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jakarta-oro.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\java_cup_10k.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jstl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jta-spec1_0_1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\menu.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\resolver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\retroweaver-rt-1.2.1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts-legacy.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xmlsec.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xsdlib.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\antlr.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\sdoapifixed.jar]]
    [search path for class files: [C:\Java\jdk1.5.0_11\jre\lib\rt.jar, C:\Java\jdk1.5.0_11\jre\lib\jsse.jar, C:\Java\jdk1.5.0_11\jre\lib\jce.jar, C:\Java\jdk1.5.0_11\jre\lib\charsets.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\activation.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\clibwrapper_jiio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\dnsns.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_codec.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_core.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jai_imageio.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb-xjc.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jaxb1-impl.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\jsr173_api.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\localedata.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\mlibwrapper_jai.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunjce_provider.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\sunpkcs11.jar, C:\Java\jdk1.5.0_11\jre\lib\ext\which4j.jar, D:\oc4j_extended_101310\j2ee\home\oc4j-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-unsupported-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\activation.jar, D:\oc4j_extended_101310\j2ee\home\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\lib\persistence.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb30.jar, D:\oc4j_extended_101310\j2ee\home\lib\ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax77.jar, D:\oc4j_extended_101310\j2ee\home\lib\javax88.jar, D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar, D:\oc4j_extended_101310\j2ee\home\lib\jms.jar, D:\oc4j_extended_101310\j2ee\home\lib\jta.jar, D:\oc4j_extended_101310\j2ee\home\lib\jacc-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\connector.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmx_remote_api.jar, D:\oc4j_extended_101310\j2ee\home\lib\jax-qname-namespace.jar, D:\oc4j_extended_101310\webservices\lib\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\jaxrpc-api.jar, D:\oc4j_extended_101310\webservices\lib\saaj-api.jar, D:\oc4j_extended_101310\webservices\lib\jws-api.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-oc4j.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-client.jar, D:\oc4j_extended_101310\j2ee\home\lib\oems-jms-server.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j-schemas.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar, D:\oc4j_extended_101310\j2ee\home\lib\oc4j_orb.jar, D:\oc4j_extended_101310\j2ee\home\lib\iiop_support.jar, D:\oc4j_extended_101310\j2ee\home\lib\orbbase.jar, D:\oc4j_extended_101310\j2ee\home\iiop_gen_bin.jar, D:\oc4j_extended_101310\j2ee\home\lib\jmxcluster.jar, D:\oc4j_extended_101310\j2ee\home\jaccprovider.jar, D:\oc4j_extended_101310\j2ee\home\jacc-spi.jar, D:\oc4j_extended_101310\j2ee\home\jazncore.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\oraclepki.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ojpse.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\j2ee\home\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\j2ee\home\..\..\lib\dms.jar, D:\oc4j_extended_101310\javavm\lib\jasper.zip, D:\oc4j_extended_101310\j2ee\home\lib\adminclient.jar, D:\oc4j_extended_101310\opmn\lib\optic.jar, D:\oc4j_extended_101310\j2ee\home\jazn.jar, D:\oc4j_extended_101310\jlib\ldapjclnt10.jar, D:\oc4j_extended_101310\jlib\jssl-1_1.jar, D:\oc4j_extended_101310\jlib\javax-ssl-1_1.jar, D:\oc4j_extended_101310\webservices\lib\wsserver.jar, D:\oc4j_extended_101310\webservices\lib\wsif.jar, D:\oc4j_extended_101310\webservices\lib\orawsmetadata.jar, D:\oc4j_extended_101310\webservices\lib\orajaxr.jar, D:\oc4j_extended_101310\webservices\lib\.\jaxr-api.jar, D:\oc4j_extended_101310\webservices\lib\.\orasaaj.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-oc4j.jar, D:\oc4j_extended_101310\toplink\jlib\antlr.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl2.jar, D:\oc4j_extended_101310\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\xqs\lib\xqs-api.jar, D:\oc4j_extended_101310\xqs\lib\xds.jar, D:\oc4j_extended_101310\j2ee\home\lib\pcl.jar, D:\oc4j_extended_101310\webservices\lib\JMXSoapAdapterShared.jar, D:\oc4j_extended_101310\lib\dmsapp.jar, D:\oc4j_extended_101310\j2ee\home\applications\admin_ejb.jar, D:\oc4j_extended_101310\j2ee\home\lib\scheduler.jar, D:\oc4j_extended_101310\j2ee\home\connectors\datasources\datasources\datasources.jar, D:\oc4j_extended_101310\j2ee\home\connectors\OracleASjms\OracleASjms\gjra.jar, D:\oc4j_extended_101310\j2ee\home\applications\jmsrouter-ejb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\design.model.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ejb3.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\enext.webtools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.corbatools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.framework.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.generic.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.idl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.interfaces.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.featureBridge.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.jaxb.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.generator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.model.widget.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.tools.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\next7.wmt.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oracleDriver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.ecw.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.feature.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.kernel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\oranext.nis.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\ose.componentModel.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\applib\wms.capabilities.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\catalog.ejb3.jar, D:\oc4j_extended_101310\lib\dms.jar, D:\oc4j_extended_101310\jdbc\lib\ojdbc14dms.jar, D:\oc4j_extended_101310\opmn\lib\ons.jar, D:\oc4j_extended_101310\jdbc\lib\ocrs12.jar, D:\oc4j_extended_101310\rdbms\jlib\aqapi.jar, D:\oc4j_extended_101310\j2ee\home\lib\ojms-provider.jar, D:\oc4j_extended_101310\jdbc\lib\orai18n.jar, D:\oc4j_extended_101310\lib\xmlparserv2.jar, D:\oc4j_extended_101310\lib\xml.jar, D:\oc4j_extended_101310\lib\xmlmesg.jar, D:\oc4j_extended_101310\lib\xsu12.jar, D:\oc4j_extended_101310\lib\xquery.jar, D:\oc4j_extended_101310\jlib\osdt_core.jar, D:\oc4j_extended_101310\jlib\osdt_cert.jar, D:\oc4j_extended_101310\jlib\osdt_xmlsec.jar, D:\oc4j_extended_101310\jlib\osdt_wss.jar, D:\oc4j_extended_101310\jlib\osdt_saml.jar, D:\oc4j_extended_101310\jlib\ojpse.jar, D:\oc4j_extended_101310\jlib\oraclepki.jar, D:\oc4j_extended_101310\toplink\jlib\toplink.jar, D:\oc4j_extended_101310\toplink\jlib\toplink-essentials.jar, D:\oc4j_extended_101310\webservices\lib\wsclient.jar, D:\oc4j_extended_101310\webservices\lib\orasaaj.jar, D:\oc4j_extended_101310\webservices\lib\xsdlib.jar, D:\oc4j_extended_101310\webservices\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\webservices\lib\mdds.jar, D:\oc4j_extended_101310\javacache\lib\cache.jar, D:\oc4j_extended_101310\javacache\lib\..\..\lib\xmlparserv2.jar, D:\oc4j_extended_101310\javacache\lib\..\..\diagnostics\lib\ojdl.jar, D:\oc4j_extended_101310\webservices\lib\soap.jar, D:\oc4j_extended_101310\sqlj\lib\runtime12.jar, D:\oc4j_extended_101310\sqlj\lib\translator.jar, D:\oc4j_extended_101310\webservices\lib\orawsdl.jar, D:\oc4j_extended_101310\j2ee\home\applib, D:\oc4j_extended_101310\j2ee\home\applib\jai_codec.jar, D:\oc4j_extended_101310\j2ee\home\applib\activation.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-awt-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-bridge.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-css.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-ext.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-extension.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gui-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-gvt.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-parser.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-script.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svg-dom.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-svggen.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-swing.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-util.jar, D:\oc4j_extended_101310\j2ee\home\applib\batik-xml.jar, D:\oc4j_extended_101310\j2ee\home\applib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_core.jar, D:\oc4j_extended_101310\j2ee\home\applib\jai_imageio.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb1-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-impl.jar, D:\oc4j_extended_101310\j2ee\home\applib\jaxb-xjc.jar, D:\oc4j_extended_101310\j2ee\home\applib\jsr173_api.jar, D:\oc4j_extended_101310\j2ee\home\applib\jdbcora10fixed.jar, D:\oc4j_extended_101310\j2ee\home\applib\JdbcOraWrapper.jar, D:\oc4j_extended_101310\j2ee\home\applib\mjdfotf.jar, D:\oc4j_extended_101310\j2ee\home\applib\pdf-transcoder.jar, D:\oc4j_extended_101310\j2ee\home\applib\sdoapifixed.jar, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib, D:\oc4j_extended_101310\j2ee\home\jsp\lib\taglib\ojsputil.jar, D:\oc4j_extended_101310\lib\dsv2.jar, D:\oc4j_extended_101310\j2ee\home\lib\http_client.jar, D:\oc4j_extended_101310\j2ee\home\lib\jgroups-core.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\classes, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\aclibico-castrated.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-beanutils.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-collections.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-digester.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-fileupload.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-lang.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-logging.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-math-1.0.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\commons-validator.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.apic2next.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\design.importPlugIn.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\designSource.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j-compat.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\ini4j.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jaas.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jakarta-oro.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\java_cup_10k.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jstl.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jta-spec1_0_1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\mail.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\menu.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\relaxngDatatype.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\resolver.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\retroweaver-rt-1.2.1.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts-legacy.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xmlsec.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\xsdlib.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Acme.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\antlr.jar, D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\sdoapifixed.jar]]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar(com/orionserver/http/OrionHttpJspPage.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/HttpJspPage.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspPage.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/Servlet.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Object.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/http/HttpServletRequest.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/http/HttpServletResponse.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/IOException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletException.class)]
    [checking _config]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Error.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Exception.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Throwable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/RuntimeException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletResponse.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/String.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/PageContext.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspWriter.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspFactory.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletRequest.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/http/HttpSession.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspContext.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletContext.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/ServletConfig.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/el/VariableResolver.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/el/OracleVariableResolverImpl.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\oc4j-internal.jar(com/evermind/server/http/JspCommonExtraWriter.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Writer.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Appendable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Closeable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Flushable.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/rt/core/SetTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/runtime/OracleJspRuntime.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Class.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/Tag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/SetSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/BodyTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/TagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/IterationTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/FormTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/PanelTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/LabelledTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/LayoutTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/tab/TabsTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/BodyLayoutTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/tab/TabTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/GridLayoutTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/MessageTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/ImageTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/ActionTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/BaseHandlerTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar(org/apache/struts/taglib/html/BaseHandlerTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/TextFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/AbstractFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/AbstractLayoutFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/AbstractModeFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/EmptyTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/CheckboxTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/SelectTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/OptionsTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/ColumnTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/LinkTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\struts.jar(org/apache/struts/taglib/bean/MessageTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/CellTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/rt/core/IfTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\jstl.jar(javax/servlet/jsp/jstl/core/ConditionalTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/ChooseTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/rt/core/WhenTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/WhenTagSupport.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\standard.jar(org/apache/taglibs/standard/tag/common/core/OtherwiseTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/RowTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/SubmitTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\applications\next\config\WEB-INF\lib\Struts-Layout-1.2-Struts-1.1-compatibility.jar(fr/improve/struts/taglib/layout/field/TextareaFieldTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/BodyTag.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/tagext/JspTag.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/Serializable.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/Boolean.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/jml/JmlFPNumber.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\ojsp.jar(oracle/jsp/jml/JmlNumber.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/SkipPageException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspException.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/System.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/PrintStream.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/FilterOutputStream.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/OutputStream.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/io/UnsupportedEncodingException.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/InstantiationException.class)]
    [loading C:\Java\jdk1.5.0_11\jre\lib\rt.jar(java/lang/IllegalAccessException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/el/ELException.class)]
    [loading D:\oc4j_extended_101310\j2ee\home\lib\servlet.jar(javax/servlet/jsp/JspTagException.class)]
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:9941: code too large for try statement
    catch (Throwable e) {
    ^
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:9946: code too large for try statement
    catch (Exception clearException) {
    ^
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:40: code too large for try statement
    try {
    ^
    D:\oc4j_extended_101310\j2ee\home\application-deployments\next\config\persistence\_pages\\_config.java:18: code too large
    public void _jspService(HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, ServletException {
    ^
    [total 9424ms]
    4 errors

  • Dvt:barGraph, ActiveDataModelDecorator etc...

    (JDev 11.1.1.7)
    Has anyone succeeded in getting this combination to work?
    Just dropped (read only) ViewObject from data control as a dvt:barGraph on the task flow 's jsff fragment.
    And the data is properly displayed in the form of bar graph.
    I am _not using task flow call activity (ADS does not work in that case)
    Then tried to use active data service, by extending  ActiveDataModelDecorator
    In the overriden getModel() method, I am succesfully obtainend DataModel (by evaluating original barGraph value property from the fragment's pageDef).
    In the overriden getActiveDataModel() method, I am returning my custom BaseActiveDataModel instance, here is the code:
    public class GraphActiveModelClass extends BaseActiveDataModel {
        public GraphActiveModelClass() {
            super();
        protected void startActiveData(Collection<Object> rowKeys,
                                       int startChangeCount) {
            System.err.println("startActiveData() call");
            _listenerCount.incrementAndGet();
        @Override
        protected void stopActiveData(Collection<Object> rowKeys) {
            System.err.println("stopActiveData() call");
            _listenerCount.decrementAndGet();
        @Override
        public int getCurrentChangeCount() {
            return changeCounter.get();
        public void graphDataChange() {
            changeCounter.incrementAndGet();
        public void notifyDataChange(ActiveDataUpdateEvent event) {
          fireActiveDataUpdate(event);
        private final AtomicInteger changeCounter = new AtomicInteger();
        private final AtomicInteger _listenerCount = new AtomicInteger(0);
    So, I changed the value property for dvt:barGraph to point to  ActiveDataModelDecorator instance (registered as a session bean).
    And tried to run app.
    But, I am stuck with:
    java.lang.NullPointerException
        at oracle.adf.model.dvt.binding.common.CommonBinding.getStateKey(CommonBinding.java:114)
        at oracle.adf.model.dvt.binding.common.CommonBinding.getStateObject(CommonBinding.java:91)
        at oracle.adf.model.dvt.binding.common.CubicBinding.getProjection(CubicBinding.java:215)
        at oracle.adf.model.dvt.binding.common.CubicBinding.getProjection(CubicBinding.java:190)
        at oracle.adf.model.dvt.binding.transform.cube.CubeDataModel.getDataAccess(CubeDataModel.java:450)
        at oracle.adf.model.dvt.binding.transform.cube.CubeDataModel.getDataAccess(CubeDataModel.java:441)
        at oracle.adf.view.faces.bi.model.DataModel.getDataAccess(DataModel.java:405)
        at oracle.adf.view.faces.bi.model.ActiveDataModelDecorator.getDataAccess(ActiveDataModelDecorator.java:187)
        at oracle.adfinternal.view.faces.bi.renderkit.graph.GraphRendererUtils.updateCommonGraph(GraphRendererUtils.java:356)
        at oracle.adfinternal.view.faces.bi.renderkit.graph.RichGraphRenderer.updateImageView(RichGraphRenderer.java:361)
        at oracle.adfinternal.view.faces.bi.renderkit.imageView.RichImageViewRenderer.updateImageViewModelAndProperties(RichImageViewRenderer.java:581)
        at oracle.adfinternal.view.faces.bi.renderkit.imageView.RichImageViewRenderer.encodeAll(RichImageViewRenderer.java:486)
        at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1432)
        at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:358)
        at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:840)
        at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
        at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$EncodeChildVisitCallback.visit(InvokeOnComponentUtils.java:142)
        at org.apache.myfaces.trinidadinternal.context.FullVisitContext.invokeVisitCallback(FullVisitContext.java:154)
        at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:401)
        at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
        at oracle.adf.view.faces.bi.component.graph.UIGraph.visitTree(UIGraph.java:467)
        at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:469)
        at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
    Te first line in the stackTrace, where NPE occurs actually is following statement (from CommonBinding.java:)
    sb.append(getBindingContainer().getBindingContext().getCurrentDataControlFrame());
    (sb is the StringBufer, and is not null)
    Any idea ?
    Any working sample anywhere ?

    Hi Shay, thanks for useful response. Here is getModel() method from my custom ActiveDataModelDecorator: 
    public DataModel getModel() {
    if (graphData == null) {
    FacesContext fc = FacesContext.getCurrentInstance();
    Application app = fc.getApplication();
    ExpressionFactory elFactory = app.getExpressionFactory();
    ELContext el = fc.getELContext();
    // This is EL to avoid typecasting to an Internal class.
    ValueExpression ve = elFactory.createValueExpression(el,
    "_original_graph_value_from_pageDef", Object.class);
    // Now GET the collectionModel
    graphData = (DataModel)ve.getValue(el);      
    return graphData;  
    Now, if I understand correctly, you suggest to avoid this way, and to build DataModel in another way, "by hand" ? I probably have a way to access ViewObject with data, but have no idea how to build DataModel instance from that data. Maybe you have one example how to do that ?
    P.S. sorry for formatting, this editor crazes me :-(

  • How to find out image size (in pixels) of jpg and gif files

    this seems to work, though i doubt that it would very time:
                   Image img = Toolkit.getDefaultToolkit().getImage("car.jpg");
                   int w = img.getWidth(null);
                   int h = img.getHeight(null);
                   while(w <= 0 || h <= 0)
                      try{Thread.sleep(10);}catch(InterruptedException ix){}
                      w = img.getWidth(null);
                      h = img.getHeight(null);
                   JOptionPane.showMessageDialog
                      null,
                      filenames[i] + ": " + w + "x" + h,
                      "ImgSize",
                      JOptionPane.INFORMATION_MESSAGE
                   );please suggest a better solution.
    thanks

    >
    We've a requirement that we need to find out the size of a java object at run time, is there a direct java API to get the size of a composite object in memory?
    Here is my requirement: We are adding string objects (which is an xml string of considerable size) into a List. After reaching certain size limit (lets say 5MB) of the list i need to put this data into DB as a CLOB. So every time I add a string object to the list, I need to see if the total size of the list exceeds the limit and if yes, flush the results into DB.
    I am not sure if java has a direct API for this, if not what is the beast way to do it, it s critical requirement for us.
    It would be really great if someone could help us out.
    >
    Could you explain your actual requirement a little more fully.
    1. Is each individual string a separate XML string? Or is it just a fragment? Why would you just concatenate them together into a CLOB? That won't produce valid XML and it won't let you easily separate the pieces again later. So provide a simple example showing some strings and how you need to manipulate them.
    2. Are you using these xml strings in Java at all? Or are you just loading them into the database?
    For example if you are just loading them into the database you don't need to create a list. Just create a CLOB in Java and append each string to the CLOB. Before you append each one you can check to see if the new string will put you over your length limit. If it will then you write the CLOB to the database, empty the CLOB and start appending again to the new clob instance.
    If you explain what you are really trying to do we might be able to suggest some better ways to do it.

  • JAAS/JAZN: LDAPLoginModule doesn't work with servlet RunAs() security mode

    Just thought I'd post this here too, in case any developers actually read this list or in case someone else has run into a similar issue or has any ideas...
    I'm having a problem where whenever I use Oracle 10gAS's LDAPLoginModule at the same time as RunAs() mode OC4J crashes.
    Application is UIX/Struts for the view layer and ADF BC for the model layer. It is being developed in JDeveloper 10g (10.1.2.0.0) and deployed on 10gAS (10.1.2.0.0)
    I am using JAAS (JAZN) for authentication. I am using a custom JAAS LoginModule for the app: "oracle.security.jazn.login.module.LDAPLoginModule". Instructions for using the module are documented in the OC4J Security Guide, Chapter 9 "Configuring External LDAP
    Providers":
    http://download-east.oracle.com/docs/cd/B14099_07/web.1012/b14013/ldap3rdparty.h
    tm#sthref500
    This is working fine - I can successfully authenticate against my LDAP server.
    In order to retrieve security credentials (i.e. the Subject) while in the Model later, I am running the servlet in doAs() mode, also known as "runas-mode". This is documented in Chapter 4:
    http://download-east.oracle.com/docs/cd/B14099_07/web.1012/b14013/genconfig.htm#
    sthref322
    This works great - when I authenticate against the local XML file I can successfully run the application and retrieve the Subject and Principals.
    The problem is that whenever I try to use both of these at the same time the application will not run. I have attached a trace with JAAS/JAZN debug messages enabled.
    It appears to be failing in the process of creating the BC Application Module. Apparently when it creates a new thread to monitor the application module pool, in the process of establishing JAAS permissions for the new thread it attempts to retrieve the REALM from the oracle.security.jazn.realm.LDAPPrincipal object -- which is an unsupported function when the Principal was generated by an LDAPLoginModule. For some reason this error crashes the entire process.
    You can see a trace of my program here:
    http://www.asugroup.com/jazn-errorlog.txt
    This should be simple to reproduce by simply creating an ADF BC application, modifying orion-web.xml so that the servlet is in runas-mode, and modifying $ORACLE_HOME/j2ee/home/config/jazn-data.xml to use the LDAPLoginModule.
    All I can figure is that it must be a "bug" (or unsupported functionality) in 10gAS. WHY in the world is 10g failing on the getRealm() function of a Principal that it setup itself? Any suggestions or help would be appreciated. The only solution I can think of at this point is to throw Oracle's LoginModule implementation right out the window and write my own... although I don't even know if that will work yet.
    Jeremy

    ok, so i know that this isn't metalink... but i'm pretty sure this is either a "bug" or "unsupported feature" -- although now that i've looked a bit deeper i'm guessing it has something to do with the "role.mapping.dynamic" flag too. (Haven't tested it yet but I think it might work fine if I put the roles in the local XML file.)
    Anyway, if anyone's interested, here's detailed steps so you - YES YOU! - can reproduce the problem yourself if the desire grips you. :)
    I put this together for the TAR but figured there's some useful information in here (e.g. the debugging stuff) so it might be helpful for someone in the future to post it here too.
    1. Open or create any ADF BC project in JDeveloper. It can be ANY project as long as it uses ADF BC for the MODEL layer.
    2. Add orion-web.xml to the VIEW project if it's not already there.
    2a) Right click on orion-web.xml and select Properties
    2b) In the "JAZN" section, select the checkbox "Run as Mode"
    3. Edit web.xml to require authorization to run the app.
    3a) Right click on web.xml and select Properties
    3b) Under the "security roles" section add the name of an group you're a member of on the LDAP server. Only include the relative name of the group - not the full LDAP distinguished name. Also, convert the name to lowercase.
    3c) Under "security constraints" add a new constraint.
    3d) In the constraint, make a new resource collection called "everything" and add the URL pattern "/".
    3e) In the constraint, go to the authorization tab and select your LDAP group name.
    3f) Go to the "Login Configuration" section of web.xml and choose HTTP Basic Authentication. Leave the realm blank.
    4. Add orion-application.xml to the project if it's not already there. Configure the "JAZN" tag as follows:
    <jazn provider="XML">
    <property name="role.mapping.dynamic" value="true" />
    </jazn>
    3. Deploy the application to Oracle 10g Application Server.
    4. On the application server, edit the file $ORACLE_HOME/j2ee/home/config/jazn-data.xml
    4a) In the section jazn-data/jazn-loginconfig add a new "application" section for your application. See below for example.
    4b) Make sure the "name" of your application matches the deployment name in your EAR file for the project you deployed.
    5. I recommend enabling JAZN debugging. See below for instructions on that.
    6. Restart OC4J if you already haven't - to make sure it rereads the config, then try to run your application.
    SAMPLE JAZN-DATA.XML (CUSTOMIZE FOR YOUR LDAP SERVER)
    <jazn-data>
    <jazn-loginconfig>
    <application>
    <name>your_j2ee_deployed_application_name</name>
    <login-modules>
    <login-module>
    <class>oracle.security.jazn.login.module.LDAPLoginModule</class>
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>oracle.security.jaas.ldap.provider.url</name>
    <value>ldap://10.1.1.7:389</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.provider.user</name>
    <value>cn=stoneware,ou=stoneware,ou=okemos,ou=mi,ou=et,o=ou1</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.provider.credential</name>
    <value>!yourpassword</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.provider.type</name>
    <value>other</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.user.searchbase</name>
    <value>o=ou1</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.user.searchscope</name>
    <value>subtree</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.user.name.attribute</name>
    <value>cn</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.user.object.class</name>
    <value>inetOrgPerson</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.role.searchbase</name>
    <value>o=ou1</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.role.searchscope</name>
    <value>subtree</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.role.name.attribute</name>
    <value>cn</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.role.object.class</name>
    <value>groupOfNames</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.membership.searchscope</name>
    <value>direct</value>
    </option>
    <option>
    <name>oracle.security.jaas.ldap.member.attribute</name>
    <value>member</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    </jazn-data>
    for Sun Java System Application Server and Microsoft Active Directory examples see:
    http://download-east.oracle.com/docs/cd/B14099_07/web.1012/b14013/ldap3rdparty.htm#sthref500
    ENABLING JAZN DEBUGGING MESSAGES ON ORACLE 10G APPLICATION SERVER
    1. Login to Enterprise Manager 10g Application Server Control
    2. If you are part of a farm you will get a list of instances. Select the instance your app is deployed on.
    3. In the "System Components" section of the home page, click on your OC4J instance (default name is "home").
    4. In the OC4J home, click on the "Administration" tab.
    5. Select "Server Properties" from the Instance Properties section.
    6. In the Command Line Options section, there is an option called "Java Options".
    7. At the end of the "Java Options", append the text "-Djazn.debug.log.enable=true"
    8. When prompted, restart the OC4J instance.
    Debug information is captured by OPMN and stored in a log file. The log file can be found in the directory $ORACLE_HOME/opmn/logs
    The default name (if your instance name is "home") is "OC4J~home~default_island~1"

Maybe you are looking for

  • Web Dynpro render configuration for Adobe Interactive Forms

    Hi, Is there any possibility to check rendering configuration for Web Dynpro application? I built web dynpro application which shows simple Adobe Interactive Form. In Sap Adobe LiveCycle Designer all buttons of Interactive Form are working (JavaScrip

  • Should I upgrade to newer OS if i want to salvage damaged HD 'remnants'?

    This seems to warrant a new discussion thread -  For background this is the original:  https://discussions.apple.com/message/21080765#21080765     Deal is, a 2007 Mac Mini 1,1 running OS 10.4 has a damaged HD.  I transferred what could be salvaged fr

  • CS4 Premium auf Mac OSX.10.9

    I bought a new MacBook Pro (OSX 10.9 Mavericks). Now I want to transfer my Adobe software Premium CS4 which is running on my iMac (OSX 10.8.5) on the new MacBook. After several unsuccessful attempts, I wonder if anyone knows how to do that?

  • Recommended approach to build a development LAB for ICM\CVP\CM

    /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in

  • SO # on AR Invoice

    Is there a query I can use in a formatted search that would bring the Sales Order # onto a user-defined field (U_SO) on the AR Invoice? In addition to that, is there a query that could be used in a formatted search that would bring the total Gross Pr