[jboss-as7-dev] Error in xml question
Emanuel Muckenhuber
emuckenh at redhat.com
Tue May 10 05:27:37 EDT 2011
On 05/10/2011 08:45 AM, Max Rydahl Andersen wrote:
> in an attempt to fix that quickly I tried to add an extra inet-address:
>
> <interface name="default">
> <inet-address value="192.168.3.1"/>
> <inet-address value="192.168.2.10"/>
> </interface>
This is valid from an xml standpoint - however it tries to match all
criteria, however you can try something like this:
<interface name="default">
<any>
<inet-address value="192.168.3.1"/>
<inet-address value="192.168.2.10"/>
</any>
</interface>
More information about the jboss-as7-dev
mailing list