Package org.apache.xmlrpc.client
Class XmlRpcLocalTransport
- java.lang.Object
-
- org.apache.xmlrpc.client.XmlRpcTransportImpl
-
- org.apache.xmlrpc.client.XmlRpcLocalTransport
-
- All Implemented Interfaces:
XmlRpcTransport
public class XmlRpcLocalTransport extends XmlRpcTransportImpl
The default implementation of a local transport.
-
-
Constructor Summary
Constructors Constructor Description XmlRpcLocalTransport(XmlRpcClient pClient)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private boolean
isExtensionType(java.lang.Object pObject)
java.lang.Object
sendRequest(XmlRpcRequest pRequest)
Send an XML-RPC message.-
Methods inherited from class org.apache.xmlrpc.client.XmlRpcTransportImpl
getClient
-
-
-
-
Constructor Detail
-
XmlRpcLocalTransport
public XmlRpcLocalTransport(XmlRpcClient pClient)
Creates a new instance.- Parameters:
pClient
- The client, which creates the transport.
-
-
Method Detail
-
isExtensionType
private boolean isExtensionType(java.lang.Object pObject)
-
sendRequest
public java.lang.Object sendRequest(XmlRpcRequest pRequest) throws XmlRpcException
Description copied from interface:XmlRpcTransport
Send an XML-RPC message. This method is called to send a message to the other party.- Parameters:
pRequest
- The request being performed.- Returns:
- Result object, if invoking the remote method was successfull.
- Throws:
XmlRpcException
- Performing the request failed.
-
-