Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

I have deployed jasperserver-pro.war in Wildfly deployments folder and trying to start the server. But I am getting lot of WARNING server logs and I am not able to start the server.These are the ...
Sudharshan Reddy's user avatar
1 vote
1 answer
49 views

I'm experiencing a persistent cookie corruption issue with my Java EE web application deployed on WildFly 37.0.1.Final. The error appears immediately when accessing the application URL, even after ...
kinderBueno's user avatar
1 vote
1 answer
52 views

I have a Java Quarkus application which is using JBoss for logging. I am using a scheduled job via io.quarkus.scheduler.Scheduled like so: private static final Logger LOGGER = Logger.getLogger(...
Alessandro Escher's user avatar
-5 votes
0 answers
63 views

Our application with legacy components is built on Java 8 and is running successfully on JBoss EAP 7.4. The client now wants to migrate the application to JBoss EAP 8.0. However, when we try to deploy ...
Atanu Biswas's user avatar
1 vote
0 answers
56 views

I’m running an application on JBoss 7 connected to a MariaDB database hosted on a separate AWS EC2 instance (c5.9xlarge). The SQL query execution itself is extremely fast (around 57ms), but when ...
TinGinard's user avatar
  • 387
0 votes
0 answers
43 views

I have the following configuration inside my ear module: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ear-plugin&...
Alexander Rumanovsk's user avatar
1 vote
0 answers
63 views

I am using Eclipse 2025-09. When attaching the remote debugger to Module B, my entire JBoss server gets suspended, even though I have set all breakpoint settings to suspend only the thread. I work on ...
aakarsh goel's user avatar
0 votes
1 answer
34 views

For studying purposes I have put dependencies in the pom of an application called jaxb_study, <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</...
ericj's user avatar
  • 2,331
0 votes
1 answer
38 views

In the quickstart ejb-txn-remote-call I see in dependency added in the pom of the application: <!-- for Mock XAResource recovery we need the dependency to Narayana --> <dependency> <...
ericj's user avatar
  • 2,331
0 votes
0 answers
90 views

I need to migrate all queues and topics from the existing JBoss embedded JMS broker to a remote ActiveMQ Artemis broker (i.e. outside JBoss server). I configured both embedded broker and remote broker ...
Pasindu's user avatar
  • 23
0 votes
1 answer
57 views

In the pom of a project that uses JAXB, there is the dependency, <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> ...
ericj's user avatar
  • 2,331
0 votes
1 answer
74 views

We have just recently setup JBoss EAP 8.0.0 and need to register a SQL Server driver to connect to a SQL Server database from our deployed application. After running the CLI command to register it, I ...
Nathan's user avatar
  • 1
1 vote
0 answers
78 views

As per official docs: WILDFLY logging, default is milliseconds. How can I do it for microseconds basically using any elytron or writing a custom script is the only option ? Tried some elytron command ...
Deepak Rawte's user avatar
0 votes
1 answer
111 views

We have hundreds of Arquillian tests for our system. They all work with JBoss EAP 7. But now we're migrating to JBoss EAP 8, which corresponds to Wildfly 28. I've tried some tests, but I only get ...
eerriicc's user avatar
  • 1,260
0 votes
1 answer
46 views

Take for example ManagementRealm. In <management/> we see: <management> <security-realms> <security-realm name="ManagementRealm"> ...
ericj's user avatar
  • 2,331
0 votes
0 answers
97 views

I’ve been handed a pile of legacy code that needs to get updated. Currently runs on JBoss 7.2; needs to run on 8. It’s built on Java 8, so it needs to go to 11, which in turn necessitates upgrading ...
BHort's user avatar
  • 9
1 vote
0 answers
50 views

I am trying to configure security for a webservice inside an ear. I did configure properties realm, security domain, http authentication factory and undertow application security domain: [standalone@...
SJuan76's user avatar
  • 24.9k
1 vote
0 answers
37 views

I wonder if anyone could help me finding out why I am unable to get liquibase running automatically on JBoss upon deployment? The example code below generates an “ear” and i think it should update the ...
NagPer's user avatar
  • 77
0 votes
0 answers
43 views

I'm using Jboss Logging Message for a log test service in Quarkus. This is my predefined interface: @MessageLogger(projectCode = "my-logging") public interface LoggingTestServiceLogger ...
birbseye's user avatar
0 votes
0 answers
74 views

I was asked to help determine if Drools is capable of high volume processing. So I in return asked what do we mean by high volume. They gave me the following: 20,000 files 5 different rulesets ...
JavaJd's user avatar
  • 477
0 votes
1 answer
87 views

I am having some troubles trying to configure both JBoss and my Spring app in order to use another ActiveMQ Artemis broker instead of the one integrated in JBoss. Inside the pom.xml I put the spring-...
noob-super's user avatar
0 votes
1 answer
94 views

I’m trying to implement two-phase commit transactions using Narayana REST-AT fully embedded in a Spring Boot application—no WildFly/JBoss server, no Docker Compose or external broker, just project ...
Watlas's user avatar
  • 26
0 votes
0 answers
24 views

How can I see in jboss 7.4 which provided dependencies I can use in my poms? Must I look in the modules folder?
ericj's user avatar
  • 2,331
0 votes
0 answers
21 views

I would like to add the following code try { Transaction transaction = TransactionManager.transactionManager().getTransaction(); ... } catch (SystemException e) { throw ...
ericj's user avatar
  • 2,331
0 votes
1 answer
54 views

This page lists "Central" versions of the ActiveMQ Artemis JMS Client (from 1.0 to 2.40), and this page links to the release notes for each of these versions. The mvnrepository.com page also ...
Tom Hunter's user avatar
  • 5,960
0 votes
0 answers
31 views

Recently we have started migration from Spring , Hibernate 5.x to 6.x. We were getting below error on XA data source but non XA data source was working fine. (Jboss 8 application server) [jcc][t4][...
Sanjay's user avatar
  • 313
1 vote
0 answers
28 views

We have cucumber scenario's and we have an ejb application which runs in jboss. Suppose Idebug a scenario and I debug our application in jboss. When I am debugging in jboss, I see that the debugger of ...
ericj's user avatar
  • 2,331
0 votes
1 answer
132 views

im trying to run a wildfly example from https://github.com/wildfly/quickstart/tree/main/jaxws-retail when i deploy i get error Caused by: org.jboss.msc.service.DuplicateServiceException: WFLYUT0105: ...
Zeus's user avatar
  • 59
-1 votes
1 answer
127 views

I am trying to run a Java application deployed as a .war file on WildFly with the SkyWalking agent enabled for monitoring. However, when I start WildFly, it fails to boot with the following error: ...
Anirudh parida's user avatar
0 votes
0 answers
47 views

{ \"WFLYCTL0080: Failed services\" => {\"jboss.deployment.subunit.\\\"appRestServiceEAR.ear\\\".\\\"appRestServices.war\\\".POST_MODULE\" => \"...
Sarvath S's user avatar
  • 205
0 votes
1 answer
75 views

I have a WAR deployed on WildFly that depends on a module where JUnit 5 JARs are located. I keep getting this exception: [Cannot create Launcher without at least one TestEngine; consider adding an ...
Pp88's user avatar
  • 1,103
0 votes
0 answers
49 views

I recently upgraded from JBOSS 7.4 to JBOSS 8.0. I'm currently testing this on Windows 11 and openjdk 17 but the behavior is the same on a linux distro For some reason I cant get my application to do ...
Bill Kariri's user avatar
0 votes
0 answers
27 views

I am in the middle of an effort to break apart a monolith that uses a single schema. I am trying to prepare to move a subset of tables out of a MySQL schema to a different schema by creating a second ...
jugg1es's user avatar
  • 1,600
0 votes
1 answer
161 views

Problem statement I am trying to configure ActiveMQ Artemis embedded in WildFly to work with a secured connection between the client and Kubernetes Ingress. I have a Java client that connects to a ...
Mariusz's user avatar
  • 1,985
0 votes
0 answers
73 views

2025-03-06 15:47:09,760 DEBUG [org.jboss.as.controller] (ServerService Thread Pool -- 46) CapabilityServiceSupport: Parsing ServiceName for org.wildfly.clustering.command-dispatcher-factory 2025-03-06 ...
shashi kumar's user avatar
-1 votes
1 answer
44 views

I have installed Wildfly 34 on my local machine and enabled the JMS queue. Also, I am trying to enable jms bridge in standalone mode. It's not working. It will through some errors. How to solve this? ...
Murugesan's user avatar
0 votes
0 answers
39 views

We have an application where invocations are happening using EJB and application is running on JBOSS server. We have updated one of the JBOSS EJB client discovery additional timeout value as "0&...
dnvsp's user avatar
  • 201
0 votes
0 answers
46 views

I am trying to set empty value using the web console through Configuration: System Properties. I need to get in the configuration xml file this: <property name="name" value=""/&...
anfisa9la's user avatar
0 votes
0 answers
75 views

I'm trying to configure SSO with LDAP and Kerberos in EAP 8, by migrating a configuration from EAP 7. When logging into my app, it throws the following exception: 12:25:54,491 ERROR [stderr] (default ...
user2431672's user avatar
0 votes
1 answer
77 views

I inherited java 7 app in my company and was tasked to upgrade it to java 8 and deploy on new jboss servers. I build the app with java 8 with no problem, tried to deploy it, fixed some minor bugs but ...
Croksie's user avatar
  • 21
0 votes
0 answers
21 views

We are having a JBoss application running on www.abc-company.com and we want to change the url to www.xyz-company.com. Question: How to make the application to run with the new URL(www.xyz-company.com)...
Maka's user avatar
  • 1
1 vote
0 answers
190 views

I have an ear with at least 2 WARs inside. One should be none restricted, so no auth at all, and the other one should be restricted by keycloak. This is done via an overlay-file for just this WAR. ...
peatle_pp's user avatar
0 votes
0 answers
166 views

Spring Framework 6.0.23 upgrade to 6.1.0 occurs ServletOutputStream failed to write: UT010029: Stream is closed Exception. In Spring 6.0 the controller works well, but after upgrade to Spring 6.1 ...
Arteta's user avatar
  • 1
0 votes
0 answers
176 views

Here is my IDE and tools version: Eclipse version: 2023-09-R Doload from: https://www.eclipse.org/downloads/packages/release/2023-09/r Jboss Tools version: 4.29.1.Final Download from: https://tools....
Derek LAM's user avatar
0 votes
1 answer
204 views

I’m trying to configure a MySQL DataSource in WildFly 35 and encountering the following errors during server startup: ("subsystem" => "datasources"), ("data-...
Mohamed Mahdi's user avatar
0 votes
0 answers
74 views

I'm trying to deploy a Java application to WildFly that uses Hibernate with a MySQL database. However, when I run my application, I get the following error in the logs: alter table exam_table ...
Mohamed Mahdi's user avatar
0 votes
1 answer
48 views

My Spring application is deployed in JBOSS wildfly server. I have an Interceptor like below - @Component public class AuthenticatorInterceptor implements HandlerInterceptor,Serializable { private ...
Rakesh Kundu's user avatar
0 votes
0 answers
94 views

We are running an existing application using wildfly-10.0.0.Final with Shiro 1.2.2 We have upgraded our application from using mysql 5.6 to 8.0.40 and we are now using the latest mysql drivers. The ...
Hilly B's user avatar
1 vote
0 answers
275 views

I'm migrating a Maven project from Java 8 to Java 11, and the server from JBoss EAP 7.2 to 7.4. I'm having some troubles dealing with the dependencies because I can't understand which ones should I ...
Pablo Escobarl's user avatar
0 votes
2 answers
81 views

In an application I developed with Java 8, I am trying to convert a .wav audio file received in Base64 format to PCM_SIGNED format. The code works fine in the local environment, but I get the ...
Mustafa's user avatar
  • 43

1
2 3 4 5
303