Log in to follow, share, and participate in this community.
Thread Pluggable @EJB Resolvers
Pluggable @EJB ResolversThis is something I've had in mind for a couple weeks now. We presently do our resolving based on mappedName, interface type, etc in the AS server module's MappedReferenceMetaDataResolverDeployer. For Integration/In...
Testing under a Security ManagerAnil has located a few failures while running under a Security Manager: https://jira.jboss.org/jira/browse/EJBTHREE-1586 https://jira.jboss.org/jira/browse/EJBTHREE-1587 Which begs the question - what is testing EJB...
default-activation-config?What's the purpose of this? The schema defines it as a different type, but the new metadata classes just use the spec type. This fails, the child is a plain activation-config-property.
Caused by: org.jboss.xb.bind...
ejb3 user transaction and serlvetsWhy are servlets using the ejb3 user transaction?
2008-12-01 14:31:44,494 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/jpa-test].[TestServlet]] (http-localhost%2F127.0.0.1-8080-2) Servlet....
CachedConnectionManager usageWith the fix for lazy transaction enlistment ejb3-core defines a CCM SPI that needs to be provided by the appropriate environment. Embedded already has an implementation, the implementation for AS 5 is attached to JBA...
Recent EJB3 TestSuite RegressionsProblems today: http://jboss.hudson.alrubinger.com/job/EJB3_Plugin_AS_TRUNK/219/testReport/ I can resolve the "circulardependency" test by reverting some of the schema stuff done: svn merge -r 81581:81579 https://...
EJB3 Integration TestSuite Regressions InventoryI should have started this Wiki a long time ago: https://www.jboss.org/community/docs/DOC-13160 This is intended to be a "live" document ie. updated often. S, ALR
Failing 'factory' testsThis one is for Carlo. Server error is: Caused by: java.lang.IllegalArgumentException: Can't find a deployment unit named session2.jar at AbstractVFSDeploymentContext@206176{vfszip:/home/alrubinger/business/jboss/w...
Thread UserTransactedStartedListener is not implemented in EJB3
UserTransactedStartedListener is not implemented in EJB3This relates to JBCTS-599 but I can explain it without reference to that. There is a little known feature in JavaEE called lazy transaction enlistment. It basically works with the UserTransaction where you retrieve a...
Thread Creating (JMS) Destinations automatically for MDBs
Creating (JMS) Destinations automatically for MDBsWRT: https://jira.jboss.org/jira/browse/JBMETA-110 and https://jira.jboss.org/jira/browse/JBAS-6013 I guess we need some jboss specific annotation to match this metadata if it doesn't already exist? Can somebody on t...
University of Neuchâtel JBoss STMHI there, My name is Lucas Charles and I am a PhD student at Neuchâtel University, Switzerland. We are interested in developing a new type of bean, (not necessarily J2ee conform) like the Singleton Bean whi...
Reintroducing Asynchronous SupportIn writing EJB3 Proxy, and to prioritize compliance w/ TCK, we've dropped support for asynchronous invocations. I'm now putting it back. The previous implementation worked like: * Get a traditional Proxy from JNDI *...
Thread EJBContextImpl does not refresh the callerPrincipal
EJBContextImpl does not refresh the callerPrincipalCurrent implementation of org.jboss.ejb3.EJBContextImpl caches the caller principal and never refreshes it again. As a result, getCallerPrincipal() keeps returning the same principal even if the client logs out and th...
EJB3 / AS IntegrationEarlier this week I started a 2-class project, EJB3 Deployers. The idea is to provide a home for deployers which may be shared by any assembly that uses EJB3. AS, EJB3 Embeddable, AS Embedded, EJB3 Standalone...howev...
Tests for EJBTHREE-1549Tonight I've made some commits to these tests to: * Fix compilation in JDK5 * A Remove concurrency problem which lead to BrokenBarrierException * Add a test that Removal is not blocked by Passivation for a given Sess...
Bringing in ejb3-cacheRecent work in SimpleStatefulCache has uncovered a few issues: * https://jira.jboss.org/jira/browse/EJBTHREE-1551 * https://jira.jboss.org/jira/browse/EJBTHREE-1549 (Resolved) My tests for 1549 are imperfect as they...
Logging JNDI names of beans at INFO levelCurrently, when a EJB3 bean is deployed, the Default local/remote business interface JNDI names are logged at DEBUG level and by default don't appear on the CONSOLE. This is what i see on the console:
INFO [JBossAS...
Some Issues for CommunityI've the following issues which should be good candidates for community input, so sign up here. :) All deal with the EJB3 Proxy Component, located: http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/proxy/ ...
Thread Kill Default Remote Binding if 1+ @RemoteBinding is specifie
Kill Default Remote Binding if 1+ @RemoteBinding is specifieThe current implementation treats @RemoteBinding as an additional binding to the defaults. This makes for a situation that may present collisions. Given: @Stateless(name="MyBean")
@Remote(MyRemote.class)
@RemoteBin...
Thread Default JNDI naming scheme in EJB3.0 and possible conflicts
Default JNDI naming scheme in EJB3.0 and possible conflictsThe current default jndi binding scheme http://www.jboss.org/community/docs/DOC-9569 doesn't take into account the module name of the EJB. For example, if i have an ear named MyApp.ear containing 2 jar files First.jar...