Version 4.2.x of the JBoss Application Server.
Questions tagged [jboss-4.2.x]
177 questions
0
votes
2 answers
PermGen Space almost overflow. Using jboss 4.2.2GA
I've got OutOfMemoryError: PermGen space, and i'm trying many times to change it under run.conf under jboss/bin/run.conf but still i can't see any changes after restart jboss
im using Jboss 4.2.2GA
OS: Linux centos
jvm: 1.5.2…

user763958
- 1
- 1
0
votes
1 answer
Lookup for EJB subclass by superclass EJB name
I have a parent and child EJB
@Stateless
@Local(MyCoreLocal.class)
@Remote(MyCore.class)
public class MyCoreEjb implements MyCoreLocal, MyCore {
...
}
@Stateless
@Local(MyCustomizationLocal.class)
@Remote(MyCustomization.class)
public class…

André Queiroz
- 123
- 4
0
votes
1 answer
Jboss 4.2.1.GA v/s Jboss EAP 7.0.0 Logger
We have migrated an application from Jboss 4.2.1.GA to Jboss EAP 7.0.0. There are many differences we see in clustering,rmi etc. We wanted to know what has changed specify from logging.
As it is a migrational application log4j logger was being used…

Ameya
- 1,914
- 4
- 29
- 55
0
votes
0 answers
Maximum number of Datasources allowed in JBoss 4.3 (No ManagedConnections available within configured blocking timeout)
In my project setup - Jboss v4.3, each datasource is configured in a different xyz-ds.xml file. We need to place around 6 thousand such DS files. But with this number of DS files, JBoss fails to start with below exception. Is there any configuration…

nshweta
- 499
- 2
- 7
- 19
0
votes
1 answer
How to rotate Jboss log file in every 3 hour?
As per my knowledge to split or rotate jboss log file, we can do that Hourly, Daily, Half-daily, weekly, monthly and Minutely basic.
I want to rotate log file in every 3 hours.Is it possible in jboss-4.2.3GA ?
If yes then how i can achieve this.
If…

ROHIT
- 185
- 1
- 3
- 17
0
votes
0 answers
Hibernate/JPA returns null when the underlying query has results
I'm using JPA's entitymanager.find(T, pk) to find a record. This is in an existing app where entitymanager.find() is used successfully, but this is the first instance of using a composite primary key. Here is the entity class:
@Entity
@Table(name…

Richard
- 9
- 2
0
votes
1 answer
Jboss 4.2.3 Application with huge number of anonymous Threads
We maintain a legacy (jboss 4.2.3 , ejb 3 ,jsp, jdk 1.6.45 64b ) application.
This application make heavy usage of database, and respond to
User Http request
Web service request
Some CORBA connections
Some external JSM call
Some MDB…

Greg Henry
- 61
- 6
0
votes
0 answers
Spring Integration: jms.Connection.setExceptionListener()
i have only one jms listner but multiple queues.this is the right way of implementing jms JBOSS4.2 MQ?
System.out.println("Lookup queue");
Queue queueForResponse = (Queue) context.lookup("/queue/ResponseProcessingQueue");
Queue queueForExcelDownload…
0
votes
1 answer
Error deploying war in JBoss4.2 "Packages waiting for a deployer"
I get this error straight away after a really long streak of Java exceptions.
I have check the Java JDK version on Maven to install, and for running on server (bin/run.bat), I have no problem running another war files generated in other…

another
- 3,440
- 4
- 27
- 34
0
votes
1 answer
Jboss-4.2.3 Seems to be ignoring jboss-web.xml
I've been struggling with this one for a few days now, hopefully someone can help.
I'm getting the following error when my application tries to build my Hibernate3 SessionFactory:
...
org.hibernate.HibernateException: Could not parse…

anTrodaire
- 93
- 9
0
votes
1 answer
migrating login-module configuration from JBoss 4.2 to Wildfly 9
We are migrating code from JBoss 4.2 GA to Wildfly 9.0.2 now. I got some trouble on migrating login-module properties files, and need help.
We have an application that uses the login-module, which has configuration like:

Helen
- 171
- 16
0
votes
1 answer
How remove registred,deployed bean
I use jboss 4.2.2.Ga, EJB , and I have following error:
-- MBeans waiting for other MBeans ---
ObjectName: jboss.j2ee:service=EJB3,module=Name.jar
State: FAILED
Reason: java.lang.IllegalStateException: Container…

Tato
- 195
- 4
- 17
0
votes
1 answer
Custom SSO ValveBase configuration in jBoss EAP 6.2 (migrating from 4.2)
I am migrating from jBoss EAP 4.2 to 6.2 and stuck at migration of SSO simulator valve implementation.
In jBoss EAP 4.2, I have config(in server.xml) like this to simulate/push SSO and other properties in request header for localhost only.
…

Jaydip Rakholiya
- 792
- 10
- 20
0
votes
1 answer
EJB 2.x transaction isolation on JBoss 4.x
We have a legacy application which is running on a JBoss 3.x instance and which can't be changed or rewritten in large. Since the following problem might occur in several locations I'll give a somewhat abstract example, so if you need more…

Thomas
- 87,414
- 12
- 119
- 157
0
votes
1 answer
Why I have HTTPS error from Jboss call and not from java main method call?
I'm very confused with this problem. I have HTTPS call. I use JDK 6.0.45. I can't update JDK because the project, that I'm working is very old. Imagine that I have such I code.
HttpGet get = new HttpGet(urlToRead);
DefaultHttpClient…

grep
- 5,465
- 12
- 60
- 112