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
6
votes
1 answer

wildfly as systemd service

I wanna make wildfly-domain as a systemd service in centos7 in works by root user but when i start it as wilfly user after a while it shows error: java.lang.OutOfMemoryError: unable to create new native threadESC and stop . even stop service…
6
votes
2 answers

Stop wildfly war from initializing mojarra

Whenever I deploy a war to wildfly 8 or 10 (in this case it's a jax-rs service), I see the following line [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 151) Initializing Mojarra 2.2.11-jbossorg-1 20150505-1501 for…
Chris Pike
  • 272
  • 2
  • 10
6
votes
1 answer

How to skip Maven plugin parent pom execution?

I have a parent aggregator POM with multiple modules. I have a build/pluginManagement in the parent since plugin execution is the same for each sub module. If I execute in each sub module (mvn package) it works fine. If I execute in the parent:…
jersey-city-ninja
  • 1,038
  • 11
  • 23
6
votes
1 answer

Wildfly 8 doesn't seem to be logging -verbose:class data?

I'm attempting to run Wildfly 8.1.0 with the -verbose:class flag set, but it doesn't appear to be doing anything. Near the start of server.log, it echos what the JVM arguments it receives are. Here's that line (linebreaks added by me for ease of…
ArtOfWarfare
  • 20,617
  • 19
  • 137
  • 193
6
votes
4 answers

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.NullPointerException in REST with Spring

I am trying to create REST service using Spring.When I try to access that service it returns proper data but shows - Exception handling request to /RESTServ/user/2: org.springframework.web.util.NestedServletException: Request processing failed;…
Rishi
  • 159
  • 1
  • 2
  • 11
6
votes
1 answer

Cannot change version of project facet ear to 1.3 maven error in eclipse?

I am new to maven, I have created a maven project in Eclipse on Wildfly server. Its deploying fine and working fine but I have a compilation issue in work space as like below. cannot change version of project facet ear to 1.3 No issue is there…
Jhansi Gupta
  • 61
  • 1
  • 1
  • 4
6
votes
1 answer

Wildfly: ExceptionMapper not triggered with RestEasy JSR-303 Bean Validation

I'm using Bean Validation with RestEasy in Wildfly 8.2.0.Final: @Path("/user") @Produces(MediaType.APPLICATION_JSON) public class UserEndpoint { //more code @GET @Path("/encrypt/{email}") public Response…
Bevor
  • 8,396
  • 15
  • 77
  • 141
6
votes
2 answers

Using Seam in a single legacy WAR of an otherwise Weld-enabled EAR

We are using Wildfly 8.2.0.Final, Maven 2.2.1, Seam 2.2.0.GA, and Weld 2.2.6.Final. We have an EAR file with a legacy WAR, a new WAR, and a bunch of other modules. The legacy WAR relies on Seam, but the new WAR and the rest of the modules in the EAR…
mattalxndr
  • 9,143
  • 8
  • 56
  • 87
6
votes
2 answers

How to open Wildfly 8.2 JMX port for monitoring?

I am using Wildfly 8.2 on CentOs. Can anyone help me to open remote JMX on Wildfly 8.2? I am only using standalone-full.xml and the port 10990 is already accessible for webconsole like: 192.168.1.10:10990/console/ Now, I am trying to monitor wildfly…
Aswin Mohanan
  • 151
  • 1
  • 2
  • 4
6
votes
1 answer

How to access CXF jars from Wildfly (Jboss) for ws endpoints

I've tried to deploy my war file in Wildfly 8.2. My application uses org.apache.cxf for web service. But Wildfly (Jboss) comes by default with its own cxf jars which can be provide full Java EE support. I could eliminate jboss cxf and utilise my own…
The Coder
  • 2,562
  • 5
  • 33
  • 62
6
votes
0 answers

How catch java.io.IOException: An established connection was aborted by the software in your host machine?

I have debug this exception and I observed that When user send some request to server and before server response to user, and if user close browser window Or just close that specific page then that Exception occurs. 2015-03-19 12:04:40 DEBUG io:132…
Az.MaYo
  • 1,044
  • 10
  • 23
6
votes
1 answer

Consume multiple resources in a RESTful Web Service

In my web server application I have a method, which modifies an xml document and looks similar to that: @POST @Path("somePath") @Consumes({"application/xml", "application/zip"}) public Response modifyXml() { //some processing } The consumed zip…
Arthur Eirich
  • 3,368
  • 9
  • 31
  • 63
6
votes
4 answers

Vaadin 7, Atmosphere and Server Push problems

I've started to build a project using the Maven archetype for Vaadin 7.2.4 and am getting a lot of errors thrown up relating to Atmosphere startup issues. As things stand, I won't be able to enable push support which I'd require to use an addon…
rustproofFish
  • 931
  • 10
  • 32
6
votes
1 answer

Spring & wildfly async requests

When doing async requests to a controller (not using the annotation) I get this error did someone knows why? I'm using spring 4.0.5 and wildfly 8.1.0 16:42:48,621 DEBUG [io.undertow.request.io] (default task-20) UT005013: An IOException occurred:…
Charlires
  • 863
  • 1
  • 11
  • 30
5
votes
1 answer

Content type issue in Wildfly 10

I have a web application on Wildfly 10 and in the web application directory i have placed a zip file that I want to be downloaded when user clicks on the hyperlink. On the UI I have Snippet
happy
  • 2,550
  • 17
  • 64
  • 109