Reputation: 3890
How would I go about remotely deploying a war file on JBoss Application Server 7?
I've uploaded the war file to the application server and tried using : http://[IP]:9990/[war file name ] in a browser but the path is not found.
IP: The server IP address
Upvotes: 0
Views: 974
Reputation: 3657
The URL that you need to be using is http://[IP]:8080/[war file name ]
. The port 9990 is admin port for deploying the war file but by default the application is accessible through port 8080.
Upvotes: 2