0

i am trying to test my app which has to get connected to my machine for backend java webservices running on jboss server. i have configured my jboss server to enable outer network to access the backend services.

    <interface name="unsecure">
        <inet-address value="${jboss.bind.address.unsecure:192.168.42.219}"/>
    </interface>

everything worked when i had static ip address 192.168.42.219 , but admin says the machine can only have dynamic ips, and no more static ips allocated. now i am stuck; is there way i can test my android app with the back end services which has dynamic ips

pappu_kutty
  • 2,378
  • 8
  • 49
  • 93

1 Answers1

0

You can do this:

<interfaces>
    <interface name="public">
        <any-address/>
    </interface>
</interfaces>
Prerak Sola
  • 9,517
  • 7
  • 36
  • 67