views:

180

answers:

2

When I deploy myWebApp.war in JBoss I can access this web application by next URL: http://localhost%3A8080/myWebApp

But I want to have next URL: http://localhost%3A8080/support/myWebApp

What shopuld I do in order to have such URL?

A: 

Can't you deploy to http://localhost%3A8080/support/ ?

Lloyd
I tried to deploy my war into jboss-5.1.0.GA\server\web\deploy\support directory:jboss-5.1.0.GA\server\web\deploy\support\myWebAppBut it does not help.
Vladimir Bezugliy
+1  A: 

Have you tried to configure the context-root?

WEB-INF/jboss-web.xml:

<jboss-web>
    <context-root>/support/myWebApp</context-root>
</jboss-web>
mafro