I 'm to implement a webservice in JBoss5 running on Java 6. According to the JBoss Documentation, the choices are either use the JBoss native implementation, CXF or metro. As native would not need any additional libraries (CXF would pull in Spring?) I thought that this would be the first choice.
The WS contract is given in an WSDL, so I want to generate the stubs out of it. But the JBoss tools bark at the WSDL, whereas CXF wsdl2java happily generates sources. Can I use these sources and not depend on CXF but use the native JBoss WS stack? The annotations in the generated classes even point to javax stuff (which could be a 4. choice, as I can create a WS with java 6 without additional dependencies?)
How do I configure the webservice? Do I still need a web.xml to define some servlet? What maven dependencies do I need?
Sorry for all this apparently silly questions, but I did a lot of searching and reading but the more I read the more confused I 'm. JBoss documentation is either all about stating with java beans and annotations and / or ant, the public jboss maven repo is a mess (some WS stuff is under jboss, other under org.jboss.jbossws and even other artefacts under org.jboss.ws ..)
Any pointer to howtos and or documentation is greatly welcome.