Uses of Interface
org.apache.xmlrpc.XmlRpcRequest
-
Packages that use XmlRpcRequest Package Description org.apache.xmlrpc org.apache.xmlrpc.client org.apache.xmlrpc.common org.apache.xmlrpc.serializer org.apache.xmlrpc.server -
-
Uses of XmlRpcRequest in org.apache.xmlrpc
Methods in org.apache.xmlrpc with parameters of type XmlRpcRequest Modifier and Type Method Description Object
XmlRpcHandler. execute(XmlRpcRequest pRequest)
Performs the request and returns the result object. -
Uses of XmlRpcRequest in org.apache.xmlrpc.client
Classes in org.apache.xmlrpc.client that implement XmlRpcRequest Modifier and Type Class Description class
XmlRpcClientRequestImpl
Default implementation ofXmlRpcRequest
.Methods in org.apache.xmlrpc.client with parameters of type XmlRpcRequest Modifier and Type Method Description Object
XmlRpcClient. execute(XmlRpcRequest pRequest)
Performs a request with the clients default configuration.Object
XmlRpcClientWorker. execute(XmlRpcRequest pRequest)
Performs a synchronous request.void
XmlRpcClientWorker. execute(XmlRpcRequest pRequest, AsyncCallback pCallback)
Performs an synchronous request.void
XmlRpcClient. executeAsync(XmlRpcRequest pRequest, AsyncCallback pCallback)
Performs a request with the clients default configuration.void
AsyncCallback. handleError(XmlRpcRequest pRequest, Throwable pError)
Something went wrong, handle error.void
TimingOutCallback. handleError(XmlRpcRequest pRequest, Throwable pError)
void
AsyncCallback. handleResult(XmlRpcRequest pRequest, Object pResult)
Call went ok, handle result.void
TimingOutCallback. handleResult(XmlRpcRequest pRequest, Object pResult)
protected void
XmlRpcHttpTransport. initHttpHeaders(XmlRpcRequest pRequest)
protected void
XmlRpcSun15HttpTransport. initHttpHeaders(XmlRpcRequest pRequest)
protected XmlRpcStreamTransport.ReqWriter
XmlRpcHttpTransport. newReqWriter(XmlRpcRequest pRequest)
protected XmlRpcStreamTransport.ReqWriter
XmlRpcLocalStreamTransport. newReqWriter(XmlRpcRequest pRequest)
protected XmlRpcStreamTransport.ReqWriter
XmlRpcStreamTransport. newReqWriter(XmlRpcRequest pRequest)
Creates a new instance ofXmlRpcStreamTransport.ReqWriter
.Object
XmlRpcHttpTransport. sendRequest(XmlRpcRequest pRequest)
Object
XmlRpcLiteHttpTransport. sendRequest(XmlRpcRequest pRequest)
Object
XmlRpcLocalTransport. sendRequest(XmlRpcRequest pRequest)
Object
XmlRpcStreamTransport. sendRequest(XmlRpcRequest pRequest)
Object
XmlRpcSunHttpTransport. sendRequest(XmlRpcRequest pRequest)
Object
XmlRpcTransport. sendRequest(XmlRpcRequest pRequest)
Send an XML-RPC message.Constructors in org.apache.xmlrpc.client with parameters of type XmlRpcRequest Constructor Description ReqWriterImpl(XmlRpcRequest pRequest)
-
Uses of XmlRpcRequest in org.apache.xmlrpc.common
Methods in org.apache.xmlrpc.common with parameters of type XmlRpcRequest Modifier and Type Method Description Object
XmlRpcRequestProcessor. execute(XmlRpcRequest pRequest)
Processes the given request and returns a result object.Object
XmlRpcWorker. execute(XmlRpcRequest pRequest)
Performs a synchronous request. -
Uses of XmlRpcRequest in org.apache.xmlrpc.serializer
Methods in org.apache.xmlrpc.serializer with parameters of type XmlRpcRequest Modifier and Type Method Description void
XmlRpcWriter. write(XmlRpcRequest pRequest)
Writes a clients request to the output stream. -
Uses of XmlRpcRequest in org.apache.xmlrpc.server
Methods in org.apache.xmlrpc.server that return XmlRpcRequest Modifier and Type Method Description protected XmlRpcRequest
XmlRpcStreamServer. getRequest(XmlRpcStreamRequestConfig pConfig, InputStream pStream)
Methods in org.apache.xmlrpc.server with parameters of type XmlRpcRequest Modifier and Type Method Description Object
ReflectiveXmlRpcHandler. execute(XmlRpcRequest pRequest)
Object
XmlRpcLocalStreamServer. execute(XmlRpcRequest pRequest)
Object
XmlRpcServer. execute(XmlRpcRequest pRequest)
Performs the given request.Object
XmlRpcServerWorker. execute(XmlRpcRequest pRequest)
Object
RequestProcessorFactoryFactory.RequestProcessorFactory. getRequestProcessor(XmlRpcRequest pRequest)
This method is invoked for any request in order to create and configure the request processor.protected Object
RequestProcessorFactoryFactory.RequestSpecificProcessorFactoryFactory. getRequestProcessor(Class pClass, XmlRpcRequest pRequest)
Subclasses may override this method for request specific configuration.boolean
AbstractReflectiveHandlerMapping.AuthenticationHandler. isAuthorized(XmlRpcRequest pRequest)
Returns, whether the user is authenticated and authorized to perform the request.
-