Simple Dispatch/Provider sample showing how to do dynamic service programming.
Add WebServiceContext injection and show how to access WSDL properties to do operation determination and routing
Add a set of handlers that show how to add simple headers to the message for Dispatch/Providers that work in PAYLOAD mode (only sending/receiving the body)
A sample of building up a SOAPFault within the Provider and returning that to the dynamic client.
A sample for how to add an MTOM attachment in a dynamic service? (this goes much farther than most samples)
top down development sample. given a reasonable WSDL (Pick an interop wsdl from http://mssoapinterop.org/ilab/), generate an endpoint and client using the tools.
A sample for how to generate the necessary server side code and package it up (similar to 1.)
A sample for how to generate the necessary client code and package it up
throw in MTOM and SOAP 1.2 toggles
bottom up development sample. build up a service (and client) starting from Java.
Given a simple schema, generate the JAXB artifacts using xjc.
With the beans in hand, write the service implementation and add annotations to make a Web Service.
Now take the JAXB beans and write a Dispatch client (that uses JAXB directly) to interact with it.
Addressing sample
Maybe the client asks the endpoint for an EPR and then uses that to target a service request? creating an EPR to represent a shopping cart instance is a simplt example