• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

How the JAX-WS internally Works

 
Ranch Hand
Posts: 42
Hibernate Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Java Ranchers,

I am learning web service using jax-ws . At the client side of webservice we use wsimport tool that generates stub/proxy . We call methods on the proxy and internally it handles things like remote web method invocation , converting request into a SOAP message etc.

And when developing a web service we just use annotation @WebService and it all does the magic of exposing a class as a web service. After deploying the application on glassfish server the WSDL is also generated. I read somewhere that it is the glassfish that generates the WSDL. Does that mean glassfish implements all the annotations in javax.jws package.
Who does the work of translating a soap request back to a local method call at web service side.
How the SOAP message converts to Java Objects. and how the SOAP message transferred via HTTP.


Regards,
Ram.
 
Getting married means "We're in love, so let's tell the police!" - and invite this tiny ad to the wedding:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic