Mohammed
Mohammed

Reputation:

How can I get started creating a Java web service?

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?

Upvotes: 1

Views: 147

Answers (3)

natch3z
natch3z

Reputation: 1243

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

Upvotes: 0

Jan Eerdekens
Jan Eerdekens

Reputation:

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

Upvotes: 0

Jon Skeet
Jon Skeet

Reputation: 1503439

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

Upvotes: 1

Related Questions