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

1040 questions
8
votes
1 answer

Deploying Java @Schedule with Wildfly 8.1.0 Final

I am trying to test the @Schedule annotation with the following code: import javax.ejb.Schedule; import javax.ejb.Singleton; import javax.ejb.Startup; @Singleton @Startup public class TimerTest { public TimerTest() { } …
cardori
  • 235
  • 5
  • 13
8
votes
1 answer

ContainerResponseFilter not working

In wildfly 8.1 with REST services, I wanted to implement CORS ContainerRequestFilter and ContainerResponseFilter. My request filter is working properly but ContainerResponseFilter never gets loaded nor called package org.test.rest; import…
Cerber
  • 2,649
  • 3
  • 23
  • 40
8
votes
5 answers

Wildfly Remote EJB Invocation

I am trying to invoke a stateless EJB, deployed on a remote server. I can invoke the bean from my local JBoss environment but when I change the remote.connection.default.host to the remote machine's host, my client code does not work. This is my…
Jack Ant
  • 181
  • 2
  • 3
  • 6
7
votes
2 answers

MaxPermSize Warning in Eclipse WildFly 8 and Java 8

i have upgraded to WildFly 8.2.0 from JBoss 7 and to Java 8 from Java 7. I get everytime I stop the server in Eclipse this warning: Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0 If I…
Johnny2012
  • 1,402
  • 8
  • 31
  • 45
7
votes
2 answers

How to activate secure cookies in Wildfly?

I’m trying to add the secure flag to my cookies for a web app in Wildfly (version 8.2). In the documentation page of the servlet container settings you’ll find that the children of the “servlet-container”…
gurghet
  • 7,361
  • 4
  • 33
  • 59
7
votes
1 answer

How to view and edit Infinispan cached data remotely

I have an Infinispan cache embedded in a WildFly 8.2 server. I added to standalone.xml inside :
Sujith PS
  • 4,447
  • 3
  • 29
  • 59
7
votes
1 answer

Hot deploying resources in war libs

Using Wildfly 8.2.0.Final, Windows 7, JBoss Developer Studio 8.0.2.GA. We're trying to split our war into modules. Seems like the most natural way to do this is by relying on web fragments + JSF/Facelet ability to find resources in war/WEB-INF/lib…
Vsevolod Golovanov
  • 3,355
  • 3
  • 25
  • 59
7
votes
1 answer

IntelliJ & Wildfly - hot deploy webapp

I am using IntelliJ (14.0.3) and Wildfly (8). When I recompile my Java classes, hot swapping is easy and everything works just fine. However, my HTML, JS and CSS files will not hot swap for me. I am sure it is just a configuration issue and was…
el n00b
  • 1,386
  • 6
  • 21
  • 44
7
votes
1 answer

WildFly 8.2.0 - Lost connection to the server

I try the new version of WildFly: 8.2.0 (I was with the 8.1.0) on Windows 8.1 with JDK 1.8u25 So I install wildfly, add user, add WildFly to NetBeans, go to the admin console (on Firefox 34), add jdbc driver in runtime and then click on…
kwisatz
  • 1,119
  • 2
  • 13
  • 31
7
votes
2 answers

What are Best Practice Recommendations for Java EE 7 Property File Configuration?

Where does application configuration belong in modern Java EE applications? What best practice(s) recommendations do people have? By application configuration, I mean settings like connectivity settings to services on other boxes, including external…
peterl
  • 1,521
  • 3
  • 16
  • 30
7
votes
5 answers

How to configure wildfly to use EclipseLink?

i have installed wildfly 8.1 and because i have already a project configured to use EclipseLink, i have tried to configure wildfly to use it. However, it always gives the same error : at…
Seb
  • 1,108
  • 1
  • 11
  • 24
6
votes
2 answers

Increase JTA transaction timeout limit in WildFly

How can I increase JTA transaction timeout in WildFly? Can be updated in standalone.xml as well as from Admin Console right?
Danyal Sandeelo
  • 11,068
  • 6
  • 37
  • 64
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
  • 262
  • 2
  • 9
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
  • 17,763
  • 14
  • 122
  • 177
6
votes
1 answer

Wildfly SSL protocol (TLSv1.2) configuration

I would like to know the correct way of configuring the SSL protocol on wildfly. On looking at examples, I found two different ways of doing so. I want to know which one is the proper way of doing it - Adding it in the protocol section as below: …
Deb
  • 329
  • 7
  • 14
1 2
3
69 70