Questions tagged [wildfly]

WildFly, formerly known as JBoss Application Server, is an open source (LGPL) application server that implements the latest enterprise Java standards.

WildFly is written in Java and as such is usable on any operating system that supports Java.

WildFly was originally developed by JBoss Inc. which was acquired by Red Hat in 2006. It is licensed under the terms of the GNU Lesser General Public License. WildFly is free and open source software.

The renaming to WildFly was done to reduce confusion. The renaming only affects the JBoss Application Server project. The JBoss Community or the Red Hat JBoss product line (with JBoss Enterprise Application Platform) all retain their names. See also the tag.

For further information, visit the WildFly website.

6512 questions
2
votes
0 answers

can't run wildfly 9.0.2 from netbeans 8.1 under Windows 8.1

I can't start my Wildfly server in Netbeans. I am running Windows 8.1, WildFly 9.0.2 Final, Netbeans 8.1. I get the error: WildFly Application Server start failed. Check whether the standalone.bat script is executable. The server does not…
2
votes
1 answer

WildFly Error while running application --java.lang.ClassNotFoundException: javax.naming.InitialContext

I'm using JSPs and WildFly 9.0.2.Final with the following conditions: A JSP file (test.jsp) is accessing Test.java file. Test.java file is part of testclient.jar and has been deployed as a module. test.jsp file is part of Test.ear and has been…
Kamal Vijay
  • 47
  • 1
  • 13
2
votes
1 answer

Parameter-Read-Timeout in Wildfly 9.0.1.Final

We have stumbled accross some odd (currently non-reproducable) behaviour in the JDK8_74/Wildfly 9.0.1.Final. Upon parsing the parameters of a post-request the worker thread starts an infinite-loop into the native method PollArrayWrapper.poll0(long,…
Jonathan
  • 2,698
  • 24
  • 37
2
votes
1 answer

Create truststore for StartSSL Certificate

I'm trying to create a truststore from StartSSL certificates to enable http2 in Wildfly 10. So far I have tried this script and the instructions in this link. So I executed the commands below: wget http://www.startssl.com/certs/ca.cr keytool -import…
2
votes
1 answer

Object stored in session will not match same class after redeploy of project

I have two classes Stream and Lake that extend WaterBody. The Stream or Lake are stored in the session managed by Apache Shiro 1.2.4 to be used later. WaterBody lake = new Lake(); session.setAttribute("water", lake);` And retrieve it by…
Chad Marmon
  • 2,763
  • 1
  • 13
  • 11
2
votes
1 answer

Debugging web containers in IntelliJ

When I add various servers (Wildfly/Tomcat) run/debug configurations I can attach theirs source code in application servers configuration window. I would expect this source can be browsed while debugging. Unfortunatelly it can't: I want to trace…
Artur Owczarek
  • 1,146
  • 1
  • 11
  • 22
2
votes
1 answer

Where is Wildfly 9.0.2.Final BOM?

This builds: org.wildfly.bom jboss-javaee-7.0-with-tools 8.2.1.Final
guest
  • 1,696
  • 4
  • 20
  • 31
2
votes
1 answer

How can i intergrating a website with Optaplanner (html,javascript,php)?

Im developing a scheduling system that the user must be able to go online login to the website and feed schedules in pdf that will be received by optaplanner which will schedule the resources and return a grid that the user will be able to interact…
Chrisb
  • 23
  • 3
2
votes
0 answers

How to shutdown Wildfly gracefully without getting HTTP404?

We have set the default error of our host to 503, therefore our external systems get a "503 Service Unavailable" during deployment. This is interpreted just like as the service was not running and the request is retried. This works as intended. The…
Martin Rauscher
  • 1,700
  • 1
  • 14
  • 20
2
votes
1 answer

Wildfly http-remoting between two installations on one machine fails

We have two applications "A" and "B" running in a seperate Wildfly 10. Application "A" calls services in "B" with http-remoting. I use an outbound connection/binding that is configured via jboss-ejb-client.xml. Everything works fine so far, when "A"…
Marcus Schulz
  • 123
  • 1
  • 6
2
votes
2 answers

MDB Listener for inbound JCA adapter doesn't start in WildFly

Does somebody managed to deploy in WildFly (9.0.2 or 10.0) a MDB bean which listening for standalone JCA adapter? I've just created an inbound JCA adapter (using ironjacamar-1.2.6) and deployed it on WildFly. Like this: @Activation(messageListeners…
Maxim Karavaev
  • 186
  • 1
  • 9
2
votes
1 answer

How to prevent HTTP 404 during deployment of ear in Wildfly/Jboss

We're using WildFly 10 as our application server and deploy via Docker (deployment in WF is ordinary hotdeployment). We're not using WildFly's clustering mechanisms but simply have load-balancers (HAProxys) in front. The problem is that WF opens its…
Martin Rauscher
  • 1,700
  • 1
  • 14
  • 20
2
votes
2 answers

Java Rest Api returns 404

I'm trying to create a restful service in my Java Application. So far i got a POJO, a Entitymanagement Class, a "Wrapper" and a Class to access the Data via Rest. I'm using a wildfly 10 and didn't add any dependencies (except for the…
Zanidd
  • 133
  • 13
2
votes
1 answer

Unable to execute JPA schema: service jboss.persistenceunit

I have an Entreprise Application Project EAR : ( WAR + JAR EJB ) when i deploy on Wildfly The EJB Project separately , i don't have any persistance problem but when i deploy the Ear I get the following error: 21:13:24,101 ERROR…
2
votes
2 answers

CDI producer for EJB

I'm trying to use a POJO as CDI producer for injecting the right EJB but I get org.jboss.weld.exceptions.UnsatisfiedResolutionException: WELD-001308. This is my producer POJO public class STGatewayUtilProducer { @Produces @Chosen public…
Marco Stramezzi
  • 2,143
  • 4
  • 17
  • 37