pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/qore-xml-module



Module Name:    pkgsrc
Committed By:   nros
Date:           Fri Jun  8 19:40:44 UTC 2018

Modified Files:
        pkgsrc/textproc/qore-xml-module: Makefile PLIST distinfo

Log Message:
Updated textproc/qore-xml-module to version 1.4.1 .

Changes from release notes:
* fixed a bug where the URI path was not respected when
  resolving SOAP calls
* implemented supoprt for handling SOAP faults based on
  the exception err string (must correspond to the fault name)
* implemented supoprt for handling SOAP faults in response
  messages with SOAP bindings
* fixed a bug resolving namespaces in nested schemas with
  late resolution with overlapping namespace prefixes
* fixed a type error in message generation
* implemented the wsdl_set_global_compat_empty_string_is_nothing()
  function and the "compat_empty_string_is_nothing" option for
  the WebService class for backwards compatibility with older
  versions of the WSDL module
* implemented the wsdl_set_global_compat_allow_any_header
  function and the "compat_allow_any_header" option for the
  WebService class for backwards compatibility with older
  versions of the WSDL module
* fixed types when deserializing to eliminate performance
  penalties stripping types in large data structures
* fixed soaputil to import XSDs automatically when parsing WSDLs
* fixed a bug in make_xml() to support underscores at start of tags
* added the InputStreamSaxIterator class
* added the get_xml_value() function
* exception raised when make_xml() called with multi list
  value passed for top level element
* added support for XML comments (XPF_ADD_COMMENTS)
* added missing support for DTD validation
  (parse_xml_with_dtd(),XmlDoc::validateDtd())
* added support for stripping namespace prefixes on element
  names when parsing XML
* added a make_xml(hash, hash) variant that allows for more
  control over the XML output such as date serialization formats
* added AbstractXmlIoInputCallback to provide an abstract API
  for resolving external schema references
* extended XmlDoc::constructor with extra optional hash that
  allows for more control over the XML output such as date
  serialization formats
* XSD-ERROR exception thrown during document validation against
  schema is now more verbose about what exactly failed
* fixed a bug in Windows builds
* added the SalesforceSoapConnection class
* added support for logging messages in the SoapClient module
* added the SoapConnection class
* added API support for specifying the SOAP bindings in the WSDL
  to use
* added support for logging messages in the SoapHandler module
* fixed a bug in late resolution of complexTypes
* fixed a bug handling empty complexType declarations
* fixed a bug handling complexType extentions
* fixed bugs handling elementFormDefault="qualified"
  declarations when the value differs between schemas
* fixed a bug where xsi:type information was serialized when
  not necessary
* added a more user-friendly exception when WSDLs are encountered
  with unsupported bindings
* added WSDL::WSMessageHelper to generate sample messages
* added support for multiple SOAP bindings in the WSDL
  including HTTP GET/POST bindings
* fixed a bug in message serialization; all required elements
  must be present or an exception is thrown
* fixed a bug handling base type extensions to complexTypes
* improved argument error messages with RPC calls in the
  XmlRpcHandler module
* fixed SOAP handler to produce correct URLs in WSDL
* added documentation for the WSOperation class in the WSDL module
* fixed SalesforceSoapClient::callOperation() in the
  SalesforceSoapClient module to respect the soapaction header
* fixed a memory leak in XML-RPC parsing
* supress emitting a SOAPAction header in requests if the binding
  gives an empty string
* updated WSOperation::serializeRequest() to allow the SOAPAction
  header to be overridden in each request
* respect XML generation flags in request generation in WSDL module
* fixed parsing empty base64Binary and hexBinary elements
* added the SoapClient::callOperation() method
* updated SOAP response processing to throw an exception when the
  server responds with an error code
* content-type in exceptional cases follows Soap version
* fixed a bug in the SoapClient::constructor() where a WebService
  object was not supported
* added SalesforceSoapClient user module
* added Salesforce.com.qtest and accompanying WSDLs


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/qore-xml-module/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/qore-xml-module/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/qore-xml-module/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/qore-xml-module/Makefile
diff -u pkgsrc/textproc/qore-xml-module/Makefile:1.6 pkgsrc/textproc/qore-xml-module/Makefile:1.7
--- pkgsrc/textproc/qore-xml-module/Makefile:1.6        Sun Jan 28 16:24:15 2018
+++ pkgsrc/textproc/qore-xml-module/Makefile    Fri Jun  8 19:40:44 2018
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2018/01/28 16:24:15 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2018/06/08 19:40:44 nros Exp $
 
-DISTNAME=      qore-xml-module-1.3
-PKGREVISION=   2
+DISTNAME=      qore-xml-module-1.4.1
 CATEGORIES=    textproc
 MASTER_SITES=   ${MASTER_SITE_GITHUB:=qorelanguage/}
 EXTRACT_SUFX=   .tar.bz2
@@ -22,6 +21,8 @@ PTHREAD_OPTS+=        native
 
 CONFIGURE_ARGS+=--with-libsuffix=""
 
+REPLACE_QORE=  bin/soaputil
+
 #This is needed in order to comply the with MIT license and binary distribution
 #Install docs
 INSTALLATION_DIRS+=     share/doc/${PKGBASE}
@@ -36,6 +37,7 @@ post-install:
                ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
 
 
+.include "../../lang/qore/application.mk"
 .include "../../lang/qore/module.mk"
 .include "options.mk"
 

Index: pkgsrc/textproc/qore-xml-module/PLIST
diff -u pkgsrc/textproc/qore-xml-module/PLIST:1.2 pkgsrc/textproc/qore-xml-module/PLIST:1.3
--- pkgsrc/textproc/qore-xml-module/PLIST:1.2   Fri Jul 22 12:22:43 2016
+++ pkgsrc/textproc/qore-xml-module/PLIST       Fri Jun  8 19:40:44 2018
@@ -1,27 +1,256 @@
-@comment $NetBSD: PLIST,v 1.2 2016/07/22 12:22:43 nros Exp $
-${QORE_USER_MODULE_DIR}/SoapClient.qm
-${QORE_USER_MODULE_DIR}/SoapHandler.qm
-${QORE_USER_MODULE_DIR}/WSDL.qm
-${QORE_USER_MODULE_DIR}/XmlRpcHandler.qm
+@comment $NetBSD: PLIST,v 1.3 2018/06/08 19:40:44 nros Exp $
+bin/soaputil
 ${QORE_MODULE_DIR}/xml-api-${QORE_LATEST_MODULE_API}.qmod
 share/doc/qore-xml-module/COPYING.LGPL
 share/doc/qore-xml-module/COPYING.MIT
