The components of the HTTP URL
http://localhost:8080/examples/servlets/index.html
| Part | Description |
| http: | protocol |
| localhost | host |
| :8080 | port |
| examples/servlets | path |
| index.html | filename |
Some of the URLs require Security access.
To gain access update C:\Apache\Tomcat\conf\tomcat-users.xml to contain a user and password for Manager.
<role rolename="manager" />
<user username="myUser" password="myPassword" roles="manager" />
| URL | Description |
| http://localhost:8080/ | Default page |