WLST errors ( No stack trace available.)

for s in svrs:
name = s.getName()
try:
cd('/ServerRuntimes/' + name)
except:
pass
Above loop works fine for all the running servers but if any of server is not running then while executing cd commnad within loop it thows error "No stack trace available."
How can avoid (hide) these errors --> "No stack trace available"
Current state of 'hp1_d3_a' : RUNNING
No stack trace available.
Current state of 'hp1_d7_a' : RUNNING
Current state of 'hp1_d5_a' : RUNNING
No stack trace available.
Current state of 'hp1_d4_a' : RUNNING
Current state of 'hp1_d9_a' : RUNNING
No stack trace available.
Current state of 'hp1_d6_a' : RUNNING
Current state of 'hp1_d2_b' : RUNNING
++++++++++++++++++++++++++++++++++++
Output should be
Current state of 'hp1_d3_a' : RUNNING
Current state of 'hp1_d7_a' : RUNNING
Current state of 'hp1_d5_a' : RUNNING
Current state of 'hp1_d4_a' : RUNNING
Current state of 'hp1_d9_a' : RUNNING
Current state of 'hp1_d6_a' : RUNNING
Current state of 'hp1_d2_b' : RUNNING

Can any body show me how and explain why ---------
"oc4j of course is intended only for testing purpose ;)
besides this: try using the \"-mx \" switch when starting the oc4j to increase the memory "
Why is the oc4j of course intended only for testing purpose ?
And how does the the "-mx " switch used?I can not find the switch.

