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.
107 lines
2.7 KiB
C++
107 lines
2.7 KiB
C++
#include "webcc/common.h"
|
|
|
|
namespace webcc {
|
|
|
|
// NOTE:
|
|
// Field names are case-insensitive.
|
|
// See: https://stackoverflow.com/a/5259004
|
|
const std::string kContentType = "Content-Type";
|
|
const std::string kContentLength = "Content-Length";
|
|
const std::string kSoapAction = "SOAPAction";
|
|
const std::string kHost = "Host";
|
|
|
|
// According to www.w3.org when placing SOAP messages in HTTP bodies, the HTTP
|
|
// Content-type header must be chosen as "application/soap+xml" [RFC 3902].
|
|
// But in practice, many web servers cannot understand it.
|
|
// See: https://www.w3.org/TR/2007/REC-soap12-part0-20070427/#L26854
|
|
const std::string kTextXmlUtf8 = "text/xml; charset=utf-8";
|
|
|
|
const std::string kTextJsonUtf8 = "text/json; charset=utf-8";
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
const char* GetErrorMessage(Error error) {
|
|
switch (error) {
|
|
case kHostResolveError:
|
|
return "Cannot resolve the host.";
|
|
|
|
case kEndpointConnectError:
|
|
return "Cannot connect to remote endpoint.";
|
|
|
|
case kSocketTimeoutError:
|
|
return "Operation timeout.";
|
|
|
|
case kSocketReadError:
|
|
return "Socket read error.";
|
|
|
|
case kSocketWriteError:
|
|
return "Socket write error.";
|
|
|
|
case kHttpStartLineError:
|
|
return "[HTTP Response] Start line is invalid.";
|
|
|
|
case kHttpStatusError:
|
|
return "[HTTP Response] Status is not OK.";
|
|
|
|
case kHttpContentLengthError:
|
|
return "[HTTP Response] Content-Length is invalid or missing.";
|
|
|
|
case kXmlError:
|
|
return "XML error";
|
|
|
|
default:
|
|
return "No error";
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
const Namespace kSoapEnvNamespace{
|
|
"soap",
|
|
"http://schemas.xmlsoap.org/soap/envelope/"
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
Parameter::Parameter(const std::string& key, const char* value)
|
|
: key_(key), value_(value) {
|
|
}
|
|
|
|
Parameter::Parameter(const std::string& key, const std::string& value)
|
|
: key_(key), value_(value) {
|
|
}
|
|
|
|
Parameter::Parameter(const std::string& key, std::string&& value)
|
|
: key_(key), value_(std::move(value)) {
|
|
}
|
|
|
|
Parameter::Parameter(const std::string& key, int value)
|
|
: key_(key) {
|
|
value_ = std::to_string(value);
|
|
}
|
|
|
|
Parameter::Parameter(const std::string& key, double value)
|
|
: key_(key) {
|
|
value_ = std::to_string(value);
|
|
}
|
|
|
|
Parameter::Parameter(const std::string& key, bool value)
|
|
: key_(key) {
|
|
value_ = value ? "true" : "false";
|
|
}
|
|
|
|
Parameter::Parameter(Parameter&& rhs)
|
|
: key_(std::move(rhs.key_))
|
|
, value_(std::move(rhs.value_)) {
|
|
}
|
|
|
|
Parameter& Parameter::operator=(Parameter&& rhs) {
|
|
if (this != &rhs) {
|
|
key_ = std::move(rhs.key_);
|
|
value_ = std::move(rhs.value_);
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
} // namespace webcc
|