Jdbc2.0 Weblogic5.1

How is this implementation performing on weblogic?
On Websphere you can guarantee optimized performance when using
PreparedStatements,
no matter if they were created on the connection you hold a reference to, or
on another
connection.
How is the performance using DataSource + preparedStatement compared to a
simple pool,
which initially uses DriverManager, and where you can not use
PreparedStatements?
Best regards
Lars Hansen

No. we won't prime every pooled connection to have an identical prepared statment
to the one you ask for. Only the connection you have will be primed. That would
be much too much overhead. Over time, if that prepared statement is important,
it will have been requested from all or most of the pooled connections, and
will be available for re-use in each of them.
joe
Lars Hansen wrote:
>
Ok. I try again.
My question was regarding to the implementation of the jdbc 2.0 api on the
weblogic5.1 platform.
I want to do the following scenario.(simplified)
//prepare query
Connection c = datasource.getConnction(user,pass);
PreparedStatement ps = c.prepareStatement("select * from employee where
id=?");
ps.setInteger(1,42);
ResultSet rs = ps.executeQuery();
//handle resultset
if(rs.next())
//do stuff
//clean up
rs.close();
ps.close();
c.close();
//later I want to do this again
//prepare another query
Connection c = datasource.getConnction(user,pass);
PreparedStatement ps = c.prepareStatement("select * from employee where
id=?");
ps.setInteger(1,500);
ResultSet rs = ps.executeQuery();
//handle resultset
if(rs.next())
//do stuff
//clean up
rs.close();
ps.close();
c.close();
When doing the second query I will perhaps recieve another Connection than
the first
one. When using Websphere the other connections in the pool will be prepared
with the
statement, so that it is already the second time I use it. Can I expect the
same behavior
from Weblogic? I wasn´t able to find any documentation regarding to the
implementation
/Lars Hansen
"Cameron Purdy" <[email protected]> wrote in message
news:[email protected]...
I don't understand your question at all.
Peace,
Cameron Purdy
Tangosol, Inc.
Clustering Weblogic? You're either using Coherence, or you should be!
Download a Tangosol Coherence eval today at http://www.tangosol.com/
"Lars Hansen" <[email protected]> wrote in message
news:[email protected]...
How is this implementation performing on weblogic?
On Websphere you can guarantee optimized performance when using
PreparedStatements,
no matter if they were created on the connection you hold a reference
to,
or
on another
connection.
How is the performance using DataSource + preparedStatement compared to
a
simple pool,
which initially uses DriverManager, and where you can not use
PreparedStatements?
Best regards
Lars Hansen
B.E.A. is now hiring! (12/14/01) If interested send a resume to [email protected]
DIRECTOR OF PRODUCT PLANS AND STRATEGY San Francisco, CA
E-SALES BUSINESS DEVELOPMENT REPRESENTATIVE Dallas, TX
SOFTWARE ENGINEER (DBA) Liberty Corner, NJ
SENIOR WEB DEVELOPER San Jose, CA
SOFTWARE ENGINEER (ALL LEVELS), CARY, NORTH CAROLINA San Jose, CA
SR. PRODUCT MANAGER Bellevue, WA
SR. WEB DESIGNER San Jose, CA
Channel Marketing Manager - EMEA Region London, GBR
DIRECTOR OF MARKETING STRATEGY, APPLICATION SERVERS San Jose, CA
SENIOR SOFTWARE ENGINEER (PLATFORM) San Jose, CA
E-COMMERCE INTEGRATION ARCHITECT San Jose, CA
QUALITY ASSURANCE ENGINEER Redmond, WA
Services Development Manager (Business Development Manager - Services) Paris, FRA; Munich, DEU
SENIOR SOFTWARE ENGINEER (PLATFORM) Redmond, WA
E-Marketing Programs Specialist EMEA London, GBR
BUSINESS DEVELOPMENT DIRECTOR - E COMMERCE INTEGRATION San Jose, CA
MANAGER, E-SALES Plano, TX

Similar Messages

  • MUltiple Instances of Weblogic5.1

    Hello WLGurus,
    I am trying to install two instances of Weblogic5.1 App Server(sp8) on the
    same machine using the same license file. And I am trying to connect to different
    Databases from each instance which is my main motive. Is this possible to configure?Any
    help will be greatly appreciated.
    Thanx,
    sanjeev

    Sure. Read up on the hierarchical nature of our .properties files.
    Michael Girdley
    BEA Systems
    Learning WebLogic? http://learnweblogic.com
    "Sanjeev Kasarabada" <[email protected]> wrote in message
    news:3b2a6267$[email protected]..
    >
    Hello WLGurus,
    I am trying to install two instances of Weblogic5.1 App Server(sp8) onthe
    same machine using the same license file. And I am trying to connect todifferent
    Databases from each instance which is my main motive. Is this possible toconfigure?Any
    help will be greatly appreciated.
    Thanx,
    sanjeev

  • BLOB insert behavior with thin driver using standard JDBC2.0 and ORACLE-JDBC2.0API

    We have a problem with a BLOB insert to an oracle 8.1.7 DB using Oracle 8.1.7 JDBC thin driver.We get socket read/write error after inserting 32k of data using the standard JDBC2.0 API but using the Oracle JDBC2.0API (using OracleResultSet) it goes fine. We have a requirement to use the standard JDBC2.0 so that our code works with multiple database vendors. Is there another way to get in the blob data with standard JDBC API & using thin driver...?
    thanks,
    Madhu
    Here is my sample test program that does both standard & oracle specific JDBC Blob test insert.
    import java.sql.*;
    import java.io.*;
    import oracle.sql.BLOB;
    import oracle.jdbc.driver.OracleResultSet;
    public class testBLOB {
    //trying to insert a huge file to a BLOB
    static String fileName = "/kernel/genunix";
    public static void main(String[] args) {
    String driverName = "oracle.jdbc.driver.OracleDriver";
    String dbURL = "jdbc:oracle:thin:@localhost:1521:test"; //thin driver
    String user = "BlobTest";
    String passwd = "BlobTest";
    Connection con=null;
    try {
    Class.forName(driverName);
    con=DriverManager.getConnection(dbURL, user,passwd);
    catch (Exception e) {
    e.printStackTrace();
    close(con);
    int i = 0;
    while (i < args.length) {
    if (args.equals("-f"))
    fileName = args[++i];
    i++;
    System.out.println("The file being Stored is: "+fileName);
    createTable(con);
    insertUsingOracleAPI(con);
    insertUsingJDBC20API(con);
    //readDB(con);
    static String getFileName() {
    return fileName;
    public static void close(Connection con) {
    try {
    if (con != null) {
    con.close();
    catch (Exception e) {
    System.exit(-1);
    public static void createTable(Connection con) {
    Statement stmt ;
    try {
    stmt = con.createStatement();
    stmt.execute("DROP TABLE basic_blob_table");
    stmt.close();
    catch (SQLException sqlEx) {
    System.out.println("Dropped the Table");
    try {
    stmt = con.createStatement();
    stmt.execute("CREATE TABLE basic_blob_table ( x varchar2(30), b blob)");
    stmt.close();
    catch (SQLException sqlEx) {
    sqlEx.printStackTrace();
    close(con);
    System.out.println("Created the Table");
    public static void insertUsingOracleAPI(Connection con) {
    OutputStream os = null;
    Statement stmt = null;
    ResultSet rs = null;
    FileInputStream is = null;
    try {
    con.setAutoCommit(false);
    stmt = con.createStatement();
    stmt.execute("INSERT INTO basic_blob_table VALUES( 'OracleAPI', empty_blob())");
    System.out.println("Inserted the dummy Row");
    rs = stmt.executeQuery("Select * from basic_blob_table where x='OracleAPI'");
    if (rs != null && rs.next()) {
    BLOB blob = ((OracleResultSet)rs).getBLOB(2);
    File file = new File(getFileName());
    is = new FileInputStream(file);
    os = blob.getBinaryOutputStream();
    byte[] chunk = new byte[1024];
    int length = -1;
    while((length = is.read(chunk)) != -1)
    os.write(chunk, 0,length);
    System.out.println("Inserted the File " + getFileName() );
    catch (Exception e) {
    e.printStackTrace();
    finally {
    try {
    if (os != null) {
    os.flush();
    os.close();
    if (is != null)
    is.close();
    stmt.close();
    con.commit();
    con.setAutoCommit(true);
    catch (Exception e) {}
    public static void insertUsingJDBC20API(Connection con) {
    PreparedStatement stmt = null;
    FileInputStream is = null;
    try {
    stmt = con.prepareStatement("INSERT INTO basic_blob_table VALUES(?,?)");
    File file = new File(getFileName());
    is = new FileInputStream(file);
    stmt.setString(1,"JDBC20API");
    stmt.setBinaryStream(2,is,(int)file.length());
    stmt.executeUpdate();
    catch (Exception e) {
    e.printStackTrace();
    finally {
    try {
    if (is != null)
    is.close();
    stmt.close();
    catch (Exception e) {}
    null

    Thanks for the response.
    I understand what you are saying...
    that readers don't block writers in Oracle (the same is true in SQL Server 2000).
    However, I don't see how my test case is working correctly with Oracle (the exact same code acting as I'm thinking it should with SQL Server, but I still think it is acting incorrectly with Oracle).
    I have transaction A do this:
    update <table> set <column2>=<value> where <column1>='1'
    then I use Thread.sleep() to make that program hang around for a few minutes.
    Meanwhile I sneak off and start another program which begins transaction B. I have transaction B do this:
    select * from <table> where <column1>='1'
    and the read works immediately (no blocking... just as you have said) however, transaction A is still sleeping, it has not called commit() or rollback() yet.
    So what if transaction A were to call rollback(), the value read by transaction B would be incorrect wouldn't it ?
    Both A and B use setAutoCommit(false) to start their transactions, and then call setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED).
    Isn't that supposed to guarantee that a reader can only read what is committed ?
    And if a row is in "flux"... in the process of having one or more values changed, then the database cannot say what the value will be ?
    I can almost see what you are saying.
    In letting the reader have what it wants without making it wait, I suppose it could be said that Oracle is holding true to the "only let committed data be read"
    So if that's it, then what if I want the blocking ?
    I want an entire row to be locked until whoever it in the middle of updating, adding, or removing it has finished.
    Do you know if that can be done with Oracle ? And how ?
    Thanks again for helping me.

  • How can i get jdbc2.0 compatible driver for my oracle 8.1.5 client/server

    Hi ,
    I am looking for a driver that is jdbc2.0 compatible.Apaprently the oci and thin drvers that are shipped with oracle8.1.5 do no support scrollable and updateable resultsets. Can i download the oracle8.1.6 jdbc2.0 compatible drivers and use them with my oracle8.1.5 client/server. if so how do i install it?
    Please let me know ASAP!!
    It is relly frustrating to find a compatibler driver for the older versions since oracle does'nt provide them
    poornima

    Yes. For OCI driver, you will also have to have Oracle 8.1.6 client installed as well. http://technet.oracle.com/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#_1_

  • Error with XSU: oracle.jdbc2.Clob

    When I try to insert data I get the following error.
    java.lang.NoClassDefFoundError: oracle.jdbc2.Clob
    void samp10.main(java.lang.String[])
    Exception in thread main.
    I use classes112.zip with Oracle 8.1.7.
    I have Included following libraries in JDeveloper: Oracle XML SQL Utility, Oracle XML Parser 2.0, JServer, Connection Manager and Oracle 8.1.6 JDBC.
    The sourcecode of my .java file is:
    /** Simple example on using Oracle XMLSQL API; this class inserts the data from a XML document into the database*/
    import oracle.xml.sql.dml.*;
    import java.sql.*;
    import oracle.jdbc.driver.*;
    import oracle.jdbc.*;
    import java.net.*;
    public class samp10
    //========================================
    // main() - public static void
    public static void main(String args[]) throws SQLException
    String tabName = "XMLTEST_TAB1"; // table into which to insert
    String fileName = "sampdoc.xml"; // file name containing the xml doc
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    //initiate a JDBC connection
    Connection conn =
    DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:SJEFEN",
    "scott","tiger");
    OracleXMLSave sav = new OracleXMLSave(conn, tabName);
    URL url = sav.createURL(fileName);
    int rowCount = sav.insertXML(url);
    System.out.println(" successfully inserted "+rowCount+
    " rows into "+ tabName);
    conn.close();
    The source code for the XML Document is:
    <?xml version="1.0"?>
    <ROWSET>
    <ROW num="1">
    <EMPNO>7369</EMPNO>
    <ENAME>SMITH</ENAME>
    <JOB>CLERK</JOB>
    </ROW>
    <ROW num="2">
    <EMPNO>7499</EMPNO>
    <ENAME>ALLEN</ENAME>
    <JOB>SALESMAN</JOB>
    </ROW>
    <ROW num="3">
    <EMPNO>7521</EMPNO>
    <ENAME>WARD</ENAME>
    <JOB>SALESMAN</JOB>
    </ROW>
    </ROWSET>
    I hope someone can help me!
    null

    This occurs when you mismatch the xsu jar file with the classes1x.zip file (the jdbc driver).
    xsu12.jar goes with classes12.zip
    xsu111.jar goes with classes111.zip

  • How to support 30+ clients using weblogic5.1 with hpux11.0

    Hi,all
    I am using weblogic 5.1 in hp ux 11.0, and we are doing stress test ,
    with
    little numbers (<20)clients, it can work properly,but when the client number
    increase to nearly 30, the speed is very
    slow,and then weblogic server hangs.
    we are using java t3 client ,and some session beans running in welogic
    server to do some simple query.
    the environment is :
    hpux 11.0,weblogic5.1 with sp6,
    jdk1.2.2_02, oracle database 805,
    weblogic oci driver .
    executeThreadCount=60.
    connection pool is min=20,max=100
    performance pack is used.
    the machine is a T280 with 512M ram,
    we are using min 320,max 384 for heap
    size.
    the problem:
    1.weblogic hangs as decriped before.
    2.the message in weblogic.log.
    Fri Oct 13 21:26:36 CST 2000:<I> <EJB> Enterprise JavaBeans
    initializing
    Fri Oct 13 21:26:44 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_Admin.jar> EJB home interface:
    'tbcs.ejb.AdminHome' deployed bound to the JNDI name: 'Admin'
    Fri Oct 13 21:26:45 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_BankCollect.jar> EJB home interface:
    'tbcs.ejb.BankCollectHome' deployed bound to the JNDI name: 'BankCollect'
    Fri Oct 13 21:26:46 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_AccountService.jar> EJB home interface:
    'tbcs.ejb.AccountServiceHome' deployed bound to the JNDI name:
    'AccountService'
    Fri Oct 13 21:26:47 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_FraudProcess.jar> EJB home interface:
    'tbcs.ejb.FraudProcessHome' deployed bound to the JNDI name: 'FraudProcess'
    Fri Oct 13 21:26:49 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_Resource.jar> EJB home interface:
    'tbcs.ejb.ResourceHome' deployed bound to the JNDI name: 'Resource'
    Fri Oct 13 21:26:49 CST 2000:<I> <EJB> 5 EJB jar files loaded, containing 5
    EJBs
    Fri Oct 13 21:26:49 CST 2000:<I> <EJB> 5 deployed, 0 failed to deploy.
    Fri Oct 13 21:26:50 CST 2000:<I> <HTTP> Log rotation is size based
    Fri Oct 13 21:26:50 CST 2000:<I> <ZAC> ZAC ACLs initialized
    Fri Oct 13 21:26:50 CST 2000:<I> <ZAC> ZAC packages stored in local
    directory /o8i/weblogic/zac
    Fri Oct 13 21:26:50 CST 2000:<I> <WebLogicServer> Invoking main-style
    startup initDataBuffer tbcs.common.InitDataBuffer
    Fri Oct 13 21:27:10 CST 2000:<I> <Security> Switched to user weblogic
    Fri Oct 13 21:27:10 CST 2000:<I> <ListenThread> Listening on port: 80
    Fri Oct 13 21:27:10 CST 2000:<I> <Posix Performance Pack> System has file
    descriptor limits of - soft: '2048', hard: '2048'
    Fri Oct 13 21:27:10 CST 2000:<I> <Posix Performance Pack> Using effective
    file descriptor limit of: '2048' open sockets/files.
    Fri Oct 13 21:27:10 CST 2000:<I> <Posix Performance Pack> Allocating: '3'
    POSIX reader threads
    Fri Oct 13 21:27:11 CST 2000:<I> <WebLogicServer> WebLogic Server started
    Fri Oct 13 21:30:04 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:04 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:19 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:20 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:20 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:20 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:47 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:48 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:37 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:37 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:40 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:41 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:41 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:42 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:42 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:32:53 CST 2000:<I> <ServletContext-General> temp: init
    Fri Oct 13 21:33:29 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:33:29 CST 2000:<I> <CliCon-#|myserver|0.971443580882>
    Connection to client for ClientContext - id: '#|myserver|0.971443580882',
    bound: 'true', dead: 'false' has been unexpectedly lost because
    weblogic.rjvm.PeerGoneException:
    - with nested exception:
    [java.net.SocketException: No such file or directory: No such file or
    directory].
    Initiating hard disconnect.
    Fri Oct 13 21:33:29 CST 2000:<I> <CliCon-#|myserver|0.971443580882> Removing
    ClientContext - id: '#|myserver|0.971443580882', bound: 'false', dead:
    'false' because of hard disconnect timeout
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1793.
    7
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1792.
    6
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1790.
    5
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1788.
    4
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1775.
    3
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1774.
    2
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1773.
    1
    Fri Oct 13 21:34:07 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:34:07 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:34:14 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:35:14 CST 2000:<I> <ServletContext-General> Do: init
    Fri Oct 13 21:35:14 CST 2000:<I> <ServletContext-General> touchWhere: init
    Fri Oct 13 21:35:18 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:19 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:35:19 CST 2000:<I> <ServletContext-General> AdminProps: init
    Fri Oct 13 21:35:19 CST 2000:<I> <ServletContext-General> result: init
    Fri Oct 13 21:35:19 CST 2000:<I> <ServletContext-General> T3AdminMain: init
    Fri Oct 13 21:35:23 CST 2000:<I> <ServletContext-General> touch: init
    Fri Oct 13 21:35:23 CST 2000:<I> <ServletContext-General> classes: init
    Fri Oct 13 21:35:24 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> AdminEvents: init
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> AdminMain: init
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> *.shtml: init
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> do: init
    Fri Oct 13 21:35:26 CST 2000:<I> <ServletContext-General> agentsigncnt: init
    Fri Oct 13 21:35:28 CST 2000:<I> <ServletContext-General> snoop: init
    Fri Oct 13 21:35:28 CST 2000:<I> <ServletContext-General> drp-publish: init
    Fri Oct 13 21:35:29 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:30 CST 2000:<I> <ServletContext-General> where: init
    Fri Oct 13 21:35:31 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:31 CST 2000:<I> <ServletContext-General> touchTree: init
    Fri Oct 13 21:35:31 CST 2000:<I> <TX> Transaction TxC (7365032, xid =
    971443586063_1418, timeout = 300, txState = Rolledback, root = null rolled
    back because client is no longer alive
    Fri Oct 13 21:35:32 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_Admin.jar> Exception during commit of
    transaction: '971443586063_1418'
    javax.transaction.RollbackException: Transaction TxC (7365032, xid =
    971443586063_1418, timeout = 300, txState = Rolledback, root = null has been
    rolled back.Reason: Transaction rolled back because client disconnected
    at
    weblogic.jts.internal.CoordinatorImpl.throwRollbackException(CoordinatorImpl
    .java:731)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:352)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at
    weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.
    java:88)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:740)
    at tbcs.ejb.AdminBeanEOImpl.logWorkContext(AdminBeanEOImpl.java:2979)
    at tbcs.ejb.AdminBeanEOImpl_WLSkel.invoke(AdminBeanEOImpl_WLSkel.java:1864)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java:347)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java:69)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:32 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:35:32 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:35:40 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> servletimages:
    init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> applet: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> ConsoleHelp: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> DO: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> cookies: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> helloKona: init
    Fri Oct 13 21:35:41 CST 2000:<I> <ServletContext-General> survey: init
    Fri Oct 13 21:35:45 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:48 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:49 CST 2000:<I> <ServletContext-General> touchMain: init
    Fri Oct 13 21:35:49 CST 2000:<I> <ServletContext-General> AdminJDBC: init
    Fri Oct 13 21:35:50 CST 2000:<I> <ServletContext-General>
    AdminCaptureRootCA: init
    Fri Oct 13 21:35:50 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:51 CST 2000:<I> <ServletContext-General> recommand: init
    Fri Oct 13 21:35:51 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:35:51 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> touchLogin: init
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> session: init
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> dO: init
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> touchExecute: init
    Fri Oct 13 21:35:53 CST 2000:<I> <ServletContext-General> AdminRealm: init
    Fri Oct 13 21:35:53 CST 2000:<I> <ServletContext-General> simple: init
    Fri Oct 13 21:35:55 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:58 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:58 CST 2000:<I> <ServletContext-General> admin: init
    Fri Oct 13 21:36:00 CST 2000:<I> <ServletContext-General> error: init
    Fri Oct 13 21:36:00 CST 2000:<I> <ServletContext-General> detail: init
    Fri Oct 13 21:36:00 CST 2000:<I> <ServletContext-General> AdminLicense: init
    Fri Oct 13 21:36:00 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:36:01 CST 2000:<I> <ServletContext-General> prolog: init
    Fri Oct 13 21:36:03 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> Certificate: init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> helloWorld: init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> AdminConnections:
    init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone: init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone:
    PhoneServlet.initialize: enter
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone:
    PhoneServlet.initialize: filename = /weblogic/examples/servlets/phonelist
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone: Phone
    servlet file not found. java.io.FileNotFoundException:
    /weblogic/examples/servlets/phonelist (No such file or directory)
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> drp-exports: init
    Fri Oct 13 21:36:41 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:36:41 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:36:44 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:44 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:45 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:45 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:47 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:48 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:37:02 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:06 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:07 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:37:07 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:37:10 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:13 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:37:32 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:32 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:37:32 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:41:14 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '1'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:14 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '2'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:25 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '3'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:26 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '4'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:27 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '5'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:27 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '6'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:28 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '7'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:29 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '8'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:44:33 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:44:33 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (4045094, xid =
    971443586063_2310, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (4616970, xid =
    971443586063_2312, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (2802643, xid =
    971443586063_2313, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (1996325, xid =
    971443586063_2314, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (6200418, xid =
    971443586063_2315, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (7140343, xid =
    971443586063_2316, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (331414, xid =
    971443586063_2317, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (41620, xid =
    971443586063_2318, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (3265875, xid =
    971443586063_2311, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90

    1. check out path settings
    2. check out read/write etc.. permissions
    3. no. of file descriptors
    "raymond zhang" <[email protected]> wrote:
    Hi,all
    I am using weblogic 5.1 in hp ux 11.0, and we are doing stress test ,
    with
    little numbers (<20)clients, it can work properly,but when the client number
    increase to nearly 30, the speed is very
    slow,and then weblogic server hangs.
    we are using java t3 client ,and some session beans running in welogic
    server to do some simple query.
    the environment is :
    hpux 11.0,weblogic5.1 with sp6,
    jdk1.2.2_02, oracle database 805,
    weblogic oci driver .
    executeThreadCount=60.
    connection pool is min=20,max=100
    performance pack is used.
    the machine is a T280 with 512M ram,
    we are using min 320,max 384 for heap
    size.
    the problem:
    1.weblogic hangs as decriped before.
    2.the message in weblogic.log.
    Fri Oct 13 21:26:36 CST 2000:<I> <EJB> Enterprise JavaBeans
    initializing
    Fri Oct 13 21:26:44 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_Admin.jar> EJB home interface:
    'tbcs.ejb.AdminHome' deployed bound to the JNDI name: 'Admin'
    Fri Oct 13 21:26:45 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_BankCollect.jar> EJB home interface:
    'tbcs.ejb.BankCollectHome' deployed bound to the JNDI name: 'BankCollect'
    Fri Oct 13 21:26:46 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_AccountService.jar> EJB home interface:
    'tbcs.ejb.AccountServiceHome' deployed bound to the JNDI name:
    'AccountService'
    Fri Oct 13 21:26:47 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_FraudProcess.jar> EJB home interface:
    'tbcs.ejb.FraudProcessHome' deployed bound to the JNDI name: 'FraudProcess'
    Fri Oct 13 21:26:49 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_Resource.jar> EJB home interface:
    'tbcs.ejb.ResourceHome' deployed bound to the JNDI name: 'Resource'
    Fri Oct 13 21:26:49 CST 2000:<I> <EJB> 5 EJB jar files loaded, containing 5
    EJBs
    Fri Oct 13 21:26:49 CST 2000:<I> <EJB> 5 deployed, 0 failed to deploy.
    Fri Oct 13 21:26:50 CST 2000:<I> <HTTP> Log rotation is size based
    Fri Oct 13 21:26:50 CST 2000:<I> <ZAC> ZAC ACLs initialized
    Fri Oct 13 21:26:50 CST 2000:<I> <ZAC> ZAC packages stored in local
    directory /o8i/weblogic/zac
    Fri Oct 13 21:26:50 CST 2000:<I> <WebLogicServer> Invoking main-style
    startup initDataBuffer tbcs.common.InitDataBuffer
    Fri Oct 13 21:27:10 CST 2000:<I> <Security> Switched to user weblogic
    Fri Oct 13 21:27:10 CST 2000:<I> <ListenThread> Listening on port: 80
    Fri Oct 13 21:27:10 CST 2000:<I> <Posix Performance Pack> System has file
    descriptor limits of - soft: '2048', hard: '2048'
    Fri Oct 13 21:27:10 CST 2000:<I> <Posix Performance Pack> Using effective
    file descriptor limit of: '2048' open sockets/files.
    Fri Oct 13 21:27:10 CST 2000:<I> <Posix Performance Pack> Allocating: '3'
    POSIX reader threads
    Fri Oct 13 21:27:11 CST 2000:<I> <WebLogicServer> WebLogic Server started
    Fri Oct 13 21:30:04 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:04 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:19 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:20 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:20 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:20 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:47 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:30:48 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:37 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:37 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:38 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:39 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:40 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:41 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:41 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:42 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:31:42 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:32:53 CST 2000:<I> <ServletContext-General> temp: init
    Fri Oct 13 21:33:29 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:33:29 CST 2000:<I> <CliCon-#|myserver|0.971443580882>
    Connection to client for ClientContext - id: '#|myserver|0.971443580882',
    bound: 'true', dead: 'false' has been unexpectedly lost because
    weblogic.rjvm.PeerGoneException:
    - with nested exception:
    [java.net.SocketException: No such file or directory: No such file or
    directory].
    Initiating hard disconnect.
    Fri Oct 13 21:33:29 CST 2000:<I> <CliCon-#|myserver|0.971443580882> Removing
    ClientContext - id: '#|myserver|0.971443580882', bound: 'false', dead:
    'false' because of hard disconnect timeout
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1793.
    7
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1792.
    6
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1790.
    5
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1788.
    4
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1775.
    3
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1774.
    2
    Fri Oct 13 21:33:29 CST 2000:<I> <EventProxy> Auto Unregistered
    WEBLOGIC.ADMIN.6142101462458162217/-2108345596/6/80/80/7002/7002/80/-1/1773.
    1
    Fri Oct 13 21:34:07 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:34:07 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:34:14 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:35:14 CST 2000:<I> <ServletContext-General> Do: init
    Fri Oct 13 21:35:14 CST 2000:<I> <ServletContext-General> touchWhere: init
    Fri Oct 13 21:35:18 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:19 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:35:19 CST 2000:<I> <ServletContext-General> AdminProps: init
    Fri Oct 13 21:35:19 CST 2000:<I> <ServletContext-General> result: init
    Fri Oct 13 21:35:19 CST 2000:<I> <ServletContext-General> T3AdminMain: init
    Fri Oct 13 21:35:23 CST 2000:<I> <ServletContext-General> touch: init
    Fri Oct 13 21:35:23 CST 2000:<I> <ServletContext-General> classes: init
    Fri Oct 13 21:35:24 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> AdminEvents: init
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> AdminMain: init
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> *.shtml: init
    Fri Oct 13 21:35:25 CST 2000:<I> <ServletContext-General> do: init
    Fri Oct 13 21:35:26 CST 2000:<I> <ServletContext-General> agentsigncnt: init
    Fri Oct 13 21:35:28 CST 2000:<I> <ServletContext-General> snoop: init
    Fri Oct 13 21:35:28 CST 2000:<I> <ServletContext-General> drp-publish: init
    Fri Oct 13 21:35:29 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:30 CST 2000:<I> <ServletContext-General> where: init
    Fri Oct 13 21:35:31 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:31 CST 2000:<I> <ServletContext-General> touchTree: init
    Fri Oct 13 21:35:31 CST 2000:<I> <TX> Transaction TxC (7365032, xid =
    971443586063_1418, timeout = 300, txState = Rolledback, root = null rolled
    back because client is no longer alive
    Fri Oct 13 21:35:32 CST 2000:<I> <EJB JAR deployment
    /o8i/weblogic/hpcluster/ejb_Admin.jar> Exception during commit of
    transaction: '971443586063_1418'
    javax.transaction.RollbackException: Transaction TxC (7365032, xid =
    971443586063_1418, timeout = 300, txState = Rolledback, root = null has been
    rolled back.Reason: Transaction rolled back because client disconnected
    at
    weblogic.jts.internal.CoordinatorImpl.throwRollbackException(CoordinatorImpl
    ..java:731)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:352)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at
    weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.
    java:88)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:740)
    at tbcs.ejb.AdminBeanEOImpl.logWorkContext(AdminBeanEOImpl.java:2979)
    at tbcs.ejb.AdminBeanEOImpl_WLSkel.invoke(AdminBeanEOImpl_WLSkel.java:1864)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java:347)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java:69)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:32 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:35:32 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:35:40 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> servletimages:
    init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> applet: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> ConsoleHelp: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> DO: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> cookies: init
    Fri Oct 13 21:35:40 CST 2000:<I> <ServletContext-General> helloKona: init
    Fri Oct 13 21:35:41 CST 2000:<I> <ServletContext-General> survey: init
    Fri Oct 13 21:35:45 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:48 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:49 CST 2000:<I> <ServletContext-General> touchMain: init
    Fri Oct 13 21:35:49 CST 2000:<I> <ServletContext-General> AdminJDBC: init
    Fri Oct 13 21:35:50 CST 2000:<I> <ServletContext-General>
    AdminCaptureRootCA: init
    Fri Oct 13 21:35:50 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:51 CST 2000:<I> <ServletContext-General> recommand: init
    Fri Oct 13 21:35:51 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:35:51 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> touchLogin: init
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> session: init
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> dO: init
    Fri Oct 13 21:35:52 CST 2000:<I> <ServletContext-General> touchExecute: init
    Fri Oct 13 21:35:53 CST 2000:<I> <ServletContext-General> AdminRealm: init
    Fri Oct 13 21:35:53 CST 2000:<I> <ServletContext-General> simple: init
    Fri Oct 13 21:35:55 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:58 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:35:58 CST 2000:<I> <ServletContext-General> admin: init
    Fri Oct 13 21:36:00 CST 2000:<I> <ServletContext-General> error: init
    Fri Oct 13 21:36:00 CST 2000:<I> <ServletContext-General> detail: init
    Fri Oct 13 21:36:00 CST 2000:<I> <ServletContext-General> AdminLicense: init
    Fri Oct 13 21:36:00 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:36:01 CST 2000:<I> <ServletContext-General> prolog: init
    Fri Oct 13 21:36:03 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> Certificate: init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> helloWorld: init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> AdminConnections:
    init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone: init
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone:
    PhoneServlet.initialize: enter
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone:
    PhoneServlet.initialize: filename = /weblogic/examples/servlets/phonelist
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> phone: Phone
    servlet file not found. java.io.FileNotFoundException:
    /weblogic/examples/servlets/phonelist (No such file or directory)
    Fri Oct 13 21:36:08 CST 2000:<I> <ServletContext-General> drp-exports: init
    Fri Oct 13 21:36:41 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:36:41 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:36:44 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:44 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:45 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:45 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:46 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:47 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:36:48 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:37:02 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:06 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:07 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:37:07 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:37:10 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:13 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:37:32 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:32 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    java.io.IOException: No such file or directory
    Fri Oct 13 21:37:32 CST 2000:<E> <ConMan> Attempt to sendMsg using a closed
    connection
    Fri Oct 13 21:37:32 CST 2000:<E> <RJVM> Exception on send :
    weblogic.rmi.ConnectException: Attempt to sendMsg using a closed connection
    Fri Oct 13 21:41:14 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '1'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:14 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '2'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:25 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '3'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:26 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '4'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:27 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '5'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:27 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '6'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:28 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '7'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:41:29 CST 2000:<E> <ListenThread> Listen failed, failure
    count: '8'
    java.net.SocketException: No such file or directory
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:406)
    at java.net.ServerSocket.implAccept(ServerSocket.java:240)
    at java.net.ServerSocket.accept(ServerSocket.java:224)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)
    Fri Oct 13 21:44:33 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:44:33 CST 2000:<I> <JDBC Pool> Connection for pool "tbcsPool"
    created.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (4045094, xid =
    971443586063_2310, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (4616970, xid =
    971443586063_2312, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (2802643, xid =
    971443586063_2313, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (1996325, xid =
    971443586063_2314, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (6200418, xid =
    971443586063_2315, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (7140343, xid =
    971443586063_2316, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (331414, xid =
    971443586063_2317, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (41620, xid =
    971443586063_2318, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:49:30 CST 2000:<I> <TX> Transaction (TxC (3265875, xid =
    971443586063_2311, timeout = 300, txState = Marked Rollback, root = null)
    rolled back after 300 sec.
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Performance Pack> Failure in
    processSockets()
    java.net.SocketException: No such file or directory: No such file or
    directory
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:327)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
    Fri Oct 13 21:52:46 CST 2000:<E> <Posix Perfo

  • JDBC Driver for MySQL database which should support JDBC2.0 function

    Hi, Guys,
    I'm using JDK1.3 and mm.mysql-2.0.4-bin.jar in Windows NT. When I run following program, I got the error: java.sql.SQLException: ResultSet not updatable. (the function rs.last() is working).
    Based on the documentation, mm.mysql-2.0.4-bin.jar driver should support JDBC2.0 function, but in fact, it's not. So, what's wrong or where is the correct driver?
    Thank you in advance anyway!
    import java.sql.*;
    import java.sql.ResultSet.*;
    import java.util.*;
    public class BridgeMysql{
    public static void main (String[] args) throws Exception {
    String sTable = "test";
    try {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    Connection conMysql = DriverManager.getConnection("jdbc:mysql://localhost/myDatabase?user=user&password=password");
    Statement st = conMysql.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
    ResultSet rs = st.executeQuery("Select * from "+sTable);
    //rs.last();
    rs.moveToCurrentRow();
    System.out.println("Table "+sTable+" contains "+String.valueOf(rs.getRow())+" rows");
    rs.close();
    st.close();
    conMysql.close();
    catch (Exception e)
    System.out.println(e);

    Thought I might add something interesting I found.
    You need to include the field in your primary key. I only have one field in the key so I dont know how it works if you have more than one key.
    Makes sense considering Mark stated that you need the primary index defined. Looks like you need the fields as well from the select statement.
    Can anyone comment on why this is?

  • JDBC2.0

    Hi
    i had downloaded classes12.zip and jdk1.2.
    i am trying to use JDBC2.0 features with oracle 7.x
    i had written a program like below
    import java.sql.*;
    public class dbTest
    public static void main(String [] arg)
    try
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    System.out.println("JDBC Drivers are loaded");
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@172.17.1.186:8888:wbrk","wbrkuser", "wbrkuser");
    System.out.println("Got the DB Connecton");
    Statement stmt = con.createStatement();
    System.out.println("Statement created");
    String custCode = "5520355";
    String sQl = "Select * from WBRK_STK_ORD_TBL WHERE STK_ORD_CUST_CODE = '"+custCode+"' ";
    ResultSet rSet = stmt.executeQuery(sQl);
    while(rSet.next())
    rSet.first();
    System.out.println(rSet.getString(1));
    }catch(Exception e)
    System.out.println(e.toString());
    i am able to connect to database retrive data in while loop but when i make the method call first() it is giving
    an error like
    java.lang.NoSuchMethodError: java.sql.ResultSet: method first()Z not found
    at dbTest.main(Compiled Code)
    program is compiling properly
    i tried to find databaseType with getType() method
    it is returning 1003 what does it nean
    can any one give some solution
    Ramesh
    Thanx
    Ramesh
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Ramesh RGVS ():
    Hi
    i had downloaded classes12.zip and jdk1.2.
    i am trying to use JDBC2.0 features.
    i had written a program like below
    import java.sql.*;
    public class dbTest
    public static void main(String [] arg)
    try
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    System.out.println("JDBC Drivers are loaded");
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@172.17.1.186:8888:wbrk","wbrkuser", "wbrkuser");
    System.out.println("Got the DB Connecton");
    Statement stmt = con.createStatement();
    System.out.println("Statement created");
    String custCode = "5520355";
    String sQl = "Select * from WBRK_STK_ORD_TBL WHERE STK_ORD_CUST_CODE = '"+custCode+"' ";
    ResultSet rSet = stmt.executeQuery(sQl);
    rSet.first();
    }catch(Exception e)
    System.out.println(e.toString());
    i am able to connect to database but when i make the method call first() it is giving exception.
    can any one suggest me a solution
    Thanx
    Ramesh<HR></BLOCKQUOTE>
    null

  • How to manage multiUsers in weblogic5.1

    Hi all,
              We have multi user situation in database.
              To start up the application server, there would be dummy connection.
              Based on the dummy connection, all entities would be deployed (weblogic
              5.1).
              Scenario 1
              From the Front End (a JSP page) Upon entering the User name and
              password the same name must be dynamically set the value(username ) and
              password to the weblogic properties as mentioned below.
              The main purpose of creating dynamic user and password is to implement
              the schema concepts of Oracle through App. Server(Weblogic5.1) from
              front End (using jsp pages)., and also to register the user whose
              carrying Updates ,deletes and inserts. The user name and passwords
              would be validated in the database.
              #weblogic.jdbc.connectionPool.oraclePool=\
              # url=jdbc:weblogic:oracle,\
              # driver=weblogic.jdbc.oci.Driver,\
              # loginDelaySecs=1,\
              # initialCapacity=1,\
              # maxCapacity=10,\
              # capacityIncrement=2,\
              # allowShrinking=true,\
              # shrinkPeriodMins=15,\
              # refreshMinutes=10,\
              # testTable=dual,\
              # props=user= USER(GivenByJSPpage);
              password= PASSWORD(GivenByJSPpage)
              server=mars
              weblogic.allow.reserve.weblogic.jdbc.connectionPool.misPool=
              USER(GivenByJSPpage)
              Default properties given by weblogic 5.1
              #weblogic.jdbc.connectionPool.oraclePool=\
              # url=jdbc:weblogic:oracle,\
              # driver=weblogic.jdbc.oci.Driver,\
              # loginDelaySecs=1,\
              # initialCapacity=1,\
              # maxCapacity=10,\
              # capacityIncrement=2,\
              # allowShrinking=true,\
              # shrinkPeriodMins=15,\
              # refreshMinutes=10,\
              # testTable=dual,\
              # props=user=SCOTT;password=tiger;server=mars
              weblogic.allow.reserve.weblogic.jdbc.connectionPool.misPool=everyone
              Scenario 2
              We also have a situation where in we need to create the connection pool
              dynamically. With the set of given properties.
              We need to remove the connection pool as soon as the user exits. This is
              mainly to avoid the mentioning of pool names in the weblogic properties
              file and also reduce the number of pools at the start up of the server.
              Jsp Users (user/password)------> App.Server(WLS5.1)-----> DataBase
              (Oracle8.1.6)
              (user/password)
              Ex: chandu/sarma123-------->
              WLS5.1------------>chandu/sarma123@connectstring
              Thanks in advance
              Chandu([email protected],[email protected])
              

    Tangosol provides a custom JDBC driver compatible with Weblogic that
              provides this functionality. Contact [email protected] if you are
              interested; priced at $995/server.
              Peace,
              Cameron Purdy
              Tangosol Inc.
              << Tangosol Server: How Weblogic applications are customized >>
              << Download now from http://www.tangosol.com/download.jsp >>
              "softstar" <[email protected]> wrote in message
              news:[email protected]...
              > Hi all,
              >
              > We have multi user situation in database.
              > To start up the application server, there would be dummy connection.
              > Based on the dummy connection, all entities would be deployed (weblogic
              > 5.1).
              >
              > Scenario 1
              > From the Front End (a JSP page) Upon entering the User name and
              > password the same name must be dynamically set the value(username ) and
              > password to the weblogic properties as mentioned below.
              > The main purpose of creating dynamic user and password is to implement
              > the schema concepts of Oracle through App. Server(Weblogic5.1) from
              > front End (using jsp pages)., and also to register the user whose
              > carrying Updates ,deletes and inserts. The user name and passwords
              > would be validated in the database.
              >
              > #weblogic.jdbc.connectionPool.oraclePool=\
              > # url=jdbc:weblogic:oracle,\
              > # driver=weblogic.jdbc.oci.Driver,\
              > # loginDelaySecs=1,\
              > # initialCapacity=1,\
              > # maxCapacity=10,\
              > # capacityIncrement=2,\
              > # allowShrinking=true,\
              > # shrinkPeriodMins=15,\
              > # refreshMinutes=10,\
              > # testTable=dual,\
              > # props=user= USER(GivenByJSPpage);
              > password= PASSWORD(GivenByJSPpage)
              > server=mars
              > weblogic.allow.reserve.weblogic.jdbc.connectionPool.misPool=
              > USER(GivenByJSPpage)
              >
              > Default properties given by weblogic 5.1
              > #weblogic.jdbc.connectionPool.oraclePool=\
              > # url=jdbc:weblogic:oracle,\
              > # driver=weblogic.jdbc.oci.Driver,\
              > # loginDelaySecs=1,\
              > # initialCapacity=1,\
              > # maxCapacity=10,\
              > # capacityIncrement=2,\
              > # allowShrinking=true,\
              > # shrinkPeriodMins=15,\
              > # refreshMinutes=10,\
              > # testTable=dual,\
              > # props=user=SCOTT;password=tiger;server=mars
              > weblogic.allow.reserve.weblogic.jdbc.connectionPool.misPool=everyone
              >
              > Scenario 2
              >
              > We also have a situation where in we need to create the connection pool
              > dynamically. With the set of given properties.
              >
              > We need to remove the connection pool as soon as the user exits. This is
              > mainly to avoid the mentioning of pool names in the weblogic properties
              > file and also reduce the number of pools at the start up of the server.
              >
              >
              > Jsp Users (user/password)------> App.Server(WLS5.1)-----> DataBase
              > (Oracle8.1.6)
              >
              > (user/password)
              >
              > Ex: chandu/sarma123-------->
              > WLS5.1------------>chandu/sarma123@connectstring
              >
              >
              > Thanks in advance
              > Chandu([email protected],[email protected])
              >
              >
              

  • Where i can find oracle.jdbc2..... ?

    Hello,
    I reading a tutorial in oracle site and in a exemple it has it in import
    import java.sql.*;  // Ok
    import java.io.*; // Ok
    import oracle.sql.*; // Ok
    import oracle.jdbc.*; // Ok
    import oracle.oracore.*; // Error
    import oracle.jdbc2.*; // Error
    import java.math.*;
    // And a implementation
    // wich generate a error in SQLDATA
    public class Paymaster implements SQLDATA { I�ve downloaded the folow driver wich looks like the last oracle jdbc
    - Oracle9i Release 2 (9.2.0.3) & (9.2.0.1) drivers
    |- For use with JDK 1.4
    |- ojdbc14.jar - JDBC classes (1,181,679 bytes)
    But it doen�t have the jdbc2 too and the oracle.oracore and inside oracle.jdbc.oracore;
    Does anyone know where i can get that driver used in exemple??
    Here is the page
    If you wanna take a look in the example here is the page
    http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96659/03_pub.htm
    more or less 26 times page down
    Thank You.
    Jean

    you will find a jar file called classes111.jar in your ORACLE_HOME/jdbc/lib directory, oracle.jdbc2.* pacakge files will be present inside this jar. classes111.jar is to be used with JDK 1.1.x

  • JDBC2 support for Oracle 8i Lite

    Hi,
    I was just wondering if the JDBC driver included with Oracle 8i Lite supports JDBC2, and if not, is there a newer version that does (I couldn't find anything on the downloads page).
    Thanks,
    Raj.

    Just wondering if any one has been able to write a CodeWarrior project that connects to a database through ODBC. I've been having problems compiling my CodeWarrior project file. I am trying to use my existing code which connects to a DB2 Everywhere database, but instead replacing it with an Oracle 8i Lite database.
    If any one has had experience with this, e-mail me at [email protected]
    Thanks for your help.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Alvin Chin ([email protected]):
    Mark,
    The SQL functions being undefined in my C file are as follows:
    SQLAllocEnv
    SQLAllocConnect
    SQLFreeEnv
    SQLConnect
    SQLFreeEnv
    SQLFreeConnect
    SQLAllocStmt
    SQLDisconnect
    SQLPrepare
    SQLBindParameter
    SQLExecute
    SQLFetch
    SQLGetData
    SQLFreeStmt
    Is it a correct assumption that since I used these ODBC functions from DB2 Everywhere (which were in the DB2e library and header files), that I can still use these functions with Oracle 8i Lite? Isn't the ODBC API for Oracle Lite standard for all ODBC applications? Or does Oracle Lite implement these differently. What header files and library files am I missing?
    I tried to do a search for the SQLAllocEnv function and the only files that contain this are:
    sqlapi.h
    odbc.h
    odbc.lib
    olod2040.lib
    olsql40.lib
    I tried to include the olod2040.lib and olsql40.lib files but I after compiling, I got "illegal file object data'.
    So what files am I missing in order to compile?
    Thanks.
    <HR></BLOCKQUOTE>
    null

  • Iisproxy conf iguratoin in weblogic5.1

              HI group
              Am try to configure iisproxy, I am using weblogic5.1 sp6 and iis4.0.
              I have the iis and the weblogic server in different machines, on iis machine i put
              the iisproxy.dll, iisforward.dll and the iisproxy.ini in the same directory over
              c:\temp\*.
              When i make a request to the iis i only obtain an inetinfo.exe error.(acces violation)
              Need i put it files in some specific directory in the weblogic server.
              Some body have any advices for my?
              Thanks in advance
              pedro ibarra
              

    Pleae provide complete details. What do you mean it doesn't work?
              Perhaps you can describe what you want to accomplish. In detail please.
              Eric
              "Lynne" <[email protected]> wrote in message
              news:3c0fc609$[email protected]..
              > I follow the instruction on
              http://www.weblogic.com/docs51/admindocs/apache_bridge.html to configure
              apache-weblogic plug in. It can go to the first page but the servlet is not
              working. Here is my server information:
              >
              > Solaris 7, weblogic5.1 sp9,apache 1.3.9
              > httpd.conf:
              > LoadModule weblogic_module libexec/mod_wl.so
              > AddModule mod_weblogic.c
              > <Location /weblogic>
              > SetHandler weblogic-handler
              > PathTrim /ga/
              > </Location>
              > <Location /servlet>
              > SetHandler weblogic-handler
              > PathTrim /servlet/
              > </Location>
              >
              > MatchExpression *.jpg
              > MatchExpression *.gif
              >
              > <IfModule mod_weblogic.c>
              > WebLogicHost genevaqa.grainger.com
              > WebLogicPort 8084
              > MatchExpression *.jsp
              > </IfModule>
              

  • Oracle.jdbc vs oracle.jdbc2

    Hello World,
    Whar is the differens between
    oracle.jdbc
    and
    oracle.jdbc2
    Where ca I read more about it?
    Best regards
    Anders Gunnare
    Frontec

    The weblogic driver is a type 2 (native) driver based upon the native OCI
    Oracle client libraries. The Oracle thin driver is a type 4 (pure java)
    driver. Type 2 drivers are typically faster but if you want to make a
    performance based decision you should also include the type 2 driver(s)
    available from Oracle in the comparison.
    -Charlie
    Mahesh wrote:
    Hi,
    We are curently using Oracle thin drivers for our
    production servers. The Weblogic version is 5.1 SP9 and Oracle version is
    8.1.6. Does anybody have any information about performance comparisons
    between Weblogic's thin drivers and Oracle's ?
    Thanx in advance
    Mahesh

  • Is Servlet failover supported by WebLogic5.1

              Hi,
              I want to know whether servlet failover is supported
              by WebLogic5.1. To illustrate with an example:
              I have a server instance(which is part of cluster)
              which is running a servlet. If the Server instance
              fails when the servlet service method is in progress,
              will the failover happen? I mean will the secondary
              server re-invoke the service method of the servlet?
              I have tried Servlet failover with weblogic clusters
              and it simply doesnt work.
              For Object(EJB) clustering there is an option of
              declaring the Object as idempotent, but in case
              of servlets there is no such provision. Shouldn't
              Servlets be idempotent by default?
              Any ideas/comments about the same will be appreciated.
              Regards,
              Amol
              ><
              

              if ConnectTimeoutSecs is less than HungServerRecoverSecs
              then
              wouldn't the connection timeout occur before server fail-over
              happens?
              Viresh Garg <[email protected]> wrote:
              >
              >
              >Amol wrote:
              >
              >> Hello.
              >> Thanks Mike, Kumar and Glen for your responses.
              >> I got another query, but before that, just
              >a couple
              >> of notings from my experiences with weblogic
              >> clustering - servlet failure. (Our configuration
              >> uses iPlanet Webserver with NSAPI plugin)
              >>
              >> --- NOTINGS ---
              >> In the obj.conf file, i needed to add the
              >following
              >> parameters: HungServerRecoverSecs, ConnectRetrySecs,
              >> ConnectTimeoutSecs. Also I noted that(correct
              >me if
              >> i'm wrong) the foll relation ought to be maintained
              >> to allow Servlet failover to take place:
              >> "ConnectRetrySecs < HungServerRecoverSecs
              >< ConnectTimeoutSecs"
              >
              >There is no connection of connectretrySecs and
              >HungServerRecoverSecs.
              >
              >HungServerRecoverSecs means we connected to
              >WLS successfully and now
              >waiting for response in proxy code, if response
              >doesn't come back in
              >these many secs, we assume server is hung (
              >you can connect to it but
              >can't get a response back) and we do failover.
              >
              >ConnectRetrySecs is the time for which we sleep
              >before retrying once we
              >have tried all the servers in static and dynamic
              >list and we couldn't
              >connect to a server.
              >
              >ConnectTimeoutSecs is the time upto which we
              >will keep on sleeping and
              >trying to connect to a server in loop until
              >we can either connect, or
              >connection timeout has expired.
              >
              >Viresh Garg
              >Principal Developer Relations Engineer
              >BEA Systems
              >
              >>
              >>
              >> This is not mentioned in the docs and more
              >importantly
              >> the default values assigned to these parameters
              >do
              >> NOT satisfy the above mentioned condition
              >hence even
              >> though Servlets may be IDEMPOTENT by default
              >as Kumar
              >> points out, Servlet fail-over would not work.
              >>
              >> Also some coding change is required if one
              >is using
              >> servlet calling Beans in a transaction. We
              >need to
              >> maintain servlet-level transactions by setting
              >a flag
              >> in the session.
              >> --- END OF NOTING ---
              >>
              >> Finally the new query :)
              >> "Consider the foll scenario:
              >> Request comes to Servlet, is fwded to SessionBean
              >> which calls multiple methods on EntityBean
              >in a
              >> SINGLE transaction. Now consider the situation
              >> wherein the app server continues working fine,
              >> but network connection for the machine hosting
              >the
              >> app server is disconnected. The proxy receives
              >no
              >> response from the concerned app server and
              >fails over
              >> to the secondary server. However the first
              >app server
              >> cannot perform the update because of the lock
              >n the
              >> DB by the first app server. How does one resolve
              >such
              >> a situation?"
              >>
              >> We simulated this situation by removing the
              >network
              >> cord while the transaction was in progress...
              >and the
              >> response to the client was an ugly "Proxy
              >failed"
              >> error!
              >>
              >> Thanks and Best Regards,
              >>
              >> Amol
              >> ><
              >> Any ideas would be greatly appreciated.
              >> I think we need to
              >>
              >> glen wilcox <[email protected]> wrote:
              >> >I guess we are all assuming that one of the
              >"Bridge" products
              >> >(Netscape,Apache) is being used otherwise
              >idempotent
              >> >doesn't apply. The
              >> >failover will work but you need a proxy server
              >in front
              >> >of the cluster.
              >> >If you are using the session you will also
              >need to configure
              >> >for session
              >> >replication.
              >> >
              >> >Glen
              >> >
              >> >Kumar Allamraju wrote:
              >> >
              >> >> BTW, idempotent is "ON" by default
              >> >>
              >> >> Mike Reiche wrote:
              >> >>
              >> >> > Look for an 'idempotent' setting for
              >specific URLs.
              >> >> >
              >> >> > http://www.weblogic.com/docs51/admindocs/nsapi.html
              >> >> >
              >> >> > Mike
              >> >> >
              >> >> > "Amol" <[email protected]> wrote:
              >> >> > >
              >> >> > >Hi,
              >> >> > >I want to know whether servlet failover
              >is supported
              >> >> > >by WebLogic5.1. To illustrate with an
              >example:
              >> >> > >I have a server instance(which is part
              >of cluster)
              >> >> > >which is running a servlet. If the Server
              >instance
              >> >> > >fails *when the servlet service method
              >is in progress*,
              >> >> > >will the failover happen? I mean will
              >the secondary
              >> >> > >server re-invoke the service method
              >of the servlet?
              >> >> > >
              >> >> > >I have tried Servlet failover with weblogic
              >clusters
              >> >> > >and it simply doesnt work.
              >> >> > >
              >> >> > >For Object(EJB) clustering there is
              >an option of
              >> >> > >declaring the Object as idempotent,
              >but in case
              >> >> > >of servlets there is no such provision.
              >Shouldn't
              >> >> > >Servlets be idempotent by default?
              >> >> > >
              >> >> > >Any ideas/comments about the same will
              >be appreciated.
              >> >> > >
              >> >> > >Regards,
              >> >> > >Amol
              >> >> > >><
              >> >
              >
              

  • Could'nt configure for http proxy server in weblogic5.1

    Hai
    we have installed weblogic5.1 in two machines one in NT and the other in windows98.
    We want to use one as the webserver and the other as the proxy webserver. When
    ever if a particular file is not found in the webserver it should automatically
    redirect to the proxy server. we have configured the following set of lines in
    the weblogic.properties.
    weblogic.httpd.defaultServlet=proxy
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://192.168.254.183
    but still we could'nt get the redirection. If we look for a particular jsp file
    which is not in the webserver and located in the proxy webserver it searches only
    in the webserver and giving the "404 not found error". What further configuration
    we have to do to achieve this. Both systems are in the network.
    Anybody's help is more appreciated
    Thx and regards
    jagan

    "jaganmohan" <[email protected]> wrote:
    >
    Hai
    we have installed weblogic5.1 in two machines one in NT and the other
    in windows98.
    We want to use one as the webserver and the other as the proxy webserver.
    When
    ever if a particular file is not found in the webserver it should automatically
    redirect to the proxy server. we have configured the following set of
    lines in
    the weblogic.properties.
    weblogic.httpd.defaultServlet=proxy
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://192.168.254.183
    but still we could'nt get the redirection. If we look for a particular
    jsp file
    which is not in the webserver and located in the proxy webserver it searches
    only
    in the webserver and giving the "404 not found error". What further configuration
    we have to do to achieve this. Both systems are in the network.
    Anybody's help is more appreciated
    Thx and regards
    jaganThanks for everyone i was able to solve the problem on my own. The problem is
    i did'nt commented the following line in the weblogic.properties. After commenting
    the line it worked
    weblogic.httpd.defaultServlet=file

Maybe you are looking for

  • How to get multiple numbers for a business?

    Hi- We use Skype as our means of communication for our company.   We like everyone to have a Skype number, however we have reached a major roadblock.  Everytime we add a new person and try to get them a Skype number it locks the account for fraud, ap

  • IDoc to File scenario... Receiver Comm Channel Error...

    Hi Guru, On the scenario IDoc to file, I'm encountering the ff error on my receiver comm channel (File Adapter)... ttempt to access the 1 requested objects on 1 failed. Detailed information: com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt t

  • White space gets introduced in rich text

    Hi, We are rendering a form using Output service API. The form contains some fields with Rich text. We are able to render rich text on the form but an extra white space gets introduced in the rich text sentences if the text contains Bold, Italics or

  • External Firewire Drives Don't Mount.... i need a guru.

    Warning!!!!! i'm going to ramble.... 2 much sake .. heh heh i just got a brand butt spanking new iBook G4 14" 1.42 GHz Tiger pre-installed. I ran Software Update. As you can tell by my info, i'm at 10.4.2 now. In a minute i'll tell ya how i got BACK

  • Iphoto from Europe

    I am in Europe and I recently upgraded my Macbook Air to 10.10.3. Now I cannot access iPhoto. I need to upload to iCloud but I like access to my photos on my hard drive. How can I upgrade my iPhoto in Europe and access my photos?