1. JBoss: What does the warning EJBTHREE-1246 from the InterceptorRegistry mean? stackoverflow.comI am currently developing an EJB 3.0 based application on the JBoss AS 5.0.0.GA and just recently the following warning showed up in the server log: 09:50:19,735 WARN [InterceptorsFactory] EJBTHREE-1246: Do ... |
2. Calling a Remote Bean vs Local Bean in App Server stackoverflow.comIs there a noticeable amount of performance overhead in using Remote Bean Interface over using a Local Bean Interface? I would like to have every Client application connect to remote ... |
3. Can Java Code tell if it is in an App Server? stackoverflow.comIs there something I can call from a POJO to see if the code is currently in an App Server or outside of an App Server? Something like this (In rough PseudoCode):
or
or
... |
4. How to configure startup sequence of JBoss services (JmsActivation) stackoverflow.comWhen I deploy my application on JBoss 5 the EJBs are created before the QueueService is started. Creation of Message Driven beans now fails miserably because the queues are not yet ... |
5. Configuring an MDB in JBOSS stackoverflow.comHow maxMessages property affects the MDB? For example:
How would this value affect if maxSessions is 10?
|
6. JBoss/EJB - location of custom configuration file stackoverflow.comI'm implementing an EJB-based system in JBoss. One of my message driven beans will be responsible for sending emails. I want the email template to be stored externally (probably as XML) ... |
7. Oracle Broken Sequence stackoverflow.comI am using EJB3, JBoss AS 4.2.1 and Oracle 10g. The thing is every time i deploy to the AS the sequence is broken. Ex: when i am looking to the ... |
8. JAAS and JBOSS 5 problem with principal stackoverflow.comI am working with a piece of code implementing JAAS LoginModule and in the commit method I set the principal with user UUID:
But for some reason when I access ... |
9. scheduling tasks on JBoss with clustering stackoverflow.comI need to be able to run some scheduled tasks (reports) for an EJB application running on JBoss 4.2. In my initial implementation I am using a servlet in an ... |
10. JBoss ignores @RemoteBinding annotation stackoverflow.comI would like to specify JNDI name for an EJB3 bean using annotation, but JBoss 5.1.0 GA seems to ignore the annotation completely. Bean's annotations are:
|
11. JBoss transaction timeout setting? stackoverflow.comWe have a timer service triggered task in JBoss 5.1.0.GA application and the problem is that we cannot change the transaction time out. This long Lucene indexing can take longer than ... |
12. Calling business logic methods at JBoss Server Startup stackoverflow.comI have an EJB project communicating with a Swing client over RPC. I would like to know how to call EJB or utility class methods on the business logic at server ... |
13. Jboss Error-Cannot process metadata stackoverflow.comI'm trying to implement stateless session bean ejb3 in jboss5 using netbeans6.8 as a editor. When I tried deploying my application, I'm getting the following error. What is the issue with ... |
14. using jboss and getting following exception stackoverflow.comjavax.naming.CommunicationException [Root exception is java.lang.ClassNotFoundException: (no security manager: RMI class loader disabled)] |
15. Remote lookup of slsb failing from jar file, although very similar lookup from a jar file being called from same place works stackoverflow.comI have a a number of jar files that perform rmi. These are all working except one, the problematic one attempts to look up a remote slsb in a different ... |
16. JBoss6 AS EJB3StandaloneBootstrap & EJB3StandaloneDeployer stackoverflow.comcurrently i'am migrating a JBoss 4 project to JBoss 6. I do miss substitutes for the EJB3StandaloneDeployer and EJB3StandaloneBootstrap. Are there any new sources which deliver the functionality of this two classes? THX ... |
17. Error while accessing a ServicePOJO in JBOSS 5.0.1 stackoverflow.comI have a Webapplication with EJBs and ServicePOJOs. When i try to access one of those POJOS, i get the following error:
|
18. Resolution should not happen via injection container error stackoverflow.comI have an EJB3 project to be deployed on JBoss 5.1.0 GA. I have Stateless EJBs being injected into other Stateless beans and Servlets. I'm using the @EJB annotation without ... |
19. Long Polling with Java and JBoss stackoverflow.comI'm looking for an example, how to implement a longpoling mechanism in java. I would love to use a stateless EJB. I know that something like that would work:
|
20. Error while in deploying project into jBoss stackoverflow.comI am using EJB3.0 and jBoss 5.0.1 My project is successfully deployed but when I run Jboss server I got the following error DEPLOYMENTS MISSING DEPENDENCIES: Deployment "jboss.j2ee:ear=cccrmapp.ear,jar=cccrmapp.jar,name=CustomerFacade,service=EJB3" is missing the ... |
21. Specify Loader Repository in a JBoss @Service stackoverflow.comIf you use the @Service JBoss extension for EJB it deploys the EJB as an MBean and by default uses the global repository and shares all libs of the application. It's possible ... |
22. Architecture advice about managing UDP calls stackoverflow.comI would like to have an advice for this issue: I am using Jbos 5.1.0, EJB3.0 I have system, which sending requests via UDP'S to remote modems, and suppose to wait for an ... |
23. JBoss 5 - Deciphering Stack Trace stackoverflow.comIn my deployment on JBoss 5.1.0GA with JavaEE-5 I have beans of the general form
|
24. Increasing MDB'S instances stackoverflow.comI am using jboss 5.1.x I am trying to increase my mdb's instances. but no success. some code:
|
25. Destroying asnync proxy of SLSB by JBoss stackoverflow.comIn my application based on EJB3.0 and JBoss5 I use async proxy from JBoss AsyncUtils. Stateful bean ComputerBean dispatches work to stateless pooled ProcessorBean(s). I built counter into ProcessorBeans to print out ... |
26. Schedule a task stackoverflow.comIam using jboss5.1.x, EJB3.0 I need to schedule a task in my application. which way would you recommend me to do it according to version I am using below? I heard about SAR, but ... |
27. Service not registered on startup stackoverflow.comI am using JBoss5.1.x AS, EJB3.0. I am trying to add a job (using Quartz) to my deployment. I am registering a new Service, so it will init the scheduler on ... |
28. Dynamic time scheduling advice stackoverflow.comI am using Jboss5.1.x, EJB3.0, Quartz 1.8 I have System which is being activated at specific time(surrounding that time). The system should work once in a day. I am setting value in a database ... |
29. Embeddable Container in Jboss 6.0.0.Final stackoverflow.comI'm trying develop unit tests for EJB 3.1 session beans, and I can't find anything definitive as to whether or not this is supported/included.
|
30. J2EE 5 EAR structure for jboss 5.x stackoverflow.comI am looking for EAR file structure and sample ejb-jar.xml My current structure is as follow
|
31. How to include external jar in ejb-jar stackoverflow.comHow can I include external jar file in my ejb3 jar file? There is one external jar project with all helper classes and manifest.mf file. Now I have this jar in ... |
32. JBOSS deployement Error stackoverflow.comI am trying to put in the classpath of getting the following error
|
33. Jboss 6 Cluster Singleton Clustered stackoverflow.comI am trying to set up a Jboss 6 in a clustered environment, and use it to host clustered stateful singleton EJBs. So far we succesfully installed a Singleton EJB within the ... |
34. Does the JBoss embeddable/modular server still exists? stackoverflow.comWhile following along some examples about EJB 3.0 given in the book "Java Persistence with Hibernate" from 2007 I was told to Go to http://jboss.com/products/ejb3, download the modular embeddable server But all ... |
35. JBoss ignoring context path in application.xml when using @WebService and @Stateless in war file stackoverflow.comI have an ear file that consists of a war file together with a number of jar files. The application.xml with the following contents:
|
36. JBoss RuntimeException: Could not resolve beanClass method for proxy call stackoverflow.comI'm working with EJB 3.0 and when I call the method to be executed, I get the error below:
|
37. Error during undeploy - while closing EJBContainer with "JBoss 6.0 Final" release stackoverflow.comI am trying to test my EJBs from JUnit framework as part of ant build. I am using "JBoss EJB 3.1 Embeddable". I have followed all the instructions specified in |
38. How to set up a kind of multi-tenant application with JBoss 5.1 EAP and separate databases for each tenant? stackoverflow.comwhat do you think would be the best way to set up a kind of multi-tenant application with JBoss 5.1 EAP and separate databases for each tenant? Our scenario is as ... |
39. MANIFEST file processing in JBoss 6 stackoverflow.comI have an .ear file that contains:
|
40. @MessageDriven doesn't work in JBoss AS 5 stackoverflow.comThe code as given below throws a
|
41. JBoss POJO Object pooling stackoverflow.comI am using a POJO (Non-EJB) class inside my JBoss server and creating multiple instances of it. Will JBoss create an object pool and manage this resource or will it simple ... |
42. When does the disposer execute? stackoverflow.comI have a pojo producer which produces MyResourceManager. @TraderResouceManager @RequestScoped public MyResourceManager(){ ... ... }MyResourceManger is injected into SLSB @inject @TraderDB private MyResourceManager rm;The disposer is a follows ... |
43. NoClassDefFoundError on JBoss5 stackoverflow.comRecently have been experiencing a strange problem on our JBoss5. After running our app for a while, the clients who call the EJB's start Throwing NoClassDefFoundError on some classes. After a ... |
44. Java EE, JBoss: @Asynchronous does not allow method overloading stackoverflow.comDoes anybody has an idea why method overloading in combination with the
|
45. Working MDB example in JBoss 7.0.1? stackoverflow.comHere's an EJB3 MDB that used to work for me in JBoss 5.1:
|
46. Remote binding with JBoss AS 7 stackoverflow.comI am trying to create a SessionBean with IIOP invocation possibility (EJB over IIOP). But it seems not to work with JBoss AS 6. |
47. Jboss 6 Deployment, missing dependancy issue stackoverflow.comI'm in the process of learning EJB and am trying to deploy an example onto JBoss 6 for 5 days without much luck. The Maven build can downloaded here |
48. JBoss 6 Unable to create activation spec stackoverflow.comAs part of a learning process, I am deploying this example project http://db.tt/d5AbCNYH on JBoss 6 Final and getting the following error
|