|  | 
| string | makeFormattedXMLFragment (hash h, *string encoding) | 
|  | serializes a hash into an XML string with whitespace formatting but without an XML header  More... 
 | 
|  | 
| nothing | makeFormattedXMLFragment () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| string | makeFormattedXMLString (string key, hash h, *string encoding) | 
|  | serializes a hash into an XML string with whitespace formatting and with an XML header  More... 
 | 
|  | 
| string | makeFormattedXMLString (hash h, *string encoding) | 
|  | serializes a hash into an XML string with whitespace formatting and with an XML header  More... 
 | 
|  | 
| string | makeXMLFragment (hash h, *string encoding) | 
|  | serializes a hash into an XML string without whitespace formatting and without an XML header  More... 
 | 
|  | 
| nothing | makeXMLFragment () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| string | makeXMLString (string key, hash h, *string encoding) | 
|  | serializes a hash into an XML string without whitespace formatting but with an XML header  More... 
 | 
|  | 
| string | makeXMLString (hash h, *string encoding) | 
|  | serializes a hash into an XML string without whitespace formatting but with an XML header  More... 
 | 
|  | 
| string | make_xml (string key, hash h, *int flags, *string encoding) | 
|  | serializes a hash into an XML string with an XML header  More... 
 | 
|  | 
| string | make_xml (hash h, *int flags, *string encoding) | 
|  | serializes a hash into an XML string with an XML header  More... 
 | 
|  | 
| string | make_xml (hash h, hash opts) | 
|  | serializes a hash into an XML string with various options of formatting  More... 
 | 
|  | 
| string | make_xml_fragment (hash h, *int flags, *string encoding) | 
|  | serializes a hash into an XML string without whitespace formatting and without an XML header  More... 
 | 
|  | 
| hash | parseXML (string xml, *string encoding) | 
|  | Parses an XML string and returns a Qore hash structure.  More... 
 | 
|  | 
| nothing | parseXML () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| hash | parseXMLAsData (string xml, *string encoding) | 
|  | Parses an XML string as data (does not necessarily preserve key order) and returns a Qore hash structure.  More... 
 | 
|  | 
| nothing | parseXMLAsData () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| hash | parseXMLAsDataWithRelaxNG (string xml, string relaxng, *string encoding) | 
|  | Parses an XML string as data (does not preserve hash order with out-of-order duplicate keys: collapses all to the same list), validates the XML string against a RelaxNG schema string, and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parseXMLAsDataWithSchema (string xml, string xsd, *string encoding) | 
|  | Parses an XML string as data (does not preserve hash order with out-of-order duplicate keys: collapses all to the same list), validates the XML string against an XSD schema string, and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parseXMLWithRelaxNG (string xml, string relaxng, *string encoding) | 
|  | Parses an XML string, validates the XML string against a RelaxNG schema string, and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parseXMLWithSchema (string xml, string xsd, *string encoding) | 
|  | Parses an XML string, validates the XML string against an XSD schema string, and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parse_xml (string xml, *int pflags, *string encoding) | 
|  | Parses an XML string and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parse_xml_with_dtd (string xml, string dtd, *int pflags, *string encoding) | 
|  | Parses an XML string, validates the XML string against a DTD string, and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parse_xml_with_relaxng (string xml, string relaxng, *int pflags, *string encoding) | 
|  | Parses an XML string, validates the XML string against a RelaxNG schema string, and returns a Qore hash structure.  More... 
 | 
|  | 
| hash | parse_xml_with_schema (string xml, string xsd, *int pflags, *string encoding) | 
|  | Parses an XML string, validates the XML string against an XSD schema string, and returns a Qore hash structure.  More... 
 | 
|  | 
| auto | get_xml_value (auto n) | 
|  | Helper function returning an XML value.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCCallString (string method,...) | 
|  | Serializes the argument into an XML string in XML-RPC call format with whitespace formatting.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCCallStringArgs (string method, any argv) | 
|  | Serializes the argument into an XML string in XML-RPC call format with whitespace formatting.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCCallStringArgsWithEncoding (string encoding, string method, any argv) | 
|  | Serializes the argument into an XML string in XML-RPC call format with whitespace formatting.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCCallStringWithEncoding (string encoding, string method,...) | 
|  | Serializes the argument into an XML string in XML-RPC call format with whitespace formatting with an explicit encoding.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCFaultResponseString (softint code, string msg) | 
|  | Serializes the argument into an XML string in XML-RPC fault response format with whitespace formatting.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCFaultResponseStringWithEncoding (string encoding, softint code, string msg) | 
|  | Serializes the argument into an XML string in XML-RPC fault response format with whitespace formatting with an explicit output encoding.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCResponseString (...) | 
|  | Serializes the arguments into an XML string formatted for an XML-RPC response with whitespace formatting.  More... 
 | 
