Questions tagged [wildfly-10]

WildFly, formerly known as JBoss AS, is an application server developed by Red Hat. WildFly is written in Java, and implements the Java Platform, Enterprise Edition (Java EE) 7 specification. It runs on multiple platforms. WildFly is free and open-source software, subject to the requirements of the GNU Lesser General Public License (LGPL), version 2.1.

flexible, lightweight, managed application runtime that helps you build applications in java

932 questions
2
votes
1 answer

How JavaEE application puts together the url of a RESTEasy service it can be reached via browser?

I started to play with JavaEE stuff, especially RESTEasy and I try to put together an small service packaged by maven. The service is done, ear package is created and deployed to a WildFly 10 server. No errors, but I'm not able to reach/call the…
AndrasCsanyi
  • 3,943
  • 8
  • 45
  • 77
2
votes
1 answer

Exception in thread "neo4j.FileWatcher-1" java.lang.NoClassDefFoundError: com/sun/nio/file/SensitivityWatchEventModifier

I try to use new neo4j version 3.2.1 with WildFly 10 and when I try to connect to an embedded Database created with this.gdbs = new GraphDatabaseFactory().newEmbeddedDatabase(new File(DB_PATH)) I have got this error 10:28:12,960 ERROR [stderr]…
2
votes
1 answer

Wildfly 10 Sys-log-handler printing with Byte_order_mark

I have configured a syslog-handler in WildFly-10 Standalone.xml as below
2
votes
2 answers

Charset Encoding in WildFly

All my application files were created using UTF-8 yet WildFly serves them as ISO-8859-1. So I have a few questions: does WildFly have a default charset? how does WildFly choose the encoding used to set the charset response header? what is the…
Fábio
  • 3,291
  • 5
  • 36
  • 49
2
votes
1 answer

Hibernate Infinispan 2LC : query cache and entity cache in same cache region

Using JBoss Cache, it was possible to store the entity cache and query cache in the same cache region without any issue. But once migrated to wildfly 10 (with infinispan as 2LC) , there seems to be problem. I have provided the cache region for…
ulab
  • 1,079
  • 3
  • 15
  • 45
2
votes
3 answers

Primefaces fileUpload Listener does not invoked on wildfly server

I have added primeFaces fileUpload in my code and it worked fine on webLogic 12.2 server But when I changed the server to wildFly 10.0.1 the fileUpload Listener does not invoked anymore I wondered what is the reason and searched for this issue…
2
votes
0 answers

logback not reloading logback.xml in wildfly10

When I test my application in local (without wildfly) it works. I can go to logback.xml, change some appender and then I can see the changes on lilith. When I deploy my application on wildfly it doesn't work. This is the logback.xml…
Lechucico
  • 1,914
  • 7
  • 27
  • 60
2
votes
1 answer

WildFly globally enable pretty print in development, but not in production

I'd like to globally enable JSON pretty-printing for my project on my dev machine, while leaving it off on production. What approaches could I follow?
Cec
  • 1,726
  • 3
  • 18
  • 31
2
votes
0 answers

Swagger does not recognize @Api annotation if used in ear module but swagger deployed in war

We are using Wildlfy 10 and Swagger 1.5.12 (Swagger 2.0 Spec) In our application we are deploying the contract and implementation of our webservice in our ear to ensure being able to exchange the implementation on this level. The war exposing our…
Abaddon666
  • 1,533
  • 15
  • 31
2
votes
1 answer

WildFly10 installation - cannot create user

I have a problem with installing WildFly10. In youtube tutorial here at 8:39 I cannot see "Terminate batch job Y/N?". If I go to http://localhost:8080/ I can see that my server is running. My cmd: C:\wildfly-10.1.0.Final\bin>standalone Calling…
user7833580
2
votes
1 answer

Wildfly - 10.x - WELD-001414: Bean name is ambiguous. Name csfFLOWDISCOVERYCDIHELPER resolves to beans

Server - WildFly - 10.1.0 JSF version - 2.2 Primefaces - 5.0 I am trying to deploy .war file in WildFly 10.1.0 server. Earlier I was running it on JBoss 7.1 and we had it working fine. But now when I try to deploy the application in WildFly server…
Guruprasad J Rao
  • 29,410
  • 14
  • 101
  • 200
2
votes
0 answers

JBOSS EAP vs Wildfly

I have used JBOSS application server at a high level wherein we write an EJB code and Infa team deploy. I wanted to know more about it. I read online and I have come across the terms like: Wildfly , EAP. I tried to configure JBOSS "server" in my…
CuriousMind
  • 8,301
  • 22
  • 65
  • 134
2
votes
2 answers

Wildfly 10 Start, Stop Scripts for Standalone

I am unable to stop the wildfly 10 standalone server in Linux Env. And using the following commands: start: ./standalone.sh (working fine) stop: ./jboss-cli.sh -c --command=:shutdown (Unable to stop the server) Note: Stop command is working fine…
Kiran Nunna
  • 158
  • 3
  • 8
  • 20
2
votes
0 answers

How to shutdown Wildfly 10.0 properly?

I am running Wildfly 10.0 inside Amazon AWS EC2 instance. Everything is running fine. But when I am trying to shutdown the wildfly the server, it's undeploying the deployed EAR file. I am using the below command to start and stop the…
2
votes
0 answers

How to configure jms-bridge?

Someone can help me to configure a jms-bridge between two different messages broker? In my case i have to let to communicate an activemq message broker (which is running on wildfly 10 instance) and hornetq message broker (running on wildfly 9…