Questions tagged [wildfly-8]

WildFly 8 is a release in a series of JBoss open-source application server offerings and an implementation of the Java Enterprise Edition 7 Platform specifications.

About

WildFly 8 was the first release of JBoss open-source application server offerings to bear the brand "WildFly". WildFly 8 is designed to be an exceptionally fast, lightweight and powerful implementation of the Java Enterprise Edition 7 Platform specifications. The state-of-the-art architecture built on the Modular Service Container enables services on-demand when your application requires them.

Links

1036 questions
2
votes
1 answer

How to disable Apache JServ protocol service

The Apache JServ Protocol (AJP) is a binary protocol that can proxy inbound requests from a web server through to an application server that sits behind the web server. Since, It's not recommended to have AJP services publicly accessible on the…
Abhishek
  • 315
  • 5
  • 18
2
votes
1 answer

Why EntityManager have null value in my dao layer?

I'm working on a Java EE 7 maven project I'm using wildfly 8.2 everything is okey the problem is when I create an entity manager using @PersistenceContext inside managedbeans (backing beans) that I use with my jsf the contanier create a entit…
e2rabi
  • 4,728
  • 9
  • 42
  • 69
2
votes
1 answer

b:commandButton inside dataTable won't fire action method

I just started using BootsFaces because of client's demand, so bear with me. Here's my xhtml:
Eduardo Souza
  • 41
  • 1
  • 2
2
votes
1 answer

Wildfly 8.2.1 final failed to parse configuration

I have a question on wildfly server. You can see this error in the top image link. I think this problem happens because of JVM but I couldn't fix it. My OS is ubuntu 14.04 and I had installed jdk 1.7 and 1.8. I changed default jdk to 1.7 . But I…
Murat Karagozgil
  • 178
  • 1
  • 2
  • 13
2
votes
1 answer

Restful services with Spring Boot on Wildfly 8.x

I'm having issues getting a simple hello world application to work on Wildfly 8.x. The stack trace I receive is a null pointer exception getting the headers of the response: 2016-07-15 04:14:28,488 ERROR…
Arlo Guthrie
  • 1,152
  • 3
  • 12
  • 28
2
votes
1 answer

JBoss8: Error UT005023 - Exception handling request to URL

I am getting the below error on JBoss 8 server. 17:36:07,482 ERROR [io.undertow.request] (default task-22) UT005023: Exception handling request to /user/XMLPreviewer: org.springframework.web.util.NestedServletException: Handler processing failed;…
fiddle
  • 1,095
  • 5
  • 18
  • 33
2
votes
2 answers

Wildfly: How to configure worker threads in IO subsystem dynamically

I want to dynamically configure following section in wildfly-8.2.0 in standalone.xml: Basically I don't want these values to be hardcoded and calculate them at the time of server…
keenUser
  • 1,279
  • 3
  • 16
  • 33
2
votes
1 answer

Using Ant xmltask to add a Datasource to the standalone.xml of wildfly 8

I am exploring the ways automate the installation process of a software using Ant Tool. Most of which I have been able to accomplish except for one that is editing the wildfly standalone.xml file to add a datasource to it. I feel the issue here is…
2
votes
0 answers

Configuring Wildfly transaction log

I'm trying to configure Wildlfy 8.2.1 to show transaction log and transaction metrics. I have an application which uses JTA database connection and I want to see failed/rollback transactions. So far I tried to enable statistics for transactions in…
Mikhail Chibel
  • 1,865
  • 1
  • 22
  • 34
2
votes
2 answers

Wildfly Form Auth fails when using special characters

We are deploying our GWT app to a Wildly 8.1.0 server and are using form authentication for security. Our problem is that every time our customer has a special character (æøåäëö, etc.) in their username or password, they cannot login. I have seen…
Rasmus Nielsen
  • 411
  • 1
  • 4
  • 18
2
votes
1 answer

Wildfly 8 Logging- Per deployment config for multiple deployments not working

I need to deploy multiple war files on a server-group in wildfly-domain. When I deploy only one application, configuration works perfectly fine and logs are generated as expected. But, after deploying second war file, all logs from deployment one…
akashpandey
  • 177
  • 1
  • 11
2
votes
1 answer

ActiveMQ messages dequeud but not consumed

I have a JBoss web application that is currently using embedded HornetQ for JMS. We want to switch to an ActiveMQ HA cluster, but I'm running into some strange issues. One of my queues (periodicDerivationQueue) is not behaving as it does with…
user3029642
  • 909
  • 3
  • 10
  • 23
2
votes
1 answer

Can't resolve Services with missing/Available dependencies Wildfly 8.1 and MySQL 5.7 JBAS014613: Operation ("add") failed

I'm trying to configure a data source in Wildfly 8.1 with MySQL. I'm on a local environment on windows and I keep getting errors when I start the server. The datasource is registered, but fails when i test it. I have the mysql connector jar file…
2
votes
1 answer

Do I need to implement ServiceActivator in WildFly8 domain

My Wildfly 8 domain has two hosts Master and Slave. I need to start my application only on one node at a time. Do I need to implement org.jboss.msc.service.ServiceActivator for this? I believe this ServiceActivator should be implemented in case of…
akashpandey
  • 177
  • 1
  • 11
2
votes
2 answers

How to dynamically retrieve a CDI dependency?

I'm trying to dynamically retrieve a dependency for my Java code. I know the class name, but I want to take the instance managed by the container, with proper indirect dependencies resolved. For example: class Foo { public static void foo() { …
Thiago Negri
  • 5,221
  • 2
  • 28
  • 39