Fabii
Fabii

Reputation: 3890

How to remotely deploy a war file on JBoss AS 7?

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

Answers (1)

uaarkoti
uaarkoti

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

Related Questions