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

Undertow virtual host omits default application context

I have two domains pointing to two deployments in the same Wildfly instance. My goal is, typing one or another in the browser, the server redirects to the specific .war file. Currently, my configuration at standalone.xml is:
elias
  • 15,010
  • 4
  • 40
  • 65
1
vote
1 answer

How to deploy DocDokuPLM project on JBoss Wildfly10?

I have cloned the docdoku-plm from this repository https://github.com/docdoku/docdoku-plm/tree/dev I build this project but i don't know what i have to deploy in my server , i checked in pom.xml and they have given packaging as pom After i build the…
kavyansh
  • 80
  • 7
1
vote
1 answer

Create a file link on the fly in wildfly

I have some questions about Wildfly deployment 1.An ear, when deployed in wildfly, is extracted within standalone/tmp/vfs/deployment/ directory. Can I place a file there manually and still access it from web. (I can check it, but as of now I do not…
Sudipta Roy
  • 740
  • 1
  • 9
  • 29
1
vote
1 answer

Message driven bean not receiving any messages

My message driven bean is not receiving any messages, though I can see that messages has been sent to the queue. The EE container is WildFly 10.1.0.Final and I'm using the embedded Apache ActiveMQ Artemis. Sending messages to the queue is working…
1
vote
0 answers

Drools 6.3.0: Old ZiPKieModules remain in the heap after upgrading (executing scanNow in kiescanner JMX bean)

We are using drools 6.3.0 and implemented our kiemodule as a deployable maven artifact (kjar). Our application uses this kiemodule and runs in Wildfly-10. In production, newer version of the kiemodule are automatically detected and loaded in the…
Kim Zeevaarders
  • 732
  • 1
  • 7
  • 21
1
vote
1 answer

POST rest service not accessible from Angular 5 when deployed on wildFly 10

Rest services implemented using Spring boot and secured with Spring security is deployed on wildFly 10. Angular application is on NodeJS. The application works when deployed on Tomcat. When deployed on Wildfly get services are working but for post…
1
vote
1 answer

Bean name is ambiguous when adding a new dependency

I added this picketlink dependency in my pom file : org.picketlink picketlink 2.7.1.Final I am getting this error…
Purple Haze
  • 530
  • 7
  • 22
1
vote
1 answer

Using wildfly CLI can I increase the transaction timeout at application level?

I know that using CLI interface I can increase the default transaction tiemout /subsystem=transactions:write-attribute(name=default-timeout,value=500). However, I would wish to do this for a specific session bean method of my deployment. Is this…
Marinos An
  • 9,481
  • 6
  • 63
  • 96
1
vote
0 answers

request.getRemoteAddr(); returns 127.0.0.1 in jboss6 and in wildfly10 it returns actual remote ip

I am migrating jboss6 to wildfly10, somewhere in code i am checking request.getRemoteAddr(); in jboss6 it returns 127.0.0.1, but in wildfly10 it returns the actual remote ip of client. But i want to know the logic behind that, or achive the same in…
Pavan Patidar
  • 363
  • 1
  • 2
  • 10
1
vote
1 answer

wildfly 10 multiple instances (offsets) but one listener port

I have issues with port offsets I am using locally installed wildfly 10 without any explicit configs. The thing is, once I deploy three different war files with three different port offsets, the latest instance/port accepts all the requests for all…
user9497598
1
vote
1 answer

How to build a plugin architecture using CDI - I'm using Wildfly 10

I want to build a JEE plugin based architecture. The main idea is do something similar to what eclipse is, but in the context of JEE. My goal is to have a minimum of modules as the core, and allow others modules extend its functionality. To this, I…
adrz1
  • 67
  • 7
1
vote
1 answer

Proxy Configuration for Liferay Portal CE 7

I have a question about the proxy configuration for Liferay Portal 7 CE. I have searched for quite a while, but haven’t found anything really helpful on the subject. There is already a question here on stackoverflow related to Liferay’s proxy…
fkdz
  • 11
  • 2
1
vote
1 answer

What is difference between invalid and invalidated session

How sessions become invalid? Invalidated session is an invalid session? What is difference between invalid and invalidated session? Why invalid session is not null?
user3311231
  • 33
  • 1
  • 8
1
vote
0 answers

Wildfly issue or bug with rerendering composite component - NoSuchMethodException io.undertow.servlet.spec.PartImp.()

I have a problem with using a composite component. When the component needs to be rerendered (because i have panels which are shown / hidden based on a user action) I got following error. (He wants to restore a class by creating a new instance of it…
scarvy
  • 11
  • 2
1
vote
1 answer

Can't run two standalone instances on one server that use local Infinispan containers

It seems I am unable to run two standalone servers on one server, for an application that uses local Infinispan containers. This fails because both instances will start up the same default local Infinispan cache containers, and one tries to register…