Similar Messages

  • Images Browser Dialog gets OutOfMemoryError no stack trace available

    Hello all.
    I am writing a dialog to list the image by showing their thumbnail, which like the style of ACDSee or CoffeeCup Free Viewer Plus.
    For this, I build 3 objects(thumbCanvas,thumbPanel,testingfrm). thumbCanvas - displays the thumbnail with aspect ratio as original image
    thumbPanel - contains thumbCanvas and image file name
    testingfrm - put the thumbPanel of the list of images row by row
    When I run testingfrm by listing 11 images, the following error is given out.
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    I would be appreciated if anyone can suggest the methodology and hints to do that or state what is the problem of my coding and methodology. Thanks.
    The code of 3 objects are as following:
    //thumbCanvas.java
    import java.awt.*;
    import java.io.*;
    public class thumbCanvas extends Canvas {
    public int new_h=0, new_w=0;
    private double thumb_h, thumb_w;
    private double img_h, img_w;
    private double ratio_h, ratio_w, ratio_thumb;
    private String imgFileName;
    private Image thumbImg;
    /** Creates new thumbCanvas */
    public thumbCanvas(int w, int h) {
    thumb_h = h;
    thumb_w = w;
    public thumbCanvas(String f, int w, int h) {
    imgFileName = f;
    thumb_h = h;
    thumb_w = w;
    setFile(imgFileName);
    public void setThumbSize(int w, int h) {
    thumb_h = h;
    thumb_w = w;
    repaint();
    public void setImage(Image i) {
    MediaTracker tracker = new MediaTracker(this);
    thumbImg = i;
    tracker.addImage(thumbImg,1);
    try {
    tracker.waitForAll();
    } catch (java.lang.InterruptedException e) {}
    if (tracker.checkAll()) {
    img_h = thumbImg.getHeight(this);
    img_w = thumbImg.getWidth(this);
    if (img_h > thumb_h || img_w > thumb_w) {
    ratio_h = thumb_h/img_h;
    ratio_w = thumb_w/img_w;
    ratio_thumb = java.lang.Math.min(ratio_h,ratio_w);
    } else {
    ratio_thumb = 1;
    new_h = (int)(img_h*ratio_thumb);
    new_w = (int)(img_w*ratio_thumb);
    setSize(new_w, new_h);
    repaint();
    public void setFile(String f) {
    Image img = Toolkit.getDefaultToolkit().getImage(f);
    setImage(img);
    public void paint(Graphics gr) {
    if ( thumbImg != null ) {
    gr.drawImage(thumbImg, 0, 0, new_w, new_h, this);
    //thumbPanel.java
    import javax.swing.*;
    import java.io.*;
    public class thumbPanel extends JPanel {
    /** Creates new form thumbPanel */
    public thumbPanel(String f, int w, int h) {
    int thumb_w, thumb_h, thumb_x;
    int label_w, label_h;
    initComponents();
    thumb_w = (int)(w*0.9);
    thumb_h = (int)(h*0.7);
    label_w = (int)(w*0.9);
    label_h = (int)(h*0.2);
    tc = new thumbCanvas(f, thumb_w, thumb_h);
    thumb_x = (int)((w - tc.new_w)/2);
    tc.setLocation(thumb_x,5);
    add(tc);
    thumbLabel = new JLabel("hihi");
    add(thumbLabel);
    thumbLabel.setBounds(thumb_x,thumb_h+1,label_w,label_h);
    setSize(w,h);
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    private void initComponents() {//GEN-BEGIN:initComponents
    setLayout(null);
    setBorder(new javax.swing.border.BevelBorder(javax.swing.border.BevelBorder.RAISED));
    }//GEN-END:initComponents
    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables
    private JLabel thumbLabel;
    thumbCanvas tc;
    //testingfrm.java
    public class testingfrm extends javax.swing.JDialog {
    /** Creates new form testingfrm */
    public testingfrm(java.awt.Frame parent, boolean modal) {
    super(parent, modal);
    initComponents();
    int i;
    int row,col;
    for (i=1;i<=11;i++) {
    row = (int)((i-1)/3);
    col = ((i-1)%3)+1;
    tp = new thumbPanel("D:\\ACN\\MultiMed\\Oracle\\images\\ts\\add0000" + i + ".jpg",120,120);
    tp.setLocation(col*120,row*120);
    getContentPane().add(tp);
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    private void initComponents() {//GEN-BEGIN:initComponents
    getContentPane().setLayout(null);
    addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent evt) {
    closeDialog(evt);
    pack();
    }//GEN-END:initComponents
    /** Closes the dialog */
    private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
    setVisible(false);
    dispose();
    System.exit(0);
    }//GEN-LAST:event_closeDialog
    * @param args the command line arguments
    public static void main(String args[]) {
    new testingfrm(new javax.swing.JFrame(), true).show();
    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables
    thumbPanel tp;
    Sorry for putting the code here. However, I hope it can be helpful for solving my problem. Thanks again.

    Thanks. The problem is already solved.
    It is because I load too much full size images. When I load the resized images generated by Image.getScaledInstance(int,int,int). It seems much better.
    Thanks again your suggestion.

  • no stack trace available

    Hi,
    Does anyone out there recognize it and know what to do with it ?
    Pt maj 18 14:45:32 GMT+02:00 2001:<E> <ServletContextManager> Servlet
    request terminiated with RuntimeException
    java.lang.NullPointerException
    <<no stack trace available>>
    It happens every time we overload BEA WebLogic Server 5.1.0 + Service
    Pack 8 on HP-UX 11.0 with JDK 1.2.2.07. It means that as we start
    running 10 or more concurrent users (using web stres tool) the error
    shows up.
    Jacek Laskowski

    Possibly running out of file descriptors.
    Mike
    Jacek Laskowski <[email protected]> wrote:
    Hi,
    Does anyone out there recognize it and know what to do with it ?
    Pt maj 18 14:45:32 GMT+02:00 2001:<E> <ServletContextManager> Servlet
    request terminiated with RuntimeException
    java.lang.NullPointerException
    <<no stack trace available>>
    It happens every time we overload BEA WebLogic Server 5.1.0 + Service
    Pack 8 on HP-UX 11.0 with JDK 1.2.2.07. It means that as we start
    running 10 or more concurrent users (using web stres tool) the error
    shows up.
    Jacek Laskowski

  • What caused the "java.lang.OutOfMemoryError (no stack trace available)"?

    We just met another problem: after I modified the BDM file on TUXEDO and bdmconfig.xml
    file on WEBLOGIC (with no ACL or authentication setup on both side), when I booted
    up the WebLogic 6.1 server, the ULOG file of Tuxedo says that the connection has
    been set up, however, I got the "java.lang.OutOfMemoryError (no stack trace available)"
    on the WebLogic side. I tried to enlarge the Java heap size even to 1024m, but it
    has no use. If I delete the WTC setting then WebLogic works fine.
    Could somebody helps me on this? Because we have a very tight schedule on development,
    I do appreciate your quick response.
    Thanks!
    Bill

    Hi,
    I am getting same OutofMemoryError. I could not understand change in bdmconfig.xml
    removed the outofmemory error.
    what is bdmconfig.xml file and you specified port#?
    I could not able to see any port # in the config.xml...
    any help is appreciated.
    RajKumar
    "Bill Yuan" <[email protected]> wrote:
    >
    Bob,
    Another expert in our company told me that we should use a different
    PORT# (kind
    of DUMMY port) in the bdmconfig.xml file on WebLogic side, instead of
    the real WebLogic
    instance PORT#. We tried and the OutOfMemoryError disappeared, and the
    WTC connection
    works OK. We don't know why should we do this, maybe it is a bug or some
    hardware
    requirement.
    Anyway, thank you very much for your help and quick respondse!
    have a good day!
    Bill
    Bob Finan <[email protected]> wrote:
    Bill,
    Check the logs to see if the out of memory is the only execption orif
    it is the last exception. It could be that there is something happening
    earlier on that you are missing.
    There are also other JVM problems that can arise besides the heap
    size. The Hotspot VM had an issue where you needed to set a maximum
    permanent generation size( helps garbage collection tuning I think).
    (-XX:MaxPermSize=32m for jdk130,64m for jdk131). It comes into
    play when you are loading many classes.
    Bob Finan
    Bill Yuan wrote:
    Bob,
    Thanks! We didn't set MTYPE in both BDMCONFIG files in Tuxedo and
    WebLogic
    sides.
    From the WTC document and Tuxedo document, it says that if MTYPE is
    not
    specified,
    the default is to turn ENCODING/DECODING on. Do you see any other
    possibilities?
    Thanks!
    Bill
    Bob Finan <[email protected]> wrote:
    Bill,
    One possible reason is if MTYPE is set, in the DMCONFIG on the
    Tuxedo side, as part of your remote domain definitions of the WTC
    domain. This should not be set or set it to NULL. This problem occurs
    because encoding/decoding is always needed between java and non-java
    domains.
    Bob Finan
    Bill Yuan wrote:
    We just met another problem: after I modified the BDM file on TUXEDO
    and
    bdmconfig.xml
    file on WEBLOGIC (with no ACL or authentication setup on both side),
    when
    I booted
    up the WebLogic 6.1 server, the ULOG file of Tuxedo says that the
    connection
    has
    been set up, however, I got the "java.lang.OutOfMemoryError (no
    stack
    trace available)"
    on the WebLogic side. I tried to enlarge the Java heap size even
    to
    1024m,
    but it
    has no use. If I delete the WTC setting then WebLogic works fine.
    Could somebody helps me on this? Because we have a very tight scheduleon development,
    I do appreciate your quick response.
    Thanks!
    Bill

  • Axis2 and Internal Server Error, No Stack Trace

    I have deployed the Axis2.war file to an OC4J instance through the administration console.
    However, when I attempt to go to:
    http://localhost:7777/axis2/axis2-web/index.jsp
    and click on validate or any of the links I get an "Internal server error" with no stack trace.
    I have created a shared-library where I have placed the following JARs:
    axis.jar
    jaxrpc.jar
    wsdl4j-1.5.1.jar
    saaj.jar
    commons-discovery-0.2.jar
    commons-logging-1.0.4.jar
    and I have imported the library into orion-application.xml for axis.
    Any help on this matter would be appreciated.

    Here is the error in the application.log file, It can't find the include directory because that is located in the axis2/axis2-web directory.
    Any ideas on how to fix this?
    08/07/23 16:35:28.880 axis2: JspServlet: unable to dispatch to requested page: Exception:java.io.FileNotFoundException: /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/applications/axis2/axis2/include/httpbase.jsp (No such file or directory)
    08/07/23 16:35:30.85 axis2: Servlet error
    java.lang.IllegalArgumentException: Resource /include/header.inc not found
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.include(EvermindPageContext.java:440)
         at axis22d_web._index._jspService(_index.java:54)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    08/07/23 16:36:04.89 axis2: Servlet error
    oracle.classloader.util.AnnotatedLinkageError: Class org/apache/commons/logging/Log violates loader constraints
         Invalid class: org.apache.commons.logging.Log
         Loader: axis2.web.axis2:0.0.0
         Code-Source: /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/applications/axis2/axis2/WEB-INF/lib/commons-logging-1.1.1.jar
         Configuration: WEB-INF/lib/ directory in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/applications/axis2/axis2/WEB-INF/lib
         Dependent class: axis22d_web._HappyAxis
         Loader: axis2.web.axis2.jsp13533900:0.0.0
         Code-Source: /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/
         Configuration: *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages
         at oracle.classloader.PolicyClassLoader.findLocalClass (PolicyClassLoader.java:1462) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchPolicy$FindLocal.getClass (SearchPolicy.java:167) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchSequence.getClass (SearchSequence.java:119) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchPolicy.loadClass (SearchPolicy.java:645) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.askParentForClass (PolicyClassLoader.java:1289) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchPolicy$AskParent.getClass (SearchPolicy.java:68) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchSequence.getClass (SearchSequence.java:119) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.internalLoadClass (PolicyClassLoader.java:1674) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1635) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1620) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at java.lang.ClassLoader.loadClassInternal (ClassLoader.java:319) [jre bootstrap, by jre.bootstrap:1.5.0_06]
         at java.lang.Class.forName0 (Native method) [unknown, by unknown]
         at java.lang.Class.forName (Class.java:164) [jre bootstrap, by jre.bootstrap:1.5.0_06]
         at axis22d_web._HappyAxis.classExists (_HappyAxis.java:59) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at axis22d_web._HappyAxis.probeClass (_HappyAxis.java:102) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at axis22d_web._HappyAxis.needClass (_HappyAxis.java:186) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at axis22d_web._HappyAxis._jspService (_HappyAxis.java:415) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service (OrionHttpJspPage.java:59) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.jsp.runtimev2.JspPageTable.service (JspPageTable.java:462) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/ojsp.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.jsp.runtimev2.JspServlet.internalService (JspServlet.java:594) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/ojsp.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.jsp.runtimev2.JspServlet.service (JspServlet.java:518) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/ojsp.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at javax.servlet.http.HttpServlet.service (HttpServlet.java:856) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/servlet.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by api:1.4.0]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke (ServletRequestDispatcher.java:713) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal (ServletRequestDispatcher.java:370) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest (HttpRequestHandler.java:871) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest (HttpRequestHandler.java:453) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run (AJPRequestHandler.java:302) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run (AJPRequestHandler.java:190) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run (ServerSocketReadHandler.java:260) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket (ServerSocketAcceptHandler.java:239) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700 (ServerSocketAcceptHandler.java:34) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run (ServerSocketAcceptHandler.java:880) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run (ReleasableResourcePooledExecutor.java:303) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at java.lang.Thread.run (Thread.java:595) [jre bootstrap, by jre.bootstrap:1.5.0_06]

  • Exception Handling and Stack Traces in JDK 1.1.8

    Hi,
    I'm presently maintain and upgrading a Web-Objects 4.5 application that uses the JDK 1.18. There are two constantly recurring exceptions that keep getting thrown, exceptions for which there are no stack traces. These are exceptions thrown by methods that do not presently have throws or try/catch code associated with them.
    My questions are:
    1) Why are there no stack traces available? Is it because the exception handling code is not there, or could there be another reason?
    2) Will the inclusion of exception-handling code ALWAYS lead to stack traces and messages becoming available (if I put a e.printStackTrace() in my catch(Excetion e) clause), or will there be situations where it will not be available?
    3) What is the best way for me to handle these types of exceptions in order to gain the most information possible about their root causes and possible solutions?
    Thanks for your help.

    I have never seen a case where there was no stack trace.
    I have seen cases where the stack trace does not provide line numbers. I have also seen cases where it is less than useful as it terminates on a native call (which is to be expected.)
    However, if you don't call printStackTrace() then you don't get it. And if you catch an exception an throw a different one you also loose information. So you might want to check those possibilities.

  • WLST, how do I suppress unwanted stack traces and make WLST less verbose?

    Hi everyone,
    I've just started out with WLST but have ended up somewhat confused. My script works as intended but is very verbose.
    Suppose I want to log in:
    try:
         connect(user, "wrong_password", url)
    except WLSTException, err:
         print str(err)
         print "Run with option \"-h\" for help"The password is wrong so I get something like this printed out by me:
    {noformat}
    Error occured while performing connect : User: wm714, failed to be authenticated. Use dumpStack() to view the full stacktrace
    {noformat}
    But I also get a totally unwanted Java stack trace (before my message):
    {noformat}This Exception occurred at Fri May 21 15:49:01 CEST 2010.
    javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: User: wm714, failed to be authenticated.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:42)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.pushSubject(WLInitialContextFactoryDelegate.java:677)
    {noformat}
    I don't want to confuse the user with all that! I found this:
    http://objectmix.com/weblogic/529822-wlst-exception-handling-unwanted-stack-trace.html
    Which discusses WLS.commandExceptionHandler.setSilent(1) I'm running on WLS 10.3.0.0 and can execute that statement but it has no effect. I didn't even know about the WLS-object and I can find no documentation on commandExceptionHandler.
    On the matter of verbosity, is there any way to get rid of stuff like:
    Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    For more help, use help(domainRuntime)I avoid using the "interactive" commands like cd and use stuff like getMBean("domainRuntime:/ServerRuntimes/" + appServer.getName()
    + "/JMSRuntime/" + appServer.getName() + ".jms/JMSServers") but I still get the clutter printed out.
    Thanks!

    Workaround:
    wlstOut = tempfile.mktemp(suffix="_wlst.txt")
    redirect(wlstOut, "false")
    ... do useful stuff
    stopRedirect()
    os.remove(wlstOut)I would have preffered to turn off the messages (yes I could try /dev/null) but this will do. A funny thing is that the stack trace I wrote about doesn't appear in the log file. Somehow "redirect" must have a nice side effect.
    /Roger

  • What means 'Stack trace not available'

    I have an application in produccion.
    -Oas 10g (9.04)
    -Jdeveloper 9.04
    -Jheadstart 9.405
    my new requirement is:
    an upload file(ms excel) in a jsp page
    and refresh the data from the html table in this jsp
    ...Then i modified:
    *****the TablePage (jsp)
    add to my form: enctype="multipart/form-data"<html:form name="O0130200_PLANESBean" action="/StartO0130200" type="oracle.jheadstart.view.struts.JhsDynaActionForm" scope="session" enctype="multipart/form-data">
    *****struts-config
    *****Add a new Action (customized) extends from JhsAction
    struts-config:
    <!--SISYGES:INIT-->
    <form-property className="oracle.jheadstart.controller.struts.config.JhsFormPropertyConfig" name="O0130200_PLANESDetallePlanFile" type="org.apache.struts.upload.FormFile">
    <set-property property="isPersistent" value="false"/>
    <set-property property="isFileField" value="true"/>
    </form-property>
    <!--SISYGES:END-->
    </form-bean>
    <action path="O0130200_PLANESRouter" type="oracle.jheadstart.controller.struts.action.ActionRouter">
    <set-property property="defaultForward" value="initial"/>
    <forward name="initial" path="GetO0130200_PLANESSet"/>
    <forward name="browse" path="BrowseO0130200_PLANESSet"/>
    <forward name="insert" path="GetDefaultO0130200_PLANES"/>
    <forward name="save" path="SaveO0130200_PLANES"/>
    <forward name="delete" path="DeleteO0130200_PLANES"/>
    <forward name="groupPage" path="/WEB-INF/page/O0130200_PLANESPage.jsp"/>
    <!--SISYGES:INIT-->
    <forward name="uploadDetallePlan" path="UploadDetallePlan"/>
    <!--SISYGES:END-->
    </action>
    <!--SISYGES:INIT-->
    <action
    path="UploadDetallePlan"
    type="com.sisyges.o0130200.model.struts.action.UploadDetallePlanAction"
    name="O0130200_PLANESBean"
    scope="session">
    <!-- select key of result DataObject in SessionData -->
    <set-property property="dataObjectName" value="O0130200_PLANES"/>
    <!-- name of dataObject interface -->
    <set-property property="dataObjectInterface" value="com.sisyges.o0130200.model.Planes"/>
    <set-property property="persistActionParameterName" value="save"/>
    <!-- Commit transaction? -->
    <set-property property="doCommit" value="true"/>
    <forward name="success" path="BrowseO0130200_PLANESSet"/>
    <forward name="userError" path="/WEB-INF/page/O0130200_PLANESPage.jsp"/>
    </action>
    <!--SISYGES:END-->
    Made these changes my application only runs correctly some times without showing some error message
    ....But in jdeveloper, the embedded oc4j show :
    Stack trace not available after execute the action...
    this action execute correctly....(I print in the screen with 'System.out.println()' step by step ...and this fail when the execute method finalizes)
    thanks

    Rigoberto,
    This sounds like a OC4J/J2EE issue that is not related to JHeadstart. To simplify the test case, you could create a simple drag-and-drop ADF application without JHeadstart and see if the same problem occurs there. Can you please log a TAR at MetaLink ( http://metalink.oracle.com/ ), or ask this question at the OC4J/J2EE forum at OC4J ? Thanks.
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • How to display a stack trace in a jsp error mage

    What is the best way to display a stack trace in a JSP error page?
    I use "${pageContext.exception.message}" for the exception message. Is there a comparable JSTL expression for the stack?

    Cool! it totally works.
    Thanks for pointing me to this post.

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • XI error - Stack Trace class com.sap.rprof.dbprofiles.DBException

    Hello,
    We have installed XI 3.1 with master password of 10 characters so now when we go to access Exchange Profile page we get below error
    We tried to reset XI* users password to 8 digits via SAP R/3 logon - SU01, XILDUSER is geting locked again n again.
    So don't know how to reset in Java Stack. Cos if we go to UME page then it is not allowing to reset passowrd for user. Pls help ASAP .....XI post installation is pending.
    PLEASE HELP.....
    Name or password is incorrect. Please re-enter 
    Stack Trace class com.sap.rprof.dbprofiles.DBException:
    at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:413)
    at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:823)
    at com.sap.mw.jco.JCO$Client.connect(JCO.java:2922)
    at com.sap.rprof.dbprofiles.DBProfiles.getProfile(DBProfiles.java:101)
    at com.sap.rprof.dbprofiles.RemoteProfile.readRemoteProfileFromMedia(RemoteProfile.java:1096)
    at com.sap.rprof.dbprofiles.RemoteProfile.getRemoteProfileFromFactory(RemoteProfile.java:193)
    at com.sap.rprof.dbprofiles.RemoteProfile.getRemoteProfile(RemoteProfile.java:143)
    at com.sap.rprof.dbprofiles.ExchangeProfile.getExchangeProfile(ExchangeProfile.java:45)
    at com.sap.rprof.remoteProfile.webui.ProfileWebTree.(ProfileWebTree.java:24)
    at com.sap.rprof.remoteProfile.webui.Edit.getNewWebTree(Edit.java:329)
    at jsp_treeexprof1232602497578._jspService(jsp_treeexprof1232602497578.java:32)
    at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:467)
    at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:181)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Thanks,
    Ankita

    Hi,
    I am trying to do this note only but when i goto exhange profile home page its locking XILDUSER on refresh click,
    Now next issue thats coming is GO.BAT is also not starting
    its saying :Connection Lost error
    what shd i do??
    Regards
    Ankita

  • Config stack trace,insufficient privilledge and DB instance unavailbl error

    I am installing oracle 11.1.0.6 on windows xp professional[not the home edition].
    It installed successfully, but want to configure the EM Console manually. It shows the following 3 errors;
    Jan 16, 2011 3:35:31 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: orcl Host: don_h Node: null OH: D:\app\doN_H agentHome: null isCentral: false
    Jan 16, 2011 3:35:31 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jan 16, 2011 3:35:31 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: D:\app\doN_H, and user:
    Jan 16, 2011 3:35:36 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01031: insufficient privileges
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01031: insufficient privileges
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
    at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:364)
    at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:106)
    at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:148)
    at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:720)
    at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1982)
    at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2725)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Jan 16, 2011 3:35:36 PM oracle.sysman.emcp.DatabaseChecks isASMDb
    CONFIG: Database instance unavailable.
    oracle.sysman.emcp.exception.DatabaseUnavailableException: Database instance unavailable.
    at oracle.sysman.emcp.DatabaseChecks.throwDBUnavailableException(DatabaseChecks.java:136)
    at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:129)
    at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:148)
    at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:720)
    at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1982)
    at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2725)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Jan 16, 2011 3:35:36 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jan 16, 2011 3:35:43 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Jan 16, 2011 3:35:53 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jan 16, 2011 3:35:53 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: D:\app\doN_H, and user: SYS
    Jan 16, 2011 3:35:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: Waiting for service 'OracleDBConsoleorcl' to fully start
    Jan 16, 2011 3:45:48 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl' to fully start
    Jan 16, 2011 3:45:58 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at D:\app\doN_H\cfgtoollogs\emca\orcl\emca_2011_01_16_15_35_22.log for more details.
    Jan 16, 2011 3:45:58 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:869)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:250)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:213)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:235)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:535)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1215)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Ur advice on how to solve this prob is highly needed pls

    I am installing oracle 11.1.0.6 on windows xp professional[not the home edition].
    NO Oracle version is ever supported on any HOME edition of Windows.
    when all else fails Read The Fine Manual
    http://www.oracle.com/pls/db111/portal.portal_db?selected=11&frame=#microsoft_windows_installation_guides
    Tens of THOUSANDS of folks have successfully install Oracle on Windows by RTFM, Installation Guide

  • Sqlplus stack trace, dynamic link error.

    When using sqlplus through the Oracle Enterprise Manager, or on the commandline, if I try to query a XMLType table, it dumps a stack trace, failing with the error message:
    Dynamic link error: libxdb.so: cannot open shared object file: No such file or directory
    I've done a full Oracle 9.2.0.1.0 Client installation, but this library isn't in my $ORACLE_HOME/lib. How do I get this file?

    Hi,
    Maybe not much use to you, but on Solaris, with a full Enterprise install, this library is in my $ORACLE_HOME/lib.
    So maybe you can find it on the EE CDROM?
    Regards
    Pete

  • Errors;Insufficient priviledges, Config:DB instance, and Config:Stack trace

    I am installing oracle 11.1.0.6 on windows xp professional[not the home edition].
    It installed successfully, but want to configure the EM Console manually. It shows the following 3 errors;
    Jan 16, 2011 3:35:31 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: orcl Host: don_h Node: null OH: D:\app\doN_H agentHome: null isCentral: false
    Jan 16, 2011 3:35:31 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jan 16, 2011 3:35:31 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: D:\app\doN_H, and user:
    Jan 16, 2011 3:35:36 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01031: insufficient privileges
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01031: insufficient privileges
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:364)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:106)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:148)
         at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:720)
         at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1982)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2725)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Jan 16, 2011 3:35:36 PM oracle.sysman.emcp.DatabaseChecks isASMDb
    CONFIG: Database instance unavailable.
    oracle.sysman.emcp.exception.DatabaseUnavailableException: Database instance unavailable.
         at oracle.sysman.emcp.DatabaseChecks.throwDBUnavailableException(DatabaseChecks.java:136)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:129)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:148)
         at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:720)
         at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1982)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2725)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Jan 16, 2011 3:35:36 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jan 16, 2011 3:35:43 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Jan 16, 2011 3:35:53 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jan 16, 2011 3:35:53 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: D:\app\doN_H, and user: SYS
    Jan 16, 2011 3:35:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: Waiting for service 'OracleDBConsoleorcl' to fully start
    Jan 16, 2011 3:45:48 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl' to fully start
    Jan 16, 2011 3:45:58 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at D:\app\doN_H\cfgtoollogs\emca\orcl\emca_2011_01_16_15_35_22.log for more details.
    Jan 16, 2011 3:45:58 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
         at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:869)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:250)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:213)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:235)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:535)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1215)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Ur advice on how to solve this prob is highly needed pls

    Pl see you duplicate post here - Error trying to configure enterprise console
    Pl post the requested information in that thread.
    HTH
    Srini

