Tagged Questions

The JBoss tag is for questions relating specifically to the 5.x releases of JBoss Application Server.

learn more… | top users | synonyms

27
votes
7answers
2k views

Why is Jboss “better” than Tomcat?

I'm currently starting a new app development. The app architect insists we use JBoss5 because its "better". Do anyone has a wider definition of "better" (if its the case)? I have experience using ...
18
votes
6answers
20k views

setProperty must be overridden by all subclasses of SOAPMessage

I'm trying to deploy some web services in a WAR application on JBoss 5.1.0. I have created the source files from an existing wsdl using JAX-WS tool wsgen. This created the Service files and @XmlType ...
13
votes
9answers
11k views

Improving JBoss 5 slow startup

We upgraded from JBoss 4 (and JDK 5) to JBoss 5 (and JDK 6). The problem is that the start time has gone from 1.5 minutes (on JBoss 4) to more than 4 minutes. 18:53:35,444 INFO [ServerImpl] JBoss ...
8
votes
5answers
469 views

Best way to modify log4j appended for logging

I'm currently developing soon to be big(functional wise) rest web service and I want to capture logs really good, so I can have a good insight of what is going on where. For now I use log4j for ...
6
votes
3answers
7k views

Hibernate 3.5-Final in JBoss 5.1.0.GA

Hibernate 3.5-Final is finally here and it offers the much anticipated JPA2 support, amongst other features. I am working on a project(EJB3 based) using JBoss 5.1.0.GA and Hibernate 3.3, but I wanted ...
4
votes
1answer
2k views

Transaction is alternating Timeouts

I am using jboss 5.1.x, EJB3.0 I have MDB which listens to JMS queue. when the MDB taking a message, it dispatch a msg via TCP to some modem. sometimes that Modem doesnt response when the server is ...
4
votes
4answers
2k views

Huge amount of JAR files in jboss/server/web/tmp/vfs-nested.tmp directory

Sometimes we have huge amount of JAR files in jboss/server/web/tmp/vfs-nested.tmp directory. For example today this directory contained over 350k jar files. But on other hosts there are only 2 jar ...
4
votes
3answers
12k views

can't get DB Connection using JNDI datasource on JBoss

I'm studying how to build java webapps for JBossAS 5.1.0 and I'm trying to build a very basic jsp web app on JBossAS5 using a JNDI datasource for data access. When trying to open a connection I get ...
3
votes
1answer
447 views

Class loading isolation issue (or How to use JPA2 on JBoss 5.x ?)

I would like JBoss to use only the dependencies located in my war file. Each time I deploy this war file, JBoss still uses its own jars. Here is the jboss-web.xml I use : <?xml version="1.0" ...
3
votes
3answers
212 views

JBoss error report: HTTP Status 404 - Servlet is not available

I'm trying to create a very basic web project called "web" using MyEclipse and JBoss 5 as an application server. I've created one package called "pages" and inside it one servlet called ...
3
votes
1answer
562 views

Where do you configure log4j settings in jboss6

jboss-6.0.0.Final doesn't seem to have jboss-log4j.xml which was used to configure log4j settings in jboss5 (i.e. under server/default/conf/jboss-log4j.xml)
3
votes
0answers
281 views

Standalone HornetQ and JBoss don't work together

Using JBoss 5.1.0GA and HornetQ 2.1.2 stand-alone.The problem is this : While I can publish messages using a JMS client to the hornetQ server I can not publish messages using myApp that is deployed in ...
3
votes
4answers
2k views

Deployment problem on JBOSS server 5.0.1.GA

When I am deploying the same application on Tomcat 6.0 and Glassfish 3.0 it is working fine but on JBOSS server I am getting the below error. Please give specific solution.How can i programatically ...
3
votes
2answers
291 views

Why does the classpath default to the WEB-INF/classes/ instead of WEB-INF/ in JBoss 5.1?

I have a piece of code that get's the spring context using context = new ClassPathXmlApplicationContext("application-context.xml"); The file is located inside the WAR's ...
3
votes
1answer
378 views

Why is Logger.isInfoEnabled deprecated for org.jboss.logging.Logger?

I have been away from using Log4J for a few years. I'm now working on an application under JBoss 5, using the org.jboss.logging package. Back when I used to do this, it was a common technique to ...
3
votes
2answers
377 views

What does the JBoss 5 shutdown do?

At a high level, what does JBoss 5's shutdown do? What might go wrong if I just kill the java process instead of gracefully shutting down JBoss? A graceful JBoss 5 shutdown takes about 6 minutes for ...
3
votes
1answer
1k views