+share/doc/qore-xml-module/SalesforceSoapClient/html/_salesforce_soap_client_8qm_8dox_8h_source.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/annotated.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/annotated_dup.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/bc_s.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/bdwn.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client-members.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client__inherit__graph.map
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client__inherit__graph.md5
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_client__inherit__graph.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_connection-members.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_connection.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/class_salesforce_soap_client_1_1_salesforce_soap_connection.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/classes.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/closed.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/doc.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/doxygen.css
+share/doc/qore-xml-module/SalesforceSoapClient/html/doxygen.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/dynsections.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/folderclosed.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/folderopen.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/functions.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/functions_func.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/functions_vars.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/graph_legend.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/graph_legend.md5
+share/doc/qore-xml-module/SalesforceSoapClient/html/graph_legend.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/hierarchy.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/hierarchy.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/index.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/index.qhp
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_0.map
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_0.md5
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_0.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_1.map
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_1.md5
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherit_graph_1.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/inherits.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/jquery.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/menu.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/menudata.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/namespace_salesforce_soap_client.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/namespace_salesforce_soap_client.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/namespaces.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/namespaces.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/nav_f.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/nav_g.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/nav_h.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/navtree.css
+share/doc/qore-xml-module/SalesforceSoapClient/html/navtree.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/navtreedata.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/navtreeindex0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/open.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/pages.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/resize.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_1.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_1.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_10.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_10.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_11.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_11.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_12.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_12.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_13.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_13.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_14.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_14.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_15.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_15.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_2.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_2.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_3.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_3.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_4.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_4.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_5.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_5.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_6.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_6.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_7.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_7.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_8.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_8.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_9.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_9.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_a.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_a.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_b.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_b.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_c.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_c.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_d.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_d.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_e.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_e.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_f.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/all_f.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_1.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_1.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_2.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_2.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_3.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_3.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_4.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_4.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_5.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_5.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_6.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_6.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_7.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_7.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_8.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_8.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_9.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_9.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_a.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_a.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_b.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/classes_b.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/close.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_1.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_1.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_10.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_10.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_11.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_11.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_12.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_12.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_13.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_13.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_2.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_2.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_3.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_3.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_4.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_4.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_5.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_5.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_6.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_6.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_7.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_7.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_8.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_8.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_9.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_9.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_a.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_a.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_b.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_b.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_c.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_c.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_d.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_d.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_e.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_e.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_f.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/functions_f.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/groups_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/groups_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/mag_sel.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_1.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_1.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_2.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_2.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_3.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/namespaces_3.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/nomatches.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_1.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/pages_1.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/search.css
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/search.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/search_l.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/search_m.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/search_r.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/searchdata.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_0.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_0.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_1.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_1.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_10.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_10.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_11.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_11.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_12.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_12.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_2.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_2.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_3.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_3.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_4.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_4.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_5.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_5.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_6.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_6.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_7.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_7.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_8.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_8.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_9.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_9.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_a.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_a.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_b.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_b.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_c.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_c.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_d.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_d.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_e.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_e.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_f.html
+share/doc/qore-xml-module/SalesforceSoapClient/html/search/variables_f.js
+share/doc/qore-xml-module/SalesforceSoapClient/html/splitbar.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/sync_off.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/sync_on.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/tab_a.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/tab_b.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/tab_h.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/tab_s.png
+share/doc/qore-xml-module/SalesforceSoapClient/html/tabs.css
 share/doc/qore-xml-module/SoapClient/html/_soap_client_8qm_8dox_8h_source.html
 share/doc/qore-xml-module/SoapClient/html/annotated.html
 share/doc/qore-xml-module/SoapClient/html/annotated_dup.js
-share/doc/qore-xml-module/SoapClient/html/arrowdown.png
-share/doc/qore-xml-module/SoapClient/html/arrowright.png
 share/doc/qore-xml-module/SoapClient/html/bc_s.png
 share/doc/qore-xml-module/SoapClient/html/bdwn.png
 share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client-members.html
 share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client.html
 share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_client.js
+share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_connection-members.html
+share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_connection.html
+share/doc/qore-xml-module/SoapClient/html/class_soap_client_1_1_soap_connection.js
 share/doc/qore-xml-module/SoapClient/html/classes.html
 share/doc/qore-xml-module/SoapClient/html/closed.png
 share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
-share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map
-share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5
-share/doc/qore-xml-module/SoapClient/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png
 share/doc/qore-xml-module/SoapClient/html/doc.png
 share/doc/qore-xml-module/SoapClient/html/doxygen.css
 share/doc/qore-xml-module/SoapClient/html/doxygen.png
@@ -37,6 +266,8 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/index.html
 share/doc/qore-xml-module/SoapClient/html/index.qhp
 share/doc/qore-xml-module/SoapClient/html/jquery.js
+share/doc/qore-xml-module/SoapClient/html/menu.js
+share/doc/qore-xml-module/SoapClient/html/menudata.js
 share/doc/qore-xml-module/SoapClient/html/namespace_soap_client.html
 share/doc/qore-xml-module/SoapClient/html/namespace_soap_client.js
 share/doc/qore-xml-module/SoapClient/html/namespaces.html
@@ -49,6 +280,7 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/navtreedata.js
 share/doc/qore-xml-module/SoapClient/html/navtreeindex0.js
 share/doc/qore-xml-module/SoapClient/html/open.png
+share/doc/qore-xml-module/SoapClient/html/pages.html
 share/doc/qore-xml-module/SoapClient/html/resize.js
 share/doc/qore-xml-module/SoapClient/html/search/all_0.html
 share/doc/qore-xml-module/SoapClient/html/search/all_0.js
@@ -64,6 +296,8 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/search/all_13.js
 share/doc/qore-xml-module/SoapClient/html/search/all_14.html
 share/doc/qore-xml-module/SoapClient/html/search/all_14.js
+share/doc/qore-xml-module/SoapClient/html/search/all_15.html
+share/doc/qore-xml-module/SoapClient/html/search/all_15.js
 share/doc/qore-xml-module/SoapClient/html/search/all_2.html
 share/doc/qore-xml-module/SoapClient/html/search/all_2.js
 share/doc/qore-xml-module/SoapClient/html/search/all_3.html
@@ -104,6 +338,18 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/search/classes_4.js
 share/doc/qore-xml-module/SoapClient/html/search/classes_5.html
 share/doc/qore-xml-module/SoapClient/html/search/classes_5.js
+share/doc/qore-xml-module/SoapClient/html/search/classes_6.html
+share/doc/qore-xml-module/SoapClient/html/search/classes_6.js
+share/doc/qore-xml-module/SoapClient/html/search/classes_7.html
+share/doc/qore-xml-module/SoapClient/html/search/classes_7.js
+share/doc/qore-xml-module/SoapClient/html/search/classes_8.html
+share/doc/qore-xml-module/SoapClient/html/search/classes_8.js
+share/doc/qore-xml-module/SoapClient/html/search/classes_9.html
+share/doc/qore-xml-module/SoapClient/html/search/classes_9.js
+share/doc/qore-xml-module/SoapClient/html/search/classes_a.html
+share/doc/qore-xml-module/SoapClient/html/search/classes_a.js
+share/doc/qore-xml-module/SoapClient/html/search/classes_b.html
+share/doc/qore-xml-module/SoapClient/html/search/classes_b.js
 share/doc/qore-xml-module/SoapClient/html/search/close.png
 share/doc/qore-xml-module/SoapClient/html/search/functions_0.html
 share/doc/qore-xml-module/SoapClient/html/search/functions_0.js
@@ -113,6 +359,10 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/search/functions_10.js
 share/doc/qore-xml-module/SoapClient/html/search/functions_11.html
 share/doc/qore-xml-module/SoapClient/html/search/functions_11.js
+share/doc/qore-xml-module/SoapClient/html/search/functions_12.html
+share/doc/qore-xml-module/SoapClient/html/search/functions_12.js
+share/doc/qore-xml-module/SoapClient/html/search/functions_13.html
+share/doc/qore-xml-module/SoapClient/html/search/functions_13.js
 share/doc/qore-xml-module/SoapClient/html/search/functions_2.html
 share/doc/qore-xml-module/SoapClient/html/search/functions_2.js
 share/doc/qore-xml-module/SoapClient/html/search/functions_3.html