Maybe you are looking for

  • Problem with JNI and Tomcat in windows

    Hello guys... I have the following problem. I used Tomcat 4 and I have following ApiEncriptacion class, in package com.servipag.sts; package com.servipag.sts; class ApiEncriptacion      public native String encripta(String texto, String ubicacionLlav

  • I've tried everything I can possibly think of to improve my computer's performance, and it seems to be getting slower every day.

    Before I begin, let me post my system specs real quick: Hardware Overview:   Model Name: MacBook   Model Identifier: MacBook5,1   Processor Name: Intel Core 2 Duo   Processor Speed: 2 GHz   Number of Processors: 1   Total Number of Cores: 2   L2 Cach

  • Network Shares Forgotten

    Every time I want to open a file from within a program, the dialog box defaults to my 'Documents' folder. I then have to navigate to the afp network share folder again to open another file from the same folder. The dialog box seems to remember local

  • EJBs in dynpro

    Hi all, I want to use  ejbs in my dynpro. In this case, is it required to use a command bean i.e an intermediate layer? The ejbs will have business functions. To use an ejb using a javabean model, i'll bind the context attributes of component to that

  • GUI event handling of 1.4.1 vs. 1.3.1

    Hi, Has anyone else experienced strange event handling problems when migrating from 1.3.1 to 1.4.1? My GUI applications that make use of Swing's AbstractTableModel suddenly don't track mouse and selection events quickly anymore. Formerly zippy tables