On Wednesday 26 May 2010 12:27:11 pm Anto Paul wrote: > Hi, > > What is the popular way to write JAX-WS SOA web services? Use wsdl2java > and use the default JAXB binding or any other way? I have seen the JAX-WS > Provider mechanism but couldn't find much resources on how to deploy such a > service. From this I guess it is not popular with CXF community.
Well, I guess it kind of depends on what technology you are putting behind your service. In most cases, doing the wsdl2java and using the JAXB beans works quite well and thus that is a very good direction to go. However, in some cases, the back ends behind the service require the actual XML and not JAXB beans. In those cases, the Provider route usually would work better as we can avoid the bouncing between xml and jaxb beans. -- Daniel Kulp [email protected] http://dankulp.com/blog
