If you have a war file named fibo.war, then your url will access that war file (and the
welcome page defined in the web.xml).
If you have a war filke named fibonacci.war, and want to use your url, then add a
jboss-web.xml file to the WEB-INF directory. It should contain:
<?xml version="1.0" encoding="UTF-8"?>
| <jboss-web>
| <context-root>/fibo</context-root>
| </jboss-web>
Oh, and the fibonacci.war file is located in the server/default/deploy directory.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975924#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...