|  | 
| string | makeFormattedXMLRPCResponseStringWithEncoding (string encoding,...) | 
|  | Serializes the arguments into an XML string formatted for an XML-RPC response with whitespace formatting and with an explicit output encoding.  More... 
 | 
|  | 
| *string | makeFormattedXMLRPCValueString (any value, *string encoding) | 
|  | Serializes the arguments into an XML string in XML-RPC value format with whitespace formatting but without an XML header.  More... 
 | 
|  | 
| string | makeXMLRPCCallString (string method,...) | 
|  | Serializes the argument into an XML string in XML-RPC call format without whitespace formatting.  More... 
 | 
|  | 
| string | makeXMLRPCCallStringArgs (string method, any args) | 
|  | Serializes the argument into an XML string in XML-RPC call format without whitespace formatting.  More... 
 | 
|  | 
| string | makeXMLRPCCallStringArgsWithEncoding (string encoding, string method, any args) | 
|  | Serializes the argument into an XML string in XML-RPC call format without whitespace formatting with an explicit encoding.  More... 
 | 
|  | 
| string | makeXMLRPCCallStringWithEncoding (string encoding, string method,...) | 
|  | Serializes the argument into an XML string in XML-RPC call format without whitespace formatting with an explicit encoding.  More... 
 | 
|  | 
| string | makeXMLRPCFaultResponseString (softint code, string msg) | 
|  | Serializes the argument into an XML string in XML-RPC fault response format without whitespace formatting.  More... 
 | 
|  | 
| string | makeXMLRPCFaultResponseStringWithEncoding (string encoding, softint code, string msg) | 
|  | Serializes the argument into an XML string in XML-RPC fault response format without whitespace formatting with an explicit output encoding.  More... 
 | 
|  | 
| string | makeXMLRPCResponseString (...) | 
|  | Serializes the arguments into an XML string formatted for an XML-RPC response without whitespace formatting.  More... 
 | 
|  | 
| string | makeXMLRPCResponseStringWithEncoding (string encoding,...) | 
|  | Serializes the arguments into an XML string formatted for an XML-RPC response without whitespace formatting and with an explicit output encoding.  More... 
 | 
|  | 
| *string | makeXMLRPCValueString (any value, *string encoding) | 
|  | Serializes the arguments into an XML string in XML-RPC value format without whitespace formatting and without an XML header.  More... 
 | 
|  | 
| string | make_xmlrpc_call (string method, any args, *int flags, *string encoding) | 
|  | Serializes the argument into an XML string in XML-RPC call format.  More... 
 | 
|  | 
| string | make_xmlrpc_fault (softint code, string msg, *int flags, *string encoding) | 
|  | Serializes the argument into an XML string in XML-RPC fault response format without whitespace formatting.  More... 
 | 
|  | 
| string | make_xmlrpc_response (any call_args, *int flags, *string encoding) | 
|  | Serializes the arguments into an XML string formatted for an XML-RPC response without whitespace formatting.  More... 
 | 
|  | 
| *string | make_xmlrpc_value (any value, *int flags, *string encoding) | 
|  | Serializes the arguments into an XML string in XML-RPC value format without whitespace formatting and without an XML header.  More... 
 | 
|  | 
| hash | parseXMLRPCCall (string xml, *string encoding) | 
|  | Deserializies an XML-RPC call string, returning a Qore data structure representing the call information.  More... 
 | 
|  | 
| nothing | parseXMLRPCCall () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| hash | parseXMLRPCResponse (string xml, *string encoding) | 
|  | Deserializies an XML-RPC response string, returning a Qore data structure representing the response information.  More... 
 | 
|  | 
| nothing | parseXMLRPCResponse () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| any | parseXMLRPCValue (string xml, *string encoding) | 
|  | Deserializies an XML-RPC value string and returns a Qore data structure representing the information.  More... 
 | 
|  | 
| nothing | parseXMLRPCValue () | 
|  | This is a variant that is basically a noop, included for backwards-compatibility for functions that ignored type errors in the calling parameters.  More... 
 | 
|  | 
| hash | parse_xmlrpc_call (string xml, *string encoding) | 
|  | Deserializies an XML-RPC call string, returning a Qore data structure representing the call information.  More... 
 | 
|  | 
| hash | parse_xmlrpc_response (string xml, *string encoding) | 
|  | Deserializies an XML-RPC response string, returning a Qore data structure representing the response information.  More... 
 | 
|  | 
| any | parse_xmlrpc_value (string xml, *string encoding) | 
|  | Deserializies an XML-RPC value string and returns a Qore data structure representing the information.  More... 
 | 
|  |