views:

77

answers:

3

I want to create a simple hello world java web service.

What tools I need to get started?

What do I need to know to get started deploying this in Tomcat?

+1  A: 

There are plenty of Tomcat + axis tutorials. For example, this blog post seems to do a reasonable job.

Jon Skeet
A: 

In JEE5 you can just annotate POJOs with annotations to create webservices: http://www.netbeans.org/kb/55/websvc-jax-ws.html

A: 

I read this tutorial when I stared to learn how to build and consume Java Web Service http://www.netbeans.org/kb/60/websvc/jax-ws.html

natch3z