Accessing user libraries from deployed JSP. Problem

I've created a workspace and project contining 1 web bean "AQABeanPK1.AQATableView" .
I then used the 'manage libaries' to add it to Jdeveloper as a library.
I also added the webbean to Jdeveloper via the manage web objects tool
In my jsp project I included the library in the project settings
created a JSP and used the web bean from the component palette.
When I deploy the JSP I get the error :-
Errors compiling:C:\jdev903\j2ee\home\application-deployments\webapp1\webapp1\persistence\_pages\\_CustomersView1__Browse.java
Line # Error
118
[jsp src:line #:22]
Class AQABeanPK1.AQATableView not found. AQABeanPK1.AQATableView CA = null;
129
[jsp src:line #:22]
Class AQABeanPK1.AQATableView not found. CA = (AQABeanPK1.AQATableView) pageContext.findAttribute("CA");
134
[jsp src:line #:22]
Class AQABeanPK1.AQATableView not found. CA = (AQABeanPK1.AQATableView) pageContext.findAttribute("CA");
139
[jsp src:line #:24]
Variable CA may not have been initialized. CA.render();
If I create the webbean in the same project as the JSP then I get a successful run.
Any help on deploying user libraires would be appreciated
Cheers
Colin

Place your web bean .jar file in the OC4J j2ee\home\lib directory.

Similar Messages

  • Close the ADF popup window from deployed JSP in other server

    I am attempting to open jsp page which one is deployed on tomcat server in adf pop up window from cmd button event.and this first jsp will forward to second jsp and i should able to close from pop window from second jsp close button.
    This is what i did:
    1) created pop-up window and run the delployed jsp on pop up page
    2) i used window.close script in second jsp but not popup window is not get closed .
    help me to achieve this pblm ....

    i was trying to open &close other server's jsp from ADF pop-up window ... so base is internal window (pop-up) only ,
    and already i used onclick="window.close();" in command button...but its not closeing the adf pop-up window ... how that jsp cmd button onclick event take control of adf pop-up to close ?
    help me ???

  • Problem in Accessing User Objects from ADS

    hi,
    I am trying to search for the users from the root domain exchange.com in Active Directory Service
    I am getting an exception like this
    javax.naming.PartialResultException: Unprocessed Continuation Reference(s); rema
    ining name 'dc=exchange,dc=com'
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2695)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2669)
    at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1757)
    at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1680)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirCon
    text.java:368)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
    positeDirContext.java:328)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
    positeDirContext.java:313)
    at javax.naming.directory.InitialDirContext.search(InitialDirContext.jav
    a:238)
    at SearchActive.main(SearchActive.java:55)
    The Code I used is as follows
    import javax.naming.*;
    import javax.naming.directory.*;
    import java.util.Hashtable;
    import java.util.Enumeration;
    public class SearchActive
         public static void main(String[] args)
              // rechargement de l'environnement de l'initialisation du context
              DirContext ctx = null;
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://200.200.200.12/");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,"200.200.200.12\\Administrator");
              // specify the username
         //     env.put(Context.SECURITY_CREDENTIALS,"digactive");
              // specify the password
              try {
                   // Crer le context initial
                   ctx = new InitialDirContext(env);
                   System.out.println("8");
                   SearchControls cons = new SearchControls();
                   cons.setSearchScope(SearchControls.SUBTREE_SCOPE);
                   NamingEnumeration answer = ctx.search("dc=exchange,dc=com","objectclass=user",cons);
                   while(answer.hasMore())
                        SearchResult result = (SearchResult)answer.next();
                        Attributes rattr = result.getAttributes();
                        for(NamingEnumeration ne = rattr.getAll();ne.hasMore();)
                             Attribute natt = (Attribute)ne.next();
                             String sid = natt.getID();
                             for(Enumeration vals = natt.getAll();vals.hasMoreElements();)
                                  System.out.println(sid+": "+vals.nextElement());
              catch(Exception e)
                   e.printStackTrace();     
    Can anybody tell me where is the problem
    Thanks
    Thiru

    Hi, all
    Please help me to check where is wrong for the code to access LDAP and get a user's email address.
    The code is shown below.
    It works before calling ctx.getAttributes, and it shows the error msg as below after calling ctx.getAttributes.
    "Problem getting attribute:javax.naming.NamingException: [LDAP: error code 1 - 00000000: LdapErr: DSID-0C0905FF, comment: In order to perform  this operation a successful bind must be completed on the connection., data 0, veceFinished executing"
    I don't know if the getAttributes parameter setting is wrong or the env constant setting wroong.
    package com.mycompany;
    import java.io.*;
    import java.util.*;
    import javax.naming.Context;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.Attributes;
    import javax.naming.NamingException;
    public class aaa
         public static void main(String args[]) throws Exception
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY,
         "com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://mycompany.com");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,"mycompany.com/Administrator/");
              env.put( Context.REFERRAL, "follow" );
              try
         System.out.println("0");
              // Create the initial directory context
              DirContext ctx = new InitialDirContext(env);
         System.out.println("1");
              Attributes attrs = ctx.getAttributes("cn=andym,cn=Users,dc=mycompany,dc=com");
                   System.out.println("mail: " + attrs.get("mail").get());
              catch (NamingException e)
              System.err.println("Problem getting attribute:" + e);

  • Accessing A DB From A JSP

    Hi,
    I've been using the code at the bottom of this message to access a database. I've been having some trouble though when the user stops the browser session mid way through a page loading. Occasionally it can cause the web server to crash. I'm guessing a connection must be left open somewhere, and that is causing the problem. Has anyone got any advice on ways I can avoid this?
    Cheers,
    Lee
    import java.sql.*;
    import java.util.*;
    public class DBAccess {
      // Username, password & URL for accessing tables
      private String uname = "username";
      private String pword = "password";
      private String url = "Conn URL here";
      // Declare connection and statement that will be used to create recordsets
      private Connection conn = null;
      private Statement stmt = null;
      private ResultSet rs = null;
      private int rowCount = 0;
      private int colCount = 0;
      private Properties props = new Properties();
      private Driver drv = null;
      // Get records from table and return in a 3D array
      public String[][] getTableRecords(String strSQL) {
        // Ensure that the variables used are set to 0 or null.  This will ensure
        // that there are no errors related to the results containing info from a
        // previous procedure call.
        rs = null;
        conn = null;
        stmt = null;
        rowCount = 0;
        colCount = 0;
        props = new Properties();
        drv = null;
        try {
          drv = (Driver) Class.forName("somedriver").newInstance();
        catch (Exception e) {
          System.out.println(e);
          return null;
        // Set properties for making a connection
        props.put("user", uname);
        props.put("password", pword);
        try {
          conn = drv.connect(url, props);
          stmt = conn.createStatement();
        catch (SQLException e) {
          System.out.println("SQL Error : " + e);
          return null;
        String[][] results = new String[0][0];
        // Execute SQL Query
        try {
          rs = stmt.executeQuery(strSQL);
          ResultSetMetaData rsmd = rs.getMetaData();
          // Get amount of columns.
          colCount = rsmd.getColumnCount();
          while (rs.next()) {
            rowCount++;
          // Remember to reset the resultset
          rs.close();
          rs = stmt.executeQuery(strSQL);
          if (rowCount < 1) {
            results = null;
          else {
            results = new String[rowCount][colCount];
            int currentRow = 0;
            while (rs.next()) {
              for (int i = 1; i <= colCount; i++) {
                String currentField = rs.getString(i);
                if (currentField == null) {
                  currentField = "";
                // -1 is used to make sure that the rows/columns with an index of 0 are filled
                results[currentRow][i - 1] = currentField;
              currentRow++;
          // Close everything
          rs.close();
          stmt.close();
          conn.close();
        catch (Exception e) {
          results = null;
          System.out.println("SQL Error : "+ e);
        return results;
      // Execute some SQL that doesn't return a recordset
      public void execSQL(String action) {
        try {
          drv = (Driver) Class.forName("drivername").newInstance();
        catch (Exception e) {
          System.out.println(e);
        // Set properties for making a connection
        props = new Properties();
        props.put("user", uname);
        props.put("password", pword);
        try {
          conn = drv.connect(url, props);
          stmt = conn.createStatement();
          stmt.execute(action);
          // Close connection and statement
          stmt.close();
          conn.close();
        catch (SQLException e) {
          try {
            conn.close();
            stmt.close();
          catch (Exception f) {
          System.out.println("SQL Error : " + e);
      // Return the number of columns that are in the resultset
      public int getNoOfCols() {
        return colCount;
    }

    There are more than one possibilities out there. I want to describe two of it.
    1) For rapid software development, you can use taglibs (Java Standard Tag Libraries or jakarta db taglibs) in your jsps. There are also other taglibs from different vendors, but I know only these two.
    2) You can use JNDI to establish a database connection through a datasource object. This is the more often way in a production environment. There are also possibilities with pooling and so on.
    It depends, on what you want to develop, for a simple page or prototyping, and low traffic, it is possible to use taglibs. For a complete web application, it is better to establish the connection through Datasources, which are handled by the JSP / Servlet container or the application server.
    so long
    ThK

  • Accessing a EJB from a JSP

              A scenario from some one new to web server, server application development.
              I have downloaded and installed an evaluation copy of WebLogic 7.x and successfully
              installed it (W2K version). The product starts up without error and I can connect
              to is successfully. I have created a simple java bean (actually an EJB) and have
              been able to deploy it successfully without any errors.
              I have a simple JSP invoked from a simple HTML page that contains a simple form.
              The JSP is attempting to instaniate the bean via the jsp:useBean tag however,
              all I am able to get back is an error that tells me that my class "could not be
              loaded". Here is the stack trace:
              weblogic.servlet.jsp.JspException: (line 3): class 'USDataworks.MICRworks.MICRworksBean'
              could not be loaded
                   at weblogic.servlet.jsp.JspLexer.jspException(JspLexer.java:710)
                   at weblogic.servlet.jsp.JspLexer.processBeanTag(JspLexer.java:1372)
                   at weblogic.servlet.jsp.JspLexer.mXML_OPEN_USEBEAN(JspLexer.java:3612)
                   at weblogic.servlet.jsp.JspLexer.mXML_THING(JspLexer.java:1924)
                   at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1817)
                   at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1745)
                   at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:959)
                   at weblogic.servlet.jsp.JspParser.doit(JspParser.java:90)
                   at weblogic.servlet.jsp.JspParser.parse(JspParser.java:213)
                   at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
                   at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:258)
                   at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:353)
                   at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:211)
                   at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:164)
                   at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:517)
                   at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:351)
                   at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
                   at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
                   at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
                   at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
                   at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              If I leave out the jsp:useBean tag I am able to return a simple HTML page based
              on information sent to the server, so I know some of the environment is properly
              set up.
              I have browsed through some of the WebLogic site and have been referred to any
              number of configuration files (*.properties) which do not appear to exist. I
              am frustrated and confused and would appreciate any help in getting this to work.
              Thank you.
              

              In the Weblogic 7.0.2 instalation, there is a tool for creating taglibrary to wrap
              an ejb cals to jsp tags. The tool names simply ejb2jsp and is described in document
              : "Programming Weblogic JSP" (pdf). My problem is: when I try to load my ejb ...jar
              file, the tool throws this Null pointer exception: (below).
              Have anybody some experience with this? It's the same for gui and cmd-line version.
              Could you advice me?
              Thank you.
              D:\SRC\jbproject\TestEntity>java weblogic.servlet.ejb2jsp.gui.Main
              error occurred: java.lang.NullPointerException
              java.lang.NullPointerException
              at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
              at java.lang.ClassLoader.loadClass(ClassLoader.java:287)
              at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
              at weblogic.servlet.ejb2jsp.Utils.createBeanDescriptor(Utils.java:343)
              at weblogic.servlet.ejb2jsp.Utils.createDefaultDescriptor(Utils.java:314
              at weblogic.servlet.ejb2jsp.Utils.createDefaultDescriptor(Utils.java:266
              at weblogic.servlet.ejb2jsp.gui.Main.loadFromPaths(Main.java:391)
              at weblogic.servlet.ejb2jsp.gui.Main.doNew(Main.java:378)
              at weblogic.servlet.ejb2jsp.gui.Main$5.run(Main.java:575)
              at weblogic.servlet.ejb2jsp.gui.MainWorker.run(Main.java:757)
              at java.lang.Thread.run(Thread.java:479)
              error occurred: java.lang.NullPointerException
              java.lang.NullPointerException
              at weblogic.servlet.ejb2jsp.gui.Main.doNew(Main.java:379)
              at weblogic.servlet.ejb2jsp.gui.Main$5.run(Main.java:575)
              at weblogic.servlet.ejb2jsp.gui.MainWorker.run(Main.java:757)
              at java.lang.Thread.run(Thread.java:479)
              "Xiang Rao" <[email protected]> wrote:
              >
              >EJB and Java Bean are two different things. I don't think you can use
              >useBean tag
              >for EJB. On the other hand, you can write a Java Bean to wrap your EJB
              >and use
              >useBean tag.
              >
              >"Marek Kossak" <[email protected]> wrote:
              >>
              >>A scenario from some one new to web server, server application development.
              >>
              >>I have downloaded and installed an evaluation copy of WebLogic 7.x and
              >>successfully
              >>installed it (W2K version). The product starts up without error and
              >>I can connect
              >>to is successfully. I have created a simple java bean (actually an
              >EJB)
              >>and have
              >>been able to deploy it successfully without any errors.
              >>
              >>I have a simple JSP invoked from a simple HTML page that contains a
              >simple
              >>form.
              >> The JSP is attempting to instaniate the bean via the jsp:useBean tag
              >>however,
              >>all I am able to get back is an error that tells me that my class "could
              >>not be
              >>loaded". Here is the stack trace:
              >>
              >>weblogic.servlet.jsp.JspException: (line 3): class 'USDataworks.MICRworks.MICRworksBean'
              >>could not be loaded
              >>     at weblogic.servlet.jsp.JspLexer.jspException(JspLexer.java:710)
              >>     at weblogic.servlet.jsp.JspLexer.processBeanTag(JspLexer.java:1372)
              >>     at weblogic.servlet.jsp.JspLexer.mXML_OPEN_USEBEAN(JspLexer.java:3612)
              >>     at weblogic.servlet.jsp.JspLexer.mXML_THING(JspLexer.java:1924)
              >>     at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1817)
              >>     at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1745)
              >>     at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:959)
              >>     at weblogic.servlet.jsp.JspParser.doit(JspParser.java:90)
              >>     at weblogic.servlet.jsp.JspParser.parse(JspParser.java:213)
              >>     at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
              >>     at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:258)
              >>     at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:353)
              >>     at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:211)
              >>     at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:164)
              >>     at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:517)
              >>     at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:351)
              >>     at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
              >>     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5445)
              >>     at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
              >>     at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
              >>     at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
              >>     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              >>     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              >>
              >>If I leave out the jsp:useBean tag I am able to return a simple HTML
              >>page based
              >>on information sent to the server, so I know some of the environment
              >>is properly
              >>set up.
              >>
              >>I have browsed through some of the WebLogic site and have been referred
              >>to any
              >>number of configuration files (*.properties) which do not appear to
              >exist.
              >> I
              >>am frustrated and confused and would appreciate any help in getting
              >this
              >>to work.
              >>
              >>Thank you.
              >
              

  • Accessing user attributes from a pipeline component

    Hello,
    I'm using WLCS & WLPS 3.1. I use webflow and I have implemented the page
    transition myself to work with the portal. Everything is working fine.
    I'm planning to implement a complex step of a business process as a pipeline
    component. For various reasons, this PC will be implemented as an EJB. To
    perform its job, this PC needs to get information about the user that is
    currently logged in. More specifically, it needs to lookup custom attributes
    from the user profile (i.e. user property set).
    So my question is : is this possible directly from the PC, or do I have to
    populate the pipeline session with required information in the input
    processor?
    Thank you for your advice
    Nicolas

    Hello Ture,
    Thanks for both posts.
    Nicolas
    "Ture Hoefner" <[email protected]> wrote in message
    news:[email protected]..
    ... To perform its job, this PC needs to get information about the userthat
    is
    currently logged in. More specifically, it needs to lookup customattributes
    from the user profile (i.e. user property set).
    So my question is : is this possible directly from the PC, or do I haveto
    populate the pipeline session with required information in the input
    processor?Hello Nicolas,
    I have not tried this myself. I think that the disconnect between the
    pipeline session and the portal session is probably the fact that theattributes
    in the portal session have their keys "fixed up" by prepending the portal
    request URI. This is made possible by the
    com.beasys.commerce.foundation.flow.jsp.DefaultDestinationDeterminer,which the
    PortalDestinationDeterminer extends. It puts a "TRAFFIC.URI" attributeinto the
    each request that goes through the FlowManagerServlet for the portal. Inthe
    Acme exampleportal, the "SERVICEMANAGER.USER" attribute is put into theportal
    HttpSession as "exampleportal.SERVICEMANAGER.USER".
    If you want to get to the cached profile from your portal from yourpipeline
    component (PC) then you would have to know that the name is "fixed up" tobe
    "exampleportal.CACHED_PROFILE". There are probably several different waysyou
    could get the "TRAFFIC.URI" information to your PC.
    Ture Hoefner
    BEA Systems, Inc.
    2590 Pearl St.
    Suite 110
    Boulder, CO 80302
    www.bea.com

  • Error accessing User-Database from Jython CLI

    Hi All,
    once again, we experience a problem, when running udb commands from the Jython CLI, namely one of 'udb.g.la' or 'udb.u.la' (Others may be affected as well).
    Our user is logged on and the application handle works well for any other CLI calls.
    Our code looks something like this:
    app = PyCLUI()
    app.execRaw('udb.login'{...})   # as admin user
    app.execRaw('udb.g.la',{})This fails with a ClientException. I have printed the stack-trace:
    com.sun.n1.sps.model.util.ClientException
         at com.sun.n1.sps.model.util.ClientException.wrap(ClientException.java:96)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.innerExecute(CommandManagerImpl.java:312)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.execute(CommandManagerImpl.java:170)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:173)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at clui$py.execRaw$4(clui.py:46)
         at clui$py.call_function(clui.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyTableCode.call(PyTableCode.java:333)
         at org.python.core.PyFunction.__call__(PyFunction.java:195)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at org.python.pycode._pyx0.dumpUsers$36(cli_base.py:327)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyFunction.__call__(PyFunction.java:189)
         at org.python.core.PyObject._callextra(PyObject.java:786)
         at org.python.pycode._pyx0.main$44(cli_base.py:556)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:277)
         at org.python.core.PyFunction.__call__(PyFunction.java:174)
         at org.python.pycode._pyx0.f$0(cli_base.py:563)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyCode.call(PyCode.java:14)
         at org.python.core.Py.runCode(Py.java:1211)
         at org.python.core.__builtin__.execfile_flags(__builtin__.java:319)
         at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:158)
         at org.python.util.jython.main(jython.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.run(BootStrap.java:254)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.main(BootStrap.java:52)
    java.lang.ArrayStoreException
         at com.raplix.util.proxy.ProxyManager.privateToPublicInstance(ProxyManager.java:422)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.innerExecute(CommandManagerImpl.java:304)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.execute(CommandManagerImpl.java:170)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:173)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at clui$py.execRaw$4(clui.py:46)
         at clui$py.call_function(clui.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyTableCode.call(PyTableCode.java:333)
         at org.python.core.PyFunction.__call__(PyFunction.java:195)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at org.python.pycode._pyx0.dumpUsers$36(cli_base.py:327)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyFunction.__call__(PyFunction.java:189)
         at org.python.core.PyObject._callextra(PyObject.java:786)
         at org.python.pycode._pyx0.main$44(cli_base.py:556)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:277)
         at org.python.core.PyFunction.__call__(PyFunction.java:174)
         at org.python.pycode._pyx0.f$0(cli_base.py:563)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyCode.call(PyCode.java:14)
         at org.python.core.Py.runCode(Py.java:1211)
         at org.python.core.__builtin__.execfile_flags(__builtin__.java:319)
         at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:158)
         at org.python.util.jython.main(jython.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.run(BootStrap.java:254)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.main(BootStrap.java:52)I am not able to dig deeper, unfortunately. Is this worth filing a bug?
    Regards,
    Frank

    I believe there was a bug filed on this issue. A patch for this issue has been released.
    I think following solaris patches address this issue for MS/CLI 122989-02, 122990-02, 122991-02, 122992-02.
    hope this helps,
    Aj

  • Accessing user connected to my JSP application

    Does somebody know how can i access the informations of all my
    connected users at a given time in my JSP application with OC4J.
    I want to pick a user randomly in that pool and make him win a
    prize so that my users will want to come back frequently.
    I tought of a autonomous Java thread that can access those info
    of my users and pick someone ranomly at a given interval.
    Thanks

    You need to make sure that your users are logged in using one of
    the OC4J usermanagers. I am assuming you have already worked
    that one out.
    You will need a bean that collects all of the usernames, and
    then a method in the bean the randomly selects one. So the rub
    is, how do you get at the usernames?
    Depending on the usermanager, you would get the users with the
    method
    List users = usermanager.getUsers(0,usermanager.getUserCount());
    See the api on usermanager's
    http://www.orionserver.com/docs/api/index.html
    regards,
    the elephantwalker
    www.elephantwalker.com

  • Can't access a Bean from a JSP page !

    Hello everybody,
    I work with Oracle 8i 8.1.7, it means Oracle HTTP Server + Oracle JSP 1.1.0.0.0. But i don't use the Oracle Servlet Engine.
    In this context, i try to load ` JSP page, which instantiate a Bean. But it is impossible to access to this bean !...
    1) In jserv.properties file, i have mentionned the CLASSPATH to beans directory, as said in the OracleJSP documentation :
    wrapper.classpath=D:\...\myBeansDirectory\
    2) i have copied the .class file of my bean in the bean directory ...
    So did i forget something ?
    Seeking desperatly help !
    Thanks.

    Hi,
    Did you restart the HTTP listener after adding the CLASSPATH to the jserv.properties file? The change in jserv.properties (and in any other configuration files) will take effect only after the listener is restarted.
    Good luck,
    Srinivas.

  • ClassNotFoundException when trying to access applet (jar) from a jsp page?

    I have my applet in a jar file and I am specifying the applet tag in my jsp page as follows:
    <applet code="website.utils.DragDropUploadApplet.class" name="DragDropApp" width="17" height="17" archive="utils.jar" codebase="." ></applet>
    I tried with and without the codebase. The jar file is at the same location as the jsp page which has the above applet tag, however I get a ClassNotFoundException in the Sun Java Console in Internet Explorer. Any inputs on resolving this will be much appreciated.
    Here is the error:
    load: class website.utils.DragDropUploadApplet.class not found.
    java.lang.ClassNotFoundException: website.utils.DragDropUploadApplet.class
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 10 more
    Exception in thread "Thread-12" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-website.utils.DragDropUploadApplet.class" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    load: class website.utils.DragDropUploadApplet.class not found.
    java.lang.ClassNotFoundException: website.utils.DragDropUploadApplet.class
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 10 more
    Exception in thread "Thread-13" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-website.utils.DragDropUploadApplet.class" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    load: class website.utils.DragDropUploadApplet.class not found.
    java.lang.ClassNotFoundException: website.utils.DragDropUploadApplet.class
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 10 more
    Exception in thread "Thread-14" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-website.utils.DragDropUploadApplet.class" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    load: class website.utils.DragDropUploadApplet.class not found.
    java.lang.ClassNotFoundException: website.utils.DragDropUploadApplet.class
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 10 more
    Exception in thread "Thread-15" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    load: class website.utils.DragDropUploadApplet.class not found.
    java.lang.ClassNotFoundException: website.utils.DragDropUploadApplet.class
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 10 more
    Exception in thread "Thread-16" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-website.utils.DragDropUploadApplet.class" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-website.utils.DragDropUploadApplet.class" java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Thanks,
    Monisha

    Hi mshah101,
    This can happen if the applet is compiled using an higher version of java and the browser is pointing to an older version (even if minor version number is higher)

  • Accessing input field from the JSP in dynpage

    HI all,
          I am trying to access the input field of the jsp page in my JSPDynpage but it is always return null.My Input is a normal HTML element not a HTMLB element
    JSP File :
         <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
      <hbj:form id="myFormId" >
         <div class="content">
            <table cellpadding="2" cellspacing="2">
                        <tr>
                               <td>
                                  <label for="name"><strong>UserName:</strong></label><span id="info_name">(This field is required)</span><br />                           
                                     <input name="name" id="name" size="10" maxlength="10" type="text" />
                               </td>
                        </tr>
                        <tr>
                             <td>
                                  <label for="email"><strong>EmailID:</strong></label><span id="info_email">(This field is required)</span><br />                           
                                     <input name="email" id="email" size="20" maxlength="20" type="text" /></td>
                        </tr>\
    </Table>
    JSPDynpage:
           InputField myInputField = (InputField) getComponentByName("name");
         if (myInputField != null) {
          name = myInputField.getValueAsDataType().toString();
                   InputField myInputField1 = (InputField) getComponentByName("email");
         if (myInputField1 != null) {
          name = myInputField1.getValueAsDataType().toString();
    In both the cases myInputField and myInputField1 are null . My Question is what should be the parameter that i need to pass for getComponentByName method.
    Regards,
    Raj.

    hi,
    The way you are trying to get the input field value works good with hbj type elements.
    either you change your input field to an hbj one or use java script inside your jsp page to catch the value
    like
    for HTML:
    [HTML Input Field|http://www.w3schools.com/HTMLDOM/met_doc_getelementbyid.asp]
    and for HTMLB
    refer this link:
    [SAP HTMLB GuideLines|http://www.sapdesignguild.org/resources/htmlb_guidance/index.html]
    Regards,
    Srinu

  • Can you access ~\Users\Sharing from a PC on the network?

    I have a mixed home network of 3 PCs and one Mac Mini. I want to store all the digital music on the Mac Mini and share it with the PCs.
    I have successfully created networking links between the PCs and the Mac. For example, I setup a MYPC account on the Mac and I can map a PC network drive to \\MacMini\MYPC\Music. This works fine, and survives a reboot. BUT IT ONLY GETS ME INTO THE FOLDER ON THE MAC WITH THAT USER'S FILES (MYPC), NOWHERE ELSE. So it's not a directory everyone can use (public).
    I am trying to map \\MacMini\Users\Sharing and I can't get to it from the PC at all. I've tried using the IP address also. Nothing gets me there. This is after being connected in as an authorized account on the Mac. I thought that folder was open to all? Any suggestions?
    I've also tried using a public folder on the Mac account to share. Also unsuccesful. Each PC user can easily see their own public folder (and more). Sometimes after I'm logged in, I can directly type in the address \\MacMini\MacUser\Public and see it, but it's intermittment and unpredicatable. I'm, open to this route, if I could get it to work.
    This is a real head-scratcher. Please help me out.

    You will need to use Sharepoints in order to share specific folders
    http://www.hornware.com/sharepoints/
    iFelix

  • Accessing ~\Users\Sharing from a PC on the network - help!

    I have a mixed home network of 3 PCs and one Mac Mini. I want to store all the digital music on the Mac Mini and share it with the PCs.
    I have successfully created networking links between the PCs and the Mac. For example, I setup a MYPC account on the Mac and I can map a PC network drive to \\MacMini\MYPC\Music. This works fine, and survives a reboot. BUT IT ONLY GETS ME INTO THE FOLDER ON THE MAC WITH THAT USER'S FILES (MYPC), NOWHERE ELSE. So it's not a directory everyone can use (public).
    I am trying to map \\MacMini\Users\Sharing and I can't get to it from the PC at all. I've tried using the IP address also. Nothing gets me there. This is after being connected in as an authorized account on the Mac. I thought that folder was open to all? Any suggestions?
    I've also tried using a public folder on the Mac account to share. Also unsuccesful. Each PC user can easily see their own public folder (and more). Sometimes after I'm logged in, I can directly type in the address \\MacMini\MacUser\Public and see it, but it's intermittment and unpredicatable. I'm, open to this route, if I could get it to work.
    This is a real head-scratcher. Please help me out.
    Mac Mini / Windows   Mac OS X (10.4.5)  

    By default the only directories shared out to Windows clients are the home directories.
    If you want to share anything else you need to configure the file sharing server (in this case SMB) to tell it which directories to share, and under what name.
    If you're not familiar with configuring Samba, grab a copy of Sharepoints which will do the job for you.

  • Impossible to access a bean from a JSP in NES 4.0

    We are trying to use a bean in a JSP using the common tag <jsp:useBean id="... /> in a Netscape Enterprise Server 4.0.
    Always we obtain the same error: "JSP compilation error: java.lang.Exception: JSP parse error (line 43) - Incomplete tag ending of /jsp:useBean". Someone can help us?
    Thanks.

    Check NAS4.0 supports jsp 0.92 specs?
    use this tag...
    <USEBEAN name="..." type="..." lifespan="..." >
    </USEBEAN>

  • How to access my Libraries from Adobe Draw?

    I Used Adobe shape to create a vector file and I want to use that file on Adobe Illustrator Draw, but I can't find it when I try to import a file from cc. Is there any way I can use my vector files from Adobe Shape on Adobe Draw?

    Hi,
    You can import your Shapes file into Adobe Illustrator Draw by:
    1. Make sure that you are sign in Adobe Illustrator Draw with the same Creative Cloud account you use for creating Adobe Shape files.
    2. In Adobe Illustrator Draw, tap on the Shapes icon
    3. It will bring a popover window with "App Shapes" and "My Library". Tap on "My Library"
    4. Tap on "Change Library" and select the name of the Library you saved your Shape files.
    Hope this helps,
    Jose

Maybe you are looking for

  • Hi, I just got an Apple Thunderbolt Display. How can I connect it to my sony vaio pc? Thanks

    Hi, I just got an Apple Thunderbolt Display. How can I connect it to my sony vaio pc? At Apple Store they gave me a Mini Display Port to VGA Adapter, but monitor doesnt display any image. Thanks for your help!

  • Legal Control functionality for Purchase order

    Hi, We have a requirement where in while saving the Purchase Order, the system should look whether for that material if the legal control data/ foreign trade data is maintained specifying that it is a controlled substance then the licence should be m

  • Problem with Ukrainean , Russian , English language Route Description

    Hi All, I have come across a very much unique situation out here as below: 1. I have created a Route in Development server {English as logon language} with English description. 2. Then maintained the Translation for this English description into Ukra

  • UI of MFC app blurred

    I am trying to port my MFC app from VS2010 to VS2013. The UI of the app built with VS2013 is blurred (and larger). With VS2010 it was ok. I tried the setting in VS „Manifest Tool – Input and output – DPI Awareness". I tried all 3 values (None, High D

  • Operation Connection.rollback is not allowed during a global transaction.

    Hi I am getting the following exception when i try to deploy my application in the server. Is any body got the same error. please help me to solve this problem. com.ibm.mm.beans.CMBException: DSRA9350E: Operation Connection.rollback is not allowed du