Celtix User APIs

Uses of Interface
org.objectweb.celtix.context.OutputStreamMessageContext

Packages that use OutputStreamMessageContext
org.objectweb.celtix.bindings   
org.objectweb.celtix.handlers   
org.objectweb.celtix.transports   
 

Uses of OutputStreamMessageContext in org.objectweb.celtix.bindings
 

Methods in org.objectweb.celtix.bindings that return OutputStreamMessageContext
protected  OutputStreamMessageContext AbstractClientBinding.createOutputStreamContext(javax.xml.ws.handler.MessageContext bindingContext)
           
protected  OutputStreamMessageContext AbstractServerBinding.createOutputStreamContext(ServerTransport t, javax.xml.ws.handler.MessageContext bindingContext)
           
protected  OutputStreamMessageContext AbstractServerBinding.processResponse(ServerTransport st, ObjectMessageContext objectContext, javax.xml.ws.handler.MessageContext replyContext, boolean isOneWay)
           
 

Methods in org.objectweb.celtix.bindings with parameters of type OutputStreamMessageContext
protected  void AbstractClientBinding.finalPrepareOutputStreamContext(javax.xml.ws.handler.MessageContext bindingContext, OutputStreamMessageContext ostreamContext)
           
protected  void AbstractServerBinding.finalPrepareOutputStreamContext(ServerTransport t, javax.xml.ws.handler.MessageContext bindingContext, OutputStreamMessageContext ostreamContext)
           
protected  void AbstractServerBinding.postDispatch(ServerTransport t, javax.xml.ws.handler.MessageContext bindingContext, OutputStreamMessageContext ostreamContext)
           
protected abstract  void AbstractServerBinding.write(javax.xml.ws.handler.MessageContext replyCtx, OutputStreamMessageContext outCtx)
           
protected abstract  void AbstractClientBinding.write(javax.xml.ws.handler.MessageContext context, OutputStreamMessageContext outCtx)
           
 

Uses of OutputStreamMessageContext in org.objectweb.celtix.handlers
 

Methods in org.objectweb.celtix.handlers with parameters of type OutputStreamMessageContext
 boolean HandlerInvoker.invokeStreamHandlers(OutputStreamMessageContext context)
          Invoke the stream level handlers with an OutputStream.
 

Uses of OutputStreamMessageContext in org.objectweb.celtix.transports
 

Methods in org.objectweb.celtix.transports that return OutputStreamMessageContext
 OutputStreamMessageContext Transport.createOutputStreamContext(javax.xml.ws.handler.MessageContext context)
          Create a context from which an OutputStream for the Transport can be obtained.
 

Methods in org.objectweb.celtix.transports with parameters of type OutputStreamMessageContext
 void Transport.finalPrepareOutputStreamContext(OutputStreamMessageContext context)
          Prepare the OutputStream context before writing.
 InputStreamMessageContext ClientTransport.invoke(OutputStreamMessageContext context)
          invoke on a two-way operation on the remote service.
 Future<InputStreamMessageContext> ClientTransport.invokeAsync(OutputStreamMessageContext context, Executor executor)
          invoke on a two-way operation on the remote service asyncronously.
 void ClientTransport.invokeOneway(OutputStreamMessageContext context)
          invoke on a oneway operation on a remote service.
 void ServerTransport.postDispatch(javax.xml.ws.handler.MessageContext bindingContext, OutputStreamMessageContext context)
          Do the post dispatch task here.
 


Celtix User APIs