Support CDATA for SOAP request and response; Rename Parameter to SoapParameter; Add book server and client example for SOAP.

This commit is contained in:
Adam Gu
2018-07-19 11:19:51 +08:00
parent 23d948cebb
commit 223e59cc7a
48 changed files with 1395 additions and 412 deletions
+9 -8
View File
@@ -54,19 +54,20 @@ if(WEBCC_ENABLE_SOAP)
# SOAP specific sources.
set(SOAP_SRCS
soap_client.cc
soap_message.h
soap_request_handler.cc
soap_response.h
soap_xml.cc
soap_client.h
soap_message.cc
soap_message.h
soap_parameter.h
soap_response.cc
soap_response.h
soap_request.cc
soap_request.h
soap_request_handler.cc
soap_request_handler.h
soap_server.h
soap_xml.h
soap_message.cc
soap_request.h
soap_response.cc
soap_service.h
soap_xml.cc
soap_xml.h
)
set(SRCS ${SRCS} ${SOAP_SRCS})