XFireHome DocumentationJavadocs QuicklinksAegis Binding DevelopersDeveloper Space |
XFire now has a JAX-WS module. Currently we have just done an Early Access release as part of 1.0. There are many things which are working, but many things which we need to work on yet - including passing the TCK!
If you are interested in participating or testing, check out the xfire-jaxws module in CVS. Generating ArtifactsArtifacts can be generated using XFire's WsGenTask: <taskdef name="wsgen" classname="org.codehaus.xfire.gen.WsGenTask" classpathref="maven.test.classpath"/> <wsgen outputDirectory="${basedir}/target/test-services" wsdl="${basedir}/src/wsdl/echo.wsdl" package="com.acme.echo" profile="org.codehaus.xfire.jaxws.gen.JAXWSProfile"/> Publishing an Endpointimport javax.xml.ws.Endpoint; ... Endpoint.publish("http://localhost:8191/Echo", new EchoImpl()); |