...
- Find the port number from Tomcat 8 app server configured in Eclipse.
OR - Open server.xml from the path <Tomcat-Installed-Folder>/conf/server.xml
Find the <Connector> element with the protocol attribute set to value containing 'http' and see the value assigned for the port attribute. See the following sample
snippet:
Code Block language xml <Connector connectionTimeout="20000" port="7005" protocol="HTTP/1.1" redirectPort="8443"/>
...