We have the following situation:
- We have a SOAP WebService that is implemented using JBossWS. It is an EJB inside an EJB JAR inside an EAR.
- We have set up a second dedicated server with a dedicated port inside the undertow subsystem of Wildfly.
- We want to deploy the SOAP WebService only on the dedicated server/port not the default server of the undertow subsystem. For normal WAR deployments we could achieve this using
<server-instance>
inWEB-INF/jboss-web.xml
. We have not found a way to make this work for an EJB JAR inside and EAR. This this possible? If so where doesjboss-web.xml
need to be placed?