I have additional web services to load.  They basically are
collections of doc literal operations, so the minimum available info
is

InterceptorProvider create(Object obj, QName serviceName,
                           List<Pair<String,Pair<QName,QName>>>
listOfOpNameInQNameOutQName,
                           Map<String,URI> schemaURIToLocation)

It was easy enough to create the wsdl for this service.  There is no
annotations on the class of the passed in object, in fact it probably
is a proxy.  After creating the service, there may be other
Interceptors added (WSS4J, Logging) to the service or endpoint

Started by trying to mirror the javaws factory, but that quickly got
unwieldy because of the reliance on reflection and annotations.
Then tried creating the ...Info objects from the wsdl, but still not
getting the chain, invoker, or observer correct.

This seems like it would be a common thing.  is there an easier way of
doing this.  I can can create a DataBinding or do the
parse/execute/write in an invoker.

I'm only worried right now about running in the Servlet under SOAP11,
but will have to be support MTOM later.

Reply via email to