[jboss-user] [Beginners Corner] - Re: Oracle XA datasoruce with jboss

2009-02-20 Thread dasariprasad
under you can create another element tree of xa-datasource View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211854#4211854 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211854 ___

[jboss-user] [EJB/JBoss] - Remote client lookup for EJB2.1 3

2009-02-19 Thread dasariprasad
what jars are required for a successfull look up from another system for ejbs of 2.1 3.0 ejb session beans as remote application client View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4211667#4211667 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Steless Session bean as Webservice

2008-10-01 Thread dasariprasad
Thank you , i downloaded saaj-impl.jar put it in jboss\client folder and i could sess my client running well View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4179820#4179820 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Steless Session bean as Webservice

2008-09-30 Thread dasariprasad
i had used wsconsume like this | wsconsume ---endpoint-address?\WSDL | | it has given new classfiles as mentioned in your program | | but if i run | i got | Exception in thread main java.lang.NoClassDefFoundError: com/sun/xml/messaging/saaj/soap/AttachmentPartImpl

[jboss-user] [EJB 3.0] - Re: Steless Session bean as Webservice

2008-09-29 Thread dasariprasad
I had downloaded JBoss-5.0.0 CR2-jdk6.zip only. but once again i am downloading and will check View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4179395#4179395 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4179395

[jboss-user] [EJB 3.0] - Steless Session bean as Webservice

2008-09-28 Thread dasariprasad
i wrote one Stateless bean like ( in mustang version and jboss5.0.0 CR2) SimpleWS.java (interface) | | @WebService | @SOAPBinding(style=Style.RPC) | public interface SimpleWS extends Remote | { | @WebMethod |public String greet(String person) | throws

[jboss-user] [EJB 3.0] - Re: deployment of ejb3 in jboss-5.0.0 CR2

2008-09-27 Thread dasariprasad
Thank you very much sir, i could able to correct and use it for demo classes View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4179215#4179215 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4179215

[jboss-user] [EJB 3.0] - Re: deployment of ejb3 in jboss-5.0.0 CR2

2008-09-27 Thread dasariprasad
thank you very much i could able to correct and show it in my class demo View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4179216#4179216 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4179216

[jboss-user] [EJB 3.0] - Re: deployment of ejb3 in jboss-5.0.0 CR2

2008-09-22 Thread dasariprasad
This is my persistence.xml file ?xml version=1.0 encoding=UTF-8? | | persistence xmlns=http://java.sun.com/xml/ns/persistence; | | persistence-unit name=mydb | | jta-data-sourcejava:/XAOracleDS/jta-data-source | | properties | | | property

[jboss-user] [EJB 3.0] - Re: deployment of ejb3 in jboss-5.0.0 CR2

2008-09-21 Thread dasariprasad
0 Sun Sep 21 14:40:30 IST 2008 META-INF/ 102 Sun Sep 21 14:40:28 IST 2008 META-INF/MANIFEST.MF 0 Sun Sep 21 14:40:30 IST 2008 ejb3cmps/ 3245 Sun Sep 21 14:40:30 IST 2008 ejb3cmps/Cmp3Client.class 2679 Sun Sep 21 14:40:30 IST 2008 ejb3cmps/Courier.class 399 Sun Sep 21 14:40:30 IST

[jboss-user] [EJB 3.0] - Re: deployment of ejb3 in jboss-5.0.0 CR2

2008-09-21 Thread dasariprasad
Dear Sir, I am only deploying jar file and not an ear. I had given first simple persistence.xml like ?xml version=1.0 encoding=UTF-8? persistence-unit name=mydb jta-data-sourcejava:/XAOracleDS/jta-data-source

[jboss-user] [EJB 3.0] - deployment of ejb3 in jboss-5.0.0 CR2

2008-09-20 Thread dasariprasad
i have simple newcmp.jar that has persistence.xml as ?xml version=1.0 encoding=UTF-8? persistence-unit name=mydb jta-data-sourcejava:/XAOracleDS/jta-data-source org.hibernate.dialect.Oracle9Dialect jar-file../newcmp3.jar/jar-file

[jboss-user] [EJB 3.0] - Re: EJB3 WebServices

2006-11-05 Thread dasariprasad
I had tested one webservice example in jboss4.0.5GA ejb3(version RC9, i suppose) the following are files SimpleWS.java package com.htc.htcws; import javax.ejb.Remote; @Remote public interface SimpleWS extends java.rmi.Remote { public String greet(String person) throws

[jboss-user] [J2EE Design Patterns] - EJB3.0-Relations one-to-many

2006-09-02 Thread dasariprasad
Dear colleague, I had developed one one to many relation(bi-directional) as a part of learning having two entity beans and one Stateful session facade for them. i could able to create entity beans and add a mny bean to the collection of one-side bean.but later when i search for