Uses of Class
com.flat502.rox.marshal.MethodResponseUnmarshallerAid

Packages that use MethodResponseUnmarshallerAid
com.flat502.rox.client Client-side API and supporting classes. 
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. 
 

Uses of MethodResponseUnmarshallerAid in com.flat502.rox.client
 

Methods in com.flat502.rox.client with parameters of type MethodResponseUnmarshallerAid
 java.lang.Object HttpRpcClient.execute(java.lang.String name, java.lang.Object[] params, MethodResponseUnmarshallerAid aid)
          Executes the named RPC method call synchronously, using the parameter list specified.
 void HttpRpcClient.execute(java.lang.String name, java.lang.Object[] params, MethodResponseUnmarshallerAid aid, AsynchronousResponseHandler handler)
          Executes the named RPC method call asynchronously, using the parameter list specified.
 void HttpRpcClient.execute(java.lang.String name, java.lang.Object[] params, MethodResponseUnmarshallerAid aid, ResponseHandler handler)
          Deprecated. Use HttpRpcClient.execute(String, Object[], MethodResponseUnmarshallerAid, AsynchronousResponseHandler) instead.
 

Uses of MethodResponseUnmarshallerAid in com.flat502.rox.marshal
 

Methods in com.flat502.rox.marshal with parameters of type MethodResponseUnmarshallerAid
 RpcResponse MethodResponseUnmarshaller.unmarshal(java.io.InputStream in, MethodResponseUnmarshallerAid aid)
          Unmarshal an RpcResponse instance from an InputStream.
 RpcResponse MethodResponseUnmarshaller.unmarshal(java.io.Reader in, MethodResponseUnmarshallerAid aid)
          Unmarshal an RpcResponse instance from a Reader.
 RpcResponse MethodResponseUnmarshaller.unmarshal(java.lang.String xml, MethodResponseUnmarshallerAid aid)
          Unmarshal an RpcResponse instance from an XML string.
 

Uses of MethodResponseUnmarshallerAid in com.flat502.rox.marshal.xmlrpc
 

Methods in com.flat502.rox.marshal.xmlrpc with parameters of type MethodResponseUnmarshallerAid
protected  XmlRpcMethodResponse DomUnmarshaller.parseMethodResponse(XmlNode node, MethodResponseUnmarshallerAid aid)
           
 void SaxUnmarshaller.setResponseAid(MethodResponseUnmarshallerAid rspAid)
           
protected  RpcResponse SaxMethodResponseUnmarshaller.unmarshal(org.xml.sax.InputSource in, MethodResponseUnmarshallerAid aid)
           
 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, MethodResponseUnmarshallerAid aid)
           
 RpcResponse DomMethodResponseUnmarshaller.unmarshal(java.io.Reader in, MethodResponseUnmarshallerAid aid)
           
 RpcResponse SaxMethodResponseUnmarshaller.unmarshal(java.lang.String xml, MethodResponseUnmarshallerAid aid)
           
 RpcResponse DomMethodResponseUnmarshaller.unmarshal(java.lang.String xml, MethodResponseUnmarshallerAid aid)