jboss « URL « JSP-Servlet Q&A





1. what is the URL for my servlet.war?    stackoverflow.com

Hey , I am new to servlet and jboss, I just deploy my servlet on jboss 4.2 .jboss console shows me it is deployed successfully my web.xml contain

<display-name>Notification_Auth_server_simulator</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
   <description></description>
 ...

2. Modify the url of the web application with jboss 4.2.3    stackoverflow.com

i'm need to changed or hide the url of my web application deploy in jboss to the user because it's to long here's an example my current url is: www.example.com:8180/blazedsExample/Example/Example.html i just want ...

3. Servlet context URLs    stackoverflow.com

I deployed a war named test in the JBoss AS. When i go to browser and type the url http://localhost:8080/test, i get the login.jsp page, which is the welcome page. When ...