@@ -150,9 +400,13 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/search/namespaces_1.js
 share/doc/qore-xml-module/SoapClient/html/search/namespaces_2.html
 share/doc/qore-xml-module/SoapClient/html/search/namespaces_2.js
+share/doc/qore-xml-module/SoapClient/html/search/namespaces_3.html
+share/doc/qore-xml-module/SoapClient/html/search/namespaces_3.js
 share/doc/qore-xml-module/SoapClient/html/search/nomatches.html
 share/doc/qore-xml-module/SoapClient/html/search/pages_0.html
 share/doc/qore-xml-module/SoapClient/html/search/pages_0.js
+share/doc/qore-xml-module/SoapClient/html/search/pages_1.html
+share/doc/qore-xml-module/SoapClient/html/search/pages_1.js
 share/doc/qore-xml-module/SoapClient/html/search/search.css
 share/doc/qore-xml-module/SoapClient/html/search/search.js
 share/doc/qore-xml-module/SoapClient/html/search/search_l.png
@@ -163,6 +417,12 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/search/variables_0.js
 share/doc/qore-xml-module/SoapClient/html/search/variables_1.html
 share/doc/qore-xml-module/SoapClient/html/search/variables_1.js
+share/doc/qore-xml-module/SoapClient/html/search/variables_10.html
+share/doc/qore-xml-module/SoapClient/html/search/variables_10.js
+share/doc/qore-xml-module/SoapClient/html/search/variables_11.html
+share/doc/qore-xml-module/SoapClient/html/search/variables_11.js
+share/doc/qore-xml-module/SoapClient/html/search/variables_12.html
+share/doc/qore-xml-module/SoapClient/html/search/variables_12.js
 share/doc/qore-xml-module/SoapClient/html/search/variables_2.html
 share/doc/qore-xml-module/SoapClient/html/search/variables_2.js
 share/doc/qore-xml-module/SoapClient/html/search/variables_3.html
@@ -189,6 +449,8 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapClient/html/search/variables_d.js
 share/doc/qore-xml-module/SoapClient/html/search/variables_e.html
 share/doc/qore-xml-module/SoapClient/html/search/variables_e.js
+share/doc/qore-xml-module/SoapClient/html/search/variables_f.html
+share/doc/qore-xml-module/SoapClient/html/search/variables_f.js
 share/doc/qore-xml-module/SoapClient/html/splitbar.png
 share/doc/qore-xml-module/SoapClient/html/sync_off.png
 share/doc/qore-xml-module/SoapClient/html/sync_on.png
@@ -200,8 +462,6 @@ share/doc/qore-xml-module/SoapClient/htm
 share/doc/qore-xml-module/SoapHandler/html/_soap_handler_8qm_8dox_8h_source.html
 share/doc/qore-xml-module/SoapHandler/html/annotated.html
 share/doc/qore-xml-module/SoapHandler/html/annotated_dup.js
-share/doc/qore-xml-module/SoapHandler/html/arrowdown.png
-share/doc/qore-xml-module/SoapHandler/html/arrowright.png
 share/doc/qore-xml-module/SoapHandler/html/bc_s.png
 share/doc/qore-xml-module/SoapHandler/html/bdwn.png
 share/doc/qore-xml-module/SoapHandler/html/class_soap_handler_1_1_soap_handler-members.html
@@ -210,9 +470,6 @@ share/doc/qore-xml-module/SoapHandler/ht
 share/doc/qore-xml-module/SoapHandler/html/classes.html
 share/doc/qore-xml-module/SoapHandler/html/closed.png
 share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
-share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map
-share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5
-share/doc/qore-xml-module/SoapHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png
 share/doc/qore-xml-module/SoapHandler/html/doc.png
 share/doc/qore-xml-module/SoapHandler/html/doxygen.css
 share/doc/qore-xml-module/SoapHandler/html/doxygen.png
@@ -228,6 +485,8 @@ share/doc/qore-xml-module/SoapHandler/ht
 share/doc/qore-xml-module/SoapHandler/html/index.html
 share/doc/qore-xml-module/SoapHandler/html/index.qhp
 share/doc/qore-xml-module/SoapHandler/html/jquery.js
+share/doc/qore-xml-module/SoapHandler/html/menu.js
+share/doc/qore-xml-module/SoapHandler/html/menudata.js
 share/doc/qore-xml-module/SoapHandler/html/namespace_soap_handler.html
 share/doc/qore-xml-module/SoapHandler/html/namespace_soap_handler.js
 share/doc/qore-xml-module/SoapHandler/html/namespaces.html
@@ -240,11 +499,20 @@ share/doc/qore-xml-module/SoapHandler/ht
 share/doc/qore-xml-module/SoapHandler/html/navtreedata.js
 share/doc/qore-xml-module/SoapHandler/html/navtreeindex0.js
 share/doc/qore-xml-module/SoapHandler/html/open.png
+share/doc/qore-xml-module/SoapHandler/html/pages.html
 share/doc/qore-xml-module/SoapHandler/html/resize.js
 share/doc/qore-xml-module/SoapHandler/html/search/all_0.html
 share/doc/qore-xml-module/SoapHandler/html/search/all_0.js
 share/doc/qore-xml-module/SoapHandler/html/search/all_1.html
 share/doc/qore-xml-module/SoapHandler/html/search/all_1.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_10.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_10.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_11.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_11.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_12.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_12.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_13.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_13.js
 share/doc/qore-xml-module/SoapHandler/html/search/all_2.html
 share/doc/qore-xml-module/SoapHandler/html/search/all_2.js
 share/doc/qore-xml-module/SoapHandler/html/search/all_3.html
@@ -253,25 +521,91 @@ share/doc/qore-xml-module/SoapHandler/ht
 share/doc/qore-xml-module/SoapHandler/html/search/all_4.js
 share/doc/qore-xml-module/SoapHandler/html/search/all_5.html
 share/doc/qore-xml-module/SoapHandler/html/search/all_5.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_6.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_6.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_7.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_7.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_8.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_8.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_9.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_9.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_a.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_a.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_b.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_b.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_c.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_c.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_d.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_d.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_e.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_e.js
+share/doc/qore-xml-module/SoapHandler/html/search/all_f.html
+share/doc/qore-xml-module/SoapHandler/html/search/all_f.js
 share/doc/qore-xml-module/SoapHandler/html/search/classes_0.html
 share/doc/qore-xml-module/SoapHandler/html/search/classes_0.js
+share/doc/qore-xml-module/SoapHandler/html/search/classes_1.html
+share/doc/qore-xml-module/SoapHandler/html/search/classes_1.js
+share/doc/qore-xml-module/SoapHandler/html/search/classes_2.html
+share/doc/qore-xml-module/SoapHandler/html/search/classes_2.js
+share/doc/qore-xml-module/SoapHandler/html/search/classes_3.html
+share/doc/qore-xml-module/SoapHandler/html/search/classes_3.js
+share/doc/qore-xml-module/SoapHandler/html/search/classes_4.html
+share/doc/qore-xml-module/SoapHandler/html/search/classes_4.js
+share/doc/qore-xml-module/SoapHandler/html/search/classes_5.html
+share/doc/qore-xml-module/SoapHandler/html/search/classes_5.js
 share/doc/qore-xml-module/SoapHandler/html/search/close.png
 share/doc/qore-xml-module/SoapHandler/html/search/functions_0.html
 share/doc/qore-xml-module/SoapHandler/html/search/functions_0.js
 share/doc/qore-xml-module/SoapHandler/html/search/functions_1.html
 share/doc/qore-xml-module/SoapHandler/html/search/functions_1.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_10.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_10.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_11.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_11.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_12.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_12.js
 share/doc/qore-xml-module/SoapHandler/html/search/functions_2.html
 share/doc/qore-xml-module/SoapHandler/html/search/functions_2.js
 share/doc/qore-xml-module/SoapHandler/html/search/functions_3.html
 share/doc/qore-xml-module/SoapHandler/html/search/functions_3.js
 share/doc/qore-xml-module/SoapHandler/html/search/functions_4.html
 share/doc/qore-xml-module/SoapHandler/html/search/functions_4.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_5.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_5.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_6.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_6.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_7.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_7.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_8.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_8.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_9.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_9.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_a.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_a.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_b.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_b.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_c.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_c.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_d.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_d.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_e.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_e.js
