|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RpcResponse | |
---|---|
com.flat502.rox.client | Client-side API and supporting classes. |
com.flat502.rox.demo | Examples illustrating using this project. |
com.flat502.rox.marshal | Provides generic classes for marshalling and unmarshalling RPC messages. |
com.flat502.rox.marshal.xmlrpc | Provides classes for marshalling and unmarshalling XML-RPC messages. |
com.flat502.rox.server | Server-side API and supporting classes. |
Uses of RpcResponse in com.flat502.rox.client |
---|
Methods in com.flat502.rox.client with parameters of type RpcResponse | |
---|---|
void |
ResponseHandler.handleResponse(RpcCall call,
RpcResponse rsp)
Deprecated. This method is called when a successful response is received from the server. |
void |
AsynchronousResponseHandler.handleResponse(RpcCall call,
RpcResponse rsp,
RpcResponseContext context)
This method is called when a successful response is received from the server. |
Uses of RpcResponse in com.flat502.rox.demo |
---|
Methods in com.flat502.rox.demo that return RpcResponse | |
---|---|
RpcResponse |
SyncServerDemo.handleRequest(RpcCall call,
RpcCallContext context)
|
RpcResponse |
SSLServerDemo.handleRequest(RpcCall call,
RpcCallContext context)
|
RpcResponse |
CgiServerDemo.handleRequest(RpcCall call,
RpcCallContext context)
|
Methods in com.flat502.rox.demo with parameters of type RpcResponse | |
---|---|
void |
AsyncClientDemo.handleResponse(RpcCall call,
RpcResponse response,
RpcResponseContext context)
|
Uses of RpcResponse in com.flat502.rox.marshal |
---|
Subinterfaces of RpcResponse in com.flat502.rox.marshal | |
---|---|
interface |
RpcFault
An interface representing a generalized RPC method call fault. |
Classes in com.flat502.rox.marshal that implement RpcResponse | |
---|---|
class |
AbstractRpcResponse
An abstract implementation of the RpcResponse
interface. |
Methods in com.flat502.rox.marshal that return RpcResponse | |
---|---|
RpcResponse |
ExtendedMethodResponseUnmarshaller.unmarshal(java.io.InputStream in)
Unmarshal an RpcResponse instance from an InputStream . |
RpcResponse |
MethodResponseUnmarshaller.unmarshal(java.io.InputStream in,
MethodResponseUnmarshallerAid aid)
Unmarshal an RpcResponse instance from an InputStream . |
RpcResponse |
ExtendedMethodResponseUnmarshaller.unmarshal(java.io.Reader in)
Unmarshal an RpcResponse instance from a Reader . |
RpcResponse |
MethodResponseUnmarshaller.unmarshal(java.io.Reader in,
MethodResponseUnmarshallerAid aid)
Unmarshal an RpcResponse instance from a Reader . |
RpcResponse |
ExtendedMethodResponseUnmarshaller.unmarshal(java.lang.String xml)
Unmarshal an RpcResponse instance from an XML string. |
RpcResponse |
MethodResponseUnmarshaller.unmarshal(java.lang.String xml,
MethodResponseUnmarshallerAid aid)
Unmarshal an RpcResponse instance from an XML string. |
Uses of RpcResponse in com.flat502.rox.marshal.xmlrpc |
---|
Classes in com.flat502.rox.marshal.xmlrpc that implement RpcResponse | |
---|---|
class |
XmlRpcMethodFault
An instance of this class represents an XML-RPC method call fault. |
class |
XmlRpcMethodResponse
An instance of this class represents an XML-RPC method call response. |
Methods in com.flat502.rox.marshal.xmlrpc that return RpcResponse | |
---|---|
protected RpcResponse |
SaxMethodResponseUnmarshaller.buildXmlRpcResponse(SaxUnmarshaller unmarshaller)
|
static RpcResponse |
TestUnmarshallingPerf.domUnmarshal(java.lang.String xml)
|
static RpcResponse |
TestUnmarshallingPerf.saxUnmarshal(java.lang.String xml)
|
protected RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(org.xml.sax.InputSource in,
MethodResponseUnmarshallerAid aid)
|
RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(java.io.InputStream in)
|
RpcResponse |
DomMethodResponseUnmarshaller.unmarshal(java.io.InputStream in)
|
RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(java.io.InputStream in,
MethodResponseUnmarshallerAid aid)
|
RpcResponse |
DomMethodResponseUnmarshaller.unmarshal(java.io.InputStream in,
MethodResponseUnmarshallerAid aid)
|
RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(java.io.Reader in)
|
RpcResponse |
DomMethodResponseUnmarshaller.unmarshal(java.io.Reader in)
|
RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(java.io.Reader in,
MethodResponseUnmarshallerAid aid)
|
RpcResponse |
DomMethodResponseUnmarshaller.unmarshal(java.io.Reader in,
MethodResponseUnmarshallerAid aid)
|
RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(java.lang.String xml)
|
RpcResponse |
DomMethodResponseUnmarshaller.unmarshal(java.lang.String xml)
|
RpcResponse |
SaxMethodResponseUnmarshaller.unmarshal(java.lang.String xml,
MethodResponseUnmarshallerAid aid)
|
RpcResponse |
DomMethodResponseUnmarshaller.unmarshal(java.lang.String xml,
MethodResponseUnmarshallerAid aid)
|
Uses of RpcResponse in com.flat502.rox.server |
---|
Methods in com.flat502.rox.server that return RpcResponse | |
---|---|
RpcResponse |
SyncRequestHandler.handleRequest(RpcCall call)
Deprecated. Invoked to handle a method call. |
RpcResponse |
ProxyingRequestHandler.handleRequest(RpcCall call)
Deprecated. Override ProxyingRequestHandler.handleRequest(RpcCall, RpcCallContext) instead. |
RpcResponse |
SynchronousRequestHandler.handleRequest(RpcCall call,
RpcCallContext context)
Invoked to handle a method call. |
RpcResponse |
ProxyingRequestHandler.handleRequest(RpcCall call,
RpcCallContext context)
|
RpcResponse |
RpcMethodProxy.invoke(RpcCall call)
Deprecated. Override RpcMethodProxy.invoke(RpcCall, RpcCallContext) instead. |
RpcResponse |
RpcMethodProxy.invoke(RpcCall call,
RpcCallContext context)
|
protected RpcResponse |
XmlRpcMethodProxy.newRpcResponse(java.lang.Object returnValue)
|
protected abstract RpcResponse |
RpcMethodProxy.newRpcResponse(java.lang.Object returnValue)
|
Methods in com.flat502.rox.server with parameters of type RpcResponse | |
---|---|
void |
ResponseChannel.respond(RpcResponse rsp)
Deliver an RPC method response to a remote caller. |
protected HttpResponse |
HttpRpcServer.toHttpResponse(HttpMessageBuffer origMsg,
RpcResponse methodRsp,
Encoding encoding)
Constructs a new HttpResponse containing the
given XML-RPC method response. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |