Uses of Class
de.timroes.axmlrpc.XMLRPCException
-
Packages that use XMLRPCException Package Description de.timroes.axmlrpc de.timroes.axmlrpc.serializer -
-
Uses of XMLRPCException in de.timroes.axmlrpc
Subclasses of XMLRPCException in de.timroes.axmlrpc Modifier and Type Class Description class
XMLRPCServerException
This exception will be thrown if the server returns an error.class
XMLRPCTimeoutException
Will be thrown when a call to the server times out.Methods in de.timroes.axmlrpc with parameters of type XMLRPCException Modifier and Type Method Description void
XMLRPCCallback. onError(long id, XMLRPCException error)
This callback is called whenever an error occurs during the method call.Methods in de.timroes.axmlrpc that throw XMLRPCException Modifier and Type Method Description java.lang.Object
XMLRPCClient. call(java.lang.String method, java.lang.Object... params)
Call a remote procedure on the server.static org.w3c.dom.Element
XMLUtil. getOnlyChildElement(org.w3c.dom.NodeList list)
Returns the only child element in a given NodeList.static java.lang.String
XMLUtil. getOnlyTextContent(org.w3c.dom.NodeList list)
Returns the text node from a given NodeList.java.lang.String
Call. getXML(boolean debugMode)
Return an xml representation of the method call as specified in http://www.xmlrpc.com/spec. -
Uses of XMLRPCException in de.timroes.axmlrpc.serializer
Methods in de.timroes.axmlrpc.serializer that throw XMLRPCException Modifier and Type Method Description java.lang.Object
ArraySerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
Base64Serializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
BooleanSerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
DateTimeSerializer. deserialize(java.lang.String dateStr)
java.lang.Object
DateTimeSerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
DoubleSerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
IntSerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
NullSerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
Serializer. deserialize(org.w3c.dom.Element content)
This method takes an xml type element and deserialize it to an object.java.lang.Object
SerializerHandler. deserialize(org.w3c.dom.Element element)
Deserializes an incoming xml element to an java object.java.lang.Object
StringSerializer. deserialize(org.w3c.dom.Element content)
java.lang.Object
StructSerializer. deserialize(org.w3c.dom.Element content)
XmlElement
SerializerHandler. serialize(java.lang.Object object)
Serialize an object to its representation as an xml element.
-