+share/doc/qore-xml-module/SoapHandler/html/search/functions_f.html
+share/doc/qore-xml-module/SoapHandler/html/search/functions_f.js
+share/doc/qore-xml-module/SoapHandler/html/search/groups_0.html
+share/doc/qore-xml-module/SoapHandler/html/search/groups_0.js
 share/doc/qore-xml-module/SoapHandler/html/search/mag_sel.png
 share/doc/qore-xml-module/SoapHandler/html/search/namespaces_0.html
 share/doc/qore-xml-module/SoapHandler/html/search/namespaces_0.js
+share/doc/qore-xml-module/SoapHandler/html/search/namespaces_1.html
+share/doc/qore-xml-module/SoapHandler/html/search/namespaces_1.js
+share/doc/qore-xml-module/SoapHandler/html/search/namespaces_2.html
+share/doc/qore-xml-module/SoapHandler/html/search/namespaces_2.js
 share/doc/qore-xml-module/SoapHandler/html/search/nomatches.html
 share/doc/qore-xml-module/SoapHandler/html/search/pages_0.html
 share/doc/qore-xml-module/SoapHandler/html/search/pages_0.js
+share/doc/qore-xml-module/SoapHandler/html/search/pages_1.html
+share/doc/qore-xml-module/SoapHandler/html/search/pages_1.js
 share/doc/qore-xml-module/SoapHandler/html/search/search.css
 share/doc/qore-xml-module/SoapHandler/html/search/search.js
 share/doc/qore-xml-module/SoapHandler/html/search/search_l.png
@@ -280,6 +614,16 @@ share/doc/qore-xml-module/SoapHandler/ht
 share/doc/qore-xml-module/SoapHandler/html/search/searchdata.js
 share/doc/qore-xml-module/SoapHandler/html/search/variables_0.html
 share/doc/qore-xml-module/SoapHandler/html/search/variables_0.js
+share/doc/qore-xml-module/SoapHandler/html/search/variables_1.html
+share/doc/qore-xml-module/SoapHandler/html/search/variables_1.js
+share/doc/qore-xml-module/SoapHandler/html/search/variables_2.html
+share/doc/qore-xml-module/SoapHandler/html/search/variables_2.js
+share/doc/qore-xml-module/SoapHandler/html/search/variables_3.html
+share/doc/qore-xml-module/SoapHandler/html/search/variables_3.js
+share/doc/qore-xml-module/SoapHandler/html/search/variables_4.html
+share/doc/qore-xml-module/SoapHandler/html/search/variables_4.js
+share/doc/qore-xml-module/SoapHandler/html/search/variables_5.html
+share/doc/qore-xml-module/SoapHandler/html/search/variables_5.js
 share/doc/qore-xml-module/SoapHandler/html/splitbar.png
 share/doc/qore-xml-module/SoapHandler/html/sync_off.png
 share/doc/qore-xml-module/SoapHandler/html/sync_on.png
@@ -291,26 +635,49 @@ share/doc/qore-xml-module/SoapHandler/ht
 share/doc/qore-xml-module/WSDL/html/_w_s_d_l_8qm_8dox_8h_source.html
 share/doc/qore-xml-module/WSDL/html/annotated.html
 share/doc/qore-xml-module/WSDL/html/annotated_dup.js
-share/doc/qore-xml-module/WSDL/html/arrowdown.png
-share/doc/qore-xml-module/WSDL/html/arrowright.png
 share/doc/qore-xml-module/WSDL/html/bc_s.png
 share/doc/qore-xml-module/WSDL/html/bdwn.png
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding-members.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding.js
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.map
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.md5
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding__inherit__graph.png
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_content_description-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_content_description.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_content_description.js
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_body_description-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_body_description.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_body_description.js
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_description-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_description.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_description.js
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_header_description-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_header_description.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_binding_message_header_description.js
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_mime_xml_message_description-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_mime_xml_message_description.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_mime_xml_message_description.js
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces-members.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_namespaces.js
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding__inherit__graph.map
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding__inherit__graph.md5
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_operational_binding__inherit__graph.png
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib-members.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_d_l_lib.js
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message-members.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message.js
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.map
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.md5
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message__inherit__graph.png
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message_helper-members.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message_helper.html
+share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_message_helper.js
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation-members.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation.html
 share/doc/qore-xml-module/WSDL/html/class_w_s_d_l_1_1_w_s_operation.js
@@ -366,9 +733,6 @@ share/doc/qore-xml-module/WSDL/html/clas
 share/doc/qore-xml-module/WSDL/html/classes.html
 share/doc/qore-xml-module/WSDL/html/closed.png
 share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
-share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map
-share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5
-share/doc/qore-xml-module/WSDL/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png
 share/doc/qore-xml-module/WSDL/html/doc.png
 share/doc/qore-xml-module/WSDL/html/doxygen.css
 share/doc/qore-xml-module/WSDL/html/doxygen.png
@@ -391,6 +755,30 @@ share/doc/qore-xml-module/WSDL/html/inhe
 share/doc/qore-xml-module/WSDL/html/inherit_graph_1.map
 share/doc/qore-xml-module/WSDL/html/inherit_graph_1.md5
 share/doc/qore-xml-module/WSDL/html/inherit_graph_1.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_10.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_10.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_10.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_11.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_11.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_11.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_12.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_12.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_12.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_13.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_13.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_13.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_14.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_14.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_14.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_15.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_15.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_15.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_16.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_16.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_16.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_17.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_17.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_17.png
 share/doc/qore-xml-module/WSDL/html/inherit_graph_2.map
 share/doc/qore-xml-module/WSDL/html/inherit_graph_2.md5
 share/doc/qore-xml-module/WSDL/html/inherit_graph_2.png
@@ -406,11 +794,23 @@ share/doc/qore-xml-module/WSDL/html/inhe
 share/doc/qore-xml-module/WSDL/html/inherit_graph_6.map
 share/doc/qore-xml-module/WSDL/html/inherit_graph_6.md5
 share/doc/qore-xml-module/WSDL/html/inherit_graph_6.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_7.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_7.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_7.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_8.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_8.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_8.png
+share/doc/qore-xml-module/WSDL/html/inherit_graph_9.map
+share/doc/qore-xml-module/WSDL/html/inherit_graph_9.md5
+share/doc/qore-xml-module/WSDL/html/inherit_graph_9.png
 share/doc/qore-xml-module/WSDL/html/inherits.html
 share/doc/qore-xml-module/WSDL/html/jquery.js