How to connect JMS queues from JBOSS 4 and 5?

I have a server on which a Jboss 4.2.2 and a Jboss 5.1.0 runs. The problem is that a 3rd party is not able to upgrade its application to Jboss 5.1.0 in the near future, for us it is a simple matter. ...
3
votes
6answers
3k views

How do I write a J2EE/EJB Singleton?

A day ago my application was one EAR, containing one WAR, one EJB JAR, and a couple of utility JAR files. I had a POJO singleton class in one of those utility files, it worked, and all was well with ...
3
votes
1answer
613 views

Web service request ignores basic WSDL XML element restrictions

I have encountered some difficulties while trying to validate an incoming soap message to a service I have running on JBoss AS (v. 5.1.0). In my code, I have explicitly set some fields to be ...
3
votes
3answers
7k views

JBoss transaction timeout setting?

We 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 the default 300 ...
2
votes
2answers
108 views

How to detach an entity (JPA 2.0/EclipseLink/JBoss)

I need to detach some entity objects from the database to make them unmanaged. I use EclipseLink persistence provider, which method EntityManager.detach() is exactly one I need. The problem is that ...
2
votes
1answer
54 views

EJB3 initialization code

I've searched this for a while now, but can't seem to find an answer to this. How can I execute some code in when deploying an EJB3 jar-file to a JBoss server? For example, I need to run some sql ...
2
votes
1answer
117 views

starting thread using jboss5 thread pool

My application, running in JBoss 5, needs to start a thread to perform some work asynchronously. The code uses the 'ThreadPoolMBean' to use a thread from JBoss's own thread pool -- this worked in ...
2
votes
1answer
201 views

Any production ready JMS failover (HA) for JBoss 5.1 EAP available?

We are using HornetQ as JMS provider in JBoss 5.1 EAP and in general we are quite satisfied with HornetQs performance. HornetQ dropped data replication support in 2.2.2 silently. Now, we have ...
2
votes
1answer
72 views

Problems with deploying HTTPRouter action with a keystore file

I am attempting to create a keystore and truststore file from a self-signed certificate, for use in a HTTPRouter action, deployed within a JBoss ESB. I used openssl to retrieve the certificate of ...
2
votes
3answers
3k views

How to deploy a war file in JBOSS 7?

I downloaded JBOSS 5 and successfully deployed a war file. I copypasted the Hello.war which has a simple index.jsp file into \jboss-5.1.0.GA-jdk6\jboss-5.1.0.GA\server\default\deploy and it worked ...
2
votes
1answer
28 views

Is there any limit on number of parameters that can be passed while startup of any JVM

We are trying to start JBOSS 5.x with JDK 1.6. Is there any limit on number of parameters that can be passed while startup of any JVM. The parameters are being given with the help of "-Dkey=value" ...
2
votes
1answer
361 views

Trying to use Infinispan as a JPA/Hibernate second level cache provider, without success

I would like to use Infinispan to cache repeatedly called queries. I followed this tutorial to set up Hibernate for this: Using Infinispan as JPA-Hibernate Second Level Cache Provider. I followed ...
2
votes
1answer
245 views

@Resource annotation not working properly with JBoss5.0.1

I'm tring to deploy my app in JBoss 5.0.1. Some of my beans in this app are using @Resource annotations. If i understood the problem, my guess is JBoss is tring to process this annotation before ...
2
votes
1answer
271 views

java.sql.SQLException: Unable to obtain lock in 60 seconds

I'm tracking this error for a while now, it hapens on irregular basis unpredictibly and I haven't find a way to reproduce it for now. Our environment linux centos 5.3 hosting one jboss 5.1 app ...
2
votes
1answer
76 views

common interface to access libraries in multiple WARs - is this possible in jboss?

As a bit of background - I'm using JBoss 5.1, for web applications. The applications are vertically deployed so each feature ends up in a separate WAR file. It has a jar file for dao and business ...
2
votes
1answer
398 views

System property reference in jboss-web.xml not resolved on server startup

I am using JBoss 5 and the system properties service to set some system properties my app (ear with war) needs. One of these is the name of the virtual host which is referenced in jboss-web.xml: ...
2
votes
1answer
81 views

How to create unit tests for EJB 3.0 based code to be deployed in jboss 5.1?

Greetings, I am interested in adding test coverage for an existing application. The technologies involved include EJB 3.0, jboss 5.1, Hibernate and MySQL. This project is built using Ant. The goal ...
2
votes
0answers
186 views

