Ad
How Can I Browse My Tomcat Localhost From Another Computer On The Network?
I'm an IIS guy and know its as simple as just using the http://[computername]/path to webapp.. however, I can't seem to figure out how to make this possible for a JSP application I'm writing that runs under Tomcat. Is there a configuration setting I need to set somewhere?
Ad
Answer
You need to use the Port of Tomcat which is by default 8080. So you might want to access you localhost on machine A from machine B as http://A:8080/YourProject And Remember Unlike IIS , it is case sensitive.
Ad
source: stackoverflow.com
Related Questions
- → How to resolve "Uncaught TypeError: Failed to construct 'Comment': Please use the 'new' operat....." with respect to React JS?
- → JSPerf, For Loop vs While Loop
- → submitting button without clicking on it
- → How to pass an Array in a <script> from a JSP page to a Servlet
- → ES6 errors when bundling (jspm) a React/jsx app
- → Use html2canvas with jsPDF to save a PDF of a page
- → Using System.js, why do changes I make to a module in one file persist in another?
- → How to use foreach in jstl + javascript?
- → Using webpack and jspm and external dependencies
- → How to read the value printing inside a jsp (as a custom HTML tag) onChange event in JS
- → Java UTF-8 special characters to JavaScript
- → Unable to update value in a form and send to next jsp page
- → Angular 2 + JSPM: not working as expected
Ad