windows - A web application running in JBoss EAP through Eclipse cannot be accessed from another computer in the same network -


I have a web application (JSF2) in Jebus EAP via eclipse in my machine (computer 1). Computer1 is a Windows7 machine. I can run Eclipse in Computer 1 using the internal browser and chrome. But when I try to use the application from another computer (computer 2) in the same network, I get an ERR_CONNECTION_REFUSED error message.

I have noticed that the computer is listening on 1 port 8080 and computer 1 does not have a firewall.

I can ping from computer 2 to computer 2.

Any help would be great!

By default, a quick search is listening to the local interface It shows that you have to add an interface for your configuration, eg:

  & lt; Interface & gt; ... & lt; Name of interface = "any" & gt; & Lt; Any address / & gt; & Lt; / Interface & gt; & Lt; / Interface & gt;  

and then configure socket-binding-group to use it:

  & lt; Socket-binding-group name = "standard-sockets" default-interface = "any" & gt;  

Reference:


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -