javanetwork-programmingmobilejbossjboss-eap-6

Reach JBoss EAP 6 server in local network


I have a Java application running on JBoss EAP 6 which I can "hit" from mobile app on chrome using urls like: 127.0.0.1:8280/myAwesomeJavaApp/coolService ... so when I package the app I am using urls like this

192.168.1.64:8280/myAwesomeJavaApp/coolService //this is not working

192.168.1.64 // this gets me to my localhost

(connected to WiFi (testing purposes))

I can access all other Apache web apps in my localhost , but can't consume JBoss EAP 6 services.

What am I missing ?


Solution

  • Start Jboss server with -b 0.0.0.0

    ./standalone.sh -b.0.0.0.0
    

    How to share jboss over network