By Octavio Berlanga, on September 18th, 2011.
In this post I explain how to setup Java Authentication and Authorization Service (JAAS) using JBoss AS 6.1 and an Eclipse RCP client that will be making calls on an EJB 3 Session Bean.
Part 1 will cover JBoss configuration and Part 2 will cover the code required in the Eclipse RCP client.
. . . → Read More: Configuring JAAS in JBoss 6.1 and Eclipse RCP: Part 1
By Octavio Berlanga, on February 15th, 2011.
There may be situations in which it makes sense to access data from an EJB session bean using JDBC. Perhaps you are only reading values from a table and since you are not making any changes to the table, using an entity bean may seem like overkill. In this post I cover setting up a database connection pool in JBoss and accessing the database using JDBC from an EJB session bean.
. . . → Read More: Accessing a Database Connection Pool from a Session EJB in JBoss AS