Access Pointbase

How do I get to create new "instances" tables, etc. Also, how to modify existing pointbase tables via sql access..
Suppose I want to add tables to the TRAVEL database that comes with Creator, How do I do this?
running Creator/Pointbase on XP
Thanks...

Hi,
The Pointbase console can be started by using the executable startconsole.bat which is located in the folder:
<intall dir>\SunAppServer8\pointbase\tools\serveroption
Hope this helps
Cheers
Giri :-)
Creator Team

Similar Messages

  • How to access Pointbase?

    I create a domin,then I start the pointbase cmd,
    I fill username and password both same weblogic(url:jdbc:pointbase:server://localhost:9093/weblogic_eval and driver:com.pointbase.jdbc.jdbcUniversalDriver,but I can't login it.
    the error prompt is not port 9093 on listen,I don' know how to access!?

    Hi Fish,
    It looks like you are using the correct connection URL and driver so it is likely that Pointbase did not start when you started your server. You should check your command window for error messages regarding Pointbase. Also, make sure that your start script was invoked with POINTBASE_FLAG=true in your environment.
    If you don't know if POINTBASE_FLAG=true or how that would have gotten set then trace your start script and you will see that the setDomainEnv script is configured, by default, to use Pointbase.
    I can never remember the connection URL for the Pointbase console so whenever I use it I look at the value in one of the XML files in the config/jdbc dir in my domain: C:\bea_wlp102\user_projects\domains\my_domain\config\jdbc
    The URL is:
    jdbc:pointbase:server://localhost:9093/WEBLOGIC_EVAL
    The driver is:
    com.pointbase.jdbc.jdbcUniversalDriver
    I don't think the URL is case-sensitive, but just in case it is you might want to try consistent capitalization. For the user/password, the same thing. The XML file specifies WEBLOGIC, not weblogic.

  • Forte with Access/Pointbase

    Hi, I am new with Forte and I was wondering if anyone knows how to connect to a database using Forte. There are some connectionSource properties that I saw available but I have no idea how to connect them to either a Access database file or a pointbase database file. There are some URL's and driver's that I should know but I have no idea on how to start. Any tips?
    How do I initialise a pointbase database too?? I am trying to learn to create a database on my own computer without any network connection, hence could I run forte with a database available on my own computer thru pointbase or access?
    cheers.

    first you should check the tutorial on jdbc, which is very good.
    in your class, you'll need to load a driver, for example, jdbc.odbc.JdbcOdbcSunDriver (if memory serves me correctly, you'll then also need to set up a connection ... all explained in the jdbc tutorial. to use access, you'll also need to point to the database through control panel. in control panel choose odbc drivers (using winme), choose admin. tools in xp, the click on odbc, and then i forget the rest since i don'y use access anymore. you'll find how to do this somewhere on the net.

  • Problem accessing data from Pointbase embedded in the application server

    When i try to access any information from a table in the pointbase database thru my jsp file it gives the error :"Invalid table name 'Table-name' specified at position 'position'.
    I am using the sun application server installed on the solaris machine and i created new table in the sample database PBPublic schema (a default schema that comes with the embedded pointbase database) and when i try to get data from the table i created i get the specified error.The connection string i use is :
    String l_driver = "com.pointbase.jdbc.jdbcUniversalDriver";
              Class.forName(l_driver).newInstance();
              // The URL for the sample PointBase database          
              String l_URL = "jdbc:pointbase:embedded:sample";
              // Database UserID          
              String l_UID = "pbpublic";
              // Database Password          
              String l_PWD = "pbpublic";
              // Establish connection with the database and return a Connection object          
              con = DriverManager.getConnection(l_URL, l_UID, l_PWD);
    it connects me to the database but does not fetch results on the query i execute.
    can anyone suggest what am i suppose to do for resolving this error.

    I've never used an embedded db. My connection settings are:
    <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="com.pointbase.jdbc.jdbcDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="jdbc-pointbase-pool" pool-resize-quantity="2" steady-pool-size="8">
    <property name="DatabaseName" value="jdbc:pointbase:server://localhost:9092/sample"/>
    <property name="Password" value="pbpublic"/>
    <property name="User" value="pbpublic"/>
    </jdbc-connection-pool>
    -- markus.

  • Pointbase : How can I create a stored procedure with Pointbase database?

    Hello,
    Excuse me for my english, I'm not anglophone. I try to create a stored procedure.
    This is my file SampleExternalMethods.java :
      import java.sql.*;    //import com.pointbase.jdbc.jdbcInOutDoubleWrapper;          public class SampleExternalMethods    {      // A connection object to allow database callback      static Connection conn = null;      static Statement l_stmt;      static Statement m_stmt;      static CallableStatement m_callStmt = null;      static ResultSet l_rs = null;          public static void main(String[] args)      {        try        {          String url = "jdbc:pointbase:server://localhost/pointbaseDB";          String username = "PBPUBLIC";          String password = "PBPUBLIC";          conn = DriverManager.getConnection(url, username, password);          doCreateProcedure();          doInvokeProcedure();        } catch (SQLException e) {          e.printStackTrace();        } finally {          if (m_stmt != null) {            try {              m_stmt.close();            } catch (Exception e) {              e.printStackTrace();            }          }          if (m_callStmt != null) {            try {              m_callStmt.close();            } catch (Exception e) {              e.printStackTrace();            }          }          if (conn != null) {            try {              conn.close();            } catch (Exception e) {              e.printStackTrace();            }          }        }      }                  public static void getCountry(String Iso_Code)      {        try        {          // Query the database for the country iso code          l_stmt = conn.createStatement();          l_rs = l_stmt.executeQuery( "SELECT * FROM countries"          + " WHERE country_iso_code ='" + Iso_Code + "'");          //Affichage du résultat de la requête          l_rs.next();          System.out.print(l_rs.getString(1) + " - ");          System.out.print(l_rs.getString(2) + " - ");          System.out.println(l_rs.getString(3));          // Close the result set          l_rs.close();        } catch (SQLException e) {          e.printStackTrace();        } finally {          if (l_rs != null) {            try {              l_rs.close();            } catch (Exception e) {              e.printStackTrace();            }          }          if (l_stmt != null) {            try {              l_stmt.close();            } catch (Exception e) {              e.printStackTrace();            }          }        }      }            public static void doCreateProcedure() throws SQLException {        // SQL statement to create a stored procedure        String SQL_CREATE_PROC = "CREATE PROCEDURE getCountry(IN P1 VARCHAR(30))"        + " LANGUAGE JAVA"        + " SPECIFIC getCountry"        + " NO SQL"        + " EXTERNAL NAME \"SampleExternalMethods::getCountry\""        + " PARAMETER STYLE SQL";        // Create a SQL statement        m_stmt = conn.createStatement();        // Execute the SQL        m_stmt.executeUpdate(SQL_CREATE_PROC);        // Close the statement        //m_stmt.close();      }          public static void doInvokeProcedure() throws SQLException {        // Create SQL to invoke stored procedures        String SQL_USE_PROC = "{ call getCountry(?) }";        // Create a callable statement with three binding parameters        m_callStmt = conn.prepareCall(SQL_USE_PROC);        m_callStmt.setString(1, "CA");        m_callStmt.executeQuery();        // Close the callable statement        //m_callStmt.close();      }    } 
    Afterwards, I have read this note in a Pointbase document:
    To invoke the dateConvert external Java method from a stored function, you must use the
    CREATE FUNCTION statement. The dateConvert external Java method is called from the
    class, SampleExternalMethods.
    In order for the database to access this external Java method, the class SampleExternalMethods
    must be included in the database CLASSPATH. For PointBase Embedded - Server Option, it
    must be in the Server CLASSPATH, but not in the Client CLASSPATH.
    If PointBase Server is run with the Java Security Manager, in the java policy file grant
    ’com.pointbase.sp.spPermission’ to the class that implements the external Java method.
    An "spPermission" consists of a class name with no action. The class name is a name of a class
    that could be used in creating a Stored Procedure in PointBase. The naming convention follows
    the hierarchical property naming convention and that is supported by
    "java.security.BasicPermission". An asterisk may appear by itself, or if immediately preceded
    by ".", may appear at the end of the name, to signify a wildcard match. The name cannot
    contain any white spaces.
    I'm not sure, but I suppose that I must include the class SampleExternalMethods in a .jar file.
    The database CLASSPATH could be : C:\Sun\AppServer\pointbase\lib\
    These my files in this database CLASSPATH:
    pbclient.jar
    pbembedded.jar
    pbtools.jar
    pbupgrade.jar
    I have tryed to include the class SampleExternalMethods in pbclient.jar and pbembedded.jar with this command:
    jar -uf pbembedded.jar SampleExternalMethods
    Afterwards I do that,
    1) Start Pointbase
    2) Configuration of classpath
    set classpath=C:\Sun\AppServer\pointbase\lib\pbclient.jar
    set classpath=%classpath%;D:\J2EE\Ch07Code\Ch07_06
    I precise that my file SampleExternalMethods is into D:\J2EE\Ch07Code\Ch07_06\Ch07.
    Then, I run the program:
    D:\J2EE\Ch07Code\Ch07_06>java -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver Ch07.SampleExternalMethods
    But I have an error message:
    Exception in thread "main" java.lang.NoClassDefFoundError: Ch07.SampleExternalMethods (wrong name: SampleExternalMethods)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.DefineClass(ClassLoader.java:539)
    The problem, I suppose, comes from that the class SampleExternalMethods
    must be included in the database CLASSPATH, but there is a pbserver.jar with pointbase normally, but I didn't find it. That's why I use pbembedded.jar or pbclient.jar in order to include the class SampleExternalMethods. May be I must start from C:\Sun\AppServer\pointbase\lib\ instead of D:\J2EE\Ch07Code\Ch07_06\Ch07?
    Please, can somebody helps me?
    Thank you in advance.
    cagou!

    jschell wrote:
    And I doubt you can recurse like that for embedded java. You must have a class that does the functionality and another class that creates the proc.
    >And I doubt you can recurse like that for embedded java. You must have a class that does the functionality and another class that creates the proc.
    >
    And I doubt you can recurse like that for embedded java. You must have a class that does the functionality and another class that creates the proc.
    Thank you for your response, I have done two classes:
    SampleExternalMethods.java:
    package Ch07;
    import java.sql.*;*
    *public class SampleExternalMethods*
    *public static void getCountry(String Iso_Code)*
    *// A connection object to allow database callback*
    *Connection l_conn = null;*
    *Statement l_stmt = null;*
    *ResultSet l_rs = null;*
    *try*
    *String url = "jdbc:pointbase:server://localhost/pointbaseDB";*
    *String username = "PBPUBLIC";*
    *String password = "PBPUBLIC";*
    *l_conn = DriverManager.getConnection(url, username, password);*
    *// Query the database for the country iso code*
    *l_stmt = l_conn.createStatement();*
    *l_rs = l_stmt.executeQuery( "SELECT* FROM PBPUBLIC.COUNTRIES"
    +" WHERE country_iso_code ='"+ Iso_Code +"'");+
    +//Affichage du r&eacute;sultat de la requ&ecirc;te+
    +l_rs.next();+
    +System.out.print(l_rs.getString(1)+ " - ");
    System.out.print(l_rs.getString(2) +" - ");+
    +System.out.println(l_rs.getString(3));+
    +// Close the result set+
    +l_rs.close();+
    +} catch (SQLException e) {+
    +e.printStackTrace();+
    +} finally {+
    +if (l_rs != null) {+
    +try {+
    +l_rs.close();+
    +} catch (Exception e) {+
    +e.printStackTrace();+
    +}+
    +}+
    +if (l_stmt != null) {+
    +try {+
    +l_stmt.close();+
    +} catch (Exception e) {+
    +e.printStackTrace();+
    +}+
    +}+
    +if (l_conn != null) {+
    +try {+
    +l_conn.close();+
    +} catch (Exception e) {+
    +e.printStackTrace();+
    +}+
    +}+
    +}+
    +}+
    +}+
    CreateMethods.java:
    +package Ch07;+
    +import java.sql.*;+
    +public class CreateMethods+
    +{+
    +// A connection object to allow database callback+
    +static Connection m_conn = null;+
    +static Statement m_stmt;+
    +static CallableStatement m_callStmt = null;+
    +public static void main(String[] args)+
    +{+
    +try+
    +{+
    +String url = "jdbc:pointbase:server://localhost/pointbaseDB";+
    +String username = "PBPUBLIC";+
    +String password = "PBPUBLIC";+
    +m_conn = DriverManager.getConnection(url, username, password);+
    +doCreateProcedure();+
    +doInvokeProcedure();+
    +} catch (SQLException e) {+
    +e.printStackTrace();+
    +} finally {+
    +if (m_stmt != null) {+
    +try {+
    +m_stmt.close();+
    +} catch (Exception e) {+
    +e.printStackTrace();+
    +}+
    +}+
    +if (m_callStmt != null) {+
    +try {+
    +m_callStmt.close();+
    +} catch (Exception e) {+
    +e.printStackTrace();+
    +}+
    +}+
    +if (m_conn != null) {+
    +try {+
    +m_conn.close();+
    +} catch (Exception e) {+
    +e.printStackTrace();+
    +}+
    +}+
    +}+
    +}+
    +public static void doCreateProcedure() throws SQLException {+
    +// SQL statement to create a stored procedure+
    +String SQL_CREATE_PROC = "CREATE PROCEDURE PBPUBLIC.getCountry(IN P1 VARCHAR(30))"+
    " LANGUAGE JAVA"
    +" SPECIFIC getCountry"+
    " NO SQL"
    +" EXTERNAL NAME \"SampleExternalMethods::getCountry\""+
    " PARAMETER STYLE SQL";
    // Create a SQL statement
    m_stmt = m_conn.createStatement();
    // Execute the SQL
    m_stmt.executeUpdate(SQL_CREATE_PROC);
    // Close the statement
    //m_stmt.close();
    public static void doInvokeProcedure() throws SQLException {
    // Create SQL to invoke stored procedures
    String SQL_USE_PROC = "{ call getCountry(?) }";
    // Create a callable statement with three binding parameters
    m_callStmt = m_conn.prepareCall(SQL_USE_PROC);
    m_callStmt.setString(2, "CA");
    m_callStmt.executeQuery();
    // Close the callable statement
    //m_callStmt.close();
    }But I have the same error message that previously.
    I have read this note and I suppose that the problem is linked:
    If PointBase Server is run with the Java Security Manager, in the java policy file grant
    *’com.pointbase.sp.spPermission’ to the class that implements the external Java method.*
    An "spPermission" consists of a class name with no action. The class name is a name of a class
    that could be used in creating a Stored Procedure in PointBase. The naming convention follows
    the hierarchical property naming convention and that is supported by
    *"java.security.BasicPermission". An asterisk may appear by itself, or if immediately preceded*
    by ".", may appear at the end of the name, to signify a wildcard match. The name cannot
    contain any white spaces.
    Can you explain me what I must to do in order to solve this problem of spPermission.
    Thanks.

  • MS Access 2003 and Data Services 3.0

    I want to access MS Access 2003 from Aqualogic Data Services 3.0. The documentation tells me that Aqualogic Data Services 3.0 supports MS Access 2003
    I read the "Extending Database Support" from the Administration Guide to deploy the xml file ... I did it successful!
    But I can't configure the data source in the console to point to Access2003. How can I do it?

    Thank you Mike for the answer.
    The aqualogic Data Services release 3 support MS Access 2003, as you can verify in "Relational Providers Included With ALDSP" in this manual:
    http://edocs.bea.com/aldsp/docs30/admin/aldsp-wrapper-ext.html#wp1134932
    In the http://localhost:7001/console, when I go to the "Create a New JDBC Data Source", only those DB appears in the Database Type: "adabas for z/OS, CICS/TS for z/OS, Cache, Cloudscape, DB2, DB2 for z/OS, Derby, Enterprise DB, FirstSQL, IMS/DB for z/OS, IMS/TM for z/OS, Informix, Ingres, MS SQL Server, MaxDB, MySQL, Oracle, PointBase, PostgreSQL, Progress, Sybase, VSAM for z/OS , Other".
    But the "MS Access 2003" didn't appears in this menu. The MS-Access.jar file was copied into ALDSP\provider path, and another items was created succesfully as shown in the "Deploying the rational provider" in http://edocs.bea.com/aldsp/docs30/admin/aldsp-wrapper-ext.html#wp1136406
    I wants to create the datasource for MSAccess 2003. How can I do it?

  • Problem Connecting to PointBase

    Hi,
    I am trying to connect to pointbase database on my machine using JSPs.
    My pointbase system is the one that comes with J2EE bundle.
    And I am using Sun Java Application Server for hosting JSPs.
    This is the code I use to connect:
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup(dbName);
    Connection con = ds.getConnection();And I get the following exception:
    ============
    java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be
    allocated because: Database SAMPLE does not exist or cannot be found in database home
    /pointbase/databases specified either specify database.home=<folder> in pointbase.ini or use the
    <URL>;database.home=<folder> to indicate the database folder. pointbase.ini should be available
    in the current folder or you can specify the location for pointbase.ini with java -D:property=value
    where "property" is pointbase.ini and "value" is <path>pointbase.ini.================
    I do not know the exact settings to make and where to make them.
    I am guessing I somehow need to specify these properties in some script file.
    Please let me know how to solve this problem if you know it.
    Thanks
    Hamid

    well this is certainly a configuration issue. can you connect to and access the database from a client tool? i'd try that just to make sure the database is alive and well. then i'd check the dbName or URL to make sure you are pointing to the right place. and forgive me for asking the simple questions, but did you create the database? did you start the database?
    also, i see a lot of people are accessing databases in JSP's these days. maybe i'm old school or something, but everywhere i've worked you'd be shot for doing it. is it just me? or is this a just-for-fun type of project

  • JVM crashes with illegal Memory Access ..

    [JRockit] ERROR: The JVM has crashed. Writing crash information to C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.dump.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:13:27 on Mon Dec 07 20:06:05 2009
    * If you see this dump, please go to *
    * http://edocs.bea.com/jrockit/go2troubleshooting.html *
    * for troubleshooting information. *
    Additional information is available in:
    C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.dump
    C:\bea10.3\wlserver_10.3\samples\domains\wl_server\jrockit.3712.mdmp
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (c0000005) at 0x00466F21 - memory at 0x00000000 could not be read.
    Minidump : Wrote mdmp. Size is 472MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#2.
    : YC is not running. Last finished YC was YC#24.
    OC History : Strategy genparpar was used for OC#1 to OC#2.
    YC History : Ran 3 YCs before OC#1.
    : Ran 3 YCs before OC#2.
    : Ran 18 YCs since last OC.
    YC Promotion : Last YC successfully promoted all objects
    Heap : 0x00C00000 - 0x10C00000 (Size: 256 MB)
    Compaction : 0x00C00000 - 0x01C00000 (Current compaction type: internal)
    NurseryList : 0x00E57CF0 - 0x08132978
    KeepArea : 0x04693C88 - 0x06320918
    NurseryMarker: [ 0x04693C88,  0x06320918 ]
    CompRefs : References are 32-bit.
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 SSE4.1 EM64T
    Number CPUs : 2
    Tot Phys Mem : 2096984064 (1999 MB)
    OS version : Microsoft Windows XP version 5.1 Service Pack 3 (Build 2600) (32-bit)
    Thread System: Windows Threads
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State : JVM is running
    Command Line : -Xverify:all -Xms256m -Xmx512m -Xverify:none -da -Dplatform.home=C:\bea10.3\WLSERV~1.3 -Dwls.home=C:\bea10.3\WLSERV~1.3\server -Dweblogic.home=C:\bea10.3\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\bea10.3\patch_wlw1030\profiles\default\sysext_manifest_classpath;C:\bea10.3\patch_wls1030\profiles\default\sysext_manifest_classpath;C:\bea10.3\patch_cie660\profiles\default\sysext_manifest_classpath -Dweblogic.Name=examplesServer -Djava.security.policy=C:\bea10.3\WLSERV~1.3\server\lib\weblogic.policy -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    java.home : C:\bea10.3\JROCKI~1\jre
    j.class.path : C:\bea10.3\wlserver_10.3\samples\server\examples\build\serverclasses;C:\bea10.3\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea10.3\JROCKI~1\lib\tools.jar;C:\bea10.3\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea10.3\WLSERV~1.3\server\lib\weblogic.jar;C:\bea10.3\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea10.3\WLSERV~1.3\server\lib\webservices.jar;C:\bea10.3\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea10.3\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea10.3\WLSERV~1.3\common\eval\pointbase\lib\pbembedded57.jar;C:\bea10.3\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\bea10.3\WLSERV~1.3\server\lib\xqrl.jar;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;;
    j.lib.path : C:\bea10.3\JROCKI~1\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea10.3\patch_wlw1030\profiles\default\native;C:\bea10.3\patch_wls1030\profiles\default\native;C:\bea10.3\patch_cie660\profiles\default\native;C:\bea10.3\WLSERV~1.3\server\native\win\32;C:\bea10.3\WLSERV~1.3\server\bin;C:\bea10.3\modules\ORGAPA~1.5\bin;C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\JROCKI~1\bin;C:/Program Files/Java/jre1.6.0_02/bin/client;C:/Program Files/Java/jre1.6.0_02/bin;C:\Program Files\IBM\WebSphere MQ\Java\lib;C:\oracle\product\10.2.0\bin;C:\Program Files\Documentum\Shared;c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\ntru cryptosystems\ntru tcg software stack\bin\;c:\program files\wave systems corp\gemalto\access client\v5\;c:\program files\intel\dmix;c:\program files\intel\wifi\bin\;c:\program files\common files\roxio shared\dllshared\;c:\program files\common files\roxio shared\9.0\dllshared\;c:\program files\utimaco\safeguard easy\;C:\Program Files\Windows Imaging\;c:\program files\java\jdk1.6.0_05\bin;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;C:\Program Files\IBM\WebSphere MQ\bin;C:\Program Files\IBM\WebSphere MQ\tools\c\samples\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Subversion\bin;C:\bea10.3\WLSERV~1.3\server\native\win\32\oci920_8
    JAVA_HOME : C:\bea10.3\JROCKI~1
    JAVAOPTIONS: <not set>
    PATH : C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\patch_wlw1030\profiles\default\native;C:\bea10.3\patch_wls1030\profiles\default\native;C:\bea10.3\patch_cie660\profiles\default\native;C:\bea10.3\WLSERV~1.3\server\native\win\32;C:\bea10.3\WLSERV~1.3\server\bin;C:\bea10.3\modules\ORGAPA~1.5\bin;C:\bea10.3\JROCKI~1\jre\bin;C:\bea10.3\JROCKI~1\bin;C:/Program Files/Java/jre1.6.0_02/bin/client;C:/Program Files/Java/jre1.6.0_02/bin;C:\Program Files\IBM\WebSphere MQ\Java\lib;C:\oracle\product\10.2.0\bin;C:\Program Files\Documentum\Shared;c:\windows\system32;c:\windows;c:\windows\system32\wbem;c:\program files\ntru cryptosystems\ntru tcg software stack\bin\;c:\program files\wave systems corp\gemalto\access client\v5\;c:\program files\intel\dmix;c:\program files\intel\wifi\bin\;c:\program files\common files\roxio shared\dllshared\;c:\program files\common files\roxio shared\9.0\dllshared\;c:\program files\utimaco\safeguard easy\;C:\Program Files\Windows Imaging\;c:\program files\java\jdk1.6.0_05\bin;;C:\bea10.3\wlserver_10.3\server\lib\wlspy.jar;C:\Program Files\IBM\WebSphere MQ\bin;C:\Program Files\IBM\WebSphere MQ\tools\c\samples\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Subversion\bin;C:\bea10.3\WLSERV~1.3\server\native\win\32\oci920_8
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0x319BD1FC / OS context: 0x319BD5F8):
    eax = 2b1cdf58 ecx = 31b647a8 edx = 00000000 ebx = 0000002d
    esp = 319bd8c4 ebp = 31b66400 esi = 00000000 edi = 00000001
    es = 00000023 cs = 0000001b ss = 00000023 ds = 00000023
    fs = 0000003b gs = 00000000
    eip = 00466f21 eflags = 00010202
    Stack:
    (* marks the word pointed to by the stack pointer)
    319bd8c4: 319bda40* 28ac5bdc 2d61e1c4 31b636f8 0000002c 31b66590
    319bd8dc: 00000000 00000001 00000001 00000001 31b66588 00000000
    319bd8f4: 0000002c 00000000 00000005 31b647a8 2d61e1c4 2d630700
    319bd90c: 00001df5 00462f77 28ac5bdc 31b636f8 319bdec8 319bdf04
    Code:
    (* marks the word pointed to by the instruction pointer)
    00466ef0: 08c8448d 28244489 89f8048d 8b142444 431c2444 c085f633
    00466f08: 00f9860f ff8b0000 54244c8b 8b34518b 4c8bb204 518b3c24
    00466f20: f20c8b2c* 1824548b 8bca0c8d 89142454 8b38244c 8928244c
    00466f38: 5489f11c b70f04f1 00014e88 b8b70f00 0000014a 44c7f92b
    Loaded modules:
    (* denotes the module causing the exception)
    00400000-00410fff C:\bea10.3\JROCKI~1\bin\java.exe
    7c900000-7c9b1fff C:\WINDOWS\system32\ntdll.dll
    7c800000-7c8f5fff C:\WINDOWS\system32\kernel32.dll
    77dd0000-77e6afff C:\WINDOWS\system32\ADVAPI32.dll
    77e70000-77f01fff C:\WINDOWS\system32\RPCRT4.dll
    77fe0000-77ff0fff C:\WINDOWS\system32\Secur32.dll
    77c10000-77c67fff C:\WINDOWS\system32\MSVCRT.dll
    7c340000-7c395fff C:\bea10.3\JROCKI~1\jre\bin\msvcr71.dll
    00420000-006c3fff *C:\bea10.3\JROCKI~1\jre\bin\jrockit\jvm.dll
    76b40000-76b6cfff C:\WINDOWS\system32\WINMM.dll
    77f10000-77f58fff C:\WINDOWS\system32\GDI32.dll
    7e410000-7e4a0fff C:\WINDOWS\system32\USER32.dll
    71ab0000-71ac6fff C:\WINDOWS\system32\WS2_32.dll
    71aa0000-71aa7fff C:\WINDOWS\system32\WS2HELP.dll
    76390000-763acfff C:\WINDOWS\system32\IMM32.DLL
    6d820000-6d82bfff C:\bea10.3\JROCKI~1\jre\bin\verify.dll
    6d3c0000-6d3defff C:\bea10.3\JROCKI~1\jre\bin\java.dll
    6d320000-6d327fff C:\bea10.3\JROCKI~1\jre\bin\hpi.dll
    6d860000-6d86efff C:\bea10.3\jrockit_160_05\jre\bin\zip.dll
    6d570000-6d578fff C:\bea10.3\jrockit_160_05\jre\bin\management.dll
    6d620000-6d632fff C:\bea10.3\jrockit_160_05\jre\bin\net.dll
    237a0000-237cffff C:\Program Files\F-Secure\FSPS\program\FSLSP.DLL
    237d0000-237e6fff c:\program files\f-secure\scanner-interface\fsgkiapi.dll
    71a50000-71a8efff C:\WINDOWS\system32\mswsock.dll
    662b0000-66307fff C:\WINDOWS\system32\hnetcfg.dll
    71a90000-71a97fff C:\WINDOWS\System32\wshtcpip.dll
    23ca0000-23cc6fff C:\WINDOWS\system32\DNSAPI.dll
    23cd0000-23cd7fff C:\WINDOWS\System32\winrnr.dll
    23ce0000-23d0bfff C:\WINDOWS\system32\WLDAP32.dll
    23d60000-23d65fff C:\WINDOWS\system32\rasadhlp.dll
    6d640000-6d648fff C:\bea10.3\jrockit_160_05\jre\bin\nio.dll
    68000000-68035fff C:\WINDOWS\system32\rsaenh.dll
    769c0000-76a73fff C:\WINDOWS\system32\USERENV.dll
    5b860000-5b8b4fff C:\WINDOWS\system32\netapi32.dll
    25c20000-25c2afff C:\bea10.3\jrockit_160_05\jre\bin\jmapi.dll
    25e30000-25e3dfff C:\bea10.3\wlserver_10.3\server\native\win\32\wlfileio2.dll
    26120000-26138fff C:\WINDOWS\system32\iphlpapi.dll
    26150000-26167fff C:\WINDOWS\system32\MPRAPI.dll
    77cc0000-77cf1fff C:\WINDOWS\system32\ACTIVEDS.dll
    26170000-26194fff C:\WINDOWS\system32\adsldpc.dll
    76b20000-76b30fff C:\WINDOWS\system32\ATL.DLL
    774e0000-7761cfff C:\WINDOWS\system32\ole32.dll
    261a0000-2622afff C:\WINDOWS\system32\OLEAUT32.dll
    26230000-2623dfff C:\WINDOWS\system32\rtutils.dll
    71bf0000-71c02fff C:\WINDOWS\system32\SAMLIB.dll
    77920000-77a12fff C:\WINDOWS\system32\SETUPAPI.dll
    26280000-26284fff C:\bea10.3\wlserver_10.3\server\native\win\32\wlntio.dll
    6d800000-6d807fff C:\bea10.3\jrockit_160_05\jre\bin\sunmscapi.dll
    77a80000-77b14fff C:\WINDOWS\system32\CRYPT32.dll
    77b20000-77b31fff C:\WINDOWS\system32\MSASN1.dll
    76bf0000-76bfafff C:\WINDOWS\system32\psapi.dll
    6d7c0000-6d7c5fff C:\bea10.3\jrockit_160_05\jre\bin\rmi.dll
    31c20000-31d32fff C:\bea10.3\JROCKI~1\jre\bin\dbghelp.dll
    "[ACTIVE] ExecuteThread: '18' fo" id=54 idx=0xc8 tid=5456 lastJavaFrame=0x319BDEF4
    Stack 0: start=0x31980000, end=0x319C0000, guards=0x31983000 (ok), forbidden=0x31981000
    Thread Stack Trace:
    at dtCreateDTable+1025(dispatchtables.c:298+7)@0x00466F21
    at defineClass+167(defineclass.c:110+7)@0x00462F77
    at lib_define_class+34(library.c:516+16)@0x005164C2
    at libDefineClass+39(library.c:576+38)@0x00516707
    at libDefineClass2+58(library.c:597+34)@0x0051685A
    at JVM_DefineClassWithSource+43(jvmclass.c:59+43)@0x004E609B
    at Javajava_lang_ClassLoader_defineClass1@32+235()@0x6D3C15DA
    -- Java stack --
    at java/lang/ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;(Native Method)
        at java/lang/ClassLoader.defineClass(ClassLoader.java:620)
        at java/security/SecureClassLoader.defineClass(SecureClassLoader.java:124)
        at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:335)
        at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
        ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at java/lang/ClassLoader.defineClass1(Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;(Native Method)
        at java/lang/ClassLoader.defineClass(ClassLoader.java:620)
        at java/security/SecureClassLoader.defineClass(SecureClassLoader.java:124)
        at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:335)
        at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
        ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E7FCE78[biased lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Classes.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName(Class.java:247)
    at sun/reflect/generics/factory/CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:107)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/annotation/AnnotationParser.parseSig(AnnotationParser.java:370)
    at sun/reflect/annotation/AnnotationParser.parseClassValue(AnnotationParser.java:351)
    at sun/reflect/annotation/AnnotationParser.parseMemberValue(AnnotationParser.java:280)
    at sun/reflect/annotation/AnnotationParser.parseAnnotation(AnnotationParser.java:222)
    at sun/reflect/annotation/AnnotationParser.parseAnnotations2(AnnotationParser.java:69)
    at sun/reflect/annotation/AnnotationParser.parseAnnotations(AnnotationParser.java:52)
    at java/lang/reflect/Field.declaredAnnotations(Field.java:1016)
    ^-- Holding lock: java/lang/reflect/Field@0x032BFE90[biased lock]
    at java/lang/reflect/Field.getDeclaredAnnotations(Field.java:1009)
    at java/lang/reflect/AccessibleObject.getAnnotations(AccessibleObject.java:175)
    at org/apache/openjpa/lib/util/J2DoPriv5Helper$1.run(J2DoPriv5Helper.java:51)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:233)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:241)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.annotated(PersistenceMetaDataDefaults.java:293)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:262)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:269)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.getAccessType(PersistenceMetaDataDefaults.java:250)
    at org/apache/openjpa/meta/AbstractMetaDataDefaults.populate(AbstractMetaDataDefaults.java:155)
    at org/apache/openjpa/persistence/PersistenceMetaDataDefaults.populate(PersistenceMetaDataDefaults.java:227)
    at org/apache/openjpa/meta/MetaDataRepository.addMetaData(MetaDataRepository.java:794)
    at org/apache/openjpa/meta/MetaDataRepository.addMetaData(MetaDataRepository.java:780)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.getMetaData(AnnotationPersistenceMetaDataParser.java:657)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.parseClassAnnotations(AnnotationPersistenceMetaDataParser.java:480)
    at org/apache/openjpa/persistence/AnnotationPersistenceMetaDataParser.parse(AnnotationPersistenceMetaDataParser.java:352)
    at org/apache/openjpa/persistence/PersistenceMetaDataFactory.load(PersistenceMetaDataFactory.java:229)
    at org/apache/openjpa/meta/MetaDataRepository.getMetaDataInternal(MetaDataRepository.java:474)
    at org/apache/openjpa/meta/MetaDataRepository.getMetaData(MetaDataRepository.java:294)
    ^-- Holding lock: org/apache/openjpa/meta/MetaDataRepository@0x0E7FCDF0[biased lock]
    at org/apache/openjpa/enhance/PCEnhancer.<init>(PCEnhancer.java:248)
    at org/apache/openjpa/enhance/PCEnhancer.<init>(PCEnhancer.java:219)
    at org/apache/openjpa/enhance/PCClassFileTransformer.transform0(PCClassFileTransformer.java:139)
    at org/apache/openjpa/enhance/PCClassFileTransformer.transform(PCClassFileTransformer.java:120)
    at org/apache/openjpa/persistence/PersistenceProviderImpl$ClassTransformerImpl.transform(PersistenceProviderImpl.java:210)
    at weblogic/deployment/PersistenceUnitInfoImpl$ClassPreProcessorImpl.preProcess(PersistenceUnitInfoImpl.java:497)
    at weblogic/utils/classloaders/ClassPreProcessor$ClassPreProcessorSupport.preProcess(ClassPreProcessor.java:95)
    at weblogic/utils/classloaders/GenericClassLoader.doPreProcess(GenericClassLoader.java:348)
    at weblogic/utils/classloaders/GenericClassLoader.defineClass(GenericClassLoader.java:329)
    at weblogic/utils/classloaders/GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[recursive]
    at weblogic/utils/classloaders/GenericClassLoader.findClass(GenericClassLoader.java:256)
    at java/lang/ClassLoader.loadClass(ClassLoader.java:306)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[recursive]
    at java/lang/ClassLoader.loadClass(ClassLoader.java:251)
    at weblogic/utils/classloaders/GenericClassLoader.loadClass(GenericClassLoader.java:176)
    at jrockit/vm/Classes.loadClassInternal(Classes.java:75)
    ^-- Holding lock: weblogic/utils/classloaders/GenericClassLoader@0x0E093168[biased lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Classes.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName0(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;(Native Method)
    at java/lang/Class.forName(Class.java:247)
    at sun/reflect/generics/factory/CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:95)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:107)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/generics/visitor/Reifier.reifyTypeArguments(Reifier.java:50)
    at sun/reflect/generics/visitor/Reifier.visitClassTypeSignature(Reifier.java:120)
    at sun/reflect/generics/tree/ClassTypeSignature.accept(ClassTypeSignature.java:31)
    at sun/reflect/generics/repository/MethodRepository.getReturnType(MethodRepository.java:50)
    at java/lang/reflect/Method.getGenericReturnType(Method.java:236)
    at java/lang/reflect/Method.toGenericString(Method.java:482)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.setMethod(EjbCodeGenerator.java:3511)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.remote_interface_methods(EjbCodeGenerator.java:2698)
    at weblogic/ejb/container/ejbc/EjbCodeGenerator.remote_business_interface_methods(EjbCodeGenerator.java:2685)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at weblogic/utils/compiler/CodeGenerator.processAt(CodeGenerator.java:688)
        at weblogic/utils/compiler/CodeGenerator.parse(CodeGenerator.java:582)
        at weblogic/utils/compiler/CodeGenerator.parse(CodeGenerator.java:539)
        at weblogic/utils/compiler/CodeGenerator.generateCode(CodeGenerator.java:341)
        at weblogic/utils/compiler/CodeGenerator.generate(CodeGenerator.java:242)
        at weblogic/utils/compiler/CodeGenerator.generate(CodeGenerator.java:197)
        at weblogic/ejb/container/ejbc/EJBCompiler.generateSourcesFromBeanInfo(EJBCompiler.java:1019)
        at weblogic/ejb/container/ejbc/EJBCompiler.doCompile(EJBCompiler.java:299)
        at weblogic/ejb/container/ejbc/EJBCompiler.compileEJB(EJBCompiler.java:552)
        at weblogic/ejb/container/ejbc/EJBCompiler.compileEJB(EJBCompiler.java:519)
        at weblogic/ejb/container/deployer/EJBDeployer.runEJBC(EJBDeployer.java:393)
        at weblogic/ejb/container/deployer/EJBDeployer.compileJar(EJBDeployer.java:715)
        at weblogic/ejb/container/deployer/EJBDeployer.compileIfNecessary(EJBDeployer.java:618)
        at weblogic/ejb/container/deployer/EJBDeployer.prepare(EJBDeployer.java:1154)
        at weblogic/ejb/container/deployer/EJBModule.prepare(EJBModule.java:425)
    Stopping PointBase server...
    PointBase server stopped.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                &n

    Looks like a JVM crash during classloading. Have no idea what might cause it. I suggest you try upgrading to a more recent JRockit version (google for "download jrockit" and get the latest JRMC version you can find, it includes JRockit R27.6.5). If that doesn't help, open a ticket with Oracle Support and provide the text dump and the minidump for analysis.
    Henrik

  • Cannot access 'BookstoreServlet' in J2EE tutorial

    ok so i've successfully created a jdbc-pool and a jdbc-resource...once i deploy the war file for the bookstore demo, i get:
    HTTP Status 404 - Servlet BookStoreServlet is not available
    type Status report
    message Servlet BookStoreServlet is not available
    description The requested resource (Servlet BookStoreServlet is not
    available) is not available.
    Apache Tomcat/5.0
    i can perfectly access the 'hello1' example created earlier in the tutorial....i'm using jre 1.4.2 beta 2 with j2ee sdk 1.4 beta 2
    ne help please? ...tks all

    First, you can try the http://localhost:8080/bookstore1/banner.
    If /banner cann't run, it should be the deploy problem.
    If this can run, but /bookstore and other alias cann't run, the reason
    should be the database connect issue.
    To resolve database connect issue:
    1. Get the database name:
    go to $InstallDir\pointbase\tools\serveroption
    run startserver.bat to start pointbase
    run startconsole.bat to start database console, after you connect to databse,
    you can see the jdbc:pointbase:sample on the menu. Here sample is the database name.
    2. Verify JDBC setting in application server:
    Application Server
    --> JDBC
    --> Connection Pool
    --> PointBasePool
    --> Properties
    DatabaseName = jdbc:pointbase:server://localhost:9092/sample
    (notice: here the sample must same as the database name in Item 1)
    User=pbpublic
    Password=pbpublic
    3. Notice:
    1) When run sample, first start pointbase database, then start application server
    2) At the beginning, you can type "c" in pointbase service consle to see active connections link to database.
    If after the application server started, if no active connections shown, this means your JDBC setting is wrong. You need to double check your setting.
    3) Seems the pointbase only can accept 1 connect at the same time. So before run application server, you need to close the pointbase admin console.
    I am also a beginner to J2EE.
    Also looking forward for your kindly support!
    Thanks in advance!

  • Weblogic Server Crash on accessing service bus console from remote

    Please help me out here. Thanks.
    Error Message:
    <2009-01-28 16:05:50 CET> <Warning> <netuix> <BEA-423430> <The portal <directive.page> element has been deprecated. You can set the page encoding on the <netuix:desktop> element.>
    <2009-01-28 16:05:51 CET> <Warning> <netuix> <BEA-423420> <Redirect is executed in begin or refresh action. Redirect url is jsp/login/index.jsp.>
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:04:03 on Wed Jan 28 16:05:56 2009
    Additional information is available in:
    /home/efidev/dev/bea92/domains/alsb/jrockit.8808.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=1 si_addr=0x2598
    Version : BEA JRockit(R) R26.4.0-63_CR302700-72606-1.5.0_06-20061127-1104-linux-ia32
    GC : System optimized over throughput (initial strategy singleparpar)
    : GC strategy for GC 0 was singleparpar
    : GC strategy for GC 1 was genparpar
    : GC strategy for GC 2 was genparpar
    : GC strategy for GC 3 was genparpar
    : mmHeap->data = 0x8100000, mmHeap->top = 0x28100000
    : The nurserylist starts at 0x8ba1998 and ends at 0xa29d4d8
    : mmStartCompaction = 0x22100000, mmEndCompaction = 0x24100000
    CPU : Intel Core (HT) SSE SSE2 Core EM64T
    Number CPUs : 2
    Tot Phys Mem : 3442233344 (3282 MB)
    OS version : lenny/sid
    Linux version 2.6.24-19-generic (buildd@palmer) (gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)) #1 SMP Wed Jun 18 14:43:41 UTC 2008 (i686)
    Thread System: NPTL
    State : JVM is running
    Command Line : -Xms512m -Xmx512m -Xverify:none -da -Dplatform.home=/usr/local/app/bea92/weblogic92 -Dwls.home=/usr/local/app/bea92/weblogic92/server -Dwli.home=/usr/local/app/bea92/weblogic92/integration -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/usr/local/app/bea92/patch_weblogic921/profiles/default/sysext_manifest_classpath -Dweblogic.Name=AdminServer_ALSB -Djava.security.policy=/usr/local/app/bea92/weblogic92/server/lib/weblogic.policy weblogic.Server
    java.home : /usr/local/app/bea92/jrockit90_150_06/jre
    j.class.path : :/home/efidev/dev/bea92/domains/alsb/lib/commons-collections-3.2.jar:/home/efidev/dev/bea92/domains/alsb/lib/commons-configuration-1.4.jar:/home/efidev/dev/bea92/domains/alsb/lib/commons-lang-2.3.jar:/home/efidev/dev/bea92/domains/alsb/lib/commons-logging-1.1.jar:/home/efidev/dev/bea92/domains/alsb/lib/commons-pool-1.3.jar:/home/efidev/dev/bea92/domains/alsb/lib/ip-code-translator-1.0.jar:/home/efidev/dev/bea92/domains/alsb/lib/IPHeaderAPI.jar:/home/efidev/dev/bea92/domains/alsb/lib/ip-logging-1.0.jar:/home/efidev/dev/bea92/domains/alsb/lib/kodo-4.1.2.jar:/home/efidev/dev/bea92/domains/alsb/lib/openjpa-0.9.6.jar:/home/efidev/dev/bea92/domains/alsb/lib/persistence-api-1.0.jar:/home/efidev/dev/bea92/domains/alsb/lib/serp-1.11.0.jar:/home/efidev/dev/bea92/domains/alsb/lib/velocity-1.4.jar:/usr/local/app/bea92/patch_weblogic921/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/local/app/bea92/jrockit90_150_06/lib/tools.jar:/usr/local/app/bea92/weblogic92/server/lib/weblogic_sp.jar:/usr/local/app/bea92/weblogic92/server/lib/weblogic.jar:/usr/local/app/bea92/weblogic92/server/lib/webservices.jar::/home/efidev/dev/bea92/domains/alsb/template_alsb/lib/config:/usr/local/app/bea92/weblogic92/servicebus/L10N:/usr/local/app/bea92/weblogic92/servicebus/lib/sb-public.jar:/usr/local/app/bea92/weblogic92/servicebus/lib/sb-common.jar:/usr/local/app/bea92/weblogic92/servicebus/lib/sb-internal.jar:/usr/local/app/bea92/weblogic92/servicebus/lib/sb-core.jar:/usr/local/app/bea92/weblogic92/integration/common/lib/mfl-common.jar:/usr/local/app/bea92/weblogic92/platform/lib/p13n/p13n_system.jar:/usr/local/app/bea92/weblogic92/common/p13n/lib/p13n_common.jar:/usr/local/app/bea92/weblogic92/server/lib/wlxbean.jar:/usr/local/app/bea92/weblogic92/server/lib/apachexmlbeansutil.jar:/usr/local/app/bea92/weblogic92/server/lib/xquery.jar:/usr/local/app/bea92/weblogic92/server/lib/binxml.jar:/usr/local/app/bea92/weblogic92/common/lib/log4j.jar:/usr/local/app/bea92/weblogic92/servicebus/lib/uddi_library.jar:/usr/local/app/bea92/weblogic92/servicebus/lib/uddi_client_v3.jar:/usr/local/app/bea92/weblogic92/servicebus/lib/version.jar::/usr/local/app/bea92/weblogic92/common/eval/pointbase/lib/pbembedded51.jar:/usr/local/app/bea92/weblogic92/common/eval/pointbase/lib/pbupgrade51.jar:/usr/local/app/bea92/weblogic92/common/eval/pointbase/lib/pbclient51.jar:/usr/local/app/bea92/weblogic92/server/lib/xqrl.jar::
    j.lib.path : /usr/local/app/bea92/jrockit90_150_06/jre/lib/i386/jrockit:/usr/local/app/bea92/jrockit90_150_06/jre/lib/i386:/usr/local/app/bea92/jrockit90_150_06/jre/../lib/i386:/usr/local/app/bea92/patch_weblogic921/profiles/default/native:/usr/local/app/bea92/weblogic92/server/native/linux/i686:/usr/local/app/bea92/weblogic92/server/native/linux/i686/oci920_8
    JAVA_HOME : /usr/local/app/bea92/jrockit90_150_06
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /usr/local/app/bea92/jrockit90_150_06/jre/lib/i386/jrockit:/usr/local/app/bea92/jrockit90_150_06/jre/lib/i386:/usr/local/app/bea92/jrockit90_150_06/jre/../lib/i386:/usr/local/app/bea92/patch_weblogic921/profiles/default/native:/usr/local/app/bea92/weblogic92/server/native/linux/i686:/usr/local/app/bea92/weblogic92/server/native/linux/i686/oci920_8
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured

    Upgrading to latest version is a good choice. You can also consider increasing the heap size from -Xms512m -Xmx512m to -Xms1024m -Xmx1024m and confirm if this crash was due to insufficient heap.

  • Access data through table relationship

    i have some CMP Entity beans mapped to some pointbase tables. i designed a simple relationship between two tables PERSON and COUNTRY, where PERSON has an integer field that references to the COUNTRY primary key. the COUNTRY table has a string column containing the country's name.
    i have PERSON as an entity bean. how can i access the country name instead of the integer id that is passed at get/set? should i create a COUNTRY bean as well and create relationships ? or can i just access the name value using a simple query and return it instead of the class' getter?
    thanks in advance.

    if i didn't made much sense before when i explained the tables' structure, here it is:
    create table country
    id SMALLINT NOT NULL,
    name VARCHAR(50) NOT NULL,
    CONSTRAINT pk_country PRIMARY KEY (id)
    create table person
    id INTEGER NOT NULL,
    first_name VARCHAR(20) NOT NULL,
    last_name VARCHAR(20) NOT NULL,
    country SMALLINT,
    CONSTRAINT pk_id PRIMARY KEY (id),
    CONSTRAINT fk_country FOREIGN KEY (country) REFERENCES country(id)

  • NoSuchMethodExeption:setURL while accessing MS-SQL 7.0

    Hi I am J2EE Beginner, and trying to learn more using Sun One Studio.
    I have environment like this.
    - Windows XP
    - MS-SQL 7.0
    - J2SDK 1.4.2_02
    - J2SDKEE 1.3.1
    - Sun One Application Server 7
    - Sun One Studio 5
    I've been following an Example from Sun.(http://developers.sun.com/tools/javatools/documentation/s1s5/productappclient.html)
    and I decided to use MS SQL instead of pointbase DB in the "2. Setting Up Database Connectivity" section.
    So I made a connection, a Connection Pool, a DataSource, and a Persistent Manager.
    at the first time I used free jTDS JDBC Driver. but I failed with NoSuchMethoudException:setURL
    I tried another trial jdbc drivers GATE3 from sprinta and Jboss from New Atlanta
    it works fine with default DB connection to pointbase
    ------------------------- Exception ----------------------
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: java.lang.NoSuchMethodException: setURL
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.util.Utility.invokeSetMethodCaseInsensitive(Utility.java:386)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.repository.JdbcConnectionPool.createDataSource(JdbcConnectionPool.java:238)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.JdbcUrlAllocator.createResource(JdbcUrlAllocator.java:80)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.createSteadyResources(IASNonSharedResourcePool.java:856)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.initPool(IASNonSharedResourcePool.java:416)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:625)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:520)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:263)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.JdbcXAConnection.<init>(JdbcXAConnection.java:74)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.SystemJdbc10XaAllocator.createResource(SystemJdbc10XaAllocator.java:52)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.createSteadyResources(IASNonSharedResourcePool.java:856)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.initPool(IASNonSharedResourcePool.java:416)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:625)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:520)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:263)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.SystemJdbcDataSource.internalGetConnection(SystemJdbcDataSource.java:226)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.enterprise.resource.SystemJdbcDataSource.getConnection(SystemJdbcDataSource.java:154)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.ejb.TransactionHelperImpl.getConnection(TransactionHelperImpl.java:171)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.ejb.EJBHelper.getConnection(EJBHelper.java:169)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getDBName(SQLPersistenceManagerFactory.java:781)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getFromPool(SQLPersistenceManagerFactory.java:709)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getPersistenceManager(SQLPersistenceManagerFactory.java:598)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:770)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:660)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.jdoGetPersistenceManager(ProductInvBean_629131956_ConcreteImpl.java:713)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.ejbFindByPrimaryKey(ProductInvBean_629131956_ConcreteImpl.java:363)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at ProductInvServer.ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.findByPrimaryKey(ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.java:61)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at ProductInvServer._ProductInvHome_Stub.findByPrimaryKey(Unknown Source)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at java.lang.reflect.Method.invoke(Method.java:324)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.forte4j.j2ee.ejbtest.webtest.InvocableMethod$MethodIM.invoke(InvocableMethod.java:231)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.forte4j.j2ee.ejbtest.webtest.EjbInvoker.getInvocationResults(EjbInvoker.java:96)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.sun.forte4j.j2ee.ejbtest.webtest.DispatchHelper.getForward(DispatchHelper.java:189)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at jasper.dispatch_jsp._jspService(_dispatch_jsp.java:138)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:552)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:287)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:720)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardWrapperValve.access$000(StandardWrapperValve.java:118)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardWrapperValve$1.run(StandardWrapperValve.java:278)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at java.security.AccessController.doPrivileged(Native Method)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:203)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:157)
    [03/Dec/2003:15:31:25] WARNING ( 1900): CORE3283: stderr: at com.iplanet.ias.web.WebContainer.service(WebContainer.java:598)
    [03/Dec/2003:15:31:25] SEVERE ( 1900): RAR5027:Unexpected exception in resource pooling
    com.sun.enterprise.resource.PoolingException
    at com.sun.enterprise.resource.JdbcUrlAllocator.createResource(JdbcUrlAllocator.java:100)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.createSteadyResources(IASNonSharedResourcePool.java:856)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.initPool(IASNonSharedResourcePool.java:416)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:625)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:520)
    at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:263)
    at com.sun.enterprise.resource.JdbcXAConnection.<init>(JdbcXAConnection.java:74)
    at com.sun.enterprise.resource.SystemJdbc10XaAllocator.createResource(SystemJdbc10XaAllocator.java:52)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.createSteadyResources(IASNonSharedResourcePool.java:856)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.initPool(IASNonSharedResourcePool.java:416)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:625)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:520)
    at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:263)
    at com.sun.enterprise.resource.SystemJdbcDataSource.internalGetConnection(SystemJdbcDataSource.java:226)
    at com.sun.enterprise.resource.SystemJdbcDataSource.getConnection(SystemJdbcDataSource.java:154)
    at com.sun.jdo.spi.persistence.support.sqlstore.ejb.TransactionHelperImpl.getConnection(TransactionHelperImpl.java:171)
    at com.sun.jdo.spi.persistence.support.sqlstore.ejb.EJBHelper.getConnection(EJBHelper.java:169)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getDBName(SQLPersistenceManagerFactory.java:781)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getFromPool(SQLPersistenceManagerFactory.java:709)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getPersistenceManager(SQLPersistenceManagerFactory.java:598)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:770)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:660)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.jdoGetPersistenceManager(ProductInvBean_629131956_ConcreteImpl.java:713)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.ejbFindByPrimaryKey(ProductInvBean_629131956_ConcreteImpl.java:363)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.findByPrimaryKey(ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.java:61)
    at ProductInvServer._ProductInvHome_Stub.findByPrimaryKey(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.forte4j.j2ee.ejbtest.webtest.InvocableMethod$MethodIM.invoke(InvocableMethod.java:231)
    at com.sun.forte4j.j2ee.ejbtest.webtest.EjbInvoker.getInvocationResults(EjbInvoker.java:96)
    at com.sun.forte4j.j2ee.ejbtest.webtest.DispatchHelper.getForward(DispatchHelper.java:189)
    at jasper.dispatch_jsp._jspService(_dispatch_jsp.java:138)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:552)
    at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
    at com.iplanet.ias.web.jsp.JspServlet.service(Js
    [03/Dec/2003:15:31:25] WARNING ( 1900): Cannot get database metadata: database product name.
    java.sql.SQLException: com.sun.enterprise.repository.J2EEResourceException
    java.lang.NoSuchMethodException: setURL
    at com.sun.enterprise.resource.SystemJdbcDataSource.internalGetConnection(SystemJdbcDataSource.java:252)
    at com.sun.enterprise.resource.SystemJdbcDataSource.getConnection(SystemJdbcDataSource.java:154)
    at com.sun.jdo.spi.persistence.support.sqlstore.ejb.TransactionHelperImpl.getConnection(TransactionHelperImpl.java:171)
    at com.sun.jdo.spi.persistence.support.sqlstore.ejb.EJBHelper.getConnection(EJBHelper.java:169)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getDBName(SQLPersistenceManagerFactory.java:781)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getFromPool(SQLPersistenceManagerFactory.java:709)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getPersistenceManager(SQLPersistenceManagerFactory.java:598)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:770)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:660)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.jdoGetPersistenceManager(ProductInvBean_629131956_ConcreteImpl.java:713)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.ejbFindByPrimaryKey(ProductInvBean_629131956_ConcreteImpl.java:363)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.findByPrimaryKey(ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.java:61)
    at ProductInvServer._ProductInvHome_Stub.findByPrimaryKey(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.forte4j.j2ee.ejbtest.webtest.InvocableMethod$MethodIM.invoke(InvocableMethod.java:231)
    at com.sun.forte4j.j2ee.ejbtest.webtest.EjbInvoker.getInvocationResults(EjbInvoker.java:96)
    at com.sun.forte4j.j2ee.ejbtest.webtest.DispatchHelper.getForward(DispatchHelper.java:189)
    at jasper.dispatch_jsp._jspService(_dispatch_jsp.java:138)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:552)
    at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
    at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:287)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:720)
    at org.apache.catalina.core.StandardWrapperValve.access$000(StandardWrapperValve.java:118)
    at org.apache.catalina.core.StandardWrapperValve$1.run(StandardWrapperValve.java:278)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:203)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:157)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:598)
    [03/Dec/2003:15:31:25] INFO ( 1900): Bean ProductInv method findByPrimaryKey:
    com.sun.jdo.api.persistence.support.JDOFatalInternalException: Failed to get the vendor type for the data store.
    NestedException: java.sql.SQLException: com.sun.enterprise.repository.J2EEResourceException
    java.lang.NoSuchMethodException: setURL
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getDBName(SQLPersistenceManagerFactory.java:802)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getFromPool(SQLPersistenceManagerFactory.java:709)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.SQLPersistenceManagerFactory.getPersistenceManager(SQLPersistenceManagerFactory.java:598)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:770)
    at com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl.getPersistenceManager(PersistenceManagerFactoryImpl.java:660)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.jdoGetPersistenceManager(ProductInvBean_629131956_ConcreteImpl.java:713)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl.ejbFindByPrimaryKey(ProductInvBean_629131956_ConcreteImpl.java:363)
    at ProductInvServer.ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.findByPrimaryKey(ProductInvBean_629131956_ConcreteImpl_RemoteHomeImpl.java:61)
    at ProductInvServer._ProductInvHome_Stub.findByPrimaryKey(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sun.forte4j.j2ee.ejbtest.webtest.InvocableMethod$MethodIM.invoke(InvocableMethod.java:231)
    at com.sun.forte4j.j2ee.ejbtest.webtest.EjbInvoker.getInvocationResults(EjbInvoker.java:96)
    at com.sun.forte4j.j2ee.ejbtest.webtest.DispatchHelper.getForward(DispatchHelper.java:189)
    at jasper.dispatch_jsp._jspService(_dispatch_jsp.java:138)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:552)
    at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
    at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:287)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:720)
    at org.apache.catalina.core.StandardWrapperValve.access$000(StandardWrapperValve.java:118)
    at org.apache.catalina.core.StandardWrapperValve$1.run(StandardWrapperValve.java:278)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:274)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:203)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:505)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:157)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:598)

    Thanks Chris....
    that's how I registered jdbc Drivers.
    I tested jTDS, and other trial jdbc drivers which are J2EE 1.3 certified, such as GATE3 from i-net software, Jboss from New Atlanta, and jSQLConnect from jnetDirect.
    Nothing worked with same error, but jSQLConnect.
    I guess some JDBC Drivers are not fully functional in J2EE Environment
    Thank you, everybody~

  • Database access using DAO

    I'm new to Struts and would like to know about accessing database in struts
    using Data Access Object (DAO) pattern.
    It would be better If anybody can point me to any good source on how to write the DAO
    and how to configure the Struts-Config.xml in order to use the DAO pattern,
    Any sample would be better too.
    Any help pretty much appreciated. Thanks in advanced.

    I'm new to Struts and would like to know about
    accessing database in struts
    using Data Access Object (DAO) pattern.
    It would be better If anybody can point me to any
    good source on how to write the DAO
    and how to configure the Struts-Config.xml in order
    to use the DAO pattern,
    Any sample would be better too.
    Any help pretty much appreciated. Thanks in advanced.Hi,
    I am developing a web application with struts and DAO pattern.
    If you study this pattern you will know that it makes connection to database. and there is two way to obtain a connection object from your action class:
    1. througth DriverManageras mention in java tutorial JDBC Basics:
    2. througth Datasource as mention in java 1.3 turorial, chapter 31 "Resource Connections", sections "DataSource Objects and Connection Pools" and "Database Connections". This tutorial show you how to set up Datasource for Sun Java System Application Server Platform througth the j2ee deployment tool.
    in the case of having an different platform from Sun Java System Application Server you must know how to correctly set up the datasource object with your web or ejb container.
    I have chosen the second solution for my webApp. I am using tomcat co-bundle with netbeans 4.0. those ares the configuration files of my web app (according to netbeans 4.0 help context "Setting Up a Tomcat Database Connection Pool"):
    file server.xml
    <Resource name="jdbc/WebForumDB" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/WebForumDB">
    <parameter>
    <name>validationQuery</name>
    <value>select * from "PBPUBLIC"."USER_ACCOUNT_TAB"</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>PBPUBLIC</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:pointbase://localhost:9092/WebForumDB</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>com.pointbase.jdbc.jdbcUniversalDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    <parameter>
    <name>username</name>
    <value>PBPUBLIC</value>
    </parameter>
    </ResourceParams>
    file context.xml
    <ResourceLink name="jdbc/WebForumDB"
    type="javax.sql.DataSource"
    global="jdbc/WebForumDB"/>
    file web.xml
    <resource-ref>
    <description>Web Forum Database</description>
    <res-ref-name>jdbc/WebForumDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    after all configuration work your DAOFactory class should nearly looks like this (my DAO pattern obtain connection througth Datasource object):
    public class PointbaseDAOFactory
    extends DAOFactory {
    private static DataSource ds = null;
    private static String dbJndiName = "java:comp/env/jdbc/WebForumDB";
    /** Creates a new instance of PointbaseDAOFactory */
    public PointbaseDAOFactory(){}
    public static Connection createConnection()
    throws DAOException {
    InitialContext ic = null;
    Connection conn = null;
    try {
    //lookup datasource
    ic = new InitialContext();
    log.info("method: createConnection, lookup dataSource jndi name: " + dbJndiName);
    ds = (DataSource) ic.lookup(dbJndiName);
    if (ds == null){
    throw new DAOException("method: createConnection, null Datasource from jndi lookup");
    // get connection
    conn = ds.getConnection();
    } catch (SQLException e){
    throw new DAOException("method: createConnection, SQLException",e.getMessage());
    } catch (NamingException e){
    throw new DAOException("method: createConnection, NamingException",e.getMessage());
    return conn;
    hope this help you. :-)

  • Connecting to a DB in Pointbase: need help

    Folks:
    I am trying to create a database using the bundled Pointbase tool with WLS 7.0
    and I am not having much luck.
    I am trying to use the default driver, com.pointbase.jdbc.jdbcUniversalDriver,
    and the default, jdbc:pointbase:server//localhost/demo without much success (the
    error code is SQL State 08004 SQL-Server rejected establishment of SQL-Connection).
    Is there something else I need to do to connect to the DB?
    Thanks,
    - Alex -
    [email protected]

    Hello Alex,
    Can you try using username cajun and password abc.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Alex Nghiem" <[email protected]> wrote in message
    news:3db9edc4$[email protected]..
    >
    Raj:
    I am simply running PointBase using the PointBase console tool. The userID is
    prefilled with PUPUBLIC but I have no idea what the password (it's alreadyprefilled
    as well). Login with this default information is what causes the error.What ID
    and password should I use?
    Thanks,
    - Alex -
    [email protected]
    "Raj Alagumalai" <[email protected]> wrote:
    Hello Alex,
    Can you provide more information on what you are trying to do and which
    domain you are working with ?
    Can you also check the username password that you are using to access
    the
    database.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Alex Nghiem" <[email protected]> wrote in message
    news:3db5af7b$[email protected]..
    Folks:
    I am trying to create a database using the bundled Pointbase tool withWLS
    7.0
    and I am not having much luck.
    I am trying to use the default driver,com.pointbase.jdbc.jdbcUniversalDriver,
    and the default, jdbc:pointbase:server//localhost/demo without muchsuccess (the
    error code is SQL State 08004 SQL-Server rejected establishment ofSQL-Connection).
    Is there something else I need to do to connect to the DB?
    Thanks,
    - Alex -
    [email protected]

  • JRockit R27.6.0 - Illegal Memory Access

    Hi,
    hopefully someone can help me understand what is going on. I'm getting Illegal Memory Access which is crashing the VM. We recently moved to WebLogic 10.3 using JRocking on x86-64. Yesterday under load we got this error.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=2 si_addr=(nil)
    Version : BEA JRockit(R) R27.6.0-50_o-100423-1.6.0_05-20080626-2104-linux-ia32
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#2138.
    : YC is not running. Last finished YC was YC#4709.
    OC History : Strategy genparpar was used for OC#2115 to OC#2116.
    : Strategy singleparpar was used for OC#2117 to OC#2120.
    : Strategy genparpar was used for OC#2121 to OC#2124.
    : Strategy singleparpar was used for OC#2125 to OC#2126.
    : Strategy genparpar was used for OC#2127 to OC#2138.
    YC History : Ran 1 YCs before OC#2134.
    : Ran 1 YCs before OC#2135.
    : Ran 1 YCs before OC#2136.
    : Ran 1 YCs before OC#2137.
    : Ran 1 YCs before OC#2138.
    : Ran 0 YCs since last OC.
    YC Promotion : Last YC successfully promoted all objects
    Heap : 0x8100000 - 0x18100000 (Size: 256 MB)
    Compaction : 0xb100000 - 0xc100000 (Current compaction type: internal)
    NurseryList : 0xcf79cb0 - 0x130a8658
    KeepArea : 0x130c5368 - 0x130b3278
    NurseryMarker: [ 0x130c5368,  0x130b3278 ]
    CompRefs : References are 32-bit.
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 Core EM64T
    Number CPUs : 4
    Tot Phys Mem : 8370728960 (7982 MB)
    OS version : SUSE Linux Enterprise Server 10 (x86_64)
    VERSION = 10
    PATCHLEVEL = 1
    Linux version 2.6.16.54-0.2.12-smp (geeko@buildhost) (gcc version 4.1.2 20070115 (prerelease) (SUSE Linux)) #1 SMP Fri Oct 24 02:16:38 UTC 2008 (x86_64)
    Thread System: NPTL
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State : JVM is running
    Command Line : -Xms256m -Xmx1500m -da -Dplatform.home=/dep/weblogic/wlserver_10.3 -Dwls.home=/dep/weblogic/wlserver_10.3/server -Dweblogic.home=/dep/weblogic/wlserver_10.3/server -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/dep/weblogic/patch_wls1030/profiles/default/sysext_manifest_classpath:/dep/weblogic/patch_cie660/profiles/default/sysext_manifest_classpath -Dweblogic.Name=admin -Djava.security.policy=/dep/weblogic/wlserver_10.3/server/lib/weblogic.policy -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    java.home : /dep/weblogic/jrockit_160_05/jre
    j.class.path : :/dep/weblogic/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/dep/weblogic/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/dep/weblogic/jrockit_160_05/lib/tools.jar:/dep/weblogic/wlserver_10.3/server/lib/weblogic_sp.jar:/dep/weblogic/wlserver_10.3/server/lib/weblogic.jar:/dep/weblogic/modules/features/weblogic.server.modules_10.3.0.0.jar:/dep/weblogic/wlserver_10.3/server/lib/webservices.jar:/dep/weblogic/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/dep/weblogic/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar::/dep/weblogic/wlserver_10.3/common/eval/pointbase/lib/pbclient57.jar:/dep/weblogic/wlserver_10.3/server/lib/xqrl.jar:::/dep/weblogic/user_projects/domains/e1/config/e1conf
    j.lib.path : /dep/weblogic/jrockit_160_05/jre/lib/i386/jrockit:/dep/weblogic/jrockit_160_05/jre/lib/i386:/dep/weblogic/jrockit_160_05/jre/../lib/i386::/dep/weblogic/wlserver_10.3/server/native/linux/i686:/dep/weblogic/wlserver_10.3/server/native/linux/i686/oci920_8
    JAVA_HOME : /dep/weblogic/jrockit_160_05
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /dep/weblogic/jrockit_160_05/jre/lib/i386/jrockit:/dep/weblogic/jrockit_160_05/jre/lib/i386:/dep/weblogic/jrockit_160_05/jre/../lib/i386::/dep/weblogic/wlserver_10.3/server/native/linux/i686:/dep/weblogic/wlserver_10.3/server/native/linux/i686/oci920_8
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0xf14b9a80 / OS context: 0xf14b9b7c):
    eax = 00000000 ecx = 12f36148 edx = 000000c8 ebx = 12f36158
    esp = f14b9e74 ebp = f14b9eb0 esi = 00000000 edi = 12f36158
    es = 0000002b cs = 9bb00023 ss = f7ec002b ds = 0000002b
    fs = 00000003 gs = 00000063
    eip = f7e1cc4b eflags = 00200202
    Stack:
    (* marks the word pointed to by the stack pointer)
    f14b9e74: 00000000* 00000032 12f36158 f14b9eb0 f7bcb666 12f36158
    f14b9e8c: 00000000 000000c8 f14b9ea0 6ba3b238 f71be2b0 00000032
    f14b9ea4: eb966680 6ba3b238 f14b9f28 f14b9ef0 eb93dac6 6ba3b238
    f14b9ebc: c5f5dda0 00000000 00000032 00000000 ebb70088 cfe52138
    Code:
    (* marks the word pointed to by the instruction pointer)
    f7e1cc18: c2f60000 0f077401 078806b6 c2f64746 0f0c7402 896606b7
    f7e1cc30: 02c68307 f602c783 0a7404c2 0789068b 8304c683 c2f604c7
    f7e1cc48: 8b107408* 044e8b06 4f890789 08c68304 8008c783 2174f0e2
    f7e1cc60: 4e8b068b 085e8b04 890c6e8b 044f8907 89085f89 ea830c6f
    Loaded modules:
    (* denotes the module causing the exception)
    08048000-08058253 /dep/weblogic/jrockit_160_05/bin/java
    ffffe000-ffffe7d7 /dep/weblogic/jrockit_160_05/bin/java
    f7efc000-f7f0c043 /lib/libpthread.so.0
    f7ed7000-f7ef94ef /lib/libm.so.6
    f7ed3000-f7ed4c3f /lib/libdl.so.2
    f7db1000-f7ecade5 */lib/libc.so.6
    f7f29000-f7f42db3 /lib/ld-linux.so.2
    f7ae0000-f7d37367 /dep/weblogic/jrockit_160_05/jre/lib/i386/jrockit/libjvm.so
    f7f1e000-f7f24734 /lib/librt.so.1
    f71a8000-f71b29bb /dep/weblogic/jrockit_160_05/jre/lib/i386/libverify.so
    f7183000-f71a5df7 /dep/weblogic/jrockit_160_05/jre/lib/i386/libjava.so
    f7157000-f71675b7 /lib/libnsl.so.1
    f716c000-f7171ef0 /dep/weblogic/jrockit_160_05/jre/lib/i386/native_threads/libhpi.so
    f5daa000-f5db83e4 /dep/weblogic/jrockit_160_05/jre/lib/i386/libzip.so
    f5147000-f514c666 /dep/weblogic/jrockit_160_05/jre/lib/i386/libmanagement.so
    f4fb3000-f4fc5b38 /dep/weblogic/jrockit_160_05/jre/lib/i386/libnet.so
    f4a44000-f4a4a424 /dep/weblogic/jrockit_160_05/jre/lib/i386/libnio.so
    f3c93000-f3c9c357 /dep/weblogic/jrockit_160_05/jre/lib/i386/libjmapi.so
    f7f13000-f7f14de4 /dep/weblogic/wlserver_10.3/server/native/linux/i686/libwlfileio2.so
    eebd3000-eec4d966 /dep/weblogic/jrockit_160_05/jre/lib/i386/libawt.so
    f60d1000-f60d4fa8 /dep/weblogic/jrockit_160_05/jre/lib/i386/headless/libmawt.so
    f7f11000-f7f116ad /dep/weblogic/jrockit_160_05/jre/lib/i386/librmi.so
    eb8df000-eb95cf8f /dep/weblogic/jrockit_160_05/jre/lib/i386/libfontmanager.so
    eb397000-eb3ea966 /dep/weblogic/jrockit_160_05/jre/lib/i386/libcmm.so
    eb368000-eb395a6f /dep/weblogic/jrockit_160_05/jre/lib/i386/libjpeg.so
    eb300000-eb314477 /dep/weblogic/jrockit_160_05/jre/lib/i386/libdcpr.so
    "Thread-606163" id=606200 idx=0x20c tid=11363 lastJavaFrame=0xf14b9f88
    Stack 0: start=0xf149a000, end=0xf14bc000, guards=0xf149f000 (ok), forbidden=0xf149d000
    Thread Stack Trace:
    at memcpy+91()@0xf7e1cc4b
    at ZN11GeneralPath8getShapeEP7JNIEnv+166()@0xeb93dac6
    at Java_sun_font_FileFont_getGlyphOutline+120()@0xeb93ec08
    -- Java stack --
    at sun/font/FileFont.getGlyphOutline(JIFF)Ljava/awt/geom/GeneralPath;(Native Method)
    ^-- Holding lock: sun/font/TrueTypeFont@0x9c55410[thin lock]
    at sun/font/FileFontStrike.getGlyphOutline(FileFontStrike.java:724)
    at sun/font/CompositeStrike.getGlyphOutline(CompositeStrike.java:151)[optimized]
    at sun/font/StandardGlyphVector$GlyphStrike.appendGlyphOutline(StandardGlyphVector.java:1781)[optimized]
    at sun/font/StandardGlyphVector.getGlyphsOutline(StandardGlyphVector.java:1164)[inlined]
    at sun/font/StandardGlyphVector.getOutline(StandardGlyphVector.java:402)[optimized]
    at sun/font/ExtendedTextSourceLabel.handleGetOutline(ExtendedTextSourceLabel.java:168)
    at sun/font/Decoration.getOutline(Decoration.java:115)
    at sun/font/ExtendedTextSourceLabel.getOutline(ExtendedTextSourceLabel.java:172)
    at java/awt/font/TextLine.getOutline(TextLine.java:843)[optimized]
    at java/awt/font/TextLayout.getOutline(TextLayout.java:2674)[inlined]
    at oracle/sdovis/style/StyleText.getWrappedOutline(StyleText.java:430)[inlined]
    at oracle/sdovis/style/StyleText.getStringOutline2(StyleText.java:382)[optimized]
    at oracle/sdovis/style/StyleText.getStringOutline(StyleText.java:369)[inlined]
    at oracle/sdovis/TextLabeler.findTextLabelPointOnAreaFeature(TextLabeler.java:432)[optimized]
    at oracle/sdovis/TextLabeler.labelPolygonWithText(TextLabeler.java:765)[inlined]
    at oracle/sdovis/TextLabeler.applyTextLabel(TextLabeler.java:133)[optimized]
    at oracle/sdovis/VectorRenderer.labelStyledFeature(VectorRenderer.java:1541)[optimized]
    at oracle/sdovis/VectorRenderer.label(VectorRenderer.java:378)[optimized]
    at oracle/sdovis/RenderingEngine.render(RenderingEngine.java:572)[optimized]
    at oracle/sdovis/DBMapMaker.renderEm(DBMapMaker.java:1712)[optimized]
    at oracle/sdovis/MapMaker.renderMap(MapMaker.java:1455)[optimized]
    at oracle/lbs/mapserver/core/RealWorker.generateMapImage(RealWorker.java:737)[optimized]
    at oracle/lbs/mapserver/core/RealWorker.process(RealWorker.java:354)[optimized]
    at oracle/lbs/mapserver/MapServerImpl.renderMap(MapServerImpl.java:181)
    at oracle/lbs/mapcache/cache/TileFetcher.fetchInternalMap(TileFetcher.java:428)
    at oracle/lbs/mapcache/cache/TileFetcher.fetchTile(TileFetcher.java:256)[optimized]
    at oracle/lbs/mapcache/cache/TileFetcher.run(TileFetcher.java:163)[optimized]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    Extended, platform specific info:
    libc release: 2.4-development
    Elf headers:
    libc ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 000159c0 PHOFF: 00000034 SHOFF: 0012c2b8 EF: 0x0 HS: 52 PS: 32 PHN; 11 SS: 40 SHN: 67 STIDX: 64
    libpthread ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00004b80 PHOFF: 00000034 SHOFF: 0001350c EF: 0x0 HS: 52 PS: 32 PHN; 10 SS: 40 SHN: 37 STIDX: 34
    libjvm ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 0004bf70 PHOFF: 00000034 SHOFF: 012c54a4 EF: 0x0 HS: 52 PS: 32 PHN; 4 SS: 40 SHN: 29 STIDX: 26

    Please file a support case so we can investigate this issue properly.

Maybe you are looking for