2006-12-21 03:57:49 +00:00
|
|
|
#ifndef XML_HPP_INCLUDED
|
|
|
|
#define XML_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <xmlrpc-c/base.hpp>
|
|
|
|
|
|
|
|
namespace xmlrpc_c {
|
|
|
|
namespace xml {
|
|
|
|
|
|
|
|
void
|
|
|
|
generateCall(std::string const& methodName,
|
|
|
|
xmlrpc_c::paramList const& paramList,
|
|
|
|
std::string * const callXmlP);
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
void
|
|
|
|
generateCall(std::string const& methodName,
|
|
|
|
xmlrpc_c::paramList const& paramList,
|
|
|
|
xmlrpc_dialect const dialect,
|
|
|
|
std::string * const callXmlP);
|
|
|
|
|
2006-12-21 03:57:49 +00:00
|
|
|
void
|
|
|
|
parseSuccessfulResponse(std::string const& responseXml,
|
|
|
|
xmlrpc_c::value * const resultP);
|
|
|
|
|
|
|
|
void
|
|
|
|
parseResponse(std::string const& responseXml,
|
|
|
|
xmlrpc_c::rpcOutcome * const outcomeP);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
trace(std::string const& label,
|
|
|
|
std::string const& xml);
|
|
|
|
|
|
|
|
|
|
|
|
}} // namespace
|
|
|
|
#endif
|