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

Why do the JBoss/wildfly BOMs not contain all of the provided modules?

Wildfly 8.x ships with BOMs for easy dependency management: https://github.com/wildfly/boms These are useful for the module-based classloading described here: …
jordanpg
  • 6,386
  • 4
  • 46
  • 70
2
votes
2 answers

jboss wildfly datasource deployment via IntelliJ

I am currently setting up a Java EE project with IntelliJ. For local testing I am using a local Jboss wildfly where I deploy the application via artifacts and a run configuration defined in Idea. I would like to use the "deployable datasource…
peez80
  • 1,583
  • 2
  • 15
  • 32
2
votes
2 answers

JEE7 + WildFly (HornetQ) - Pause queue from application

We are using WildFly + HornetQ as our application server and JMS message queue, and have the requirement to be able to pause/resume queues from the application. Is this possible?
Nico Huysamen
  • 10,217
  • 9
  • 62
  • 88
2
votes
1 answer

Offline instrumentation using jacoco and gradle

I want to do offline instrumentation to get coverage for my project because without that, for the server managed things (EJB's) it is showing coverage as 0%. Does anyone know how can we do offline instrumentation with gradle? EDIT: I'm using Wildfly…
Tomin
  • 1,898
  • 3
  • 18
  • 23
2
votes
1 answer

Where are my tables in H2?

I deploy my web app to the WildFly 8.02 Final server. I use default out of the box DataSource that comes with the server with jndi name space: java:jboss/datasources/ExampleDS and I use default url:…
Ivan
  • 1,320
  • 16
  • 26
2
votes
1 answer

hibernate append "0_" to table name

I have a J2EE 7 web app running on wildfly 8.2. Database is H2. Here's my entity class @MappedSuperclass public class AbstractEntity implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) …
Andy
  • 77
  • 1
  • 12
2
votes
1 answer

Hot deployment location in Wildfly 8 AS

In JBoss 6 AS, the hot deployment location is ${JBOSS_HOME}/server/default/deploy where I can unpack WAR or EAR and change content of any configuration file and it works without restart. Similarly, in Wildfly 8 AS, can anyone help me to know about…
sridhar
  • 1,117
  • 5
  • 31
  • 59
2
votes
1 answer

Java/Jetty/Wildfly: Gracefully Handle Aborted Client Connections

I have developed a web application that plays audio and video files. Users can change the currently playing track, in which case a new source is set for the HTML 5 player on the client-side. The distribution of the application uses embedded Jetty 9,…
bdunn
  • 472
  • 4
  • 19
2
votes
1 answer

Principal in EJB injected from REST service

I have a simple REST webservice that uses basic authentication. @Path("/ws") @Stateless public class MyWebservice { @EJB private MyEJB myEjb; @GET @Path("/get") @Produces(MediaType.APPLICATION_JSON) public MyObject…
user3151902
  • 3,154
  • 1
  • 19
  • 32
2
votes
2 answers

Adding a module in WildFly 8.2.0 Final release

I am new in JBoss and I try to add a jdbc driver for derby as a module in WidlFly 8.2.0. What I did: I added the org/apache/derby/main folder in the JBOSS_HOME/modules/system/layers/base directory In this new folder, I added derbyclient.jar (from…
Olivier
  • 33
  • 1
  • 8
2
votes
1 answer

RichFaces spacer gif URL wrong after upgrade to JBoss 8 (WildFly)

I'm doing an upgrade from JBoss 6 to JBoss 8 (WildFly). The version of RichFaces 3.3.3 has stayed the same. Several places in the code call the RichText spacer, like this: In web.xml, the servlet-mapping entries…
mattalxndr
  • 9,143
  • 8
  • 56
  • 87
2
votes
0 answers

javax.servlet.request.ssl_session_id is null in openshift

Hi I am developing an application that I need to get the ssl id from a servlet. I am using Wildfly 8.2 and Openshift. Currently to get the ssl id we only need to do this: request.getAttribute("javax.servlet.request.ssl_session_id"); and if I run in…
lordofthejars
  • 713
  • 1
  • 6
  • 14
2
votes
1 answer

Null Pointer Exception in RestEasy Asynchronous Request

I was working in Resteasy where I've to make a asynchronous request to server. The real purpose is, I'll be submitting a form which will be converted into a .xlsx file which will take atleast 10 seconds to complete. So Asynchronous request is the…
The Coder
  • 2,562
  • 5
  • 33
  • 62
2
votes
1 answer

java.lang.ClassNotFoundException: org.apache.camel.Component in wildfly

I am getting following Error: java.lang.ClassNotFoundException: org.apache.camel.Component I am using wildfly server. My Code is: import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import…
Tuhin
  • 3,335
  • 2
  • 16
  • 27
2
votes
2 answers

Module not excluded on Wildfly

We want to exclude the modules\system\layers\base\javax\servlet\jstl\api\main\jboss-jstl-api_1.2_spec-1.1.2.Final.jar from our web application deployment (WAR file). Hence we have the following configuration in…
Harold L. Brown
  • 8,423
  • 11
  • 57
  • 109