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

Queries any kind doesn't find persisted entity

I am trying to implement a litte integration test using Arquillian and Wildfly 8.2. Persisting and finding via entity manager works, but using queries any kind doesn't find anything. My test class: @RunWith(Arquillian.class) public class…
CSchulz
  • 10,882
  • 11
  • 60
  • 114
2
votes
2 answers

Can you specify Arquillian to use a specific Wildfly configuration?

We are using Wildfly 8.0.0 Final but are in the process of moving to Wildfly 8.2. We are using Arquillian to run our unit tests in the container. I have noticed that Arquillian always seems to use the Wildfly standalone.xml. It would be useful to…
whomer
  • 575
  • 9
  • 21
2
votes
0 answers

Programmatical solution to list all @Schedule and programmatical Timers in JEE7

I am wondering if there is a way to get all JEE7 Timers with their crons from a container. We are right now using wildfly, but it would be nice to get a solution for all JEE7 containers. We need the list of timers to visualize on a UI, so it must be…
cilap
  • 2,215
  • 1
  • 25
  • 51
2
votes
1 answer

Websocket with Tyrus in Openshift

I deployed an Wildfly 8.1 java application using Tyrus to manage a websocket server, nothing too complicated, it just receives the message and respond the message reversed, well, it should work, everything is according to OpenShift tutorial, but on…
H_DANILO
  • 321
  • 1
  • 9
2
votes
1 answer

Spring MVC latest, html response is getting downloaded instead of displaying

I have very simple spring mvc web app, running in wildfly 8.2.0 server. Configured fully with spring annotation config including WebApplicationInitializer (no web.xml). Controller is getting invoked but my results page is getting downloaded instead…
Sreekanth
  • 539
  • 1
  • 7
  • 24
2
votes
2 answers

Spring WebApplicationInitializer not working in wildfly 8.2.0 EAR Deployment

I have very simple EAR with one spring mvc web app (war), all spring libraries are in myear.ear/lib folder. I'm not using web.xml instead i'm trying to use WebApplicationInitializer but Wildfly server is not detecting this and i'm getting 404 page.…
2
votes
2 answers

Upgrad to Wildfly 8.2 with error

I upgraded from Wildfly 8.1 to 8.2. My first JSF request resulted in this error, where this worked before. What is the culprit? Does one need to update any dependencies? JDK 8 required? 16:39:36,127 ERROR [io.undertow.request] (default task-1) L:80…
feder
  • 1,849
  • 2
  • 25
  • 43
2
votes
1 answer

WildFly web service configuration wsdl-port not working

The "modify wsdl address" feature described under https://docs.jboss.org/author/display/WFLY8/Web+services+configuration seems to be not working. The Wildfly is behind an Apache Httpd 2.2, usind mod_proxy. ProxyPass / …
user3151902
  • 3,154
  • 1
  • 19
  • 32
2
votes
1 answer

Wildfly 8.1 not finding logback.xml - uses default config

I'm currently developing a website for a school project, and I've run into a problem regarding logging. I want to log my stuff using logback. However, my wildfly server isn't recognizing my logback config-file (logback.xml). Logback.xml is placed…
Ajaco
  • 359
  • 2
  • 10
2
votes
1 answer

Running Liquibase with CDI on Wildfly 8

I am trying to run Liquibase scripts using CDI on WildFly 8.1.0.Final and I am getting this error: Unsatisfied dependencies for type ResourceAccessor with qualifiers @LiquibaseType My POM has these dependencies:
lexsoto
  • 23
  • 3
2
votes
1 answer

Cannot reach EJB exposed as REST service

I'm trying to expose some EJBs as REST web service using JAX-RS annotations. When I deploy war file containing EJB Jar in WEB-INF/lib to Wildfly 8, I can see in web admin panel EJB Jar as deployed, But I cannot reach REST endpoints and get…
reith
  • 2,028
  • 13
  • 26
2
votes
1 answer

Missing org.apache.commons.dbcp package in Maven project

When I try to type command to deploy my servlet: mvn clean package wildfly:deploy I got error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project wildfly-helloworld: Compilation…
Robin
  • 25
  • 1
  • 6
2
votes
1 answer

@transactional, wildfly, mysql(innodb) ejb not rolling back

I know this question has been asked many times before but i couldn't find any answer to my problem. I have a Webapp that uses wildfly 8 as container. The problem is that if I throw an exception within my ejb the transaction is not rolled back. I…
simonides
  • 3,040
  • 3
  • 19
  • 34
2
votes
0 answers

Able to import constants using OmniFaces but not ImportHandler#importClass()

The following bean loads eagerly e.g. @ManagedBean(eager=true) @ApplicationScoped public class EnumConfig { @PostConstruct public void init() { System.out.println("Testing 123..."); …
Patrick Garner
  • 3,201
  • 6
  • 39
  • 58
2
votes
2 answers

JavaEE7-hands on lab tutorial -- unable to get the database loaded?

I am following the tutorial on Java EE7-hands on lab here. I followed the instructions as provided there to set up my WildFly Application server. Everything works fine. The tutorial zip comes with sample data and sql load scripts that is used to…
brain storm
  • 30,124
  • 69
  • 225
  • 393