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

wildfly not loading class from web.xml

Am unable to run the war, as i configured all the modules in wildfly, and this war is running good in jboss 6 with same web.xml config, and when i deploy in wildfly after all setup for migration then am getting classNotFound Exception as i have few…
Raj Kumar Samala
  • 561
  • 12
  • 31
3
votes
1 answer

Hibernate is not creating tables when the server is run

I'm pretty new to Java EE, I'm making a dynamic web project and I'm using Hibernate and MySQL. I've already created my entities and when I run Wildfly it prints this stack. 14:19:52,791 INFO [org.hibernate.Version] (ServerService Thread Pool -- 50)…
codenoob
  • 257
  • 3
  • 15
3
votes
0 answers

Spring to Wildfly Deploy - javax.naming.NameNotFoundException (JNDI)

I am trying to deploy my spring-boot application to WildFly Version 8.1, but I get an javax.naming.NameNotFoundException, everytime the app tries to boot. My Configuration: I added the JDBC as Module to the WildFly-Standalone instance. …
Markus Heider
  • 186
  • 1
  • 11
3
votes
1 answer

ActiveMQ, Wildfly and get message body (getBody)

I am new to JEE7 and have been working on some quick exercises but I've bumped into a problem. I have a sample Java SE application that sends a message to an ActiveMQ queue and I have an MDB deployed on Wildfly 8 that reads the messages as they come…
amusingalan
  • 35
  • 1
  • 5
3
votes
1 answer

Websocket authentication in Wildfly with RolesAllowed

I have a web socket defined using standard annotation like so @ServerEndpoint("/mySocket") @Singleton public class myWebsocket { @Inject private MyEjb myEjb; @OnMessage public void message(Session session, String msg) { ... Even though my user…
Chris Pike
  • 272
  • 2
  • 10
3
votes
1 answer

WildFly8.2.0.Final, Hibernate, Infinispan: org.hibernate.cache.CacheException: Unsupported access type [read-write]

I'm trying to switch from ehcache which seems to be working well to 'native' Wildfly's Infinispan. I did not made any change to default configuration of WildFly and I'm using hibernate and infinispan built-in modules. I started with basic…
mirec
  • 627
  • 1
  • 8
  • 23
3
votes
1 answer

Context Path Wildfly 8.2 Management UI

is it possible, and when how, use the Management UI of the Wildfly 8.2 with a path. Default: http://localhost:9990/console How i would like to do it: http://localhost:9990/wildfly/console Is this possible? And if it is, how? Sub-Context: i like to…
Serverfrog
  • 179
  • 2
  • 17
3
votes
0 answers

Security Java EE 7 in WildFly vs. Spring Security

Can you explain me how to implement authentication and authorization in Java EE 7 using WildFly server? Spring Security requires you do provide a database model http://springinpractice.com/2010/07/06/spring-security-database-schemas-for-mysql In…
KamilJ
  • 249
  • 3
  • 5
  • 14
3
votes
0 answers

How to compress logfiles in WildFly-8.1 using periodic-rotating-file-handler

At the moment i'm searching for a way to automatically compress/zip my logfiles, after WildFly (8.1.0.Final) "archived" them, as it was possible in older JBoss version. My configuration currently looks like this: [...]
Robert Heine
  • 1,820
  • 4
  • 29
  • 61
3
votes
1 answer

Hibernate with jpa not creating tables automatically in wildfly

I am having a project in which i have used jpa+hibernate. I am having a persistence.xml file and want it to create the tables in the database automatically.I have specified all the properties correctly. In the log it shows all the sql statements but…
user3588548
  • 45
  • 1
  • 6
3
votes
1 answer

Wildfly 8, problems with UriInfo context on async method

I'm having problems converting one method to async. I'm using wildfly 8.2.0, and this method works just fine: @GET @Path("externalCallback") @Produces("text/html") public Response authorize(@Context UriInfo uriInfo, @QueryParam(value = …
pedro
  • 31
  • 3
3
votes
1 answer

Wildfly 8 Unexpected element '{urn:jboss:domain:web:1.1}subsystem'

I'm getting below error when I start Keycloak service: 0:09:08,028 INFO [org.jboss.modules] (main) JBoss Modules version 1.3.3.Final 00:09:08,268 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.2.Final 00:09:08,348 INFO [org.jboss.as] (MSC…
Passionate Engineer
  • 10,034
  • 26
  • 96
  • 168
3
votes
2 answers

"Destination is mandatory" when mixing annotations and deployment descritors

i'm trying to define a message driven bean with annotations and deployment descriptors on wildfly 8.2.0-Final . I want to declare the static parts of the configuration with annotations, variable parts with xml deployment descriptors. When deploying…
user2706510
  • 141
  • 1
  • 9
3
votes
2 answers

Using custom JPA/Hibernate provider in a war file in Wildfly 8.1

The JPA/Hibernate provider is bundled within my application, but I'm having trouble when deploying it to wildfly 8.1. Namely I'm using an OSS project called OpenXava, which is bundled with its own Hibernate version. I've previously had success…
Steve Sether
  • 140
  • 2
  • 9
3
votes
1 answer

My web app works only with META-INF instead of WEB-INF including beans.xml. Why?

I am working on examples of Dependency Injection in java, and most of the documents highlights that I have to put an empty beans.xml in META-INF if it is a jar application WEB-INF if it is a web application So, I use war type packaging but, my…
quartaela
  • 2,579
  • 16
  • 63
  • 99