Reputation: 1452
I'd like to learn to use web services in java, but I can't figure out how to get started.
Are there any websites which could teach me these concepts, particularly those which include example code?
Upvotes: 0
Views: 196
Reputation: 3679
In addition, I would recommend you getting and at least scanning through JSR-224 (Java API for XML-Based Web Services), which is de facto API for building Web Services in Java. It is very technical document, but might help you understanding on how to use one or another feature of Java Web Services. As it comes to implementation, you have a choice of multiple frameworks. One of them - Apache CXF - is mentioned in other comments along with links to the tutorials.
Upvotes: 1
Reputation: 2289
Try this JAX-WS hello world example to understand the basic of how web service works in Java.
Upvotes: 3