• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Remote Appln Deployment in Tomcat4

 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Guys !!!
I have been following the below attached URL to deploy a web appln on a remote tomcat server.
URL:-
http://jakarta.apache.org/tomcat/tomcat-4.0-doc/manager-howto.html
The Manager Command used was as follows :
http://175.25.3.122:8080/manager/install?path=/bar&war=jar:http://localhost/VirDir/bar.war!/

Note:-
1) References to the word 'bar' means the name given to the war file. Also, the 'Context Path'
is also given the same name
2)'VirDir'is the Virtual Directory running on Personal Web Server having path c:\InetPub\wwwroot\VirDir\
However, executing the above command throws the below exception :
"Invalid application URL was specified "

Secondly, the "war file" that needs to be deployed. How should it be created ? Would it be sufficient to create the "war file" explicitly from the dos shell using the command : jar warfile.war .(Current & all sub-folders) or would it be necessary to use the deployment tool to create the war file. Since, the deployment tool creates 2 additional files on creation of a .war file.
What should be done ???
Thanks
[ August 27, 2002: Message edited by: Sam Furtado ]
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1) You mean, the name given to the context to which you are deploying, right? It's not necessarily the name of the war file you are deploying.

2) Have you tried using the file: notation instead? You would need to ftp the file to the remote box first.
http://175.25.3.122:8080/manager/install?path=/bar&war=jar:file:/usr/local/upload/bar.war!/

By deploy tool, you mean the one that comes with JWSDP? (web services development pack?). I've deployed several apps on Tomcat using only command line jar tool.
 
Mike Curwen
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving from Servlets -> Apache/Tomcat
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic