405 method not allowed using Tomcat
405 method not allowed using Tomcat I am new to web development and having this issue for some time. I tried a lot of things that were suggested on SO and elsewhere, but no luck. Anyways, i'll explain what I am doing. I am trying a simple exercise where I have a simple HTML page that accepts a city name and on clicking the submit button, will show me the weather of that city. The HTML code is as below: <body> <form> <div> <label for="city">City</label> <input id="city" type="text" name="city"> </div> <div> <input id="submitButton" type="button" name="submitButton" value="Get weather!" onclick="send()"> </div> </form> <script type="text/javascript" src="CityWeather.js"></script> </body> This HTML file makes a call...