JbossAS 5.0.1 / jbossall-client 4.0.4 backward compatibility

Our old system contained JbossAS4 and several different client applications. As we are building new system, we migrated to Jboss 5.0.1 but we must maintain backward compatibility with old client ...
2
votes
1answer
434 views

Setting up Virtual Hosts in JBoss

I am working on setting up a JBoss app server on my dev platform (Ubuntu 10.04 server with JBoss 5.1) for my coldfusion apps and can't seem to find the resources I am looking for for setting up the ...
2
votes
1answer
227 views

Disable Quartz startup on first scheduale

I am using Quartz as followed: schedulerFactory = new StdSchedulerFactory(); scheduler = schedulerFactory.getScheduler(); JobDetail startECMSJob = new JobDetail("startECMSJob", "group1", ...
2
votes
1answer
2k views

Unexpected token UNIQUE, requires COLLATION in statement [SET DATABASE UNIQUE])

Whenever I connect to HSQLDB from my application deployed on JBoss 5.1, it throws exception as : Caused by: org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: ...
2
votes
1answer
169 views

Service not registered on startup

I 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 application deploy. My problem is that the ...
2
votes
0answers
565 views

Adding deploy folders to the JBoss 5.1.0 classpath

In JBoss 5.1.0 there are the following files: <JBOSS_HOME>/<INSTANCE>/conf/jboss-service.xml <JBOSS_HOME>/<INSTANCE>/conf/bootstrap/profile.xml Folders into which ...
2
votes
2answers
300 views

Retrieve Number of JMS Message retry

I am using JMS Queue, and MDB which listen to it. I have a retry mechanism, so when exception is being thrown a rollback to the transaction will occur and the operation will re-executed/ I would ...
2
votes
1answer
407 views

Is there a Migration Guide available for JBoss 4.2 to JBoss 5.1

Trying to migrate an application from JBoss 4.2 to JBoss 5.1, I face some configuration issues. In JBoss 4.2 multiple URLs for deployment were configured in jboss-service.xml as an attribute of ...
2
votes
2answers
349 views

Apply patch to JBoss 5.1.0 GA

I would like to add the patch to a JBoss 5.1.0 GA installation in order to do some tests. My question : How can I add this patch? Couldn't find anything revlevant so far. Thank you.
2
votes
1answer
118 views

Any good resource on JBoss5.1 class loading

I'm debugging a thorny CL-related problem and need a better understanding of how classloading works in JBoss 5.1. Yes, I read http://community.jboss.org/wiki/JBossClassLoaderIntroduction and ...
2
votes
1answer
422 views

Unable to access a read-only Embedded Derby database from within EAR file deployed on JBoss server

I am trying to access a read-only Embedded Derby database. It is available as myDB.jar. This jar has one folder of the Apache Derby database - myDB (log and seg0 folders and service.properties ...
2
votes
1answer
1k views

No JTA UserTransaction available - specify either 'userTransaction' or 'userTransactionName'

I have encountered a strange problem with spring transaction. My application uses Spring with EJBs. The EJBs also invoke Spring service classes annotated with @Transaction. I have used Spring ...
2
votes
3answers
8k views

org.hibernate.ejb.HibernatePersistence cannot be cast to javax.persistence.spi.PersistenceProvider

I am developing an application using SPRING 3.0.4, JPA 2, Hibernate 3.5.5. I an trying an existing example given on link http://www.javacodegeeks.com/2010/05/jboss-42x-spring-3-jpa-hibernate.html. ...
2
votes
1answer
416 views

Hibernate persistence slow on One-To-Many

I have a quite large object tree structure that I persist with Hibernate. This should have been persisted with the root-node first and then the children and so on. However this was not the way that ...
2
votes
1answer
155 views

What to do with common jars in EAR for JBoss?

We have 2 web applications. And we are going to move them to EAR file. Is it possible to move common jars from these two web applications to some separate directory in EAR?
2
votes
1answer
1k views

How to handle HTTP status 404 and redirect the user to a different page on application re-deployment

When the application is loading on a EAR re-deployment you get a 404 error, how do we trap this issue and provide a user friendly message to the end user accessing the application. HTTP Status 404 - ...
2
votes
0answers
139 views

JBoss EJB2 Timers Service - multiple servers, single TIMERS table?

I can't find this in the JBoss documentation anywhere, so am asking here. Can multiple, non-clustered JBoss instances access and share the same TIMERS table (as used by EJB2 Timers Service) without ...

1 2 3 4 5 8