Questions tagged [jboss]

JBoss Application Server (JBoss AS) is a free software/open-source Java EE-based, Cross-platform Application Server.

JBoss Application Server (JBoss AS) is a free software/open-source Java EE-based, Cross-platform Application Server.

The company JBoss is a division of Red Hat, Inc. that charges to provide a support subscription for JBoss Enterprise Middleware e.g. JBoss application server.

JBoss AS is a Java EE certified platform for developing and deploying enterprise Java applications, Web applications, and Portals. JBoss AS provides the full range of Java EE 6 features as well as extended enterprise services including clustering, caching, and persistence.

Starting with version 8, JBoss AS goes under the name .

Consider using a version specific tag:

References

Other Useful Resources

15135 questions
15
votes
3 answers

Why does Java Web Start redownload jars from JBoss?

We just discovered that every time we restart JBoss, all of our Java Web Start clients redownload all of their jars, instead of reusing the cached jars, even if our application has not changed. From what I've seen on the web, Java Web Start does an…
skiphoppy
  • 97,646
  • 72
  • 174
  • 218
15
votes
2 answers

JNDI path Tomcat vs. Jboss

I have DataSource which is configured on Tomcat 6 in context.xml as MyDataSource. And I'm fetching it the following way: DataSource dataSource; try { dataSource = (DataSource) new…
danny.lesnik
  • 18,479
  • 29
  • 135
  • 200
15
votes
6 answers

How to deploy a war file in JBoss AS 7?

I downloaded JBoss Application Server 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 fine. However when I used JBoss…
user244333
15
votes
3 answers

Java EE scenarios that cannot be handled by Tomcat

Tomcat only implements the web container of the Java Enterprise Edition architecture. In contrast, e.g. GlassFish implements a full Java EE stack. This has been discussed a lot on stackoverflow. However, for a Java EE beginner like me it is hard to…
Matthias
  • 7,432
  • 6
  • 55
  • 88
15
votes
3 answers

Keycloak User federation using existing MySQL database for users authentication

I am trying to setup Keycloak server for our organisation. I have couple of questions. How can we use our existing user database to authenticate users - User Federation. Keycloak only has LADP/Kerberos options. Is there any custom plugin which can…
Sagar Chilukuri
  • 1,430
  • 2
  • 17
  • 29
15
votes
2 answers

How to limit the number of MDB instances listening to a Jboss JMS queue

I'm having a problem with the following setup: A Java application send email msg to a JMS queue, then an MDB listening to the queue get the email msg with the onMessage method, it open a connection on the Gmail SMTP, send the email to the SMTP and…
Alain
  • 237
  • 1
  • 4
  • 13
15
votes
3 answers

Keycloak - Infinispan Redis cache store

Currently setting up a keycloak cluster in standalone-ha mode, to be able to run on docker swarm. In keycloak, the user sessions are cached in an embedded infinispan store and infinispan can be configured to be a distributed cache across the…
tux
  • 1,730
  • 1
  • 15
  • 19
15
votes
2 answers

jboss-deployment-structure.xml add JAXP exclusion

I am implementing XML validation which prevents XXE (External XML Entity) Injection. I borrowed some code from OWASP XXE Prevention Cheat Sheet. My code looks like this - SchemaFactory factory =…
Ankit Rustagi
  • 5,539
  • 12
  • 39
  • 70
15
votes
3 answers

JBoss Session Timeout

I'm trying to write the part of my app so that it handles session timeouts gracefully, but I can't seem to control how the duration of time before a timeout occurs for testing. I am using JBoss 5.1, and I am modifying the session-config my web…
Rydell
  • 4,209
  • 7
  • 28
  • 30
15
votes
1 answer

Difference between security-realm and security-domain in WildFly

What is the main difference between security-domain and security-realm in WildFly? standalone.xml
Johnny Willer
  • 3,717
  • 3
  • 27
  • 51
15
votes
3 answers

How to add https-listener to WildFly's default-server?

I'm following the tutorial from: https://github.com/jbosstm/quickstart/tree/master/XTS/ssl Using jboss-cli successfully added the…
Boris Pavlović
  • 63,078
  • 28
  • 122
  • 148
15
votes
2 answers

Deploy WAR file to Openshift without using GIT?

I want to upload a WAR file to my Openshift account , but it forces me to use GIT ot GITHUB (here). Please forgive me for saying this , but this is very very annoying . Is there any way upload a WAR file straight to my application without using…
JAN
  • 21,236
  • 66
  • 181
  • 318
15
votes
7 answers

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 second limit. The question is how to change the…
Petteri H
  • 11,779
  • 12
  • 64
  • 94
15
votes
4 answers

Arquillian: Wildfly embedded?

Until now I had my integration tests running with Arquillian and an embedded Glassfish 4.x. As I suffer from bug ARQ-1458, I tried migrating to Wildfly 8.0.0.Beta1. My deps in Maven are: org.jboss.arquillian
Timo Böwing
  • 313
  • 1
  • 2
  • 8
15
votes
2 answers

JAX-RS: How to secure REST endpoints?

I am using JBoss AS and JAX-RS for creating REST endpoints. Lets say my class looks like @Path("/users") public class UserResource { @GET public Response getAccount() { return "hello"; } } Now getAccount is not authenticated at the…
daydreamer
  • 87,243
  • 191
  • 450
  • 722