Hi Team,
The Http-Connector for web in jboss is converted to undertow http-listener in wildfly.
Jboss:
<Connector protocol="HTTP/1.1" SSLEnabled="true"
port="${nmsas.server.port.web.https}" address="${jboss.bind.address.ssl.http,jboss.bind.address.ssl,jboss.bind.address}"
scheme="https" secure="true" />
Here address is specified as list of address
Wildfly:
<http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
<socket-binding name="http" interface="httpweb" port="${jboss.server.port.web.http:8080}"/>
Defined interface with ip's this way:
<interface name="httpweb">
<inet-address value="${nmsas.server.net.bind.address,nmsas.server.net.bind.address.http:0.0.0.0}"/>
</interface>
but inet-address will have any one IP to be picked but not all IP's
How can i give multiple inet-address .. Referred following wiki with no help.
Please let me know if any solutions/workaround is available for this.
Thanks,
Veena