2

Is there any tutorial on web for developing a simple web service(Spring framework)from scratch in ibm rad 7.5?

abson
  • 8,812
  • 16
  • 49
  • 68

2 Answers2

3

See Which framework is better CXF or Spring-WS?

Tutorials: Spring WS

Apache CFX

Community
  • 1
  • 1
Bence Olah
  • 659
  • 5
  • 10
0

There are a lot of tutorials on the Spring site for Spring Web Services, especially since they just came out with v 2.0 today. I'm not aware of any that deal with a specific IDE environment, unless its maybe the new Spring flavor of Eclipse they've released, STS. One thing to keep in mind is that Spring web services are "contract first", so you have to create all your XML schemas for your service data structures, vs the code first that a lot of us are used to using Jax-WS, though there are many that say that contract first is THE way to go, for a lot of reasons.

YMMV

mezmo
  • 2,401
  • 20
  • 22