Log in to follow, share, and participate in this community.
Thread What's new in Jboss embedded beta3 SP4?
What's new in Jboss embedded beta3 SP4?Hi dear jboss embedded folks, Is there a place where I can find a release note of what has changed in the new beta3? Thanks, /Benoit
own jaas domain not workinghello, I'm trying to use a self defined jaas domain policy inside my ejb3 tests with embedded jboss. But i got only "invalid user":
[testng] javax.ejb.EJBAccessException: Invalid User
[testng] at org.jboss.ejb3....
Embedded JBoss and MBeansI've managed to get the Embedded JBoss deploy my EJBs successfully. Here are my configurations: Maven Surefire plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>mave...
Problem with Embedded Jboss and MySQLThere is my problem with Embedded Jboss and MSQL. I trying to solve him more over 2 weeks. I obviously can'™t find ri...
Embedded JBoss and MavenI see a lot of examples how to use Embedded JBoss, but all of them add classes manually one by one like the example at http://www.jboss.org/community/docs/DOC-9684. Does anyone use maven and have an example about how...
EJB 3.1 Embeddable PrototypeA lot of people are, understandably, complaining about the lack of any JBoss Embedded progress. I think the problem isn't so much as a lack of progress. Right now we have (and are still building) a box full of buildin...
Maven and the -all.jarsHi all, we are starting to run the embedded JBoss for our tests. Our project is a maven2 project, so we can use the artifact from the JBoss repository to add the dependencies from the embedded libraries. So far so g...
jaasHello, I'm following this example http://in.relation.to/1380.lace to unit test my ejb3 components. When I try to deploy my beans (that have security enabled) I get jaas not bound message. What is the configuration ne...
Thread Moved successfully from JBoss Embedded to OpenEJB Embedded
Moved successfully from JBoss Embedded to OpenEJB EmbeddedI was one of the first early adopter of JBoss Embedded and all JBoss 5.X stack. But now enough is enough. Nobody seems to care at JBoss about JB-Embedded users. I lead a big project using EJB 3 and I made Beta 2 ->...
Jboss Embed for Junit testinghey all, I'm trying to get jboss embed setup for unit testing. I'm running into this problem: java.lang.RuntimeException: Failed to bootstrap at org.jboss.embedded.junit.BaseTestCase.bootstrap(BaseTestCase.java:103)...
Thread Local JNDI not working with embedded JBoss in Tomcat 5.5.9
Local JNDI not working with embedded JBoss in Tomcat 5.5.9When I try to do a lookup on my data source as follows: Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
return (DataSource) envCtx.lookup(type.getName()); I ge...
Is Embedded JBoss dead?Hi all, I find the concept of a "small" JBoss AS for simple testing a great idea, but I wonder that the latest version of the Embedded JBoss is beta3 and JBoss-AS- .0.0 reached CR1. So I asked myself is the Embedded ...
Error while deploy real jar.Hi All, i want to load my own jar files (not virtual) to Embeded jBoss for JUnit testing i copied my jar to deploy dir and after i run Bootstrap.getInstance().bootstrap(); in stacktrace i see next errors: ERROR [org....
Where can I find last jboss embedded ?From JBoss web site, when I clik on the download page of JBoss EJB3, I go on that page http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=132063&release_id=346762 It only contains very old...
Thread Building embedded jboss from JBoss-5.0.0.CR-src failed
Building embedded jboss from JBoss-5.0.0.CR-src failedHello, after trying to build the JbossAS 5CR1 from source with some problems (http://www.jboss.com/index.html?module=bb&op=viewtopic&t=138371 after that the build of embedded jboss fails too with: Reference ...
Problems starting jboss embeddedHi, I'm trying to get embedded jboss up and running under java 1.5.0_15 to do some EJB unit testing. So far I've pretty much just coppied the bootstrap dir and referenced it in my classpath, along with my junit test...
Thread multiple seam apps on tomcat (w/ embeded jboss)
multiple seam apps on tomcat (w/ embeded jboss)I've been told (http://jira.jboss.com/jira/browse/JBSEAM-1663) that Embedded Jboss on tomcat can't run multiple Seam apps (the EJBs in seam.jar collide, apparently). It'd be nice if you could. I'm not particularly ne...
Has anybody a runing embedded jboss env ?Hello, since a few days i've tried to get a runing embedded jboss environment in eclipse ganymede, regardless what i'm doing without success. First and last, i tried it with the embedded beta3 package: i configured ...
Thread NPE when calling getCallerPrincipal on SessionContext
NPE when calling getCallerPrincipal on SessionContextI wrote the following interceptor : public class SecurityInterceptor
{
@javax.annotation.Resource
protected javax.ejb.SessionContext context;
@javax.interceptor.AroundInvoke
public Object execute(javax.intercep...
Interceptors don't workHi, I use Embedded JBoss beta 3 in a Maven project and run unit tests with TestNG. It took a long time but now the embedded container starts well and the tests are successful. But when I configure interceptors in ejb...