Does anyone know how to allow the launch and launch of IIS 7 and JBoss AS 7 applications on a Windows 2008 Server? I have VPS Windows 2008, I have ASP.NET websites and applications through IIS through port 80, by default. Now I want to host some JBoss Seam web applications (and RESTEasy web services) that I probably need to do on a different port (for example, 8080).
I changed the standalone.xml configuration file in JBoss AS in a stand-alone configuration folder so that the socket binding name "http" runs from port 8080. However, the server does not respond when I try to request my applications running on JBoss AS from browsers on other machines for outside the server, for example:
www.notmyrealdomain.com:8080
... does not return any response. When i use
local: 8080
... to view the server itself, I can download the web page and applications from JBoss AS in order. So, of course, there is either a Windows setup or a JBoss AS setup that needs a change to get this to work.
Any help is greatly appreciated.
source share