+share/doc/qore-xml-module/WSDL/html/menu.js
+share/doc/qore-xml-module/WSDL/html/menudata.js
 share/doc/qore-xml-module/WSDL/html/namespace_w_s_d_l.html
 share/doc/qore-xml-module/WSDL/html/namespace_w_s_d_l.js
 share/doc/qore-xml-module/WSDL/html/namespacemembers.html
+share/doc/qore-xml-module/WSDL/html/namespacemembers_func.html
 share/doc/qore-xml-module/WSDL/html/namespacemembers_vars.html
 share/doc/qore-xml-module/WSDL/html/namespaces.html
 share/doc/qore-xml-module/WSDL/html/namespaces.js
@@ -422,6 +822,7 @@ share/doc/qore-xml-module/WSDL/html/navt
 share/doc/qore-xml-module/WSDL/html/navtreedata.js
 share/doc/qore-xml-module/WSDL/html/navtreeindex0.js
 share/doc/qore-xml-module/WSDL/html/open.png
+share/doc/qore-xml-module/WSDL/html/pages.html
 share/doc/qore-xml-module/WSDL/html/resize.js
 share/doc/qore-xml-module/WSDL/html/search/all_0.html
 share/doc/qore-xml-module/WSDL/html/search/all_0.js
@@ -431,6 +832,14 @@ share/doc/qore-xml-module/WSDL/html/sear
 share/doc/qore-xml-module/WSDL/html/search/all_10.js
 share/doc/qore-xml-module/WSDL/html/search/all_11.html
 share/doc/qore-xml-module/WSDL/html/search/all_11.js
+share/doc/qore-xml-module/WSDL/html/search/all_12.html
+share/doc/qore-xml-module/WSDL/html/search/all_12.js
+share/doc/qore-xml-module/WSDL/html/search/all_13.html
+share/doc/qore-xml-module/WSDL/html/search/all_13.js
+share/doc/qore-xml-module/WSDL/html/search/all_14.html
+share/doc/qore-xml-module/WSDL/html/search/all_14.js
+share/doc/qore-xml-module/WSDL/html/search/all_15.html
+share/doc/qore-xml-module/WSDL/html/search/all_15.js
 share/doc/qore-xml-module/WSDL/html/search/all_2.html
 share/doc/qore-xml-module/WSDL/html/search/all_2.js
 share/doc/qore-xml-module/WSDL/html/search/all_3.html
@@ -467,11 +876,35 @@ share/doc/qore-xml-module/WSDL/html/sear
 share/doc/qore-xml-module/WSDL/html/search/classes_2.js
 share/doc/qore-xml-module/WSDL/html/search/classes_3.html
 share/doc/qore-xml-module/WSDL/html/search/classes_3.js
+share/doc/qore-xml-module/WSDL/html/search/classes_4.html
+share/doc/qore-xml-module/WSDL/html/search/classes_4.js
+share/doc/qore-xml-module/WSDL/html/search/classes_5.html
+share/doc/qore-xml-module/WSDL/html/search/classes_5.js
+share/doc/qore-xml-module/WSDL/html/search/classes_6.html
+share/doc/qore-xml-module/WSDL/html/search/classes_6.js
+share/doc/qore-xml-module/WSDL/html/search/classes_7.html
+share/doc/qore-xml-module/WSDL/html/search/classes_7.js
+share/doc/qore-xml-module/WSDL/html/search/classes_8.html
+share/doc/qore-xml-module/WSDL/html/search/classes_8.js
+share/doc/qore-xml-module/WSDL/html/search/classes_9.html
+share/doc/qore-xml-module/WSDL/html/search/classes_9.js
+share/doc/qore-xml-module/WSDL/html/search/classes_a.html
+share/doc/qore-xml-module/WSDL/html/search/classes_a.js
+share/doc/qore-xml-module/WSDL/html/search/classes_b.html
+share/doc/qore-xml-module/WSDL/html/search/classes_b.js
 share/doc/qore-xml-module/WSDL/html/search/close.png
 share/doc/qore-xml-module/WSDL/html/search/functions_0.html
 share/doc/qore-xml-module/WSDL/html/search/functions_0.js
 share/doc/qore-xml-module/WSDL/html/search/functions_1.html
 share/doc/qore-xml-module/WSDL/html/search/functions_1.js
+share/doc/qore-xml-module/WSDL/html/search/functions_10.html
+share/doc/qore-xml-module/WSDL/html/search/functions_10.js
+share/doc/qore-xml-module/WSDL/html/search/functions_11.html
+share/doc/qore-xml-module/WSDL/html/search/functions_11.js
+share/doc/qore-xml-module/WSDL/html/search/functions_12.html
+share/doc/qore-xml-module/WSDL/html/search/functions_12.js
+share/doc/qore-xml-module/WSDL/html/search/functions_13.html
+share/doc/qore-xml-module/WSDL/html/search/functions_13.js
 share/doc/qore-xml-module/WSDL/html/search/functions_2.html
 share/doc/qore-xml-module/WSDL/html/search/functions_2.js
 share/doc/qore-xml-module/WSDL/html/search/functions_3.html
@@ -490,12 +923,30 @@ share/doc/qore-xml-module/WSDL/html/sear
 share/doc/qore-xml-module/WSDL/html/search/functions_9.js
 share/doc/qore-xml-module/WSDL/html/search/functions_a.html
 share/doc/qore-xml-module/WSDL/html/search/functions_a.js
+share/doc/qore-xml-module/WSDL/html/search/functions_b.html
+share/doc/qore-xml-module/WSDL/html/search/functions_b.js
+share/doc/qore-xml-module/WSDL/html/search/functions_c.html
+share/doc/qore-xml-module/WSDL/html/search/functions_c.js
+share/doc/qore-xml-module/WSDL/html/search/functions_d.html
+share/doc/qore-xml-module/WSDL/html/search/functions_d.js
+share/doc/qore-xml-module/WSDL/html/search/functions_e.html
+share/doc/qore-xml-module/WSDL/html/search/functions_e.js
+share/doc/qore-xml-module/WSDL/html/search/functions_f.html
+share/doc/qore-xml-module/WSDL/html/search/functions_f.js
+share/doc/qore-xml-module/WSDL/html/search/groups_0.html
+share/doc/qore-xml-module/WSDL/html/search/groups_0.js
 share/doc/qore-xml-module/WSDL/html/search/mag_sel.png
 share/doc/qore-xml-module/WSDL/html/search/namespaces_0.html
 share/doc/qore-xml-module/WSDL/html/search/namespaces_0.js
+share/doc/qore-xml-module/WSDL/html/search/namespaces_1.html
+share/doc/qore-xml-module/WSDL/html/search/namespaces_1.js
+share/doc/qore-xml-module/WSDL/html/search/namespaces_2.html
+share/doc/qore-xml-module/WSDL/html/search/namespaces_2.js
 share/doc/qore-xml-module/WSDL/html/search/nomatches.html
 share/doc/qore-xml-module/WSDL/html/search/pages_0.html
 share/doc/qore-xml-module/WSDL/html/search/pages_0.js
+share/doc/qore-xml-module/WSDL/html/search/pages_1.html
+share/doc/qore-xml-module/WSDL/html/search/pages_1.js
 share/doc/qore-xml-module/WSDL/html/search/search.css
 share/doc/qore-xml-module/WSDL/html/search/search.js
 share/doc/qore-xml-module/WSDL/html/search/search_l.png
