[Beginner's Corner] - EJB 3 Outside the Container.
by R Saravana Prasad
R Saravana Prasad [https://community.jboss.org/people/rsprasad] created the document:
"EJB 3 Outside the Container."
To view the document, visit: https://community.jboss.org/docs/DOC-28898
--------------------------------------------------------------
*Getting started on ejb3s outside the container:*
The attached rar file has an application that uses ejb3 persistence outside the container
that can be run by from ant on command line.
Though the build script refers jars from jboss, jboss need not be running.
*Persistence Provider:*
Since a EJB 3.0 persistence layer is required, Hibernate is used as persistence provider.
Refer Persistence.xml file for configuration of Hibernate and build.xml for required JBoss and Hibernate lib files.
Uses annotations and no xml mapping files.
*Required SQL Script:*
1) Create a table om MS-SQL Server
CREATE TABLE Product (
productId INTEGER IDENTITY(1,1) NOT NULL PRIMARY KEY,
productName varchar(25),
productDescription varchar(25)
);
2) select * from product
*Ant sequence:*
1) ant jar
2) ant -Dargs0=productName -Dargs1=productDescription run
-> this ant task creates a record and also lists all records after the latest insert.
Fire up the Jboss and pull up the app.
Saravana Prasad R
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-28898]
Create a new document in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
12 years, 5 months
[JBoss Messaging] - Jboss Messaging Clustering in Jboss 4.2.3 using Oracle Datasource
by Nitesh Basnet
Nitesh Basnet [https://community.jboss.org/people/gibberishmock] created the discussion
"Jboss Messaging Clustering in Jboss 4.2.3 using Oracle Datasource"
To view the discussion, visit: https://community.jboss.org/message/758454#758454
--------------------------------------------------------------
Hello all i hope this is the correct forum to be disscussing this topic.
I am currently trying to use JBM with Jboss AS with Oracle as shared database for clustering. The version of the components are:
* JBM 1.4.5
* Jboss 4.2.3
* Oracle driver : ojdbc14-10.2.0.1.0
I followed the steps described in the JBM docs ( http://docs.jboss.org/jbossmessaging/docs/userguide-1.4.5.GA/html/install... http://docs.jboss.org/jbossmessaging/docs/userguide-1.4.5.GA/html/install...) and then tested the installation as described in the "Installation Validation" portion, all of the test succeeded. But the problem arises when i try to restart the server after sometime. The stactrace shows the following error:
2012-09-06 18:14:35,041 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.ejb:service=EJBTimerService,persistencePolicy=database dependent components: []
2012-09-06 18:14:35,041 DEBUG [org.jboss.system.ServiceController] starting service jboss.messaging:service=PersistenceManager
2012-09-06 18:14:35,041 DEBUG [org.jboss.messaging.core.jmx.JDBCPersistenceManagerService] Starting jboss.messaging:service=PersistenceManager
2012-09-06 18:14:35,079 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_DUAL (DUMMY INTEGER, PRIMARY KEY (DUMMY))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:468)........................
2012-09-06 18:14:35,085 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_MSG_REF (MESSAGE_ID INTEGER, CHANNEL_ID INTEGER, TRANSACTION_ID INTEGER, STATE CHAR(1), ORD INTEGER, PAGE_ORD INTEGER, DELIVERY_COUNT INTEGER, SCHED_DELIVERY INTEGER, PRIMARY KEY(MESSAGE_ID, CHANNEL_ID))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)...........................
2012-09-06 18:14:35,094 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE INDEX JBM_MSG_REF_TX ON JBM_MSG_REF (TRANSACTION_ID, STATE)
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)............................
2012-09-06 18:14:35,099 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_MSG (MESSAGE_ID INTEGER, RELIABLE CHAR(1), EXPIRATION INTEGER, TIMESTAMP INTEGER, PRIORITY INTEGER, TYPE INTEGER, HEADERS BLOB, PAYLOAD BLOB, PRIMARY KEY (MESSAGE_ID))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)..............................
2012-09-06 18:14:35,103 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_TX (NODE_ID INTEGER, TRANSACTION_ID INTEGER, BRANCH_QUAL RAW(254), FORMAT_ID INTEGER, GLOBAL_TXID RAW(254), PRIMARY KEY (TRANSACTION_ID))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)......................................
2012-09-06 18:14:35,107 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_COUNTER (NAME VARCHAR2(255), NEXT_ID INTEGER, PRIMARY KEY(NAME))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)..................................
2012-09-06 18:14:35,111 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_ID_CACHE (NODE_ID INTEGER, CNTR INTEGER, JBM_ID VARCHAR2(255), PRIMARY KEY(NODE_ID, CNTR))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257).................................
2012-09-06 18:14:35,145 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_USER (USER_ID VARCHAR2(32) NOT NULL, PASSWD VARCHAR2(32) NOT NULL, CLIENTID VARCHAR2(128), PRIMARY KEY(USER_ID))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137).................................
2012-09-06 18:14:35,150 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_ROLE (ROLE_ID VARCHAR2(32) NOT NULL, USER_ID VARCHAR2(32) NOT NULL, PRIMARY KEY(USER_ID, ROLE_ID))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257).............................
2012-09-06 18:14:35,157 DEBUG [org.jboss.jms.server.plugin.JDBCJMSUserManager] Failed to execute INSERT INTO JBM_ROLE (ROLE_ID, USER_ID) VALUES ('subscriber','john')
java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (JBOSSDB.SYS_C001169625) violated
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:185)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)......................................
2012-09-06 18:14:35,224 DEBUG [org.jboss.jms.server.plugin.JDBCJMSUserManager] Failed to execute INSERT INTO JBM_USER (USER_ID, PASSWD, CLIENTID) VALUES ('john', 'needle', 'DurableSubscriberExample')
java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (JBOSSDB.SYS_C001169622) violated
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:185)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:468)......................................
2012-09-06 18:14:35,243 DEBUG [org.jboss.jms.server.plugin.JDBCJMSUserManager] Failed to execute INSERT INTO JBM_USER (USER_ID, PASSWD) VALUES ('j2ee', 'j2ee')
java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (JBOSSDB.SYS_C001169622) violated
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:185)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:468)......................................
2012-09-06 18:14:35,247 DEBUG [org.jboss.jms.server.plugin.JDBCJMSUserManager] Failed to execute INSERT INTO JBM_USER (USER_ID, PASSWD) VALUES ('guest', 'guest')
java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (JBOSSDB.SYS_C001169622) violated
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:185)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257).......................
2012-09-06 18:14:35,616 DEBUG [org.jboss.messaging.core.impl.JDBCSupport] Failed to execute: CREATE TABLE JBM_POSTOFFICE (POSTOFFICE_NAME VARCHAR2(255), NODE_ID INTEGER, QUEUE_NAME VARCHAR2(255), COND VARCHAR2(1023), SELECTOR VARCHAR2(1023), CHANNEL_ID INTEGER, CLUSTERED CHAR(1), ALL_NODES CHAR(1), PRIMARY KEY(POSTOFFICE_NAME, NODE_ID, QUEUE_NAME))
java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:221)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:257).........................
Caused by: java.sql.SQLException: OALL8 is in an inconsistent state
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:120)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:137)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:250)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:330)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:355)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:598)
at oracle.jdbc.driver.T4C8Oall.marshal(T4C8Oall.java:495)
at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:202)
at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:1039)
at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:1146)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1472)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3889)
at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3959)
at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:4515)
at oracle.jdbc.OracleDatabaseMetaData.getTables(OracleDatabaseMetaData.java:5984)
at org.jboss.ejb.plugins.cmp.jdbc.SQLUtil.tableExists(SQLUtil.java:1075)
... 113 more
...............
2012-09-06 18:14:52,050 WARN [org.jboss.system.ServiceController] Problem starting service jboss:service=KeyGeneratorFactory,type=HiLo
org.jboss.deployment.DeploymentException: Error while checking if table aleady exists HILOSEQUENCES; - nested throwable: (java.sql.SQLException: OALL8 is in an inconsistent state)
at org.jboss.ejb.plugins.cmp.jdbc.SQLUtil.tableExists(SQLUtil.java:1082)
at org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory.createTableIfNotExists(HiLoKeyGeneratorFactory.java:366)
at org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory.initSequence(HiLoKeyGeneratorFactory.java:307)
at org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory.startService(HiLoKeyGeneratorFactory.java:281)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)......
I also searched in oracle forums for this and found( http://asanga-pradeep.blogspot.com/2008/06/oall8-is-in-inconsistent-state... http://asanga-pradeep.blogspot.com/2008/06/oall8-is-in-inconsistent-state...) this. And even after switching the ojdbc driver version from "*ojdbc14-10.2.0.1.0*" to "*ojdbc6_g-11.1.0.7.0*" is still get the same error. But if i run the jboss nodes after clearing the tables it works fine. Don't know what is the issues here so hope someone can help me with this problem.
Regards.
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/758454#758454]
Start a new discussion in JBoss Messaging at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 5 months
[jBPM] - Regarding newly created users
by Kiran Mushnuri
Kiran Mushnuri [https://community.jboss.org/people/kiran_mvv] created the discussion
"Regarding newly created users"
To view the discussion, visit: https://community.jboss.org/message/758691#758691
--------------------------------------------------------------
Hi,
I am very new to jBPM. I have installed jbpm5.2.0 in my system and able to run the sample workflow through users john and mary. and it worked well.
Now i have started setting up my own users. I have read that if we add/modify users in user.properties and roles.properties it should pick up the newly created users.
However i am unable to login with newly created users. It neither throws error nor proceeds further. I have cross-checked the logs in server.log. I don't see any error.
If we enter any wrong password it is throwing an error. However if the credentials are correct, i am unable to proceed. I am still in login page and am struck there.
Please help me to resolve this issue.
Thanks,
Kiran.
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/758691#758691]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 5 months
[Beginner's Corner] - Kindle Fire 2
by Kindle Fire
Kindle Fire [https://community.jboss.org/people/kindlefire] modified the document:
"Kindle Fire 2"
To view the document, visit: https://community.jboss.org/docs/DOC-28897
--------------------------------------------------------------
h1. *Kindle Fire*
Although the company did not disclose after internal specifications of the http://www.buykindlefirehd.org/ Kindle Fire HD device in terms of processor and RAM and internal memory, but it is expected to come " http://www.buykindlefirehd.org/ Kindle Fire 2 " equipped with a central processing unit characterized by high performance and capabilities better than the previous generation.
It is noteworthy that the first version of a "Amazon" Tablet has achieved great success in terms of sales immediately put markets in September last year, almost toppling device "Apple" Tablet because its low price, in addition to being more tablet-based operating system Google "Android" in the world's best-selling, although it lacks several features are all available in various other Tablet PC operating system Android, such as Bluetooth, and port-specific external memory card, camera and keys to adjust the volume. As well as it supports only "Wi-Fi" wireless only, while lacking to third-generation networks "3G".
In a related company plans to "Amazon" expansion in store your applications "Amazon August Store" and launched in a number of European countries such as the United Kingdom http://www.buykindlefirehd.co.uk/ Buy Kindle Fire HD uk, Germany, France, Italy and Spain later in the summer of this year, after it was confined only to the United States since the start of Store in March of 2011, to be made available in the rest of the world later. http://www.buykindlefirehd.org/ buy Kindle Fire HD
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-28897]
Create a new document in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
12 years, 5 months
[Beginner's Corner] - Kindle Fire 2
by Kindle Fire
Kindle Fire [https://community.jboss.org/people/kindlefire] created the document:
"Kindle Fire 2"
To view the document, visit: https://community.jboss.org/docs/DOC-28897
--------------------------------------------------------------
Although the company did not disclose after internal specifications of the http://www.buykindlefirehd.org/ Kindle Fire HD device in terms of processor and RAM and internal memory, but it is expected to come " http://www.buykindlefirehd.org/ Kindle Fire 2 " equipped with a central processing unit characterized by high performance and capabilities better than the previous generation.
It is noteworthy that the first version of a "Amazon" Tablet has achieved great success in terms of sales immediately put markets in September last year, almost toppling device "Apple" Tablet because its low price, in addition to being more tablet-based operating system Google "Android" in the world's best-selling, although it lacks several features are all available in various other Tablet PC operating system Android, such as Bluetooth, and port-specific external memory card, camera and keys to adjust the volume. As well as it supports only "Wi-Fi" wireless only, while lacking to third-generation networks "3G".
In a related company plans to "Amazon" expansion in store your applications "Amazon August Store" and launched in a number of European countries such as the United Kingdom http://www.buykindlefirehd.co.uk/ Buy Kindle Fire HD uk, Germany, France, Italy and Spain later in the summer of this year, after it was confined only to the United States since the start of Store in March of 2011, to be made available in the rest of the world later. http://www.buykindlefirehd.org/ Kindle Fire HD
--------------------------------------------------------------
Comment by going to Community
[https://community.jboss.org/docs/DOC-28897]
Create a new document in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=102&c...]
12 years, 5 months
[EJB3] - Exposing an EJB through multiple views
by Lars Åslin
Lars Åslin [https://community.jboss.org/people/aslin] created the discussion
"Exposing an EJB through multiple views"
To view the discussion, visit: https://community.jboss.org/message/758606#758606
--------------------------------------------------------------
Hi,
I'm trying to expose an EJB through both a local business interface and a JAX-RS interface, but are getting the following error:
ERROR [org.jboss.msc.service.fail] (MSC service thread 1-7) MSC00001: Failed to start service jboss.deployment.unit."finance.war".PARSE: org.jboss.msc.service.StartException in service jboss.deployment.unit."finance.war".PARSE: Failed to process phase PARSE of deployment "finance.war"
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:119) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) [rt.jar:1.6.0_24]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) [rt.jar:1.6.0_24]
at java.lang.Thread.run(Thread.java:679) [rt.jar:1.6.0_24]
Caused by: java.lang.IllegalArgumentException: JBAS011046: A component named 'FileServiceImpl' is already defined in this module
at org.jboss.as.ee.component.EEModuleDescription.addComponent(EEModuleDescription.java:137)
at org.jboss.as.ejb3.deployment.processors.EJBComponentDescriptionFactory.addComponent(EJBComponentDescriptionFactory.java:60)
at org.jboss.as.ejb3.deployment.processors.SessionBeanComponentDescriptionFactory.processSessionBeans(SessionBeanComponentDescriptionFactory.java:157)
at org.jboss.as.ejb3.deployment.processors.SessionBeanComponentDescriptionFactory.processAnnotations(SessionBeanComponentDescriptionFactory.java:86)
at org.jboss.as.ejb3.deployment.processors.AnnotatedEJBComponentDescriptionDeploymentUnitProcessor.processAnnotations(AnnotatedEJBComponentDescriptionDeploymentUnitProcessor.java:58)
at org.jboss.as.ejb3.deployment.processors.AbstractDeploymentUnitProcessor.deploy(AbstractDeploymentUnitProcessor.java:81)
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:113) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]
... 5 more
This i my code:
public interface FileService {
...
}
public interface FileServiceLocalBusiness extends FileService {
...
}
@Path("file")
@Consumes({ "application/json" })
@Produces({ "application/json" })
public interface FileServiceWs extends FileService {
...
}
@Stateless
@Local({FileServiceLocalBusiness.class, FileServiceWs.class})
public class FileServiceImpl implements FileServiceLocalBusiness, FileServiceWs {
...
}
I have been trying to follow this guide http://pic.dhe.ibm.com/infocenter/wasinfo/v8r0/index.jsp?topic=%2Fcom.ibm... but I must be misunderstanding something.
Any suggestions to point me in the right direction would be appreciated.
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/758606#758606]
Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 5 months