12

I'm was looking for a tutorial for JAX-WS to use with Eclipse. What I was looking for specifically was some that used a top down approach where you have a url to a wsdl file and run wsgen to generate your stubs.

Thank you!

James Drinkard
  • 15,342
  • 16
  • 114
  • 137
  • http://stackoverflow.com/questions/5753093/web-services-using-jdk-1-6/5753117#5753117 – jmj Oct 10 '11 at 13:38

2 Answers2

11

This was a good starter tutorial, all the source code was provided and the steps were well documented. JAX-WS Five Minute Tutorial (Hello World)

This is another simple one that I found: JAX-WS Hello World Example – Document Style The Mkyong site also has some other interesting tutorials that follow this, including How to Trace SOAP Messages in Eclipse that I may try. It's for watching the soap messages going back and forth.

Then I found this one and as the author: Paul Taylor states, he couldn't find anything decent for a web services tutorial either that wasn't Netbeans based. JAX-WS Tutorial Paul Taylor

Then more tutorials:

  1. Java TM API for XML Web Services
  2. Web service with JAX-WS in Eclipse
  3. Consuming Web service using Web Service Client
  4. Create JAX-WS Service in 5 Minutes

This last one was a big help as I have to do something very similar at work.

Finally, a web service example.

Joe Mastey
  • 26,809
  • 13
  • 80
  • 104
James Drinkard
  • 15,342
  • 16
  • 114
  • 137
  • 2
    Many thanks. Don't let the "closed as not constructive" idiocy get you down - check out the view count! – Ed Staub Nov 25 '12 at 15:50
  • I understand the purpose behind it, so it's not a problem. SO has been a great help to me, so when I can, I try to reciprocate! – James Drinkard Dec 01 '12 at 22:29
1

http://download.oracle.com/javaee/6/tutorial/doc/bnayn.html

Mister Smith
  • 27,417
  • 21
  • 110
  • 193