NullPointerException in weblogic.jdbc.rmi.SerialConnection.createStatement()

Hello,
we are running WLS 6.1 SP2. The following code sometimes (rather rarely) throws
a NullPointerException:
Connection dbConnection = DBUtil.getDBConnection();//here we get the Connection
stmt = dbConnection.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);//it's
where NPE happens
The error report says:
java.sql.SQLException:
java.lang.NullPointerException at
weblogic.jdbc.rmi.SerialConnection.createStatement(SerialConnection.java:396)
So, I think, this is something in WebLogic's code... Is this a known issue (I
couldn't find a similar report in the newsgroup)? Is there a workaround?
regards,
Vitaly

Vitaly Sourikov wrote:
"Vitaly Sourikov" <[email protected]> wrote:
The patches that we use with SP2 are
CR061106_61sp2.jar
CR072612_61sp2.jar
CR077919_61sp2.jar
As far as we know, those fixes (or some of them) were not introduced in SP4. Are
there new versions of the patches for SP4?I have found that all these bugs are fixed in sp4, so no patches are needed if you
upgrade to 6.1sp4.
Joe
>
>
regards,
Vitaly
Hi Joseph,
Thank you for the reply. Unfortunately, we cannot move to SP3 or SP4
- they have
conflicts with other patches from WebLogic we use. This error happens
rather rarely.
In most of cases this very stuff works. But it would be intresing to
have this
patch for diagnostics, in case of future failures. Would you send it
to me, please?
Thank you in advance,
Vitaly
Joseph Weinstein <[email protected]> wrote:
Vitaly Sourikov wrote:
Hello,
we are running WLS 6.1 SP2. The following code sometimes (rather rarely)throws
a NullPointerException:
Connection dbConnection = DBUtil.getDBConnection();//here we get theConnection
stmt = dbConnection.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);//it's
where NPE happens
The error report says:
java.sql.SQLException:
java.lang.NullPointerException at
weblogic.jdbc.rmi.SerialConnection.createStatement(SerialConnection.java:396)
So, I think, this is something in WebLogic's code... Is this a knownissue (I
couldn't find a similar report in the newsgroup)? Is there a workaround?Hi. The NPE is probably happening in the actual DBMS driver. What is
happening
is that the rmi driver is having to catch any non-SQLException, andthrow
a SQLException
with the message of the original exception. Unfortunately, the fullstacktrace
of the
original NPE is lost. If you want, I can send you a small diagnostic
patch, which will
just make the rmi object retain the whole original stacktrace in the
exception it throws,
and that will help lead to the real problem.
This may well be a bug that was fixed in sp3 or 4. Is it possible
for you to upgrade to
the latest stuff?
Joe
regards,
Vitaly