@@ -506,6 +957,12 @@ share/doc/qore-xml-module/WSDL/html/sear
 share/doc/qore-xml-module/WSDL/html/search/variables_0.js
 share/doc/qore-xml-module/WSDL/html/search/variables_1.html
 share/doc/qore-xml-module/WSDL/html/search/variables_1.js
+share/doc/qore-xml-module/WSDL/html/search/variables_10.html
+share/doc/qore-xml-module/WSDL/html/search/variables_10.js
+share/doc/qore-xml-module/WSDL/html/search/variables_11.html
+share/doc/qore-xml-module/WSDL/html/search/variables_11.js
+share/doc/qore-xml-module/WSDL/html/search/variables_12.html
+share/doc/qore-xml-module/WSDL/html/search/variables_12.js
 share/doc/qore-xml-module/WSDL/html/search/variables_2.html
 share/doc/qore-xml-module/WSDL/html/search/variables_2.js
 share/doc/qore-xml-module/WSDL/html/search/variables_3.html
@@ -530,7 +987,24 @@ share/doc/qore-xml-module/WSDL/html/sear
 share/doc/qore-xml-module/WSDL/html/search/variables_c.js
 share/doc/qore-xml-module/WSDL/html/search/variables_d.html
 share/doc/qore-xml-module/WSDL/html/search/variables_d.js
+share/doc/qore-xml-module/WSDL/html/search/variables_e.html
+share/doc/qore-xml-module/WSDL/html/search/variables_e.js
+share/doc/qore-xml-module/WSDL/html/search/variables_f.html
+share/doc/qore-xml-module/WSDL/html/search/variables_f.js
 share/doc/qore-xml-module/WSDL/html/splitbar.png
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_arg_info-members.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_arg_info.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_arg_info.js
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_choice_info-members.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_choice_info.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_operation_info-members.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_operation_info.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_operation_info.js
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_port_type_info-members.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_port_type_info.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_service_info-members.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_service_info.html
+share/doc/qore-xml-module/WSDL/html/struct_w_s_d_l_1_1_service_info.js
 share/doc/qore-xml-module/WSDL/html/sync_off.png
 share/doc/qore-xml-module/WSDL/html/sync_on.png
 share/doc/qore-xml-module/WSDL/html/tab_a.png
@@ -538,11 +1012,177 @@ share/doc/qore-xml-module/WSDL/html/tab_
 share/doc/qore-xml-module/WSDL/html/tab_h.png
 share/doc/qore-xml-module/WSDL/html/tab_s.png
 share/doc/qore-xml-module/WSDL/html/tabs.css
+share/doc/qore-xml-module/XmlRpcConnection/html/_xml_rpc_connection_8qm_8dox_8h_source.html
+share/doc/qore-xml-module/XmlRpcConnection/html/annotated.html
+share/doc/qore-xml-module/XmlRpcConnection/html/annotated_dup.js
+share/doc/qore-xml-module/XmlRpcConnection/html/bc_s.png
+share/doc/qore-xml-module/XmlRpcConnection/html/bdwn.png
+share/doc/qore-xml-module/XmlRpcConnection/html/class_xml_rpc_connection_1_1_xml_rpc_connection-members.html
+share/doc/qore-xml-module/XmlRpcConnection/html/class_xml_rpc_connection_1_1_xml_rpc_connection.html
+share/doc/qore-xml-module/XmlRpcConnection/html/class_xml_rpc_connection_1_1_xml_rpc_connection.js
+share/doc/qore-xml-module/XmlRpcConnection/html/classes.html
+share/doc/qore-xml-module/XmlRpcConnection/html/closed.png
+share/doc/qore-xml-module/XmlRpcConnection/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
+share/doc/qore-xml-module/XmlRpcConnection/html/doc.png
+share/doc/qore-xml-module/XmlRpcConnection/html/doxygen.css
+share/doc/qore-xml-module/XmlRpcConnection/html/doxygen.png
+share/doc/qore-xml-module/XmlRpcConnection/html/dynsections.js
+share/doc/qore-xml-module/XmlRpcConnection/html/folderclosed.png
+share/doc/qore-xml-module/XmlRpcConnection/html/folderopen.png
+share/doc/qore-xml-module/XmlRpcConnection/html/functions.html
+share/doc/qore-xml-module/XmlRpcConnection/html/functions_func.html
+share/doc/qore-xml-module/XmlRpcConnection/html/graph_legend.html
+share/doc/qore-xml-module/XmlRpcConnection/html/graph_legend.md5
+share/doc/qore-xml-module/XmlRpcConnection/html/graph_legend.png
+share/doc/qore-xml-module/XmlRpcConnection/html/index.html
+share/doc/qore-xml-module/XmlRpcConnection/html/index.qhp
+share/doc/qore-xml-module/XmlRpcConnection/html/jquery.js
+share/doc/qore-xml-module/XmlRpcConnection/html/menu.js
+share/doc/qore-xml-module/XmlRpcConnection/html/menudata.js
+share/doc/qore-xml-module/XmlRpcConnection/html/namespace_xml_rpc_connection.html
+share/doc/qore-xml-module/XmlRpcConnection/html/namespace_xml_rpc_connection.js
+share/doc/qore-xml-module/XmlRpcConnection/html/namespaces.html
+share/doc/qore-xml-module/XmlRpcConnection/html/namespaces.js
+share/doc/qore-xml-module/XmlRpcConnection/html/nav_f.png
+share/doc/qore-xml-module/XmlRpcConnection/html/nav_g.png
+share/doc/qore-xml-module/XmlRpcConnection/html/nav_h.png
+share/doc/qore-xml-module/XmlRpcConnection/html/navtree.css
+share/doc/qore-xml-module/XmlRpcConnection/html/navtree.js
+share/doc/qore-xml-module/XmlRpcConnection/html/navtreedata.js
+share/doc/qore-xml-module/XmlRpcConnection/html/navtreeindex0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/open.png
+share/doc/qore-xml-module/XmlRpcConnection/html/pages.html
+share/doc/qore-xml-module/XmlRpcConnection/html/resize.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_1.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_1.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_10.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_10.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_11.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_11.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_12.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_12.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_13.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_13.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_2.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_2.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_3.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_3.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_4.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_4.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_5.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_5.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_6.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_6.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_7.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_7.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_8.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_8.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_9.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_9.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_a.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_a.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_b.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_b.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_c.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_c.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_d.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_d.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_e.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_e.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_f.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/all_f.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_1.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_1.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_2.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_2.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_3.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_3.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_4.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_4.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_5.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/classes_5.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/close.png
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_1.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_1.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_10.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_10.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_11.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_11.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_12.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_12.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_2.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_2.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_3.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_3.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_4.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_4.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_5.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_5.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_6.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_6.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_7.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_7.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_8.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_8.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_9.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_9.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_a.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_a.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_b.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_b.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_c.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_c.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_d.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_d.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_e.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_e.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_f.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/functions_f.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/groups_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/groups_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/mag_sel.png
+share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_1.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_1.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_2.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/namespaces_2.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/nomatches.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/pages_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/pages_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/search.css
+share/doc/qore-xml-module/XmlRpcConnection/html/search/search.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/search_l.png
+share/doc/qore-xml-module/XmlRpcConnection/html/search/search_m.png
+share/doc/qore-xml-module/XmlRpcConnection/html/search/search_r.png
+share/doc/qore-xml-module/XmlRpcConnection/html/search/searchdata.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_0.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_0.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_1.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_1.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_2.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_2.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_3.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_3.js
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_4.html
+share/doc/qore-xml-module/XmlRpcConnection/html/search/variables_4.js
+share/doc/qore-xml-module/XmlRpcConnection/html/splitbar.png
+share/doc/qore-xml-module/XmlRpcConnection/html/sync_off.png
+share/doc/qore-xml-module/XmlRpcConnection/html/sync_on.png
+share/doc/qore-xml-module/XmlRpcConnection/html/tab_a.png
+share/doc/qore-xml-module/XmlRpcConnection/html/tab_b.png
+share/doc/qore-xml-module/XmlRpcConnection/html/tab_h.png
+share/doc/qore-xml-module/XmlRpcConnection/html/tab_s.png
+share/doc/qore-xml-module/XmlRpcConnection/html/tabs.css
 share/doc/qore-xml-module/XmlRpcHandler/html/_xml_rpc_handler_8qm_8dox_8h_source.html
 share/doc/qore-xml-module/XmlRpcHandler/html/annotated.html
 share/doc/qore-xml-module/XmlRpcHandler/html/annotated_dup.js
