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.
19 lines
564 B
C++
19 lines
564 B
C++
#include "webcc/soap_globals.h"
|
|
|
|
namespace webcc {
|
|
|
|
const std::string kSoapAction = "SOAPAction";
|
|
|
|
// 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 SoapNamespace kSoapEnvNamespace{
|
|
"soap",
|
|
"http://schemas.xmlsoap.org/soap/envelope/"
|
|
};
|
|
|
|
} // namespace webcc
|