0

I want to remotely deploy my web app in Tomcat 7. I have added manager-gui, manager-text roles and added a user in conf/tomcat-users.xml. I checked this link out. Deploy A New Application Remotely Here they have mentioned that we must upload the war file as HTTP PUT request. How do I achieve this ? I know there are ways to remotely deploy using ANT and Maven. But they look slightly complex to me. Using <form> with method="put" did not work.

Prabhat
  • 2,261
  • 7
  • 46
  • 74

1 Answers1

0

The HTML FORM will only support GET and POST. If you want to do this via a Web Interface I think JQuery is the simplest route. Taking the time to build it into your build and deploy process is probably the best solution though.

Community
  • 1
  • 1
planetjones
  • 12,469
  • 5
  • 50
  • 51