Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best book/ tutorial to learn/implement web services using java, xml and spring [closed]

Tags:

java

spring

xml

I am a newbie to web-services. What is a good way to learn web-services implementation using java, xml and spring? Are there any good books which cover this topic in good width? Or, are there any online resources, tutorials, etc.?

Also, what would be good projects to understand this hands-on?

Any recommendations>?

like image 289
Ankush Avatar asked May 05 '09 21:05

Ankush


2 Answers

I originally learned Web Services concepts without books, so my opinions may be biased, but I don't think books would help much in the beginning. Once you get to some intermediate state where you need to study security, SOA, etc, maybe books would help.

I needed to get an intern up to speed on Web Services, so I made him implement a two-player game of Reversi using Web Services as the business logic layer with SQL Server underneath it. The UI layer was a desktop executable hitting the service.

You can do something like that using Axis2 and Swing. Once you've built the first UI, you can then try to consume the same service using .NET/Ruby/jQuery or something too to demonstrate the interoperability.

like image 94
Eugene Yokota Avatar answered Oct 16 '22 12:10

Eugene Yokota


Spring in Action Second Edition Cover

Spring in Action Second Edition has a fair bit of information about using Spring and web services with examples. It worked for me anyway.

like image 3
edwardsmatt Avatar answered Oct 16 '22 11:10

edwardsmatt