Java Mailing List Archive

http://www.junlu.com/

Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Subject: Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Subject: Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
Two phase commit transaction using WSAD5.0 and DB2

Two phase commit transaction using WSAD5.0 and DB2

2005-04-27       - By Anuj Kumar

 Back
Reply:     1     2     3     4     5     6     7     8  

?
hi Harish,
thanx for ur reply but
       javax.sql.DataSource db2Datasource = null;
does not work in this case since i need the instance of either DB2XADataSource
or XADataSource class to proceed with 2 phase commit transaction Api's and
DB2XADatasource class does not implement DataSource so we can't type cast too.
any other solution ???

Thanks and Regards,
Anuj

On Wed, 27 Apr 2005 Hrishikesh Barua wrote :
>Hello,
>   You should cast the object that you look up to a javax.sql.DataSource
object. Using any proprietary APIs means your app will not run on any other
appserver. In this case the object that you get back from the lookup is a WAS
datasource wrapper - which is correct.
>
>Declare
>           javax.sql.DataSource db2Datasource = null;
>
>Regards
>   Hrish
>   -- -- Original Message -- --
>   From: Anuj Kumar
>   To: J2EE-INTEREST@(protected)
>   Sent: Wednesday, April 27, 2005 11:46 AM
>   Subject: Two phase commit transaction using WSAD5.0 and DB2
>
>
>
>   Hi All,
>
>   I am trying to implement (prototype) 2 phase commit transaction protocol
using wsad5.1 and db2.i configured the DB2XADatasource provider in wsad and
when i try yo run my program i get
>   [4/27/05 11:27:13:296 GMT+05:30] 1accbc8a WebGroup      E SRVE0026E:
[Servlet Error]-[A]: java.lang.ClassCastException: com.ibm.ws.rsadapter.jdbc
.WSJdbcDataSource
>        at hello.A.getDataSource(A.java:196)
>
>   while looking up and casting the DB2XADatasource.
>
>   My method which is supposec to return DB2XADatasource is..
>
>   public static DB2XADataSource getDataSource(String jndiName) {
>
>             InitialContext ctx = null;
>             DB2XADataSource db2Datasource = null;
>             Connection conn = null;
>
>             try {
>                   ctx = new InitialContext();
>
>                   db2Datasource = (DB2XADataSource) ctx.lookup(jndiName);
>
>
>             } catch (NamingException ne) {
>                  ne.printStackTrace();
>             }
>
>             return db2Datasource ;
>        }
>
>   }
>
>   can anyone Help me out ???
>
>   Thanks a lotttt
>   Anuj
>
>
>
>
>    ==========================================================================
= To unsubscribe, send email to listserv@(protected) and include in the body of
the message "signoff J2EE-INTEREST". For general help, send email to listserv
@(protected) and include in the body of the message "help".
>
>===========================================================================
>To unsubscribe, send email to listserv@(protected) and include in the body
>of the message "signoff J2EE-INTEREST".  For general help, send email to
>listserv@(protected) and include in the body of the message "help".
>


===========================================================================
To unsubscribe, send email to listserv@(protected) and include in the body
of the message "signoff J2EE-INTEREST".  For general help, send email to
listserv@(protected) and include in the body of the message "help".

