pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/qore-xml-module Updated textproc/qore-xml-mod...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4f52e299d373
branches:  trunk
changeset: 309092:4f52e299d373
user:      nros <nros%pkgsrc.org@localhost>
date:      Fri Jun 08 19:40:44 2018 +0000

description:
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

diffstat:

 textproc/qore-xml-module/Makefile |    8 +-
 textproc/qore-xml-module/PLIST    |  810 ++++++++++++++++++++++++++++++++++++-
 textproc/qore-xml-module/distinfo |   10 +-
 3 files changed, 792 insertions(+), 36 deletions(-)

diffs (truncated from 1246 to 300 lines):

diff -r feabb17b1f8d -r 4f52e299d373 textproc/qore-xml-module/Makefile
--- a/textproc/qore-xml-module/Makefile Fri Jun 08 19:25:39 2018 +0000
+++ b/textproc/qore-xml-module/Makefile Fri Jun 08 19:40:44 2018 +0000
@@ -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 @@
 
 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 @@
                ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
 
 
+.include "../../lang/qore/application.mk"
 .include "../../lang/qore/module.mk"
 .include "options.mk"
 
diff -r feabb17b1f8d -r 4f52e299d373 textproc/qore-xml-module/PLIST
--- a/textproc/qore-xml-module/PLIST    Fri Jun 08 19:25:39 2018 +0000
+++ b/textproc/qore-xml-module/PLIST    Fri Jun 08 19:40:44 2018 +0000
@@ -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



Home | Main Index | Thread Index | Old Index