No, not really. The dispatch stuff allows raw soap sending, but it's through the SAAJ API's, not raw streams. Possibly a Dispatch(Source) and pass it a StreamSource, but I honestly think we'll parse it into DOM and then send it. (also, that won't support attachments).
If you really need to operate that low level and find the URLConnection object annoying, you might want to look at the commons HttpClient thing: http://hc.apache.org/httpclient-3.x/ It might be a little nicer to work with. Dan On Wednesday 13 February 2008, silithus wrote: > Hello, > > I was wondering if Cxf provides client side plain XML/SOAP invocation > capabilities. > > Ideal case would be to pass SOAP messages (in form of java IO stream > for example) directly to some client-side Cxf facility which will send > it to the server, and to receive response in same form. > > This is of course with no binding used, just exchanging XML over WS. > > I am trying to avoid usage of java.net.URLConnection, perhaps Cxf has > some nice abstraction for this, javadoc didnt show any however. > > Thanks -- J. Daniel Kulp Principal Engineer, IONA [EMAIL PROTECTED] http://www.dankulp.com/blog
