This week's book giveaway is in the Programmer Certification forum.
We're giving away four copies of OCP Oracle Certified Professional Java SE 21 Developer Study Guide: Exam 1Z0-830 and have Jeanne Boyarsky & Scott Selikoff on-line!
See this thread for details.
  • 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

axis2

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone give a simple step by step procedure to deploy and and run a small webservice using axis 2 in either tomcat or weblogic.

I have downloaded the Axis2 Standard Binary Distribution, but the war created out of it didn't get deployed the way it is mention here: http://ws.apache.org/axis2/1_1/installationguide.html

Regards
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

but the war created out of it didn't get deployed


What does this mean? What did you do, and what did or did not happen? TellTheDetails

When I installed Axis, I simply copied the exploded webapp that came with the distribution to the Tomcat webapps directory, so I don't think there's a need to build the war file at all.
 
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi people,

why trouble with combining to install lots of various vendors (tomcat + axis) to make one thing working properly(like web services), because you can have only Sun Application Server?

regardes
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One way to deploy Your WAR with Axis 2 Web Services on Tomcat is to follow these steps:
1) Download Axis 2 WAR
2) Create, compile and pack your service into aar file. To do this, You can use QuickStart Guide
3) Copy Your aar file to /WEB-INF/services/ directory in Axis2.war
4) Change the following line in Axis2 configuration file (axis2.war/WEB-INF/conf/axis2.xml) from to . We enable REST for point 6)
5) Copy Axis2.war to Tomcat's webapps directory and start Tomcat
6) Check http://localhost:8080/axis2/services/listServices to see if Your service is deployed correctly
[ April 06, 2007: Message edited by: Lucas Zmudzinski ]
 
This is my favorite tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic