Tagged Questions
0
votes
1answer
39 views
@Id is not set automatically on insert in entity bean
I have a rather simple EJB application which consists of
One Entity Bean:
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
...
0
votes
0answers
19 views
How to permanently disable in JBoss 7/EAP6?
Current application what to use its own log4j dependency, but this become a challenge to deploy on JBoss EAP6/AS7 as it always roll back the deployment due to logging issue.
So I follow some ...
0
votes
0answers
40 views
Log4J not really excluded in JBoss EAP6/AS7
In jboss-deployment-structure.xml from application war file, I have exclude log4j modules or so
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure ...
0
votes
0answers
15 views
what kind of exception can let ejb auto fail over
I'm using jboss stateless ejb 2.x. ejb deployed in jboss clustering, for some reason, one node in cluster can't hand ejb invocation, I'd want throw an exception let client can fail over to other ...
0
votes
1answer
28 views
ThreadLocal cannot be set after redeploying the EJB on JBOSS
I am using JBOSS7. I store some information about the SOAP request in a ThreadLocal variable in order to adding it to the log4j header.
My ThreadLocal class:
class MyStorage
private static final ...
0
votes
1answer
27 views
JBOSS doesn't find datasource
I'm developing a webapp with EJB3, Hibernate, JSF and JBOSS, but I'm not able to start JBOSS, as it keeps on throwing this error:
16:03:55,888 INFO [org.jboss.modules] JBoss Modules version 1.1.1.GA
...
1
vote
0answers
35 views
Tomcat External Executable Call
I am using an application that runs on Tomcat 5 environment. This application needs to call an external application (Delphi Executable). I am using the following command line to make the call:
...
0
votes
1answer
111 views
calling EJB from remote standalone client
i have a problem with connecting standalone desktop client with ejb on Jboss AS. So the question is how to remote call for EJB class from standalone client propably in java SE with swing windows ? and ...
5
votes
3answers
166 views
Injecting an EJB into a dynamic mapped servlet
I have a filter where I am dinamically mapping servlet classes:
@Override
public void init( FilterConfig filterConfig ) throws ServletException {
servletContext = ...
0
votes
1answer
50 views
ClassNotFoundException: org.jboss.annotation.ejb.RemoteBindings in JBoss 5.1
I'm deploying an application with some EJBs on JBoss 5.1 (default configuration). I don't use class org.jboss.annotation.ejb.RemoteBindings anywhere in my code, also any dependency don't use it. I ...
0
votes
1answer
136 views
Migrating from jboss 5 to 7
I've been tasked with trying to migrate some existing apps from jboss5 to jboss7.
I don't know much about EJBs or Hibernate so this is an interesting challenge for me.
Currently this is where i'm ...
0
votes
0answers
86 views
Spring MVC with EJB 3.1 and JPA 2
I have a project that only uses Java EE 6 for services and persistance. I´m now going to add a web project ontop of this that will show the gui and only communicate with EJB service layer. Are there ...
0
votes
0answers
52 views
How to check clientID property value of @ActivationConfigProperty
I have a MDB which is deployed in a clustered environment {JBoss as AS, HornetQ as MOM}. Below is the code :
@MessageDriven(mappedName = "java:jboss/queue/ClusterEventTopic", activationConfig = {
...
0
votes
1answer
226 views
EJB - Could not parse configuration: hibernate.cfg.xml
This is my first question here, also I'm quite new in hibernate so please forgive me if my question shouldn't be posted here.
I know, forums are full with my question and there are different answer ...
0
votes
1answer
264 views
JBoss Deployement Issue - Cannot deploy this Jar
I am trying to deploy an application in jBoss and I'm getting this issue. I am trying to deploy a jar and I'm getting the issue.
Attached complete log:
...
0
votes
2answers
126 views
ServletContextListener scheduler carry out a task - then stalls on EJB method call to persist into a database in JBOSS 7.1
I have a ServletContextListener that runs a tasks every 20 seconds - That task is to listen on a folder and check for new files and if found import the new file into a database. This is set up using ...
2
votes
1answer
189 views
Inject BeanClass to ServletContextListener thats running continously in JBOSS 7.1
I have a ServletContextListener that is running on start up of my JBOSS 7.1 server. This essentially listens on a folder and waits for new files and waits for new excel files at present and renames ...
0
votes
1answer
84 views
JNDI: EJB not found
I deployed a session bean called SessionServiceBean on my Jboss As 7.1 server. At deployment I get the following output in the console listening the correct JNDI identifiers for that bean:
JNDI ...
0
votes
0answers
138 views
External @EJB injection return null with RESTeasy and JBoss
I'm developing a RESTful Web Service on JBoss 6 Final with RESTeasy.
I have an external EJB and I want inject EJB on Web Service.
This is the code of EJB
BeanLocalInterface.java
@Local
public ...
1
vote
1answer
351 views
EJB + JSF (Primefaces) Maven -> Using primefaces jar in EJB -> exception during deploying on Jboss, Eclipse
I need to create querybuilder. I would like to create it on ejb site. To do that I need to use org.primefaces.model.SortOrder. I add dependency to primefaces in ejb POM. After that I've got ...
0
votes
0answers
74 views
Error while connecting EJB with database
Getting Error when JPA entities is added in EJB project and executed using JBOSS AS 7.1 on Eclipse juno.
I am getting error code 404.
Console file is as follows
10:54:40,085 ERROR ...
0
votes
2answers
58 views
stateful bean behaving like a stateless bean
I'm new to EJB and try to write a implementation for EJB stateful bean but when I try to do the transaction its returning like a stateless bean
package beanpackage;
import javax.ejb.Stateful;
...
0
votes
1answer
90 views
Cannot get selectManyCheckbox rendered in JSF application
My problem is that I cannot render the h:selectManyCheckbox component in a simple Jsf application. Although h:selectBooleanCheckbox and h:commandButton appear normally on the output, the ...
0
votes
0answers
71 views
Unable to inject jndi dependency in Jboss-eap-5.1
I followed this tutorial. All things are created correctly as mentioned in tutorial. But when I trying to run (localhost:8080/Example-war/test) it gives me following error:
Unable to inject jndi ...
1
vote
1answer
70 views
Can't find my bean in JBoss esb server
I have jbossesb-server-4.11 and eclipse-jee-juno.
I want to create some simple EJB application, deploy it on server and call some method from client. Everything seems to be clear.
I have found a ...
0
votes
2answers
235 views
JBoss server exception while connecting to mysql
I have recently tried JPA program with jboss and eclipse. For connecting to MySQL i have put in the required mySQL-connector JAR in the JBoss installation directory path and I have added the ...
1
vote
0answers
43 views
Application deployment folder on JBoss
Is there any configuration to hot deploy war file AND extract it into a project folder besides the .deployed file so we can modify web.xml, persistence.xml, just like Tomcat and websphere?
Thank you
1
vote
2answers
185 views
Top performance problems in Jboss AS 7 [closed]
I've taken part in a project where we have recently changed the application server to Jboss AS 7 (EAP 6). The system is a Jboss installation running in Domain Mode with one server (Server A) ...
0
votes
1answer
130 views
WSO2 ESB & ESB Mediator
I want to use ESB Mediator of WSO2 ESB 4.5.1, I want to invoke EJBs 3.0, they are deployed in Jboss AS 7.1.1.
Is there any tutorial or sample for ESB Mediator???
Thanks in advance.
I have a new ...
1
vote
1answer
118 views
JBoss AS 7.1.1 Final - Accessing EJBs deployed in JBoss AS 6
I need to access EJBs deployed in JBoss AS 6, but I am using JBoss AS 7.1.1 Final, which dropped the JNP lookup.
Is it possible to do so, or do I need to downgrade to JBoss AS 6 (upgrading the other ...
0
votes
1answer
83 views
Cross development aspects between different Java EE implementations (especially Glassfish and JBoss)
I am working on an AddOn Web Application for an existing Enterprise Application deployed on a JBoss 4 AS instance. To keep it easy I am using the Glassfish Application Server delivered in Netbeans. ...
0
votes
1answer
59 views
How to invoke an EJB3 in jboss as 4.2 and jboss as 6.1
we have two ejb3 applications, one in jboss 4.2, the other in jboss 6.1.
and i want to make a client in tomcat that invoke methods from that applications.
it is possible to do that? and what jars i ...
1
vote
1answer
118 views
Is @PreDestroy called after an exception in @PostConstruct in JavaEE 6?
Currently, we have an issue with a more complex initialization in a @PostConstruct method on JavaEE 6. There are several places where something could go wrong and where an exception is to be expected. ...
1
vote
1answer
34 views
CMT transactions
One more question from my side ...
If I have a stateless service (Stateless Session Bean) as facade (say GlobalService) which methods invokes several other services (again SLSBs, say FooService and ...
1
vote
1answer
297 views
can you explain step by step how to use log4j in ejb module in Jboss7.1?
can you give me please a step by step procedure to follow, in order to make log4j work on an ejb module?
the situation is this: i have my ejbmodule, which is using hibernate to perform some fetching ...
0
votes
1answer
449 views
Error invoking timeout for timer - could not obtain lock within 5MINUTES at EJB 3 timerservice
I have an application running on jboss 6.1 that defines a lot of dinamyc timers at the startup (e.g doSomething every minute) based on informations already persisted on the database. The timers are ...
0
votes
0answers
166 views
Debug application in Jboss 5.1 using local debugging mode in Eclipse
I am trying to setup my eclipse project to be able to debug an EJB application that is deployable in Jboss 5.1. To configure the debugging options i used the options described here:
JBoss debugging ...
0
votes
1answer
223 views
JPA parent/child MySQL insert data
Problem is inserting data to database. Using JPA, JBoss, MySQL.
What i'm doing wrong? This is one-to-many. I wanna insert some 'user' to User table, and give him some role. I made two tables in MySQL ...
0
votes
0answers
521 views
javax.naming.CommunicationException:
I have created a helloworld app in EJB 3.0 with Jboss 6 as given in in below link
http://theopentutorials.com/examples/java-ee/ejb3/how-to-create-a-simple-ejb3-project-in-eclipse-jboss-6-1/
Now I am ...
0
votes
0answers
73 views
How to reload read-only entity beans on JBoss 4.2.3 in EJB 2.x programmatically?
I need to reload read-only entity beans when the data in database it represent changes.
Invalidating the read-only beans periodically isn't a solution for me.
Is there a programmatic way to reload it ...
0
votes
1answer
56 views
Introduce compression to remote calls
I have a client which calls several ejb2/ejb3 beans. Some calls send lots of data and thus compression would be very helpful.
How can I enable/implement compression of remote method calls? I use ...
1
vote
1answer
436 views
Injecting @EJB into a Spring Bean in JBoss
We have a Spring managed bean with an @EJB field
import org.springframework.security.web.authentication.logout.LogoutHandler;
public class MyLogoutHandler extends LogoutHandler {
...
5
votes
3answers
756 views
Jboss Java EE container and an ExecutorService
I have a standalone java app which used the ExecutorService to process a number of jobs in parallel
ExecutorService es = Executors.newFixedThreadPool(10);
I now want to re-use the same solution ...
0
votes
1answer
153 views
EJB not deployed on JBoss AS 5.0.x
Im was trying to build an example from book Im reading about JBoss 5 (JBoss AS 5 Developmet), however even the code directly from the book simply does not work.
This is my interface:
@Remote
public ...
0
votes
1answer
123 views
java.lang.NoSuchMethodException: org.jboss.ejb.StatelessSessionContainer.initHome()
I use JBoss 5.0.1.
I try to deploy some EJB 3.0 beans.
This is my log during JBoss start:
23:19:15,955 ERROR [AbstractKernelController] Error installing to Create: ...
0
votes
1answer
314 views
Maven vanilla project for EJB2 and EJB3
I have a requirement where i have two develop two projects, one with EJB2.1 and one with EJB3.x.
The EJB2.1 will be an extension to an existing project hence the reason it is v2.1 and cannot be ...
0
votes
1answer
101 views
Plug Bean to JBoss with JNDI
I wonder how object (if it matter I need EJB) can be plugged to JBoss (5.0) with JNDI?
I have following bean definition in my Spring applicationContext.xml:
<bean id="transactionManager" ...
0
votes
1answer
157 views
Can´t access JBOSS
I´m using Fedora 17 and installed JBOSS via yum.
I configured in the standalone.xml the bind addresses of public and management to 0.0.0.0
But I still can´t access via :8080, my browser says, that he ...
1
vote
0answers
158 views
TimerService EJB does not get canceled if used with EJB Interceptor
Hi every one i am having an issue with timer service, on timeout it perform some business logic if there is any exception in business logic. which is catched in one of interceptor as well as in timer ...
0
votes
0answers
142 views
Running client class from application client container JBoss 7
How can I run the client class from application client container in JBoss 7?
I know the question is similar to How to jun a jar file in Application Client Container in Jboss 7? but I was not able to ...

