We are using a "Java first" approach. This means we generate our Java classes, and then use the web services framework to dynamically generate WSDL from those classes. The alternative is "WSDL First", where you use tools to generate Java stub code from the WSDL and XSD.
If you like itthe Java-first approach, I can recommend you CXF as a reliable framework for quick creation of web serviceswhich . It works finewell.
For now I have/had 3 issues with CXF:
One of pitfall that me wet was a data binding. Standard JAXB data binding works only in simple cases without additional tuning. Because of that we decided switch to native CXF data binding Aegis.
Minor
A minor but annoying issue is using Collection exists with the use of Collections in a POJO class that was classe exposed as a web service. Classes that you plan to put into Collections must implement Comparable interface otherwise you'll get a strange runtime exception.
You can't have both CXF and it's predecessor XFire library in your classpath. Not sure that it's important for you, but it can be sufficient for an upgrade from XFire to CXF.
And my last point that isn't directly related to CXF. If you plan to call web services throw through Mule 2.x ESB (as we are) you can find that it's not as easy as it was with Mule 1.x and XFire.
Update: New issue that you can met meet calling WS throw the CXF API. If your WS is shielded by HTTP basic authentication (i.e. username and password) and you call WS using a dynamic proxy, you most probably met will get a 401 error (error authentication)authentication challenge). Workaround described here.
Regarding Spring WS, AFAIK it's wsdl first approach. If you like it, possible it's your case.
