You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#ifndef WEBCC_SOAP_MESSAGE_H_
|
|
#define WEBCC_SOAP_MESSAGE_H_
|
|
|
|
#include <string>
|
|
|
|
#include "pugixml/pugixml.hpp"
|
|
|
|
#include "webcc/soap_globals.h"
|
|
|
|
namespace webcc {
|
|
|
|
// Base class for SOAP request and response.
|
|
class SoapMessage {
|
|
public:
|
|
virtual ~SoapMessage() = default;
|
|
|
|
// E.g., set as kSoapEnvNamespace.
|
|
void set_soapenv_ns(const SoapNamespace& soapenv_ns) {
|
|
soapenv_ns_ = soapenv_ns;
|
|
}
|
|
|
|
void set_service_ns(const SoapNamespace& service_ns) {
|
|
service_ns_ = service_ns;
|
|
}
|
|
|
|
const std::string& operation() const {
|
|
return operation_;
|
|
}
|
|
|
|
void set_operation(const std::string& operation) {
|
|
operation_ = operation;
|
|
}
|
|
|
|
// Convert to SOAP XML.
|
|
void ToXml(bool format_raw, const std::string& indent,
|
|
std::string* xml_string);
|
|
|
|
// Parse from SOAP XML.
|
|
bool FromXml(const std::string& xml_string);
|
|
|
|
protected:
|
|
// Convert to SOAP body XML.
|
|
virtual void ToXmlBody(pugi::xml_node xbody) = 0;
|
|
|
|
// Parse from SOAP body XML.
|
|
virtual bool FromXmlBody(pugi::xml_node xbody) = 0;
|
|
|
|
SoapNamespace soapenv_ns_; // SOAP envelope namespace.
|
|
SoapNamespace service_ns_; // Namespace for your web service.
|
|
|
|
std::string operation_;
|
|
};
|
|
|
|
} // namespace webcc
|
|
|
|
#endif // WEBCC_SOAP_MESSAGE_H_
|