我正试图测试我的应用程序,它必须连接到我的机器上运行在jboss服务器上的后端Java web服务。我已经将jboss服务器配置为允许外部网络访问后端服务。
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:192.168.42.219}"/>
</interface>
当我有静态ip地址192.168.42.219
时,一切都工作了,但是管理员说机器只能有动态ip,不能再分配静态ip。现在我被困住了;有没有办法测试我的android应用程序的后端服务有动态ips
你可以这样做:
<interfaces>
<interface name="public">
<any-address/>
</interface>
</interfaces>