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
0 answers

Enable TLS 1.2 for mail sub system on jboss wildfly

Wanted to enable tls 1.2 protocol used for email send using the jboss wildfly mail sub system. Provided tls="true" in the smtp config tag in standalone.xml file, but the server is sending the emails using tls1.1 instaed of 1.2. What settings…
SajeeshR
  • 21
  • 2
2
votes
2 answers

Wildfly migration tool from 8.2.0 to latest

i saw in https://github.com/wildfly/wildfly-server-migration/releases that we can migrate wildfly WildFly 8.2 to WildFly 17.0 in last release 1.7.0 but when i try i had this error ''' Server migration starting... ERROR Migration failed:…
sandevfares
  • 225
  • 5
  • 16
2
votes
3 answers

Upgrading from Wildfly8 to Wildfly17, Child attributes are not coming in API response

Upgrading from Wildfly-8.1.0.Final to Wildfly-17.0.1.Final class Parent { String prop1; public Parent(String prop1) { this.prop1 = prop1; } } class Child extends Child { String prop2; public Child(String prop1, String…
2
votes
0 answers

java.lang.NoSuchMethodError: com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator.getOutputContext() after upgrade wildfly

I was using wildfly8 which has jackson.core in the 2.5 version, now I was migrating to wildfly11 with the 2.9 version of the jackson.core. After upgrading the jackson dependency, I am getting the exception below. java.lang.NoSuchMethodError:…
Michu93
  • 5,058
  • 7
  • 47
  • 80
2
votes
1 answer

EJB: @Local invocation to another EAR

I'm using EJB 3.1 and Wildfly 8.2.Final Ear 1 : jar-impl with Bean1 (where I execute the lookup of Interface2) lib / jar with Interface2 Ear 2 : jar-impl with Bean2 lib / jar with Interface2 and META-INF/ejb-jar.xml I would like to…
Gaetano Piazzolla
  • 1,388
  • 1
  • 16
  • 31
2
votes
2 answers

Unable to deploy ear on Wildfly 9

I am facing un-expected issue in Wildfly server 9.0.1. some times server runs , some times it throws following error. I searched a lot, some forums saying remove the breakpoints, i tried that also, but no luck 19:05:01,953 ERROR…
2
votes
0 answers

Hibernate5 with wildfly8 (and jboss-logging)

My Problem: Hibernate-5.0.12-Final uses Jboss-Logging-3.3.1.Final but wildfly8 supplies jboss-logging-3.1.4.GA. Using 3.1.4.GA with Hibernate5 leads to a NoSuchMethodException. I'm deploying a war including Hibernate-5.0.12-Final AND…
cakl
  • 390
  • 1
  • 3
  • 13
2
votes
3 answers

IntelliJ Idea lost suddenly JBOSS management port configuration

I didn't touch any configuration file or IntelliJ IDEA setting but I just suddenly lost the HTTP management port configuration in my JBOSS WildFly 8.1 configuration. How could this have happened and where to look for a fix? I sure as heck didn't…
Steve Waters
  • 3,348
  • 9
  • 54
  • 94
2
votes
0 answers

Integrating Spring boot war inside ear along with other war's

I have created zuul proxy application using spring boot and I am able to deploy it as a spring boot and war in Wildfly server by making some changes in pom and SpringApplication class file. Structure of my ear : MyEE.ear | |__gatewayzull.war …
Abdul Razak AK
  • 405
  • 1
  • 7
  • 17
2
votes
1 answer

Wildfly 8.2 - ScriptEngineManager.getEngineFactories is empty on server startup

I am facing a weird behavior with Wildfly 8.2.1 running on Java 8 (Open JDK). I am specifically mentioning Java 8, because I did not see this issue on Java 7. While my Wildfly module is being started, I have code that loads up JavaScripts using the…
aathif
  • 156
  • 2
  • 15
2
votes
0 answers

Wildfly stopped logging

I am using Wildfly standalone. I used to check the logs in the standalone/log folder where there used to be a folder for every past day and a server.log folder for the current day. Some days ago, Wildfly just stopped logging. The information in…
fa__
  • 267
  • 5
  • 17
2
votes
2 answers

How I can access to my application after a war deployments in wildfly 8

I used to work on tomcat I try to deploy my app on wildfly 8 ,there a message said that deployment succes but I dont know how I can access to my app I used to use my app using for example : http://localhost:8080/Gnrqst/Api/enqueteurs on tomcat but…
e2rabi
  • 4,728
  • 9
  • 42
  • 69
2
votes
1 answer

Error during incremental deploy with Netbeans on WildFly app server

I'm using NetBeans version 8.1 with WildFly 8.1.0.. From WSDL file I have developed a webservice. When I try to run the webservice for the second time I got: Deployment error: Error during incremental deploy: java.io.IOException:…
Ferguson
  • 527
  • 1
  • 11
  • 29
2
votes
1 answer

Wildfly 8: are ejb remote proxy thread safe?

I have the following situation, in a client ear application there is CDI @ApplicationScoped bean which performs a remote SLSB lookup on @PostConstruct callback and caches the obtained proxy: @ApplicationScoped @Typed({ ServiceInterface.class…
landal79
  • 1,520
  • 1
  • 11
  • 26
2
votes
3 answers

What is the difference between host controller and process controller in JBoss EAP?

In JBoss EAP two separate JVM's are included for management purposes. What is the difference between HostController and ProcessController? Why do they need separate management processes?
user3442562
  • 337
  • 1
  • 6
  • 16