<P>
&nbsp; <BR>
hi Harish,<BR>
thanx for ur reply but <BR>
&nbsp; &nbsp; &nbsp; &nbsp; javax.sql.DataSource db2Datasource = null;<BR>
does not work in this case since i need the instance of either DB2XADataSource
or XADataSource class to proceed with 2 phase commit transaction Api's and
DB2XADatasource class does not implement DataSource so we can't type cast too.
<BR>
any other solution ???<BR>
<BR>
Thanks and Regards,<BR>
Anuj<BR>
<BR>
On Wed, 27 Apr 2005 Hrishikesh Barua wrote :<BR>
&gt;Hello,<BR>
&gt;&nbsp;  You should cast the object that you look up to a javax.sql
.DataSource object. Using any proprietary APIs means your app will not run on
any other appserver. In this case the object that you get back from the lookup
is a WAS datasource wrapper - which is correct.<BR>
&gt;<BR>
&gt;Declare<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  javax.sql.DataSource db2Datasource =
null;<BR>
&gt;<BR>
&gt;Regards<BR>
&gt;&nbsp;  Hrish<BR>
&gt;&nbsp;  -- -- Original Message -- --<BR>
&gt;&nbsp;  From: Anuj Kumar<BR>
&gt;&nbsp;  To: J2EE-INTEREST@(protected)<BR>
&gt;&nbsp;  Sent: Wednesday, April 27, 2005 11:46 AM<BR>
&gt;&nbsp;  Subject: Two phase commit transaction using WSAD5.0 and DB2<BR>
&gt;<BR>
&gt;<BR>
&gt;<BR>
&gt;&nbsp;  Hi All,<BR>
&gt;<BR>
&gt;&nbsp;  I am trying to implement (prototype) 2 phase commit transaction
protocol using wsad5.1 and db2.i configured the DB2XADatasource provider in
wsad and when i try yo run my program i get<BR>
&gt;&nbsp;  [4/27/05 11:27:13:296 GMT+05:30] 1accbc8a WebGroup&nbsp; &nbsp;
&nbsp; E SRVE0026E: [Servlet Error]-[A]: java.lang.ClassCastException: com.ibm
.ws.rsadapter.jdbc.WSJdbcDataSource<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; at hello.A.getDataSource(A.java:196)<BR>
&gt;<BR>
&gt;&nbsp;  while looking up and casting the DB2XADatasource.<BR>
&gt;<BR>
&gt;&nbsp;  My method which is supposec to return DB2XADatasource is..<BR>
&gt;<BR>
&gt;&nbsp;  public static DB2XADataSource getDataSource(String jndiName) {<BR>
&gt;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  InitialContext ctx = null;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  DB2XADataSource db2Datasource =
null;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Connection conn = null;<BR>
&gt;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  try {<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ctx = new
InitialContext();<BR>
&gt;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
db2Datasource = (DB2XADataSource) ctx.lookup(jndiName);<BR>
&gt;<BR>
&gt;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  } catch (NamingException ne) {
<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ne
.printStackTrace();<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }<BR>
&gt;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  return db2Datasource ;<BR>
&gt;&nbsp; &nbsp; &nbsp; &nbsp; }<BR>
&gt;<BR>
&gt;&nbsp;  }<BR>
&gt;<BR>
&gt;&nbsp;  can anyone Help me out ???<BR>
&gt;<BR>
&gt;&nbsp;  Thanks a lotttt<BR>
&gt;&nbsp;  Anuj<BR>
&gt;<BR>
&gt;<BR>
&gt;<BR>
&gt;<BR>
&gt;&nbsp; &nbsp; =============================================================
============== To unsubscribe, send email to listserv@(protected) and include
in the body of the message &quot;signoff J2EE-INTEREST&quot;. For general help,
send email to listserv@(protected) and include in the body of the message
&quot;help&quot;.<BR>
&gt;<BR>
&gt;===========================================================================
<BR>
&gt;To unsubscribe, send email to listserv@(protected) and include in the body
<BR>
&gt;of the message &quot;signoff J2EE-INTEREST&quot;.&nbsp; For general help,
send email to<BR>
&gt;listserv@(protected) and include in the body of the message &quot;help
&quot;.<BR>
&gt;<BR>

</P>
<br><br>
<A target="_blank" HREF="http://clients.rediff.com/signature/track_sig.asp">
<IMG SRC="http://ads.rediff.com/RealMedia/ads/adstream_nx.cgi/www.rediffmail.com
/inbox.htm@(protected)" BORDER=0 VSPACE=0 HSPACE=0></a>

===========================================================================
To unsubscribe, send email to listserv@(protected) and include in the body
of the message "signoff J2EE-INTEREST".  For general help, send email to
listserv@(protected) and include in the body of the message "help".
<p>

©2008 junlu.com - Jax Systems, LLC, U.S.A.