summaryrefslogtreecommitdiff
path: root/devel/gsoap
diff options
context:
space:
mode:
authorobache <obache>2010-09-18 12:11:36 +0000
committerobache <obache>2010-09-18 12:11:36 +0000
commit2c03d54a3d15da6aba5ea7ec64ff58365cca50d7 (patch)
tree12e3c60117745dc14c95aff4115d06d146f4869e /devel/gsoap
parent3aad3799f1d89fd460c543d7e05f5b1e61e4dadd (diff)
downloadpkgsrc-2c03d54a3d15da6aba5ea7ec64ff58365cca50d7.tar.gz
Update gsoup to 2.7.17.
Based on PR#43789 by Kamel Derouiche. pkgsrc changes: * install documentation additionally. * exactly buildlink with zlib and openssl. upstream changes: # Version 2.7.14 (09/07/2009) * Added support for poll() to replace select() to prevent FD_EXCEEDED. * Fixed enum local simpleType restriction attribute initialization. * Fixed utf8 string parsing issue when first char in CDATA could cause problems. * Fixed UDP IPv6 multicast-unicast exchange. * Fixed gzip end-of-stream check. * Fixed wsdl2h portType operation-input/output matching to ensure operations can be safely overloaded. # Version 2.7.15 (11/07/2009) * Added soap_read_X() and soap_write_X() macros to simplify object reading and writing. * Fixed soap_new_X() functions compilation problem. * Fixed SSL session in context copy. * Fixed win32 select() in tcp_select(). * Fixed wstrings in unions. * Fixed preservation of CDATA sections in literal XML strings. # Version 2.7.16 (04/05/2010) * Added soapcpp2 option -T to generate auto-test echo server code with an example in samples/autotest based on 294 patterns for data binding W3C workgroup. * Added soapcpp2 option -b to serialize byte arrays char[] as fixed-size strings (array of xsd:byte otherwise). * Added xsd:duration serializer: import custom/duration.h. * Added gsoap header syntax '$' type qualifier to indicate special struct/class members (array length, union discriminators). * Added "colon notation" to attach XML prefixes to C/C++ names without changing the names, an alternative to the ns__ prefix notation. * Added wsdl2h options -z# for backward compatibility flags (-z1, -z2). * Added SOAP_XML_IGNORENS to optionally ignore XML namespaces. * Added WS-ReliableMessaging plugin. * Added custom xsd:duration serializer. * Added WSSE plugin soap_wsse_set_wsu_id() to simplify signing of elements (sets the wsu:Id of a given element tag name). * Improved handling of struct/class member name clashes resulting from XML schemas definitions. * Improved SOAP RPC ecoding response element tag acceptance. * Improved VxWorks compatibility. * Fixed FastCGI SOAP/XML processing with MIME attachments. * Fixed 'typedef std::string XML', for literal XML serialization problem. * Fixed a rare incorrect well-formedness error when xmlns default namespaces are absent. * Fixed a zlib compression error when obsolete crc check is used. * Fixed WS-Addressing HTTPS message relay (OpenSSL crash). # Version 2.7.17 (05/10/2010) * Added WS-Policy 1.2 and 1.5, WS-SecurityPolicy 1.2 support for wsdl2h. * Improved WS-ReliableMessaging interop and verified MT-safety. * Improved WS-Security WSSE plugin documentation. * Fixed soapcpp2 line number error reporting. * Fixed WSSE plugin soap_wsse_set_wsu_id(). * Fixed wsdl2h cycle problem with recursive xs:include and xs:import. * Fixed enum translation of enum symbols with colons. * Fixed std::wstring used as XML attribute value UTF8 encoding (internal stdsoap2 API changed).
Diffstat (limited to 'devel/gsoap')
-rw-r--r--devel/gsoap/Makefile27
-rw-r--r--devel/gsoap/PLIST702
-rw-r--r--devel/gsoap/distinfo14
-rw-r--r--devel/gsoap/patches/patch-aa10
-rw-r--r--devel/gsoap/patches/patch-ab10
-rw-r--r--devel/gsoap/patches/patch-ac14
6 files changed, 745 insertions, 32 deletions
diff --git a/devel/gsoap/Makefile b/devel/gsoap/Makefile
index 6fe46495934..16750a8d5fc 100644
--- a/devel/gsoap/Makefile
+++ b/devel/gsoap/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.8 2009/12/21 20:13:36 joerg Exp $
+# $NetBSD: Makefile,v 1.9 2010/09/18 12:11:36 obache Exp $
-DISTNAME= gsoap_2.7.13
-PKGNAME= gsoap-2.7.13
-PKGREVISION= 1
+DISTNAME= gsoap_2.7.17
+PKGNAME= ${DISTNAME:S/_/-/}
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gsoap2/}
+EXTRACT_SUFX= .zip
MAINTAINER= chriswareham@chriswareham.demon.co.uk
HOMEPAGE= http://gsoap2.sourceforge.net/
@@ -16,11 +16,20 @@ MAKE_JOBS_SAFE= no
WRKSRC= ${WRKDIR}/gsoap-2.7
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
-USE_TOOLS+= yacc flex gmake
+USE_TOOLS+= yacc flex gmake pax
-PKGCONFIG_OVERRIDE+= ${WRKSRC}/gsoap++.pc.in
-PKGCONFIG_OVERRIDE+= ${WRKSRC}/gsoap.pc.in
-PKGCONFIG_OVERRIDE+= ${WRKSRC}/gsoapck++.pc.in
-PKGCONFIG_OVERRIDE+= ${WRKSRC}/gsoapck.pc.in
+PKGCONFIG_OVERRIDE+= gsoap++.pc.in
+PKGCONFIG_OVERRIDE+= gsoap.pc.in
+PKGCONFIG_OVERRIDE+= gsoapck++.pc.in
+PKGCONFIG_OVERRIDE+= gsoapck.pc.in
+PKGCONFIG_OVERRIDE+= gsoapssl++.pc.in
+PKGCONFIG_OVERRIDE+= gsoapssl.pc.in
+INSTALLATION_DIRS= share/doc/gsoap
+
+post-install:
+ cd ${WRKSRC}/gsoap/doc && pax -rw -pp * ${DESTDIR}${PREFIX}/share/doc/gsoap
+
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/gsoap/PLIST b/devel/gsoap/PLIST
index c2402ad1b7c..f423f6b9fe9 100644
--- a/devel/gsoap/PLIST
+++ b/devel/gsoap/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2009/06/14 17:48:47 joerg Exp $
+@comment $NetBSD: PLIST,v 1.4 2010/09/18 12:11:36 obache Exp $
bin/soapcpp2
bin/wsdl2h
include/stdsoap2.h
@@ -14,6 +14,697 @@ lib/pkgconfig/gsoapck++.pc
lib/pkgconfig/gsoapck.pc
lib/pkgconfig/gsoapssl++.pc
lib/pkgconfig/gsoapssl.pc
+share/doc/gsoap/dom/Doxyfile
+share/doc/gsoap/dom/html/dom_8h.html
+share/doc/gsoap/dom/html/doxygen.css
+share/doc/gsoap/dom/html/doxygen.png
+share/doc/gsoap/dom/html/files.html
+share/doc/gsoap/dom/html/globals.html
+share/doc/gsoap/dom/html/globals_type.html
+share/doc/gsoap/dom/html/graph_legend.dot
+share/doc/gsoap/dom/html/graph_legend.html
+share/doc/gsoap/dom/html/graph_legend.png
+share/doc/gsoap/dom/html/index.html
+share/doc/gsoap/httpda/Doxyfile
+share/doc/gsoap/httpda/html/annotated.html
+share/doc/gsoap/httpda/html/da.html
+share/doc/gsoap/httpda/html/doxygen.css
+share/doc/gsoap/httpda/html/doxygen.png
+share/doc/gsoap/httpda/html/files.html
+share/doc/gsoap/httpda/html/functions.html
+share/doc/gsoap/httpda/html/functions_vars.html
+share/doc/gsoap/httpda/html/globals.html
+share/doc/gsoap/httpda/html/globals_defs.html
+share/doc/gsoap/httpda/html/globals_enum.html
+share/doc/gsoap/httpda/html/globals_eval.html
+share/doc/gsoap/httpda/html/globals_func.html
+share/doc/gsoap/httpda/html/globals_vars.html
+share/doc/gsoap/httpda/html/graph_legend.dot
+share/doc/gsoap/httpda/html/graph_legend.html
+share/doc/gsoap/httpda/html/graph_legend.png
+share/doc/gsoap/httpda/html/http_da_0.html
+share/doc/gsoap/httpda/html/httpda.html
+share/doc/gsoap/httpda/html/httpda0.html
+share/doc/gsoap/httpda/html/httpda_0.html
+share/doc/gsoap/httpda/html/httpda_8c.html
+share/doc/gsoap/httpda/html/httpda_8c__incl.map
+share/doc/gsoap/httpda/html/httpda_8c__incl.md5
+share/doc/gsoap/httpda/html/httpda_8c__incl.png
+share/doc/gsoap/httpda/html/httpda_8h.html
+share/doc/gsoap/httpda/html/httpda_8h__dep__incl.map
+share/doc/gsoap/httpda/html/httpda_8h__dep__incl.md5
+share/doc/gsoap/httpda/html/httpda_8h__dep__incl.png
+share/doc/gsoap/httpda/html/httpda_8h__incl.map
+share/doc/gsoap/httpda/html/httpda_8h__incl.md5
+share/doc/gsoap/httpda/html/httpda_8h__incl.png
+share/doc/gsoap/httpda/html/index.html
+share/doc/gsoap/httpda/html/md5evp_8c.html
+share/doc/gsoap/httpda/html/md5evp_8c__incl.map
+share/doc/gsoap/httpda/html/md5evp_8c__incl.md5
+share/doc/gsoap/httpda/html/md5evp_8c__incl.png
+share/doc/gsoap/httpda/html/md5evp_8h.html
+share/doc/gsoap/httpda/html/md5evp_8h__dep__incl.map
+share/doc/gsoap/httpda/html/md5evp_8h__dep__incl.md5
+share/doc/gsoap/httpda/html/md5evp_8h__dep__incl.png
+share/doc/gsoap/httpda/html/md5evp_8h__incl.map
+share/doc/gsoap/httpda/html/md5evp_8h__incl.md5
+share/doc/gsoap/httpda/html/md5evp_8h__incl.png
+share/doc/gsoap/httpda/html/pages.html
+share/doc/gsoap/httpda/html/structhttp__da__data-members.html
+share/doc/gsoap/httpda/html/structhttp__da__data.html
+share/doc/gsoap/httpda/html/structhttp__da__info-members.html
+share/doc/gsoap/httpda/html/structhttp__da__info.html
+share/doc/gsoap/httpda/html/structhttp__da__session-members.html
+share/doc/gsoap/httpda/html/structhttp__da__session.html
+share/doc/gsoap/httpda/html/structhttp__da__session__coll__graph.map
+share/doc/gsoap/httpda/html/structhttp__da__session__coll__graph.md5
+share/doc/gsoap/httpda/html/structhttp__da__session__coll__graph.png
+share/doc/gsoap/httpda/html/threads_8c.html
+share/doc/gsoap/httpda/html/threads_8c__incl.map
+share/doc/gsoap/httpda/html/threads_8c__incl.md5
+share/doc/gsoap/httpda/html/threads_8c__incl.png
+share/doc/gsoap/httpda/html/threads_8h.html
+share/doc/gsoap/httpda/html/threads_8h__dep__incl.map
+share/doc/gsoap/httpda/html/threads_8h__dep__incl.md5
+share/doc/gsoap/httpda/html/threads_8h__dep__incl.png
+share/doc/gsoap/httpda/html/threads_8h__incl.map
+share/doc/gsoap/httpda/html/threads_8h__incl.md5
+share/doc/gsoap/httpda/html/threads_8h__incl.png
+share/doc/gsoap/httpda/html/xhttpda.html
+share/doc/gsoap/index.css
+share/doc/gsoap/index.html
+share/doc/gsoap/soapdoc2.html
+share/doc/gsoap/soapdoc2.pdf
+share/doc/gsoap/uddi2/Doxyfile
+share/doc/gsoap/uddi2/html/annotated.html
+share/doc/gsoap/uddi2/html/class__disposition_report-members.html
+share/doc/gsoap/uddi2/html/class__disposition_report.html
+share/doc/gsoap/uddi2/html/class__disposition_report__coll__graph.map
+share/doc/gsoap/uddi2/html/class__disposition_report__coll__graph.md5
+share/doc/gsoap/uddi2/html/class__disposition_report__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____access_point-members.html
+share/doc/gsoap/uddi2/html/classuddi2____access_point.html
+share/doc/gsoap/uddi2/html/classuddi2____add___u_s_c_o_r_epublisher_assertions-members.html
+share/doc/gsoap/uddi2/html/classuddi2____add___u_s_c_o_r_epublisher_assertions.html
+share/doc/gsoap/uddi2/html/classuddi2____address-members.html
+share/doc/gsoap/uddi2/html/classuddi2____address.html
+share/doc/gsoap/uddi2/html/classuddi2____address_line-members.html
+share/doc/gsoap/uddi2/html/classuddi2____address_line.html
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_item-members.html
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_item.html
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_item__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_item__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_item__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_report-members.html
+share/doc/gsoap/uddi2/html/classuddi2____assertion_status_report.html
+share/doc/gsoap/uddi2/html/classuddi2____auth_token-members.html
+share/doc/gsoap/uddi2/html/classuddi2____auth_token.html
+share/doc/gsoap/uddi2/html/classuddi2____binding_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____binding_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____binding_template-members.html
+share/doc/gsoap/uddi2/html/classuddi2____binding_template.html
+share/doc/gsoap/uddi2/html/classuddi2____binding_template__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____binding_template__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____binding_template__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____binding_templates-members.html
+share/doc/gsoap/uddi2/html/classuddi2____binding_templates.html
+share/doc/gsoap/uddi2/html/classuddi2____business_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____business_detail_ext-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_detail_ext.html
+share/doc/gsoap/uddi2/html/classuddi2____business_entity-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_entity.html
+share/doc/gsoap/uddi2/html/classuddi2____business_entity__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____business_entity__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____business_entity__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____business_entity_ext-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_entity_ext.html
+share/doc/gsoap/uddi2/html/classuddi2____business_entity_ext__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____business_entity_ext__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____business_entity_ext__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____business_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_info.html
+share/doc/gsoap/uddi2/html/classuddi2____business_info__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____business_info__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____business_info__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____business_infos-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_infos.html
+share/doc/gsoap/uddi2/html/classuddi2____business_list-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_list.html
+share/doc/gsoap/uddi2/html/classuddi2____business_list__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____business_list__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____business_list__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____business_service-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_service.html
+share/doc/gsoap/uddi2/html/classuddi2____business_service__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____business_service__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____business_service__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____business_services-members.html
+share/doc/gsoap/uddi2/html/classuddi2____business_services.html
+share/doc/gsoap/uddi2/html/classuddi2____category_bag-members.html
+share/doc/gsoap/uddi2/html/classuddi2____category_bag.html
+share/doc/gsoap/uddi2/html/classuddi2____contact-members.html
+share/doc/gsoap/uddi2/html/classuddi2____contact.html
+share/doc/gsoap/uddi2/html/classuddi2____contacts-members.html
+share/doc/gsoap/uddi2/html/classuddi2____contacts.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_ebinding-members.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_ebinding.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_ebusiness-members.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_ebusiness.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_epublisher_assertions-members.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_epublisher_assertions.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_eservice-members.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_eservice.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_et_model-members.html
+share/doc/gsoap/uddi2/html/classuddi2____delete___u_s_c_o_r_et_model.html
+share/doc/gsoap/uddi2/html/classuddi2____description-members.html
+share/doc/gsoap/uddi2/html/classuddi2____description.html
+share/doc/gsoap/uddi2/html/classuddi2____discard___u_s_c_o_r_eauth_token-members.html
+share/doc/gsoap/uddi2/html/classuddi2____discard___u_s_c_o_r_eauth_token.html
+share/doc/gsoap/uddi2/html/classuddi2____discovery_u_r_l-members.html
+share/doc/gsoap/uddi2/html/classuddi2____discovery_u_r_l.html
+share/doc/gsoap/uddi2/html/classuddi2____discovery_u_r_ls-members.html
+share/doc/gsoap/uddi2/html/classuddi2____discovery_u_r_ls.html
+share/doc/gsoap/uddi2/html/classuddi2____disposition_report-members.html
+share/doc/gsoap/uddi2/html/classuddi2____disposition_report.html
+share/doc/gsoap/uddi2/html/classuddi2____email-members.html
+share/doc/gsoap/uddi2/html/classuddi2____email.html
+share/doc/gsoap/uddi2/html/classuddi2____err_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____err_info.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebinding-members.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebinding.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebinding__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebinding__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebinding__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebusiness-members.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebusiness.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebusiness__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebusiness__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_ebusiness__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_erelated_businesses-members.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_erelated_businesses.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_erelated_businesses__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_erelated_businesses__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_erelated_businesses__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_eservice-members.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_eservice.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_eservice__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_eservice__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_eservice__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_et_model-members.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_et_model.html
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_et_model__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_et_model__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____find___u_s_c_o_r_et_model__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____find_qualifiers-members.html
+share/doc/gsoap/uddi2/html/classuddi2____find_qualifiers.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eassertion_status_report-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eassertion_status_report.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eauth_token-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eauth_token.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_ebinding_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_ebinding_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_ebusiness_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_ebusiness_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_ebusiness_detail_ext-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_ebusiness_detail_ext.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_epublisher_assertions-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_epublisher_assertions.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eregistered_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eregistered_info.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eservice_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_eservice_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_et_model_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____get___u_s_c_o_r_et_model_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____hosting_redirector-members.html
+share/doc/gsoap/uddi2/html/classuddi2____hosting_redirector.html
+share/doc/gsoap/uddi2/html/classuddi2____identifier_bag-members.html
+share/doc/gsoap/uddi2/html/classuddi2____identifier_bag.html
+share/doc/gsoap/uddi2/html/classuddi2____instance_details-members.html
+share/doc/gsoap/uddi2/html/classuddi2____instance_details.html
+share/doc/gsoap/uddi2/html/classuddi2____instance_details__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____instance_details__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____instance_details__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____keyed_reference-members.html
+share/doc/gsoap/uddi2/html/classuddi2____keyed_reference.html
+share/doc/gsoap/uddi2/html/classuddi2____keys_owned-members.html
+share/doc/gsoap/uddi2/html/classuddi2____keys_owned.html
+share/doc/gsoap/uddi2/html/classuddi2____name-members.html
+share/doc/gsoap/uddi2/html/classuddi2____name.html
+share/doc/gsoap/uddi2/html/classuddi2____overview_doc-members.html
+share/doc/gsoap/uddi2/html/classuddi2____overview_doc.html
+share/doc/gsoap/uddi2/html/classuddi2____phone-members.html
+share/doc/gsoap/uddi2/html/classuddi2____phone.html
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertion-members.html
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertion.html
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertion__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertion__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertion__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertions-members.html
+share/doc/gsoap/uddi2/html/classuddi2____publisher_assertions.html
+share/doc/gsoap/uddi2/html/classuddi2____registered_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____registered_info.html
+share/doc/gsoap/uddi2/html/classuddi2____registered_info__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____registered_info__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____registered_info__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____related_business_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____related_business_info.html
+share/doc/gsoap/uddi2/html/classuddi2____related_business_infos-members.html
+share/doc/gsoap/uddi2/html/classuddi2____related_business_infos.html
+share/doc/gsoap/uddi2/html/classuddi2____related_businesses_list-members.html
+share/doc/gsoap/uddi2/html/classuddi2____related_businesses_list.html
+share/doc/gsoap/uddi2/html/classuddi2____related_businesses_list__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____related_businesses_list__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____related_businesses_list__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____result-members.html
+share/doc/gsoap/uddi2/html/classuddi2____result.html
+share/doc/gsoap/uddi2/html/classuddi2____result__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____result__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____result__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_ebinding-members.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_ebinding.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_ebusiness-members.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_ebusiness.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_eservice-members.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_eservice.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_et_model-members.html
+share/doc/gsoap/uddi2/html/classuddi2____save___u_s_c_o_r_et_model.html
+share/doc/gsoap/uddi2/html/classuddi2____service_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____service_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____service_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____service_info.html
+share/doc/gsoap/uddi2/html/classuddi2____service_infos-members.html
+share/doc/gsoap/uddi2/html/classuddi2____service_infos.html
+share/doc/gsoap/uddi2/html/classuddi2____service_list-members.html
+share/doc/gsoap/uddi2/html/classuddi2____service_list.html
+share/doc/gsoap/uddi2/html/classuddi2____service_list__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____service_list__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____service_list__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____set___u_s_c_o_r_epublisher_assertions-members.html
+share/doc/gsoap/uddi2/html/classuddi2____set___u_s_c_o_r_epublisher_assertions.html
+share/doc/gsoap/uddi2/html/classuddi2____shared_relationships-members.html
+share/doc/gsoap/uddi2/html/classuddi2____shared_relationships.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____t_model__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____t_model__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____t_model_bag-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_bag.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_detail-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_detail.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_info.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_info__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____t_model_info__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____t_model_info__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____t_model_infos-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_infos.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_details-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_details.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_info-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_info.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_info__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_info__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____t_model_instance_info__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____t_model_list-members.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_list.html
+share/doc/gsoap/uddi2/html/classuddi2____t_model_list__coll__graph.map
+share/doc/gsoap/uddi2/html/classuddi2____t_model_list__coll__graph.md5
+share/doc/gsoap/uddi2/html/classuddi2____t_model_list__coll__graph.png
+share/doc/gsoap/uddi2/html/classuddi2____validate___u_s_c_o_r_evalues-members.html
+share/doc/gsoap/uddi2/html/classuddi2____validate___u_s_c_o_r_evalues.html
+share/doc/gsoap/uddi2/html/doxygen.css
+share/doc/gsoap/uddi2/html/doxygen.png
+share/doc/gsoap/uddi2/html/example1.html
+share/doc/gsoap/uddi2/html/example2.html
+share/doc/gsoap/uddi2/html/example3.html
+share/doc/gsoap/uddi2/html/files.html
+share/doc/gsoap/uddi2/html/ftv2blank.png
+share/doc/gsoap/uddi2/html/ftv2doc.png
+share/doc/gsoap/uddi2/html/ftv2folderclosed.png
+share/doc/gsoap/uddi2/html/ftv2folderopen.png
+share/doc/gsoap/uddi2/html/ftv2lastnode.png
+share/doc/gsoap/uddi2/html/ftv2link.png
+share/doc/gsoap/uddi2/html/ftv2mlastnode.png
+share/doc/gsoap/uddi2/html/ftv2mnode.png
+share/doc/gsoap/uddi2/html/ftv2node.png
+share/doc/gsoap/uddi2/html/ftv2plastnode.png
+share/doc/gsoap/uddi2/html/ftv2pnode.png
+share/doc/gsoap/uddi2/html/ftv2vertline.png
+share/doc/gsoap/uddi2/html/functions.html
+share/doc/gsoap/uddi2/html/functions_func.html
+share/doc/gsoap/uddi2/html/functions_vars.html
+share/doc/gsoap/uddi2/html/globals.html
+share/doc/gsoap/uddi2/html/globals_enum.html
+share/doc/gsoap/uddi2/html/globals_eval.html
+share/doc/gsoap/uddi2/html/globals_func.html
+share/doc/gsoap/uddi2/html/globals_type.html
+share/doc/gsoap/uddi2/html/graph_legend.dot
+share/doc/gsoap/uddi2/html/graph_legend.html
+share/doc/gsoap/uddi2/html/graph_legend.png
+share/doc/gsoap/uddi2/html/index.html
+share/doc/gsoap/uddi2/html/inquiresoap.html
+share/doc/gsoap/uddi2/html/main.html
+share/doc/gsoap/uddi2/html/pages.html
+share/doc/gsoap/uddi2/html/publishsoap.html
+share/doc/gsoap/uddi2/html/tree.html
+share/doc/gsoap/uddi2/html/uddi__v2_8h.html
+share/doc/gsoap/wsa/Doxyfile
+share/doc/gsoap/wsa/html/annotated.html
+share/doc/gsoap/wsa/html/doxygen.css
+share/doc/gsoap/wsa/html/doxygen.png
+share/doc/gsoap/wsa/html/files.html
+share/doc/gsoap/wsa/html/functions.html
+share/doc/gsoap/wsa/html/functions_vars.html
+share/doc/gsoap/wsa/html/globals.html
+share/doc/gsoap/wsa/html/globals_defs.html
+share/doc/gsoap/wsa/html/globals_func.html
+share/doc/gsoap/wsa/html/globals_vars.html
+share/doc/gsoap/wsa/html/graph_legend.dot
+share/doc/gsoap/wsa/html/graph_legend.html
+share/doc/gsoap/wsa/html/graph_legend.png
+share/doc/gsoap/wsa/html/index.html
+share/doc/gsoap/wsa/html/pages.html
+share/doc/gsoap/wsa/html/structsoap__wsa__data-members.html
+share/doc/gsoap/wsa/html/structsoap__wsa__data.html
+share/doc/gsoap/wsa/html/wsa.html
+share/doc/gsoap/wsa/html/wsa_0.html
+share/doc/gsoap/wsa/html/wsaapi_8c.html
+share/doc/gsoap/wsa/html/wsaapi_8c__incl.map
+share/doc/gsoap/wsa/html/wsaapi_8c__incl.md5
+share/doc/gsoap/wsa/html/wsaapi_8c__incl.png
+share/doc/gsoap/wsa/html/wsaapi_8h.html
+share/doc/gsoap/wsa/html/wsaapi_8h__dep__incl.map
+share/doc/gsoap/wsa/html/wsaapi_8h__dep__incl.md5
+share/doc/gsoap/wsa/html/wsaapi_8h__dep__incl.png
+share/doc/gsoap/wsa/html/wsaapi_8h__incl.map
+share/doc/gsoap/wsa/html/wsaapi_8h__incl.md5
+share/doc/gsoap/wsa/html/wsaapi_8h__incl.png
+share/doc/gsoap/wsrm/Doxyfile
+share/doc/gsoap/wsrm/html/annotated.html
+share/doc/gsoap/wsrm/html/doxygen.css
+share/doc/gsoap/wsrm/html/doxygen.png
+share/doc/gsoap/wsrm/html/duration_8c.html
+share/doc/gsoap/wsrm/html/duration_8c__incl.map
+share/doc/gsoap/wsrm/html/duration_8c__incl.md5
+share/doc/gsoap/wsrm/html/duration_8c__incl.png
+share/doc/gsoap/wsrm/html/duration_8h.html
+share/doc/gsoap/wsrm/html/files.html
+share/doc/gsoap/wsrm/html/functions.html
+share/doc/gsoap/wsrm/html/functions_vars.html
+share/doc/gsoap/wsrm/html/globals.html
+share/doc/gsoap/wsrm/html/globals_defs.html
+share/doc/gsoap/wsrm/html/globals_enum.html
+share/doc/gsoap/wsrm/html/globals_eval.html
+share/doc/gsoap/wsrm/html/globals_func.html
+share/doc/gsoap/wsrm/html/globals_type.html
+share/doc/gsoap/wsrm/html/globals_vars.html
+share/doc/gsoap/wsrm/html/graph_legend.dot
+share/doc/gsoap/wsrm/html/graph_legend.html
+share/doc/gsoap/wsrm/html/graph_legend.png
+share/doc/gsoap/wsrm/html/index.html
+share/doc/gsoap/wsrm/html/page_xmldatabinding.html
+share/doc/gsoap/wsrm/html/pages.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement-members.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement_1_1__wsrm_____sequence_acknowledgement___acknowledgement_range-members.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement_1_1__wsrm_____sequence_acknowledgement___acknowledgement_range.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement_1_1__wsrm_____sequence_acknowledgement___final.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement_1_1__wsrm_____sequence_acknowledgement___none.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement__coll__graph.map
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement__coll__graph.md5
+share/doc/gsoap/wsrm/html/struct__wsrm_____sequence_acknowledgement__coll__graph.png
+share/doc/gsoap/wsrm/html/struct__wsrm_____uses_sequence_s_s_l.html
+share/doc/gsoap/wsrm/html/struct__wsrm_____uses_sequence_s_t_r.html
+share/doc/gsoap/wsrm/html/struct_s_o_a_p___e_n_v_____header-members.html
+share/doc/gsoap/wsrm/html/struct_s_o_a_p___e_n_v_____header.html
+share/doc/gsoap/wsrm/html/struct_s_o_a_p___e_n_v_____header__coll__graph.map
+share/doc/gsoap/wsrm/html/struct_s_o_a_p___e_n_v_____header__coll__graph.md5
+share/doc/gsoap/wsrm/html/struct_s_o_a_p___e_n_v_____header__coll__graph.png
+share/doc/gsoap/wsrm/html/structsoap__wsa__data-members.html
+share/doc/gsoap/wsrm/html/structsoap__wsa__data.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__content-members.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__content.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__content__coll__graph.map
+share/doc/gsoap/wsrm/html/structsoap__wsrm__content__coll__graph.md5
+share/doc/gsoap/wsrm/html/structsoap__wsrm__content__coll__graph.png
+share/doc/gsoap/wsrm/html/structsoap__wsrm__data-members.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__data.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__data__coll__graph.map
+share/doc/gsoap/wsrm/html/structsoap__wsrm__data__coll__graph.md5
+share/doc/gsoap/wsrm/html/structsoap__wsrm__data__coll__graph.png
+share/doc/gsoap/wsrm/html/structsoap__wsrm__message-members.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__message.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__message__coll__graph.map
+share/doc/gsoap/wsrm/html/structsoap__wsrm__message__coll__graph.md5
+share/doc/gsoap/wsrm/html/structsoap__wsrm__message__coll__graph.png
+share/doc/gsoap/wsrm/html/structsoap__wsrm__range-members.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__range.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__range__coll__graph.map
+share/doc/gsoap/wsrm/html/structsoap__wsrm__range__coll__graph.md5
+share/doc/gsoap/wsrm/html/structsoap__wsrm__range__coll__graph.png
+share/doc/gsoap/wsrm/html/structsoap__wsrm__ranges.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__sequence-members.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__sequence.html
+share/doc/gsoap/wsrm/html/structsoap__wsrm__sequence__coll__graph.map
+share/doc/gsoap/wsrm/html/structsoap__wsrm__sequence__coll__graph.md5
+share/doc/gsoap/wsrm/html/structsoap__wsrm__sequence__coll__graph.png
+share/doc/gsoap/wsrm/html/structwsa5_____endpoint_reference_type-members.html
+share/doc/gsoap/wsrm/html/structwsa5_____endpoint_reference_type.html
+share/doc/gsoap/wsrm/html/structwsa5_____endpoint_reference_type__coll__graph.map
+share/doc/gsoap/wsrm/html/structwsa5_____endpoint_reference_type__coll__graph.md5
+share/doc/gsoap/wsrm/html/structwsa5_____endpoint_reference_type__coll__graph.png
+share/doc/gsoap/wsrm/html/structwsa5_____metadata_type-members.html
+share/doc/gsoap/wsrm/html/structwsa5_____metadata_type.html
+share/doc/gsoap/wsrm/html/structwsa5_____problem_action_type-members.html
+share/doc/gsoap/wsrm/html/structwsa5_____problem_action_type.html
+share/doc/gsoap/wsrm/html/structwsa5_____reference_parameters_type-members.html
+share/doc/gsoap/wsrm/html/structwsa5_____reference_parameters_type.html
+share/doc/gsoap/wsrm/html/structwsa5_____relates_to_type-members.html
+share/doc/gsoap/wsrm/html/structwsa5_____relates_to_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____accept_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____accept_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____accept_type__coll__graph.map
+share/doc/gsoap/wsrm/html/structwsrm_____accept_type__coll__graph.md5
+share/doc/gsoap/wsrm/html/structwsrm_____accept_type__coll__graph.png
+share/doc/gsoap/wsrm/html/structwsrm_____ack_requested_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____ack_requested_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____close_sequence_response_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____close_sequence_response_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____close_sequence_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____close_sequence_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_response_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_response_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_response_type__coll__graph.map
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_response_type__coll__graph.md5
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_response_type__coll__graph.png
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_type__coll__graph.map
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_type__coll__graph.md5
+share/doc/gsoap/wsrm/html/structwsrm_____create_sequence_type__coll__graph.png
+share/doc/gsoap/wsrm/html/structwsrm_____offer_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____offer_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____offer_type__coll__graph.map
+share/doc/gsoap/wsrm/html/structwsrm_____offer_type__coll__graph.md5
+share/doc/gsoap/wsrm/html/structwsrm_____offer_type__coll__graph.png
+share/doc/gsoap/wsrm/html/structwsrm_____sequence_fault_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____sequence_fault_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____sequence_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____sequence_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____terminate_sequence_response_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____terminate_sequence_response_type.html
+share/doc/gsoap/wsrm/html/structwsrm_____terminate_sequence_type-members.html
+share/doc/gsoap/wsrm/html/structwsrm_____terminate_sequence_type.html
+share/doc/gsoap/wsrm/html/wsa.html
+share/doc/gsoap/wsrm/html/wsa5_8h.html
+share/doc/gsoap/wsrm/html/wsa_0.html
+share/doc/gsoap/wsrm/html/wsaapi_8c.html
+share/doc/gsoap/wsrm/html/wsaapi_8c__incl.map
+share/doc/gsoap/wsrm/html/wsaapi_8c__incl.md5
+share/doc/gsoap/wsrm/html/wsaapi_8c__incl.png
+share/doc/gsoap/wsrm/html/wsaapi_8h.html
+share/doc/gsoap/wsrm/html/wsaapi_8h__dep__incl.map
+share/doc/gsoap/wsrm/html/wsaapi_8h__dep__incl.md5
+share/doc/gsoap/wsrm/html/wsaapi_8h__dep__incl.png
+share/doc/gsoap/wsrm/html/wsaapi_8h__incl.map
+share/doc/gsoap/wsrm/html/wsaapi_8h__incl.md5
+share/doc/gsoap/wsrm/html/wsaapi_8h__incl.png
+share/doc/gsoap/wsrm/html/wsrm.html
+share/doc/gsoap/wsrm/html/wsrm_0.html
+share/doc/gsoap/wsrm/html/wsrm_8h.html
+share/doc/gsoap/wsrm/html/wsrmapi_8c.html
+share/doc/gsoap/wsrm/html/wsrmapi_8c__incl.map
+share/doc/gsoap/wsrm/html/wsrmapi_8c__incl.md5
+share/doc/gsoap/wsrm/html/wsrmapi_8c__incl.png
+share/doc/gsoap/wsrm/html/wsrmapi_8h.html
+share/doc/gsoap/wsrm/html/wsrmapi_8h__dep__incl.map
+share/doc/gsoap/wsrm/html/wsrmapi_8h__dep__incl.md5
+share/doc/gsoap/wsrm/html/wsrmapi_8h__dep__incl.png
+share/doc/gsoap/wsrm/html/wsrmapi_8h__incl.map
+share/doc/gsoap/wsrm/html/wsrmapi_8h__incl.md5
+share/doc/gsoap/wsrm/html/wsrmapi_8h__incl.png
+share/doc/gsoap/wsrm/html/wsrx_8h.html
+share/doc/gsoap/wsse/Doxyfile
+share/doc/gsoap/wsse/html/.DS_Store
+share/doc/gsoap/wsse/html/annotated.html
+share/doc/gsoap/wsse/html/c14n_8h.html
+share/doc/gsoap/wsse/html/doxygen.css
+share/doc/gsoap/wsse/html/doxygen.png
+share/doc/gsoap/wsse/html/ds_8h.html
+share/doc/gsoap/wsse/html/files.html
+share/doc/gsoap/wsse/html/functions.html
+share/doc/gsoap/wsse/html/functions_vars.html
+share/doc/gsoap/wsse/html/globals.html
+share/doc/gsoap/wsse/html/globals_defs.html
+share/doc/gsoap/wsse/html/globals_enum.html
+share/doc/gsoap/wsse/html/globals_eval.html
+share/doc/gsoap/wsse/html/globals_func.html
+share/doc/gsoap/wsse/html/globals_type.html
+share/doc/gsoap/wsse/html/globals_vars.html
+share/doc/gsoap/wsse/html/graph_legend.dot
+share/doc/gsoap/wsse/html/graph_legend.html
+share/doc/gsoap/wsse/html/graph_legend.png
+share/doc/gsoap/wsse/html/index.html
+share/doc/gsoap/wsse/html/pages.html
+share/doc/gsoap/wsse/html/smdevp.html
+share/doc/gsoap/wsse/html/smdevp_8c.html
+share/doc/gsoap/wsse/html/smdevp_8c__incl.map
+share/doc/gsoap/wsse/html/smdevp_8c__incl.md5
+share/doc/gsoap/wsse/html/smdevp_8c__incl.png
+share/doc/gsoap/wsse/html/smdevp_8h.html
+share/doc/gsoap/wsse/html/smdevp_8h__dep__incl.map
+share/doc/gsoap/wsse/html/smdevp_8h__dep__incl.md5
+share/doc/gsoap/wsse/html/smdevp_8h__dep__incl.png
+share/doc/gsoap/wsse/html/smdevp_8h__incl.map
+share/doc/gsoap/wsse/html/smdevp_8h__incl.md5
+share/doc/gsoap/wsse/html/smdevp_8h__incl.png
+share/doc/gsoap/wsse/html/struct__c14n_____inclusive_namespaces-members.html
+share/doc/gsoap/wsse/html/struct__c14n_____inclusive_namespaces.html
+share/doc/gsoap/wsse/html/struct__wsse_____binary_security_token-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____binary_security_token.html
+share/doc/gsoap/wsse/html/struct__wsse_____embedded-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____embedded.html
+share/doc/gsoap/wsse/html/struct__wsse_____key_identifier-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____key_identifier.html
+share/doc/gsoap/wsse/html/struct__wsse_____password-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____password.html
+share/doc/gsoap/wsse/html/struct__wsse_____reference-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____reference.html
+share/doc/gsoap/wsse/html/struct__wsse_____security-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____security.html
+share/doc/gsoap/wsse/html/struct__wsse_____security__coll__graph.map
+share/doc/gsoap/wsse/html/struct__wsse_____security__coll__graph.md5
+share/doc/gsoap/wsse/html/struct__wsse_____security__coll__graph.png
+share/doc/gsoap/wsse/html/struct__wsse_____security_token_reference-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____security_token_reference.html
+share/doc/gsoap/wsse/html/struct__wsse_____security_token_reference__coll__graph.map
+share/doc/gsoap/wsse/html/struct__wsse_____security_token_reference__coll__graph.md5
+share/doc/gsoap/wsse/html/struct__wsse_____security_token_reference__coll__graph.png
+share/doc/gsoap/wsse/html/struct__wsse_____username_token-members.html
+share/doc/gsoap/wsse/html/struct__wsse_____username_token.html
+share/doc/gsoap/wsse/html/struct__wsse_____username_token__coll__graph.map
+share/doc/gsoap/wsse/html/struct__wsse_____username_token__coll__graph.md5
+share/doc/gsoap/wsse/html/struct__wsse_____username_token__coll__graph.png
+share/doc/gsoap/wsse/html/struct__wsu_____timestamp-members.html
+share/doc/gsoap/wsse/html/struct__wsu_____timestamp.html
+share/doc/gsoap/wsse/html/struct_s_o_a_p___e_n_v_____header-members.html
+share/doc/gsoap/wsse/html/struct_s_o_a_p___e_n_v_____header.html
+share/doc/gsoap/wsse/html/struct_s_o_a_p___e_n_v_____header__coll__graph.map
+share/doc/gsoap/wsse/html/struct_s_o_a_p___e_n_v_____header__coll__graph.md5
+share/doc/gsoap/wsse/html/struct_s_o_a_p___e_n_v_____header__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____canonicalization_method_type-members.html
+share/doc/gsoap/wsse/html/structds_____canonicalization_method_type.html
+share/doc/gsoap/wsse/html/structds_____canonicalization_method_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____canonicalization_method_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____canonicalization_method_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____d_s_a_key_value_type-members.html
+share/doc/gsoap/wsse/html/structds_____d_s_a_key_value_type.html
+share/doc/gsoap/wsse/html/structds_____digest_method_type-members.html
+share/doc/gsoap/wsse/html/structds_____digest_method_type.html
+share/doc/gsoap/wsse/html/structds_____key_info_type-members.html
+share/doc/gsoap/wsse/html/structds_____key_info_type.html
+share/doc/gsoap/wsse/html/structds_____key_info_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____key_info_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____key_info_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____key_value_type-members.html
+share/doc/gsoap/wsse/html/structds_____key_value_type.html
+share/doc/gsoap/wsse/html/structds_____key_value_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____key_value_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____key_value_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____r_s_a_key_value_type-members.html
+share/doc/gsoap/wsse/html/structds_____r_s_a_key_value_type.html
+share/doc/gsoap/wsse/html/structds_____reference_type-members.html
+share/doc/gsoap/wsse/html/structds_____reference_type.html
+share/doc/gsoap/wsse/html/structds_____reference_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____reference_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____reference_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____retrieval_method_type-members.html
+share/doc/gsoap/wsse/html/structds_____retrieval_method_type.html
+share/doc/gsoap/wsse/html/structds_____retrieval_method_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____retrieval_method_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____retrieval_method_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____signature_method_type-members.html
+share/doc/gsoap/wsse/html/structds_____signature_method_type.html
+share/doc/gsoap/wsse/html/structds_____signature_type-members.html
+share/doc/gsoap/wsse/html/structds_____signature_type.html
+share/doc/gsoap/wsse/html/structds_____signature_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____signature_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____signature_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____signed_info_type-members.html
+share/doc/gsoap/wsse/html/structds_____signed_info_type.html
+share/doc/gsoap/wsse/html/structds_____signed_info_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____signed_info_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____signed_info_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____transform_type-members.html
+share/doc/gsoap/wsse/html/structds_____transform_type.html
+share/doc/gsoap/wsse/html/structds_____transform_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____transform_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____transform_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____transforms_type-members.html
+share/doc/gsoap/wsse/html/structds_____transforms_type.html
+share/doc/gsoap/wsse/html/structds_____transforms_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____transforms_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____transforms_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____x509_data_type-members.html
+share/doc/gsoap/wsse/html/structds_____x509_data_type.html
+share/doc/gsoap/wsse/html/structds_____x509_data_type__coll__graph.map
+share/doc/gsoap/wsse/html/structds_____x509_data_type__coll__graph.md5
+share/doc/gsoap/wsse/html/structds_____x509_data_type__coll__graph.png
+share/doc/gsoap/wsse/html/structds_____x509_issuer_serial_type-members.html
+share/doc/gsoap/wsse/html/structds_____x509_issuer_serial_type.html
+share/doc/gsoap/wsse/html/structsoap__smd__data-members.html
+share/doc/gsoap/wsse/html/structsoap__smd__data.html
+share/doc/gsoap/wsse/html/structsoap__wsse__data-members.html
+share/doc/gsoap/wsse/html/structsoap__wsse__data.html
+share/doc/gsoap/wsse/html/structsoap__wsse__data__coll__graph.map
+share/doc/gsoap/wsse/html/structsoap__wsse__data__coll__graph.md5
+share/doc/gsoap/wsse/html/structsoap__wsse__data__coll__graph.png
+share/doc/gsoap/wsse/html/structsoap__wsse__digest-members.html
+share/doc/gsoap/wsse/html/structsoap__wsse__digest.html
+share/doc/gsoap/wsse/html/structsoap__wsse__digest__coll__graph.map
+share/doc/gsoap/wsse/html/structsoap__wsse__digest__coll__graph.md5
+share/doc/gsoap/wsse/html/structsoap__wsse__digest__coll__graph.png
+share/doc/gsoap/wsse/html/structsoap__wsse__session-members.html
+share/doc/gsoap/wsse/html/structsoap__wsse__session.html
+share/doc/gsoap/wsse/html/structsoap__wsse__session__coll__graph.map
+share/doc/gsoap/wsse/html/structsoap__wsse__session__coll__graph.md5
+share/doc/gsoap/wsse/html/structsoap__wsse__session__coll__graph.png
+share/doc/gsoap/wsse/html/wsse.html
+share/doc/gsoap/wsse/html/wsse_8h.html
+share/doc/gsoap/wsse/html/wsseapi_8c.html
+share/doc/gsoap/wsse/html/wsseapi_8c__incl.map
+share/doc/gsoap/wsse/html/wsseapi_8c__incl.md5
+share/doc/gsoap/wsse/html/wsseapi_8c__incl.png
+share/doc/gsoap/wsse/html/wsseapi_8h.html
+share/doc/gsoap/wsse/html/wsseapi_8h__dep__incl.map
+share/doc/gsoap/wsse/html/wsseapi_8h__dep__incl.md5
+share/doc/gsoap/wsse/html/wsseapi_8h__dep__incl.png
+share/doc/gsoap/wsse/html/wsseapi_8h__incl.map
+share/doc/gsoap/wsse/html/wsseapi_8h__incl.md5
+share/doc/gsoap/wsse/html/wsseapi_8h__incl.png
+share/doc/gsoap/wsse/html/wsu_8h.html
share/gsoap/WS/README.txt
share/gsoap/WS/WS-Addressing.xsd
share/gsoap/WS/WS-Addressing03.xsd
@@ -22,9 +713,11 @@ share/gsoap/WS/WS-Addressing05.xsd
share/gsoap/WS/WS-Discovery.wsdl
share/gsoap/WS/WS-Enumeration.wsdl
share/gsoap/WS/WS-Policy.xsd
+share/gsoap/WS/WS-Policy12.xsd
share/gsoap/WS/WS-ReliableMessaging.wsdl
share/gsoap/WS/WS-ReliableMessaging.xsd
share/gsoap/WS/WS-Routing.xsd
+share/gsoap/WS/WS-SecurityPolicy.xsd
share/gsoap/WS/WS-typemap.dat
share/gsoap/WS/discovery.xsd
share/gsoap/WS/ds.xsd
@@ -35,6 +728,8 @@ share/gsoap/WS/ws-reliability-1.1.xsd
share/gsoap/WS/wsse.xsd
share/gsoap/WS/wsu.xsd
share/gsoap/custom/README.txt
+share/gsoap/custom/duration.c
+share/gsoap/custom/duration.h
share/gsoap/custom/long_double.c
share/gsoap/custom/long_double.h
share/gsoap/custom/struct_timeval.c
@@ -75,6 +770,7 @@ share/gsoap/import/wsrm4.h
share/gsoap/import/wsrp.h
share/gsoap/import/wsrx.h
share/gsoap/import/wsse.h
+share/gsoap/import/wsse11.h
share/gsoap/import/wsse2.h
share/gsoap/import/wsu.h
share/gsoap/import/xlink.h
@@ -105,6 +801,8 @@ share/gsoap/plugin/httpmd5test.c
share/gsoap/plugin/httpmd5test.h
share/gsoap/plugin/httppost.c
share/gsoap/plugin/httppost.h
+share/gsoap/plugin/httpposttest.c
+share/gsoap/plugin/httpposttest.h
share/gsoap/plugin/logging.c
share/gsoap/plugin/logging.h
share/gsoap/plugin/md5evp.c
@@ -117,6 +815,8 @@ share/gsoap/plugin/threads.c
share/gsoap/plugin/threads.h
share/gsoap/plugin/wsaapi.c
share/gsoap/plugin/wsaapi.h
+share/gsoap/plugin/wsrmapi.c
+share/gsoap/plugin/wsrmapi.h
share/gsoap/plugin/wsse2api.c
share/gsoap/plugin/wsse2api.h
share/gsoap/plugin/wsseapi.c
diff --git a/devel/gsoap/distinfo b/devel/gsoap/distinfo
index 1a4e8637dcb..dac9e27a5f0 100644
--- a/devel/gsoap/distinfo
+++ b/devel/gsoap/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.4 2009/11/29 21:31:57 dholland Exp $
+$NetBSD: distinfo,v 1.5 2010/09/18 12:11:36 obache Exp $
-SHA1 (gsoap_2.7.13.tar.gz) = 4c91ce860ee6853f785a11484c7298d294a53ef6
-RMD160 (gsoap_2.7.13.tar.gz) = 58f2bcd95199fdec3c5ce6579374148eaab955b1
-Size (gsoap_2.7.13.tar.gz) = 6564489 bytes
-SHA1 (patch-aa) = 6e0b1c00244c1dcada571e8d3a7c4b2be5800df3
-SHA1 (patch-ab) = 9a35355d7553d5063278574109a2c1121a2a5b18
-SHA1 (patch-ac) = 0677e3b3efed5b26770782296d9b643a670af0a9
+SHA1 (gsoap_2.7.17.zip) = 573a08ab7d8ca2d970158911482c308484fdd5ed
+RMD160 (gsoap_2.7.17.zip) = 3f947cbc5e1656dd82b8c6425816cfaf08063c19
+Size (gsoap_2.7.17.zip) = 10224444 bytes
+SHA1 (patch-aa) = d492d2e1085451fed9b70e975f813214ff2d10dd
+SHA1 (patch-ab) = c3742604ca37f2146b958dd476bd41bdbe0bb561
+SHA1 (patch-ac) = 66b9df9b97fa96b894cad2c1affe6c4285b36e1a
diff --git a/devel/gsoap/patches/patch-aa b/devel/gsoap/patches/patch-aa
index 58c65536d80..9007abddaef 100644
--- a/devel/gsoap/patches/patch-aa
+++ b/devel/gsoap/patches/patch-aa
@@ -1,8 +1,10 @@
-$NetBSD: patch-aa,v 1.1 2009/05/13 18:46:17 hasso Exp $
+$NetBSD: patch-aa,v 1.2 2010/09/18 12:11:36 obache Exp $
---- gsoap/stdsoap2.c.orig 2009-05-13 17:50:52 +0300
-+++ gsoap/stdsoap2.c 2009-05-13 17:51:37 +0300
-@@ -3585,7 +3585,7 @@ tcp_gethost(struct soap *soap, const cha
+DragonFly support.
+
+--- gsoap/stdsoap2.c.orig 2010-05-09 18:10:13.000000000 +0000
++++ gsoap/stdsoap2.c
+@@ -3311,7 +3311,7 @@ tcp_gethost(struct soap *soap, const cha
{ memcpy(inaddr, &iadd, sizeof(iadd));
return SOAP_OK;
}
diff --git a/devel/gsoap/patches/patch-ab b/devel/gsoap/patches/patch-ab
index 64b1f278f5f..4051d536e86 100644
--- a/devel/gsoap/patches/patch-ab
+++ b/devel/gsoap/patches/patch-ab
@@ -1,8 +1,10 @@
-$NetBSD: patch-ab,v 1.1 2009/05/13 18:46:17 hasso Exp $
+$NetBSD: patch-ab,v 1.2 2010/09/18 12:11:36 obache Exp $
---- gsoap/stdsoap2.cpp.orig 2009-05-13 17:52:06 +0300
-+++ gsoap/stdsoap2.cpp 2009-05-13 17:52:37 +0300
-@@ -3585,7 +3585,7 @@ tcp_gethost(struct soap *soap, const cha
+DragonFly support.
+
+--- gsoap/stdsoap2.cpp.orig 2010-05-09 18:10:13.000000000 +0000
++++ gsoap/stdsoap2.cpp
+@@ -3311,7 +3311,7 @@ tcp_gethost(struct soap *soap, const cha
{ memcpy(inaddr, &iadd, sizeof(iadd));
return SOAP_OK;
}
diff --git a/devel/gsoap/patches/patch-ac b/devel/gsoap/patches/patch-ac
index 51390506a49..ffb24293220 100644
--- a/devel/gsoap/patches/patch-ac
+++ b/devel/gsoap/patches/patch-ac
@@ -1,15 +1,15 @@
-$NetBSD: patch-ac,v 1.1 2009/11/29 21:31:57 dholland Exp $
+$NetBSD: patch-ac,v 1.2 2010/09/18 12:11:36 obache Exp $
Get socklen_t defined correctly.
---- gsoap/stdsoap2.h~ 2009-03-21 17:24:44.000000000 -0400
-+++ gsoap/stdsoap2.h 2009-11-29 15:47:13.000000000 -0500
-@@ -676,7 +676,7 @@ extern "C" {
+--- gsoap/stdsoap2.h.orig 2010-05-09 18:10:13.000000000 +0000
++++ gsoap/stdsoap2.h
+@@ -715,7 +715,7 @@ extern "C" {
# endif
#elif defined(SOCKLEN_T)
# define SOAP_SOCKLEN_T SOCKLEN_T
--#elif defined(__socklen_t_defined) || defined(_SOCKLEN_T) || defined(CYGWIN) || defined(FREEBSD) || defined(__FreeBSD__) || defined(__QNX__) || defined(QNX) || defined(OS390)
-+#elif defined(__socklen_t_defined) || defined(_SOCKLEN_T) || defined(CYGWIN) || defined(FREEBSD) || defined(__FreeBSD__) || defined(__QNX__) || defined(QNX) || defined(OS390) || defined(__NetBSD__) || defined(__OpenBSD__)
+-#elif defined(__socklen_t_defined) || defined(_SOCKLEN_T) || defined(CYGWIN) || defined(FREEBSD) || defined(__FreeBSD__) || defined(OPENBSD) || defined(__QNX__) || defined(QNX) || defined(OS390) || defined(HP_UX)
++#elif defined(__socklen_t_defined) || defined(_SOCKLEN_T) || defined(CYGWIN) || defined(FREEBSD) || defined(__FreeBSD__) || defined(OPENBSD) || defined(__QNX__) || defined(QNX) || defined(OS390) || defined(HP_UX) || defined(__NetBSD__) || defined(__OpenBSD__)
# define SOAP_SOCKLEN_T socklen_t
- #elif defined(IRIX) || defined(WIN32) || defined(__APPLE__) || defined(HP_UX) || defined(SUN_OS) || defined(OPENSERVER) || defined(TRU64) || defined(VXWORKS)
+ #elif defined(IRIX) || defined(WIN32) || defined(__APPLE__) || defined(SUN_OS) || defined(OPENSERVER) || defined(TRU64) || defined(VXWORKS)
# define SOAP_SOCKLEN_T int