java - Test Android app with server (laptop) having dynamic ip -
i trying test app has connected machine backend java webservices running on jboss server. have configured jboss server enable outer network access backend services.
<interface name="unsecure"> <inet-address value="${jboss.bind.address.unsecure:192.168.42.219}"/> </interface> everything worked when had static ip address 192.168.42.219 , admin says machine can have dynamic ips, , no more static ips allocated. stuck; there way can test android app end services has dynamic ips
you can this:
<interfaces> <interface name="public"> <any-address/> </interface> </interfaces>
Comments
Post a Comment