Similar Messages

  • Weblogic.jdbc20.rmi.SerialConnection fail to prepareCall()

    Hi, I have a stateless session bean calling an oracle8i stored procedure. The java.sql.Connection is obtained via weblogic DataSource (non-transactional). and this line is failing:CallableStatement cstmt = conn.prepareCall(qstr);Start of the stack is this:java.sql.SQLException: java.lang.NullPointerException: at weblogic.jdbc20.rmi.SerialConnection.prepareCall(SerialConnection.java:44)I tested printing conn.toString() and it gave me "weblogic.jdbc20.rmi.SerialConnection@43074758", but any other method on this Connection object will fail.Yet, same program runs just fine in servlet. Any idea why? How does weblogic.jdbc20.rmi.SerialConnection come to into play? What is it?Any help is appreciated!Alan

    Potluri wrote:
    >
    WLS 6.1 on Win 2000 and trying to connect Oracle database on remote Unix machine.Let me know if you're at the latest service pack level. This feels like a bug that
    has been fixed...
    Joe
    >
    Joseph Weinstein <[email protected]> wrote:
    Potluri wrote:
    Hi ,
    I am using CallableStatement to update the database. When i tried tocreate the
    callable statement it is throwing the following exception. can anysuggest some
    solution for this....
    java.sql.SQLException: java.lang.NullPointerException
    at weblogic.jdbc.rmi.SerialConnection.prepareCall(SerialConnection.java:
    106)
    PotluriWhat version of the server are you running?
    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

  • ClassCastException: weblogic.jdbc.rmi.SerialResultSet

    HI,
    I am using WebLogic 6.0 SP2 connection pooling to get CLOB data from Oracle database.
    It is working fine to get the connection and get non-CLOB data like string, but
    when I retrieve the CLOB column in my program such as, theClob = ((oracle.jdbc.OracleResultSet)
    rs).getCLOB(1),
    Weblogic throws ClassCastException: weblogic.jdbc.rmi.SerialResultSet, does anybody
    experience the same problem ? How can I get around this problem ?
    Thanks
    John

    Hi,
    I've got the same error. The only diference is that I read BLOBs out of the table
    ((oracle.jdbc.OracleResultSet)rset).getBLOB(1) from oracle.jdbc.OracleResultSet).
    Best regards,
    Kai
    "John Chen" <[email protected]> wrote:
    >
    HI,
    I am using WebLogic 6.0 SP2 connection pooling to get CLOB data from
    Oracle database.
    It is working fine to get the connection and get non-CLOB data like string,
    but
    when I retrieve the CLOB column in my program such as, theClob = ((oracle.jdbc.OracleResultSet)
    rs).getCLOB(1),
    Weblogic throws ClassCastException: weblogic.jdbc.rmi.SerialResultSet,
    does anybody
    experience the same problem ? How can I get around this problem ?
    Thanks
    John

  • ClassCastException: weblogic.jdbc.rmi.SerialPreparedStatement

    I am attempting to retrieve CLOBs and XMLTypes in a servelet from a 9i release
    2 database. Using sampe code from oracle, I am getting ClassCastException when
    I attempt to cast ...
    oracle.jdbc.OraclePreparedStatement stmt =
    (oracle.jdbc.OraclePreparedStatement) conn.prepareStatement( sql );
    The connection pool sets up fine, no errors. I am getting the connection in the
    servlet through the JNDI lookup ... (see code)
    From the config.xml, the jdbc setup ...
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="3" MaxCapacity="10" Name="9iR2Pool"
    Properties="user=kr;password=*****;dll=ocijdbc9;protocol=oci8"
    Targets="myserver" URL="jdbc:oracle:oci8:@ora9i"/>
    Has anyone done this before? Is there another way? Does bea have 9i release
    2 jdbc drivers?
    [huh.java]

    Hi Rick,
    JDBC objects obtained via a connection pool
    can not be cast to anything oracle.jdbc.*.
    In order to use oracle-specific functions of
    prepared statements you need to use oracle
    extensions provided by weblogic. Documentation
    and examples can be found here:
    http://e-docs.bea.com/wls/docs61/jdbc/thirdparty.html#1043705
    Regards,
    Slava Imeshev
    "Rick Bradshaw" <[email protected]> wrote in message
    news:3d6cfa2c$[email protected]..
    >
    I am attempting to retrieve CLOBs and XMLTypes in a servelet from a 9irelease
    2 database. Using sampe code from oracle, I am getting ClassCastExceptionwhen
    I attempt to cast ...
    oracle.jdbc.OraclePreparedStatement stmt =
    (oracle.jdbc.OraclePreparedStatement) conn.prepareStatement( sql );
    The connection pool sets up fine, no errors. I am getting the connectionin the
    servlet through the JNDI lookup ... (see code)
    From the config.xml, the jdbc setup ...
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="3" MaxCapacity="10" Name="9iR2Pool"
    Properties="user=kr;password=*****;dll=ocijdbc9;protocol=oci8"
    Targets="myserver" URL="jdbc:oracle:oci8:@ora9i"/>
    Has anyone done this before? Is there another way? Does bea have 9irelease
    2 jdbc drivers?

  • JDBC 2.0 method is not implemented : weblogic.jdbc.mssqlserver4.TdsResultS

    Hey Guys,
    We are running our application on weblogic8.1 server (AIX box). Our application keeps throwing this error. Has anyone of you come across this error before.
    java.sql.SQLException: This JDBC 2.0 method is not implemented at weblogic.jdbc.mssqlserver4.TdsResultSet.getType(TdsResultSet.java:684) at weblogic.jdbc.wrapper.ResultSet_weblogic_jdbc_mssqlserver4_TdsResultSet.getType(Unknown Source) at weblogic.jdbc.rmi.internal.ResultSetImpl.isResultSetCacheable(ResultSetImpl.java:140) at weblogic.jdbc.rmi.internal.ResultSetImpl.isRowCaching(ResultSetImpl.java:109) at weblogic.jdbc.rmi.internal.ResultSetImpl_weblogic_jdbc_wrapper_ResultSet_weblogic_jdbc_mssqlserver4_TdsResultSet_WLSkel.invoke(Unknown Source) at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477) at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144) at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415) at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java(Compiled Code)) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178) Thanks Regards Richi

    Rachith Srinivas wrote:
    Hey Guys,
    We are running our application on weblogic8.1 server (AIX box).
    Our application keeps throwing this error. Has anyone of you come across
    this error before.
    java.sql.SQLException: This JDBC 2.0 method is not implemented
    at weblogic.jdbc.mssqlserver4.TdsResultSet.getType(TdsResultSet.java:684)
    ...Hi. That old driver is telling you the truth. That JDBC 2.0 method is not implemented.
    There has been no development of that driver since soon after the JDBC 2.0 spec was
    finalized. We provide the weblogic.jdbc.sqlserver.SQLServerDriver in the 8.1 server,
    and heartily recommend you switch to it. It's a much superior driver, and has the
    considerable benefit if being fully supported and updated. The old ms4 driver is
    strongly deprecated and won't exist in the next release of WebLogic.
    Joe

  • Major performance problem in weblogic jdbc

    I ran a test which selected ~1000 rows from an oracle database table. The
    code ran in 4 seconds when I used the Oracle driver directly:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection connection = DriverManager.getConnection(URL, "XXX", "XXX");
    When I changed the code to get the connection from weblogic, it took 128
    SECONDS!!!!
    weblogic.jdbc.connectionPool.pointclick=\
    url=jdbc:oracle:thin:@XXX:dev,\
    driver=oracle.jdbc.driver.OracleDriver,\
    initialCapacity=1,\
    maxCapacity=2,\
    capacityIncrement=1,\
    props=user=XXX;password=XXX
    weblogic.jdbc.TXDataSource.weblogic.jdbc.jts.pointclick=pointclick
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    Context context = new InitialContext(properties);
    try
    DataSource dataSource = (DataSource)context.lookup(NAME);
    Connection connection = dataSource.getConnection();
    // if(!autoCommit)
    // connection.setAutoCommit(false);
    return connection;
    finally
    context.close();
    The strangest thing is that when I used the weblogic pool, if I executed
    "select column from table" it took 128 seconds, but "select * from table"
    only took 32 seconds. Why would it take longer to process less data?
    And more importantly, why does the weblogic connection take so damn long?
    Thanks for your help.
    Sean Rohead

    Hey, I finally managed to get JDBC logging up and running! Had to do with
    permission setting, adding the following entry to weblogic.policy:
    permission java.sql.SQLPermission "setLog";
    Boy are you right; JDBC logging is slow as mud! Good thing we use BMP
    entity beans, so I guess I can log JDBC calls myself in the
    ejbCreate/Load/Store/Remove hooks!
    Gene Chuang
    Teach the world. Join Kiko!
    http://www.kiko.com/profile/join.jsp?refcode=TAF-gchuang
    "Joseph Weinstein" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    Gene Chuang wrote:
    Hey, I've tried setting weblogic.jdbc.enableLogFile=true before and
    can't
    even get the server to start up! Since JDBC logging is not only slow,but
    buggy,JDBC logging is slow for the reasons described, but not buggy as such.
    is there a possibility Weblogic can implement a JDBC log for a future
    release?
    Seems like Weblogic can catch SQL calls much easier than we can,
    especially for CMP!It is conceivable that our pool drivers (pool,jts,rmi etc) couldindependently
    log SQL for debugging purposes, but we need to retain the semantics ofturning
    on jdbc logging, which in any case will continue to emanate from any JDBCdriver.
    In any case, we wouldn't do anything differently that DriverManager doesfor
    simply writing to a file, which would be serialized by the stream anyway.
    Joe
    Gene Chuang
    Teach the world. Join Kiko!
    http://www.kiko.com/profile/join.jsp?refcode=TAF-gchuang
    "Joseph Weinstein" <[email protected]> wrote in message
    news:[email protected]...
    Sean Rohead wrote:
    OK, disregard everything I said in my last post. The REAL reason
    for
    the
    slowdown is that I had "weblogic.jdbc.enableLogFile=true" in my
    weblogic.properties. So, there is nothing wrong with the JNDIDataSource
    object. Sorry if I misled anyone.
    Still, it does seem rather excessive for logging to cause a 30Xslowdown.
    Someone at BEA ought to take a closer look at that...Known issue, not ours.
    JDBC logging collect anything logged by any JDBC driver or by anySQLException.
    These all call DriverManager.println() which is class synchronized in
    the
    JVM,
    so this will serialize most JDBC threads, and slow the server down a
    lot,
    independently of the disk I/O needed to grow the file.
    Joe
    Sean Rohead
    "Sean Rohead" <[email protected]> wrote in message
    news:[email protected]...
    Nice work, Charlie!
    When I just connected to the pool directly, it ran fine. I am
    guessing
    that
    the DataSource returns a connection that connects first to the
    server
    via
    RMI and then to the database. I am trying to obtain a JDBC
    connection
    for
    use in EJB and servlets, so this is clearly overkill. The
    question I
    now
    have is what is the best way to obtain a transactional
    connection
    without
    the overhead described above? Can I somehow create a
    transactional
    DataSource that doesn't go over RMI? Or, should I just use thejts
    driver
    directly? I tried the following code, but got an error:
    Driver driver = new weblogic.jdbc.jts.Driver();
    Properties properties = new Properties();
    properties.put("connectionPoolID", "pointclick");
    Connection connection = driver.connect("jdbc:weblogic:jts",properties);
    The error was:
    java.sql.SQLException: The url cannot be null
    atjava.sql.DriverManager.getConnection(DriverManager.java:434)
    atjava.sql.DriverManager.getConnection(DriverManager.java:106)
    at weblogic.jdbcbase.jts.Driver.connect(Driver.java:213)
    at
    pointclick.jdbc.ConnectionFactory.getConnection(ConnectionFactory.java:24)
    atpointclick.servlet.TestServlet.doGet(TestServlet.java:36)
    atjavax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    atjavax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :124)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:744)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:692)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java:251)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
    atweblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >>>>>
    >>>>>
    I copied the code above from
    http://www.weblogic.com/docs51/classdocs/jts_driver.html and there
    was
    no
    mention of setting any other properties. If I create the
    connection
    this
    way from an EJB, will it still participate in the transaction
    started
    by
    the
    EJB container?
    Sean Rohead
    "Charlie Crook" <[email protected]> wrote in message
    news:[email protected]...
    Your Oracle example is also using JNDI to obtain the connection;
    not
    just
    getting a connection from a pool. So you've actually changed 2conditions
    ( non-pool to pool, non-JNDI to JNDI ). So both of these should
    be
    considered as suspects for the performance.
    "Sean Rohead" <[email protected]> wrote in message
    news:[email protected]...
    I ran a test which selected ~1000 rows from an oracle database
    table.
    The
    code ran in 4 seconds when I used the Oracle driver directly:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection connection = DriverManager.getConnection(URL,
    "XXX",
    "XXX");
    When I changed the code to get the connection from weblogic,
    it
    took
    128
    SECONDS!!!!
    weblogic.jdbc.connectionPool.pointclick=\
    url=jdbc:oracle:thin:@XXX:dev,\
    driver=oracle.jdbc.driver.OracleDriver,\
    initialCapacity=1,\
    maxCapacity=2,\
    capacityIncrement=1,\
    props=user=XXX;password=XXX
    weblogic.jdbc.TXDataSource.weblogic.jdbc.jts.pointclick=pointclick
    >>>>>>>
    >>>>>>>
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    Context context = new InitialContext(properties);
    try
    DataSource dataSource = (DataSource)context.lookup(NAME);
    Connection connection = dataSource.getConnection();
    // if(!autoCommit)
    // connection.setAutoCommit(false);
    return connection;
    finally
    context.close();
    The strangest thing is that when I used the weblogic pool, ifI
    executed
    "select column from table" it took 128 seconds, but "select *
    from
    table"
    only took 32 seconds. Why would it take longer to process
    less
    data?
    And more importantly, why does the weblogic connection take sodamn
    long?
    Thanks for your help.
    Sean Rohead
    PS: Folks: BEA WebLogic is in S.F., and now has some entry-level
    positions
    for
    people who want to work with Java and E-Commerce infrastructure
    products.
    Send
    resumes to [email protected]
    The Weblogic Application Server from BEA
    JavaWorld Editor's Choice Award: Best Web Application Server
    Java Developer's Journal Editor's Choice Award: Best Web ApplicationServer
    Crossroads A-List Award: Rapid Application Development Tools for
    Java
    Intelligent Enterprise RealWare: Best Application Using a ComponentArchitecture
    http://www.bea.com/press/awards_weblogic.html
    PS: Folks: BEA WebLogic is in S.F., and now has some entry-level positionsfor
    people who want to work with Java and E-Commerce infrastructure products.Send
    resumes to [email protected]
    The Weblogic Application Server from BEA
    JavaWorld Editor's Choice Award: Best Web Application Server
    Java Developer's Journal Editor's Choice Award: Best Web ApplicationServer
    Crossroads A-List Award: Rapid Application Development Tools for Java
    Intelligent Enterprise RealWare: Best Application Using a ComponentArchitecture
    http://www.bea.com/press/awards_weblogic.html

  • Java.lang.ClassNotFoundException: weblogic/jdbc/mssqlserver4/Driver

    Hello,
    I am moving my database from Sybase to SQL Server. I have a program that ran fine with JConnect driver (Sybase) on both unix and windows. But now when I try to use the weblogic driver to connect to SQL Server the program fails. I am 100% positive that the weblogic drive is in the classpath. Whether the weblogic drive is in the classpath or not I get the same error:
    Unexpected error:java.lang.ClassNotFoundException: weblogic/jdbc/mssqlserver4/Driver
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:124)
    at com.trilogy.tools.core.DBUtil.loadDriver(DBUtil.java:16)
    at com.trilogy.loader.core.LoadInitUtil.<init>(Compiled Code)
    at com.trilogy.loader.mass.MassInitUtil.<init>(MassInitUtil.java:15)
    at com.trilogy.loader.mass.Loader2CLI.execute(Compiled Code)
    at com.trilogy.tools.core.CLIBase.execute(CLIBase.java:45)
    at com.trilogy.loader.mass.Loader2CLI.main(Loader2CLI.java:805)
    java.lang.NullPointerException
    at com.trilogy.loader.mass.Loader2CLI.execute(Compiled Code)
    at com.trilogy.tools.core.CLIBase.execute(CLIBase.java:45)
    at com.trilogy.loader.mass.Loader2CLI.main(Loader2CLI.java:805)
    Pease help me fix this problem. I am not sure why the weblogic driver is not working. Thanks.

    The error message says it can't find a class named "weblogic.jdbc.mssqlserver4.Driver". That looks rather odd to me.
    Are you sure that you defined the connection information correctly in the configuration file?

  • JDBC/RMI driver does not support BLOB data type

    WLS 5.1 JDBC/RMI driver does not support BLOB data type. It is said in the Weblogic e-doc.
    I am using DataSource for database connections, meaning JDBC/RMI driver is actually producing
    database connections. I need several columns of BLOB types in my Oracle tables.
    Should I use the "JTS" driver instead in order to have the BLOB types supported ?
    Thanks for help.
    [att1.html]

    The error java.rmi.UnmarshalException seems to indicate you are somehow accessing the data-source over RMI, this seems odd. Are you running TopLink on a client and trying to connect to a WebLogic DataSource on the server?
    Maybe try connecting directly to the DataSource without going through TopLink and see if you encounter the same issue.
    You could also look at the TopLink WebLogic Examples and see how their configuration is different than your own.

  • At startup: "Unable to resolve weblogic.jdbc.connectionPool"

    WLS 6.0 SP1 on Solaris 8
    Oracle 8.1.7 using JDBC Thin driver from Oracle.
    At startup of WebLogic, just after WLS creates the pool, I get a JNDI
    NameNotFoundException, as shown below.
    However, this does not seem to cause any problems for us.
    ####<Jun 20, 2001 10:16:17 AM GMT+10:00> <Info> <JDBC Pool ora817Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Pool: 'ora817Pool'
    will be tested at: '10 minute intervals.>
    ####<Jun 20, 2001 10:16:20 AM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:21 AM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:22 AM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:23 AM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:24 AM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:24 AM GMT+10:00> <Info> <Adapter> <pssydsun01>
    <myserver> <main> <system> <> <000000> <Exception thrown by rmi
    server(class weblogic.jndi.internal.RootNamingNode)
    [-4918694186591914732S:192.168.0.52:[7001,7001,7002,7002,7001,7002,-1]/9]:
    weblogic.jndi.internal.RootNamingNode@1fea8a>
    javax.naming.NameNotFoundException: Unable to resolve
    weblogic.jdbc.connectionPool Resolved: 'weblogic' Unresolved:'jdbc' ;
    remaining name 'connectionPool'
    at
    weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:803)
    at
    weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:209)
    at
    weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:129)
    at
    weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:496)
    at
    weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:500)
    at
    weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(RootNamingNode_WLSkel.java:230)

    Just installed SP2 on top of WebLogic Server 6.0 SP1.
    I still get the same message in weblogic.log while it was starting up:
    ####<Jun 28, 2001 12:53:00 PM GMT+10:00> <Info> <WebLogicServer>
    <pssydsun01> <myserver> <main> <> <> <000000> <IIOP subsystem enabled.>
    ####<Jun 28, 2001 12:53:10 PM GMT+10:00> <Info> <WebLogicServer>
    <pssydsun01> <myserver> <main> <system> <> <000214> <WebLogic Server (6.0
    Service Pack 2 05/24/2001 11:55:28 #117037) "myserver"
    (c) 1995, 1996, 1997, 1998 WebLogic, Inc.
    (c) 1999, 2000 BEA Systems, Inc.>
    ####<Jun 28, 2001 12:53:23 PM GMT+10:00> <Info> <JDBC Pool ora817Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Pool: 'ora817Pool'
    will be tested at: '10 minute intervals.>
    ####<Jun 28, 2001 12:53:26 PM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 28, 2001 12:53:27 PM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 28, 2001 12:53:28 PM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 28, 2001 12:53:29 PM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 28, 2001 12:53:30 PM GMT+10:00> <Info> <JDBC Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Connection for pool
    "ora817Pool" created.>
    ####<Jun 28, 2001 12:53:30 PM GMT+10:00> <Info> <Adapter> <pssydsun01>
    <myserver> <main> <system> <> <000000> <Exception thrown by rmi
    server(class weblogic.jndi.internal.RootNamingNode)
    [7126974831161186990S:192.168.0.52:[7001,7001,7002,7002,7001,7002,-1]/9]:
    weblogic.jndi.internal.RootNamingNode@504ec1>
    javax.naming.NameNotFoundException: Unable to resolve jdbc. Resolved: ''
    Unresolved:'jdbc' ; remaining name ''
    at
    weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:803)
    at
    weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:209)
    at
    weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:129)
    Daniel Hoppe wrote:
    Hi,
    it's a problem in SP1, doesn't seem to cause any harm. Afaik it's fixed
    in RP1 and in SP2
    Daniel
    -----Urspr?ngliche Nachricht-----
    Von: Jesus M. Salvo Jr. [mailto:[email protected]]
    Bereitgestellt: Mittwoch, 20. Juni 2001 02:17
    Bereitgestellt in: jndi
    Unterhaltung: At startup: "Unable to resolve
    weblogic.jdbc.connectionPool"
    Betreff: At startup: "Unable to resolve weblogic.jdbc.connectionPool"
    WLS 6.0 SP1 on Solaris 8
    Oracle 8.1.7 using JDBC Thin driver from Oracle.
    At startup of WebLogic, just after WLS creates the pool, I get a JNDI
    NameNotFoundException, as shown below.
    However, this does not seem to cause any problems for us.
    ####<Jun 20, 2001 10:16:17 AM GMT+10:00> <Info> <JDBC Pool
    ora817Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000> <Pool:
    'ora817Pool'
    will be tested at: '10 minute intervals.>
    ####<Jun 20, 2001 10:16:20 AM GMT+10:00> <Info> <JDBC
    Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000>
    <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:21 AM GMT+10:00> <Info> <JDBC
    Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000>
    <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:22 AM GMT+10:00> <Info> <JDBC
    Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000>
    <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:23 AM GMT+10:00> <Info> <JDBC
    Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000>
    <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:24 AM GMT+10:00> <Info> <JDBC
    Connection Pool>
    <pssydsun01> <myserver> <main> <system> <> <000000>
    <Connection for pool
    "ora817Pool" created.>
    ####<Jun 20, 2001 10:16:24 AM GMT+10:00> <Info> <Adapter>
    <pssydsun01>
    <myserver> <main> <system> <> <000000> <Exception thrown by rmi
    server(class weblogic.jndi.internal.RootNamingNode)
    [-4918694186591914732S:192.168.0.52:[7001,7001,7002,7002,7001,
    7002,-1]/9]:
    weblogic.jndi.internal.RootNamingNode@1fea8a>
    javax.naming.NameNotFoundException: Unable to resolve
    weblogic.jdbc.connectionPool Resolved: 'weblogic' Unresolved:'jdbc' ;
    remaining name 'connectionPool'
    at
    weblogic.jndi.internal.BasicNamingNode.newNameNotFoundExceptio
    n(BasicNamingNode.java:803)
    at
    weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingN
    ode.java:209)
    at
    weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamin
    gNode.java:129)
    at
    weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:496)
    at
    weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:500)
    at
    weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(RootNaming
    Node_WLSkel.java:230)

  • StackOverflow in weblogic.jdbc.base.BaseSqlParser#parseAlmostAnything

    I have some sql which looks like 'select a, b, c from d where c in (
    val1, val2, val3, ...., valn )' where n is 2400. The string itself is
    18986 characters long. When I attempt to execute this string, I get the
    exception below.
    This is with WLS81SP2 and the WebLogic Informix drivers shipped with
    WLS81SP2.
    Any advice? I am pursing an alternative of using a temporary table, but
    thought I'd touch base with the group for your thoughts.
    Caused by: javax.ejb.TransactionRolledbackLocalException: EJB Exception:
    ; nested exception is: javax.ejb.TransactionRolledbackLocalException:
    EJB Exception: : java.lang.StackOverflowError
         at java.lang.StringBuffer.length(StringBuffer.java:141)
         at java.lang.String.<init>(String.java:422)
         at java.lang.StringBuffer.toString(StringBuffer.java:1235)
         at weblogic.jdbc.base.BaseSQLScanner.setEndOfToken(Unknown Source)
         at
    weblogic.jdbc.base.BaseSQLScanner$BaseSQLScannerIDOrKeywordState.processChar(Unknown
    Source)
         at weblogic.jdbc.base.BaseSQLScanner.getNextToken(Unknown Source)
         at weblogic.jdbc.base.BaseSQLParser.matchWhiteSpaceOrComment(Unknown
    Source)
         at weblogic.jdbc.base.BaseSQLParser.matchWhiteSpaceOrComment(Unknown
    Source)
         at weblogic.jdbc.base.BaseSQLParser.matchSpecialCharTerminal(Unknown
    Source)
         at weblogic.jdbc.base.BaseSQLParser.matchCommaTerminal(Unknown Source)
         at weblogic.jdbc.base.BaseSQLParser.parseAlmostAnything(Unknown Source)
         [ repeat above lines 1013 times ]
         at
    weblogic.ejb20.internal.EJBRuntimeUtils.throwTransactionRolledbackLocal(EJBRuntimeUtils.java:248)
         at
    weblogic.ejb20.internal.BaseEJBLocalHome.handleSystemException(BaseEJBLocalHome.java:247)
         at
    weblogic.ejb20.internal.BaseEJBLocalObject.postInvoke(BaseEJBLocalObject.java:327)
         at
    org.ecmc.nib.model.jdbc.SelectFacade_nrlw90_ELOImpl.localQueryScheduledSteps(SelectFacade_nrlw90_ELOImpl.java:830)
         at
    org.ecmc.nib.model.AdminFacadeBean.lookupScheduledSteps(AdminFacadeBean.java:508)
         at
    org.ecmc.nib.model.AdminFacade_17g2j4_EOImpl.lookupScheduledSteps(AdminFacade_17g2j4_EOImpl.java:100)
         at org.ecmc.nib.model.AdminFacade_17g2j4_EOImpl_WLSkel.invoke(Unknown
    Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
         at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    Jay Schmidgall wrote:
    I have some sql which looks like 'select a, b, c from d where c in (
    val1, val2, val3, ...., valn )' where n is 2400. The string itself is
    18986 characters long. When I attempt to execute this string, I get the
    exception below.
    This is with WLS81SP2 and the WebLogic Informix drivers shipped with
    WLS81SP2.
    Any advice? I am pursing an alternative of using a temporary table, but
    thought I'd touch base with the group for your thoughts.
    Caused by: javax.ejb.TransactionRolledbackLocalException: EJB Exception:
    ; nested exception is: javax.ejb.TransactionRolledbackLocalException:
    EJB Exception: : java.lang.StackOverflowErrorHi. Yes, I believe this is a known-and-fixed bug. Contact BEA support
    for the latest driver package for the weblogic drivers. You need to get
    the whole package.
    Joe
    at java.lang.StringBuffer.length(StringBuffer.java:141)
    at java.lang.String.<init>(String.java:422)
    at java.lang.StringBuffer.toString(StringBuffer.java:1235)
    at weblogic.jdbc.base.BaseSQLScanner.setEndOfToken(Unknown Source)
    at
    weblogic.jdbc.base.BaseSQLScanner$BaseSQLScannerIDOrKeywordState.processChar(Unknown
    Source)
    at weblogic.jdbc.base.BaseSQLScanner.getNextToken(Unknown Source)
    at weblogic.jdbc.base.BaseSQLParser.matchWhiteSpaceOrComment(Unknown
    Source)
    at weblogic.jdbc.base.BaseSQLParser.matchWhiteSpaceOrComment(Unknown
    Source)
    at weblogic.jdbc.base.BaseSQLParser.matchSpecialCharTerminal(Unknown
    Source)
    at weblogic.jdbc.base.BaseSQLParser.matchCommaTerminal(Unknown Source)
    at weblogic.jdbc.base.BaseSQLParser.parseAlmostAnything(Unknown Source)
    [ repeat above lines 1013 times ]
    at
    weblogic.ejb20.internal.EJBRuntimeUtils.throwTransactionRolledbackLocal(EJBRuntimeUtils.java:248)
    at
    weblogic.ejb20.internal.BaseEJBLocalHome.handleSystemException(BaseEJBLocalHome.java:247)
    at
    weblogic.ejb20.internal.BaseEJBLocalObject.postInvoke(BaseEJBLocalObject.java:327)
    at
    org.ecmc.nib.model.jdbc.SelectFacade_nrlw90_ELOImpl.localQueryScheduledSteps(SelectFacade_nrlw90_ELOImpl.java:830)
    at
    org.ecmc.nib.model.AdminFacadeBean.lookupScheduledSteps(AdminFacadeBean.java:508)
    at
    org.ecmc.nib.model.AdminFacade_17g2j4_EOImpl.lookupScheduledSteps(AdminFacade_17g2j4_EOImpl.java:100)
    at
    org.ecmc.nib.model.AdminFacade_17g2j4_EOImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at
    weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

  • How can i use the weblogic jdbc driver for sqlserver?

    hello
    i have downloaded and installed the weblogic on my windows2000 server,then i want to use the weblogic jdbc driver for sqlserver2000 outside of the weblogic,as follow:
    1 add following string to my classpath environment of the wndows2000: E:\bea\wlserver6.1\lib\mssqlserver4v65.jar
    2 then i write a test program as:
    import weblogic.jdbc.mssqlserver4.Driver;
    import java.sql.*;
    public class test{
    public static void main(String argv[]){
    try{ Class.forName("weblogic.jdbc.mssqlserver4.Driver");
    Connection
    conn=DriverManager.getConnection"jdbc:weblogic:mssqlserver4:localhost:1433","sa",""); }catch(Exception e){ System.out.println(e.getMessage()); }
    4 when i execute it,it throw a exception:
    Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/version at weblogic.jdbc.mssqlserver4.TdsStatement.getLicenseStr(TdsStatement.java:2665) at weblogic.jdbc.mssqlserver4.TdsStatement.microsoftLogin(TdsStatement.java:2474) at weblogic.jdbc.mssqlserver4.MicrosoftConnection.beginLogin(MicrosoftConnection.java:42) at weblogic.jdbc.mssqlserver4.TdsConnection.login(TdsConnection.java:57) at weblogic.jdbc.mssqlserver4.MicrosoftConnection.login(MicrosoftConnection.java:53) at weblogic.jdbc.mssqlserver4.BaseConnection.prepareConnection(BaseConnection.java:187) at weblogic.jdbc.mssqlserver4.Driver.newConnection(Driver.java:34) at weblogic.jdbc.mssqlserver4.ConnectDriver.connect(ConnectDriver.java:151) at java.sql.DriverManager.getConnection(DriverManager.java:517) at java.sql.DriverManager.getConnection(DriverManager.java:177) at test.main(test.java:7)
    who can help me?thank you!

    Hi,
    Mail me the jar file as I am using Weblogic 6.1 to my email id [email protected]
    Else tell me the site from where u have downloaded and i will do the same.
    I will test the same and let you know.
    Thanks,
    Seetesh

  • OIM 9.1.0.2 - Weblogic JDBC Multi Data Sources for Oracle RAC

    Does OIM OIM 9.1.0.2 BP07 support Weblogic JDBC Multi Data Sources (Services>JDBC>Multi Data Sources) for Oracle RAC instead of inserting the "Oracle RAC JDBC URL" on JDBC Data Sources for xlDS and xlXADS (Services>JDBC>Data Sources> xlDS|xlXADS > Connection Poll> URL) ?
    If yes, is there are any other modifications that need to be made on OIM, or just changing the data sources?

    Yes, it's supported. You install against one instance directly of the Rac Server. Then you update the config.xml file and the jdbc resource in your weblogic server with the full rac address. It is documented for installation against RAC. http://docs.oracle.com/cd/E14049_01/doc.9101/e14047/database.htm#insertedID2
    -Kevin

  • NullPointerException from weblogic.i18ntools.l10ngen

    Using the environment for the example server (on winNT)...
    Go to \bea\wlserver6.1_beta\samples\examples\i18n\logging and run
    build. The build go boom with the following stack track...
    D:\bea\wlserver6.1_beta\samples\examples\i18n\logging>java weblogic.i18ntools.l1
    0ngen -verbose -d d:\bea\wlserver6.1_beta\config\examples\clientclasses ..\msgca
    t\I18nLog.xml ..\msgcat\I18nSimple.xml
    Parsing catalog, D:\bea\wlserver6.1_beta\samples\examples\i18n\msgcat\fr\I18nLog
    .xml
    java.lang.NullPointerException
    java.lang.NullPointerException
    at weblogic.common.internal.PeerInfo.<init>(PeerInfo.java:25)
    at weblogic.rjvm.LocalRJVM.<init>(LocalRJVM.java:130)
    at weblogic.rjvm.LocalRJVM.getLocalRJVM(LocalRJVM.java:99)
    at weblogic.i18ntools.L10nLookup$Logger.<init>(L10nLookup.java:282)
    at weblogic.i18ntools.L10nLookup.<init>(L10nLookup.java:114)
    at weblogic.i18ntools.L10nLookup.init(L10nLookup.java:70)
    at weblogic.i18ntools.L10nLookup.getL10n(L10nLookup.java:58)
    at weblogic.i18ntools.parser.LocaleLogMessage.validate(LocaleLogMessage.
    java:65)
    at weblogic.i18ntools.parser.LocaleMessageCatalog.validate(LocaleMessage
    Catalog.java:240)
    at weblogic.i18ntools.parser.LocaleCatalogParser.endDocument(LocaleCatal
    ogParser.java:175)
    at org.xml.sax.helpers.XMLReaderAdapter.endDocument(XMLReaderAdapter.java:286)
    at weblogic.apache.xerces.parsers.SAXParser.endDocument(SAXParser.java:1
    230)
    at weblogic.apache.xerces.validators.common.XMLValidator.callEndDocument
    (XMLValidator.java:1064)
    at weblogic.apache.xerces.framework.XMLDocumentScanner$EndOfInputDispatc
    her.dispatch(XMLDocumentScanner.java:1555)
    at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocu
    mentScanner.java:381)
    at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:967)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at weblogic.i18ntools.parser.LocaleCatalogParser.parse(LocaleCatalogPars
    er.java:126)
    at weblogic.i18ntools.l10ngen.parseIt(l10ngen.java:327)
    at weblogic.i18ntools.l10ngen.buildLangOutputs(l10ngen.java:302)
    at weblogic.i18ntools.l10ngen.generate(l10ngen.java:406)
    at weblogic.i18ntools.l10ngen.run(l10ngen.java:423)
    at weblogic.i18ntools.l10ngen.main(l10ngen.java:459)
    java.lang.NullPointerException
    weblogic.i18n.tools.GenException: Code gen exception: Parse failed for: D:\bea\w
    lserver6.1_beta\samples\examples\i18n\logging\..\msgcat\fr\I18nLog.xml

    Lauren,
    Actually, it does not appear as though the example itself is
    broken. The example looks the same as the one that worked fine under
    WLS 6.0. The example seems to expose a something that is broken (a
    regression?) in the codegen tool or in the API.
    Ben
    On 20 Jun 2001 11:31:02 -0800, Lauren Wright <[email protected]> wrote:
    >
    Ben,
    I forwarded your message to the appropriate group.
    Would you mind reposting to the examples newsgroup?
    Lauren
    [email protected] (Ben Eng) wrote:
    Using the environment for the example server (on winNT)...
    Go to \bea\wlserver6.1_beta\samples\examples\i18n\logging and run
    build. The build go boom with the following stack track...
    D:\bea\wlserver6.1_beta\samples\examples\i18n\logging>java weblogic.i18ntools.l1
    0ngen -verbose -d d:\bea\wlserver6.1_beta\config\examples\clientclasses
    ..\msgca
    t\I18nLog.xml ..\msgcat\I18nSimple.xml
    Parsing catalog, D:\bea\wlserver6.1_beta\samples\examples\i18n\msgcat\fr\I18nLog
    ..xml
    java.lang.NullPointerException
    java.lang.NullPointerException
    at weblogic.common.internal.PeerInfo.<init>(PeerInfo.java:25)
    at weblogic.rjvm.LocalRJVM.<init>(LocalRJVM.java:130)
    at weblogic.rjvm.LocalRJVM.getLocalRJVM(LocalRJVM.java:99)
    at weblogic.i18ntools.L10nLookup$Logger.<init>(L10nLookup.java:282)
    at weblogic.i18ntools.L10nLookup.<init>(L10nLookup.java:114)
    at weblogic.i18ntools.L10nLookup.init(L10nLookup.java:70)
    at weblogic.i18ntools.L10nLookup.getL10n(L10nLookup.java:58)
    at weblogic.i18ntools.parser.LocaleLogMessage.validate(LocaleLogMessage.
    java:65)
    at weblogic.i18ntools.parser.LocaleMessageCatalog.validate(LocaleMessage
    Catalog.java:240)
    at weblogic.i18ntools.parser.LocaleCatalogParser.endDocument(LocaleCatal
    ogParser.java:175)
    at org.xml.sax.helpers.XMLReaderAdapter.endDocument(XMLReaderAdapter.java:286)
    at weblogic.apache.xerces.parsers.SAXParser.endDocument(SAXParser.java:1
    230)
    at weblogic.apache.xerces.validators.common.XMLValidator.callEndDocument
    (XMLValidator.java:1064)
    at weblogic.apache.xerces.framework.XMLDocumentScanner$EndOfInputDispatc
    her.dispatch(XMLDocumentScanner.java:1555)
    at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocu
    mentScanner.java:381)
    at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:967)
    at org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
    at weblogic.i18ntools.parser.LocaleCatalogParser.parse(LocaleCatalogPars
    er.java:126)
    at weblogic.i18ntools.l10ngen.parseIt(l10ngen.java:327)
    at weblogic.i18ntools.l10ngen.buildLangOutputs(l10ngen.java:302)
    at weblogic.i18ntools.l10ngen.generate(l10ngen.java:406)
    at weblogic.i18ntools.l10ngen.run(l10ngen.java:423)
    at weblogic.i18ntools.l10ngen.main(l10ngen.java:459)
    java.lang.NullPointerException
    weblogic.i18n.tools.GenException: Code gen exception: Parse failed for:
    D:\bea\w
    lserver6.1_beta\samples\examples\i18n\logging\..\msgcat\fr\I18nLog.xml

  • Build Issue(package weblogic.jdbc.vendor.oracle does not exist) weblogic10

    Hi All,
    I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob?
    Error:
    package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.jdbc.vendor.oracle.OracleThinClob)
    I already got weblogic.jar file from weblogic 10.
    Thanks,
    Srinivas

    Srinivas U wrote:
    Hi All,
    I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob?
    Error:
    package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.jdbc.vendor.oracle.OracleThinClob)
    I already got weblogic.jar file from weblogic 10.
    Thanks,
    SrinivasIt's in the datasource module/jar: modules/com.bea.core.datasource_1.0.0.0.jar

  • Java.lang.NullPointerException at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:292)

              Hi,
              intermittently we are seeing this exception in the server log files on weblogic 6.1
              sp2, I was wondering what the cause is:
              java.lang.NullPointerException
                   at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:292)
                   at weblogic.servlet.internal.HttpServer.log(HttpServer.java:835)
                   at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1002)
                   at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2209)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              

    Did your C:\Lighthammer\Security\userdata\IlluminatorUsers.xml or other files in this directory get corrupted somehow?
    If you've rebooted the box or bounced the ServletExec-xMII service, do you see anything in the SYSTEM level messages that are forced during the initialization sequence in either the Lighthammer General log or the LHSecurity General log that would give any indications to the problem?
    Regards,
    Jeremy

Maybe you are looking for

  • Pictures do not load

    Dear all, Last summer, possibly after a reserve copy to another iphone or being turned off, the following happend. My pictures do not load anymore on my Iphone and my Mac (iphone) does not see them so it is unable to download them. I have no explanat

  • OBIEE administartion Login is failing for Non Admin Group User.

    Hi, I have created one user for testing and assigned given access to some groups other than Administrators. When i am trying to login in Administration tool getting error message as "Logon Failed". I am able to access the Presentation using the same

  • Cost element group wise budgeting

    Hi All ,     Can any one tell me how to do cost element group wise budgeting? Thanks in advance, Manisha

  • E-72 sync problem.

    After installing of 081.003 firmware version on my Nokia E-72 is not synced field "Car Phone" from E-72 body and Microsoft Outlook. The item  "Car Phone" is existing on both. I tried to use Nokia_Suite_3.3.86 & Nokia_PC_Suite_eng 7.1.180.46 - but uns

  • Wireless importing possible?

    My wife is looking for a point-and-shoot camera that will let her upload photos wirelessly into iPhoto. Does iPhoto support that? If so, is it done via Bluetooth or WiFi? Any recommendations?