JAX-WS RI & DIME
Oliver Treichel wrote a DIME extension for JAX-WS RI and hosted it on JAX-WS commons. His usecase is to interoperate with MS Soap Toolkit 3.0 and it supports only DIME(not MTOM). Once again, it shows JAX-WS RI is built for extensibility. Thanks to Oliver for hosting this on JAX-WS Commons so that the other users also benefit from this.
Wrapper Beans
See a simple doc/lit wrapper style web service starting from java.
package pkg;
import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.xml.ws.Endpoint;
@WebService
public class AddService {
@WebMethod(exclude=true)
public static void main(String ... args) throws Exception {
Endpoint.publish("http://localhost:8181/add", new AddService...