-share/doc/qore-xml-module/XmlRpcHandler/html/arrowdown.png
-share/doc/qore-xml-module/XmlRpcHandler/html/arrowright.png
 share/doc/qore-xml-module/XmlRpcHandler/html/bc_s.png
 share/doc/qore-xml-module/XmlRpcHandler/html/bdwn.png
 share/doc/qore-xml-module/XmlRpcHandler/html/class_xml_rpc_handler_1_1_xml_rpc_handler-members.html
@@ -551,9 +1191,6 @@ share/doc/qore-xml-module/XmlRpcHandler/
 share/doc/qore-xml-module/XmlRpcHandler/html/classes.html
 share/doc/qore-xml-module/XmlRpcHandler/html/closed.png
 share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca.html
-share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.map
-share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.md5
-share/doc/qore-xml-module/XmlRpcHandler/html/dir_1935124a1d355a6bc0fee3e0733e48ca_dep.png
 share/doc/qore-xml-module/XmlRpcHandler/html/doc.png
 share/doc/qore-xml-module/XmlRpcHandler/html/doxygen.css
 share/doc/qore-xml-module/XmlRpcHandler/html/doxygen.png
@@ -569,6 +1206,8 @@ share/doc/qore-xml-module/XmlRpcHandler/
 share/doc/qore-xml-module/XmlRpcHandler/html/index.html
 share/doc/qore-xml-module/XmlRpcHandler/html/index.qhp
 share/doc/qore-xml-module/XmlRpcHandler/html/jquery.js
+share/doc/qore-xml-module/XmlRpcHandler/html/menu.js
+share/doc/qore-xml-module/XmlRpcHandler/html/menudata.js
 share/doc/qore-xml-module/XmlRpcHandler/html/namespace_xml_rpc_handler.html
 share/doc/qore-xml-module/XmlRpcHandler/html/namespace_xml_rpc_handler.js
 share/doc/qore-xml-module/XmlRpcHandler/html/namespaces.html
@@ -581,11 +1220,20 @@ share/doc/qore-xml-module/XmlRpcHandler/
 share/doc/qore-xml-module/XmlRpcHandler/html/navtreedata.js
 share/doc/qore-xml-module/XmlRpcHandler/html/navtreeindex0.js
 share/doc/qore-xml-module/XmlRpcHandler/html/open.png
+share/doc/qore-xml-module/XmlRpcHandler/html/pages.html
 share/doc/qore-xml-module/XmlRpcHandler/html/resize.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_0.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_0.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_1.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_1.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_10.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_10.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_11.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_11.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_12.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_12.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_13.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_13.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_2.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_2.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_3.html
@@ -596,20 +1244,84 @@ share/doc/qore-xml-module/XmlRpcHandler/
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_5.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_6.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/all_6.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_7.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_7.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_8.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_8.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_9.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_9.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_a.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_a.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_b.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_b.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_c.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_c.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_d.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_d.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_e.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_e.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_f.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/all_f.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_0.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_0.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_1.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_1.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_2.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_2.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_3.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_3.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_4.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_4.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_5.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/classes_5.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/close.png
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_0.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_0.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_1.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_1.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_10.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_10.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_11.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_11.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_12.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_12.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_2.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_2.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_3.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_3.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_4.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_4.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_5.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_5.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_6.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_6.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_7.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_7.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_8.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_8.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_9.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_9.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_a.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_a.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_b.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_b.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_c.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_c.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_d.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_d.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_e.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_e.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_f.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/functions_f.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/groups_0.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/groups_0.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/mag_sel.png
 share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_0.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_0.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_1.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_1.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_2.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/namespaces_2.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/nomatches.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/pages_0.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/pages_0.js
@@ -625,6 +1337,14 @@ share/doc/qore-xml-module/XmlRpcHandler/
 share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_1.js
 share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_2.html
 share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_2.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_3.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_3.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_4.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_4.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_5.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_5.js
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_6.html
+share/doc/qore-xml-module/XmlRpcHandler/html/search/variables_6.js
 share/doc/qore-xml-module/XmlRpcHandler/html/splitbar.png
 share/doc/qore-xml-module/XmlRpcHandler/html/sync_off.png
 share/doc/qore-xml-module/XmlRpcHandler/html/sync_on.png
@@ -635,14 +1355,24 @@ share/doc/qore-xml-module/XmlRpcHandler/
 share/doc/qore-xml-module/XmlRpcHandler/html/tabs.css
 share/doc/qore-xml-module/xml/html/annotated.html
 share/doc/qore-xml-module/xml/html/annotated_dup.js
-share/doc/qore-xml-module/xml/html/arrowdown.png
-share/doc/qore-xml-module/xml/html/arrowright.png
 share/doc/qore-xml-module/xml/html/bc_s.png
 share/doc/qore-xml-module/xml/html/bdwn.png
+share/doc/qore-xml-module/xml/html/classMakeXmlOpts-members.html
+share/doc/qore-xml-module/xml/html/classMakeXmlOpts.html
+share/doc/qore-xml-module/xml/html/classMakeXmlOpts.js
+share/doc/qore-xml-module/xml/html/classMakeXmlOpts_1_1InvalidHash-members.html
+share/doc/qore-xml-module/xml/html/classMakeXmlOpts_1_1InvalidHash.html
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1AbstractXmlIoInputCallback-members.html
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1AbstractXmlIoInputCallback.html
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1AbstractXmlIoInputCallback.js
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator-members.html
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.html
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.js
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1FileSaxIterator.png
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator-members.html
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator.html
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator.js
+share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1InputStreamSaxIterator.png
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator-members.html
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.html
 share/doc/qore-xml-module/xml/html/classQore_1_1Xml_1_1SaxIterator.js
@@ -671,6 +1401,7 @@ share/doc/qore-xml-module/xml/html/folde
 share/doc/qore-xml-module/xml/html/folderopen.png
 share/doc/qore-xml-module/xml/html/functions.html
 share/doc/qore-xml-module/xml/html/functions_func.html
+share/doc/qore-xml-module/xml/html/functions_vars.html
 share/doc/qore-xml-module/xml/html/group__XMLElementTypes.html
 share/doc/qore-xml-module/xml/html/group__XMLElementTypes.js
 share/doc/qore-xml-module/xml/html/group__XmlNodeTypes.html
@@ -690,6 +1421,8 @@ share/doc/qore-xml-module/xml/html/hiera
 share/doc/qore-xml-module/xml/html/index.html
 share/doc/qore-xml-module/xml/html/index.qhp
 share/doc/qore-xml-module/xml/html/jquery.js
