I have the resource uri as /avl/leagues/leagueName
. Idea is to delete the league with the provided name in a restfull way. I tried the below but the browsers are always sending a GET
instead of the DELETE
. Any ideas why? I am using Tomcat on server side.
<form action="/avl/leagues/Cccccc" method="DELETE">
<input type="submit" value="Cancel league">
</form>