vote up 0 vote down star

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?

flag

29% accept rate

2 Answers

vote up 1 vote down

Have you tried to configure the context-root?

WEB-INF/jboss-web.xml:

<jboss-web>
    <context-root>/support/myWebApp</context-root>
</jboss-web>
link|flag
vote up 0 vote down

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

link|flag
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\myWebApp But it does not help. – Vladimir Bezugliy Sep 10 at 9:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.