+share/doc/qore-xml-module/xml/html/menu.js
+share/doc/qore-xml-module/xml/html/menudata.js
 share/doc/qore-xml-module/xml/html/modules.html
 share/doc/qore-xml-module/xml/html/modules.js
 share/doc/qore-xml-module/xml/html/namespaceQore_1_1Xml.html
@@ -707,10 +1440,10 @@ share/doc/qore-xml-module/xml/html/navtr
 share/doc/qore-xml-module/xml/html/navtree.js
 share/doc/qore-xml-module/xml/html/navtreedata.js
 share/doc/qore-xml-module/xml/html/navtreeindex0.js
+share/doc/qore-xml-module/xml/html/navtreeindex1.js
 share/doc/qore-xml-module/xml/html/open.png
 share/doc/qore-xml-module/xml/html/pages.html
 share/doc/qore-xml-module/xml/html/resize.js
-share/doc/qore-xml-module/xml/html/search.new
 share/doc/qore-xml-module/xml/html/search/all_0.html
 share/doc/qore-xml-module/xml/html/search/all_0.js
 share/doc/qore-xml-module/xml/html/search/all_1.html
@@ -721,6 +1454,8 @@ share/doc/qore-xml-module/xml/html/searc
 share/doc/qore-xml-module/xml/html/search/all_11.js
 share/doc/qore-xml-module/xml/html/search/all_12.html
 share/doc/qore-xml-module/xml/html/search/all_12.js
+share/doc/qore-xml-module/xml/html/search/all_13.html
+share/doc/qore-xml-module/xml/html/search/all_13.js
 share/doc/qore-xml-module/xml/html/search/all_2.html
 share/doc/qore-xml-module/xml/html/search/all_2.js
 share/doc/qore-xml-module/xml/html/search/all_3.html
@@ -755,6 +1490,12 @@ share/doc/qore-xml-module/xml/html/searc
 share/doc/qore-xml-module/xml/html/search/classes_1.js
 share/doc/qore-xml-module/xml/html/search/classes_2.html
 share/doc/qore-xml-module/xml/html/search/classes_2.js
+share/doc/qore-xml-module/xml/html/search/classes_3.html
+share/doc/qore-xml-module/xml/html/search/classes_3.js
+share/doc/qore-xml-module/xml/html/search/classes_4.html
+share/doc/qore-xml-module/xml/html/search/classes_4.js
+share/doc/qore-xml-module/xml/html/search/classes_5.html
+share/doc/qore-xml-module/xml/html/search/classes_5.js
 share/doc/qore-xml-module/xml/html/search/close.png
 share/doc/qore-xml-module/xml/html/search/functions_0.html
 share/doc/qore-xml-module/xml/html/search/functions_0.js
@@ -764,6 +1505,8 @@ share/doc/qore-xml-module/xml/html/searc
 share/doc/qore-xml-module/xml/html/search/functions_10.js
 share/doc/qore-xml-module/xml/html/search/functions_11.html
 share/doc/qore-xml-module/xml/html/search/functions_11.js
+share/doc/qore-xml-module/xml/html/search/functions_12.html
+share/doc/qore-xml-module/xml/html/search/functions_12.js
 share/doc/qore-xml-module/xml/html/search/functions_2.html
 share/doc/qore-xml-module/xml/html/search/functions_2.js
 share/doc/qore-xml-module/xml/html/search/functions_3.html
@@ -802,6 +1545,8 @@ share/doc/qore-xml-module/xml/html/searc
 share/doc/qore-xml-module/xml/html/search/pages_0.js
 share/doc/qore-xml-module/xml/html/search/pages_1.html
 share/doc/qore-xml-module/xml/html/search/pages_1.js
+share/doc/qore-xml-module/xml/html/search/pages_2.html
+share/doc/qore-xml-module/xml/html/search/pages_2.js
 share/doc/qore-xml-module/xml/html/search/search.css
 share/doc/qore-xml-module/xml/html/search/search.js
 share/doc/qore-xml-module/xml/html/search/search_l.png
@@ -816,6 +1561,8 @@ share/doc/qore-xml-module/xml/html/searc
 share/doc/qore-xml-module/xml/html/search/variables_2.js
 share/doc/qore-xml-module/xml/html/search/variables_3.html
 share/doc/qore-xml-module/xml/html/search/variables_3.js
+share/doc/qore-xml-module/xml/html/search/variables_4.html
+share/doc/qore-xml-module/xml/html/search/variables_4.js
 share/doc/qore-xml-module/xml/html/splitbar.png
 share/doc/qore-xml-module/xml/html/sync_off.png
 share/doc/qore-xml-module/xml/html/sync_on.png
@@ -824,3 +1571,10 @@ share/doc/qore-xml-module/xml/html/tab_b
 share/doc/qore-xml-module/xml/html/tab_h.png
 share/doc/qore-xml-module/xml/html/tab_s.png
 share/doc/qore-xml-module/xml/html/tabs.css
+share/doc/qore-xml-module/xml/html/xml_generation_opts.html
+${QORE_USER_MODULE_DIR}/SalesforceSoapClient.qm
+${QORE_USER_MODULE_DIR}/SoapClient.qm
+${QORE_USER_MODULE_DIR}/SoapHandler.qm
+${QORE_USER_MODULE_DIR}/WSDL.qm
+${QORE_USER_MODULE_DIR}/XmlRpcConnection.qm
+${QORE_USER_MODULE_DIR}/XmlRpcHandler.qm

Index: pkgsrc/textproc/qore-xml-module/distinfo
diff -u pkgsrc/textproc/qore-xml-module/distinfo:1.3 pkgsrc/textproc/qore-xml-module/distinfo:1.4
--- pkgsrc/textproc/qore-xml-module/distinfo:1.3        Fri Jul 22 12:22:43 2016
+++ pkgsrc/textproc/qore-xml-module/distinfo    Fri Jun  8 19:40:44 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2016/07/22 12:22:43 nros Exp $
+$NetBSD: distinfo,v 1.4 2018/06/08 19:40:44 nros Exp $
 
-SHA1 (qore-xml-module-1.3.tar.bz2) = 0a85604cbf77c486bce08ff70939ae17f2455a93
-RMD160 (qore-xml-module-1.3.tar.bz2) = f9dca0b0faeeed6144242c592fcfd1944bb90533
-SHA512 (qore-xml-module-1.3.tar.bz2) = 60a716aaf3a3fc6c6074a747efca5f0e518981a76faacee8e629d6743dc268937ed09d8242e34cc4668c3ead18fcae9ca2b7eda73f04d647726cc43ae196ef8a
-Size (qore-xml-module-1.3.tar.bz2) = 1106271 bytes
+SHA1 (qore-xml-module-1.4.1.tar.bz2) = 160101396cfff273c59f7f7ab2fa78d15fe66be3
+RMD160 (qore-xml-module-1.4.1.tar.bz2) = c49650c07fca4a445d58348a467234db82af7e88
+SHA512 (qore-xml-module-1.4.1.tar.bz2) = 272110a048506538a59a0365eb3f89e2570aae99c4edae90d4f66be9801c543bc5bc15ec8565ca60baabf0f2289da1a189e90dd1bcf4fae6935419252987ded8
+Size (qore-xml-module-1.4.1.tar.bz2) = 1639164 bytes



Home | Main Index | Thread Index | Old Index