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

Redeploying on wildfly cause outofmemory: metaspace

I'm currently investigating some out of meta space issues we've been experiencing recently. One of the main culprits seems to be the loading of duplicate classes upon redeployment of a WAR. Trying it out locally, with just one of our WARS, by heap…
Martin Cassidy
  • 686
  • 1
  • 9
  • 28
5
votes
2 answers

WildFly migration, ejb issues (8.1.0.Final to 9.0.1.Final)

After deploying my application and trying to authenticate via a simple webpage (based on Apache Shiro 1.2.3, which is supplied in my EAR-file), the following exception occurs: 2015-09-07 13:17:45,265 ERROR [org.jboss.as.ejb3.invocation] (default…
Robert Heine
  • 1,820
  • 4
  • 29
  • 61
5
votes
1 answer

how to configure ssl in wildfly 8.2.0 server?

I want secure connection for my web application. So, i want to configure ssl for my wildfly 8.2.0 server. I have created and stored .keystore file in standalone/configuration folder. $ keytool -genkey -alias foo -keyalg RSA -keystore foo.keystore …
subhakar patnala
  • 319
  • 1
  • 4
  • 15
5
votes
1 answer

What are the advantages of installing JDBC Driver as a Module in WildFly

This link explains the new things about WildFly. Under the Migrating The Database Connection -> JDBC Driver the article explains about two ways of using jdbc drivers for the applications. I tried with installing it as a module and it works fine. The…
Isuru Gunawardana
  • 2,847
  • 6
  • 28
  • 60
5
votes
1 answer

Wildfly 8.2.0 Doesn't redirect to https

I have enabled https changing standalone.xml as follows:
Fab
  • 1,468
  • 1
  • 16
  • 37
5
votes
3 answers

Resteasy @FormParam returns always null

Can anyone please help me with this. I created a web service using resteasy with wildfly 8.1.0 but @FormParam always returns null. UserService.java Path("/user") @Produces(MediaType.APPLICATION_JSON) public class UserService { @POST …
blitzen12
  • 1,350
  • 3
  • 24
  • 33
5
votes
1 answer

enabling auto scanning using resteasy 3.0.10 with wildfly 8.2

I am trying to figure out what is my problem while setting up new Wildfly 8.2 server with simple restEasy 3.0.10 application. my web application is supre easy. src/main/ java/my-package/ RootApplication.java HomePageResource.java …
kamiseq
  • 593
  • 4
  • 17
5
votes
3 answers

Why JSF 2.2 takes more time partial rendering an ajax request on Wildfly

I am working on migrating a project from (JSF 1.2, Richfaces 3.3.4 running on JBoss 4.2.3) to (JSF 2.2, Richfaces 4.5 running on Wildfly 8.1.0). After partially migrating some views I found that the performance of the application using JSF 2 is…
TeFa
  • 974
  • 4
  • 15
  • 37
5
votes
1 answer

Wildfly 8.2: component.CREATE is missing

I just updated my Wildfly-8.1.0.Final installation to 8.2.0.Final and deployed my WAR application and ran into deployment error. It said ERROR [org.jboss.as.controller.management-operation] (DeploymentScanner-threads - 2) JBAS014613:…
Zhedar
  • 3,480
  • 1
  • 21
  • 44
5
votes
1 answer

Wildfly8/jBoss wraps Logback logs (Double prefix)

When Logback with Wildfly8 standalone all log messages seems to be captured by Wildfly logger: 21:13:18,808 INFO [stdout] (default task-4) 21:13:18.806 [default task-4] ERROR some.package.MyClass - Some message 21:13:18,810 INFO [stdout] (default…
PalSivertsen
  • 384
  • 2
  • 11
5
votes
1 answer

how to activate JDBC logs in wildfly

I use wildfly with EclipseLink and I want to trace SQL statements. I configured EclipseLink according to documentation, all work fine except the SQL logs. I added these properties in my persistence.xml:
Seb
  • 1,118
  • 1
  • 11
  • 25
5
votes
3 answers

Using the WildFly application server with NetBeans IDE

I was accustomed to using GlassFish server all the times. I'm migrating a Java EE application from GlassFish (4.0) to WildFly 8.1.0 final. I tried using WildFly 8.1.0 final on NetBeans 8.0 using this plugin for the server, since there was no…
Tiny
  • 27,221
  • 105
  • 339
  • 599
5
votes
3 answers

What is causing this WildFly / Undertow broken pipe error?

I keep getting the following error on a seemingly random basis from a WildFly 8.1.0.Final install running under NetBeans: 08:51:09,742 ERROR [io.undertow.request] (default task-40) Blocking request failed HttpServerExchange{ GET…
Rosswerks
  • 165
  • 1
  • 3
  • 14
5
votes
8 answers

WildFly - getting resource from WAR

I am using the following method to get a resource from WAR file in WildFly: this.getClass().getResource(relativePath) It works when the application is deployed as exploded WAR. It used to work with compressed WAR, too. Yesterday, I did a clean and…
Nikša Baldun
  • 1,854
  • 4
  • 28
  • 39
5
votes
1 answer

loading keystore file, no alias found

I'm trying to use KeyStore in order to get info from a keystore. I've generated the keystore using this command: keytool -genkey -alias server -keyalg RSA -keystore server.keystore -validity 365 taken this page. Checking its info keytool -list -v…
Radu
  • 1,044
  • 3
  • 12
  • 35