X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=blobdiff_plain;f=xmltooling%2Fsoap%2Fimpl%2FSOAPClient.cpp;h=1978e281088444d7bdac589cfe685c36a8c6cf71;hp=8eaeaedf8f6ba80204a317d1be5430adfadae3db;hb=312607da1e82e7d1ac0c3093e5f9f2c094055cf7;hpb=a40e7a28d3b1ec648af20d8bd018b04f9c72f093 diff --git a/xmltooling/soap/impl/SOAPClient.cpp b/xmltooling/soap/impl/SOAPClient.cpp index 8eaeaed..1978e28 100644 --- a/xmltooling/soap/impl/SOAPClient.cpp +++ b/xmltooling/soap/impl/SOAPClient.cpp @@ -23,6 +23,7 @@ #include "internal.h" #include "exceptions.h" #include "logging.h" +#include "soap/HTTPSOAPTransport.h" #include "soap/SOAP.h" #include "soap/SOAPClient.h" #include "util/XMLHelper.h" @@ -36,6 +37,27 @@ using namespace xmltooling; using namespace xercesc; using namespace std; +SOAPTransport::SOAPTransport() +{ +} + +SOAPTransport::~SOAPTransport() +{ +} + +bool SOAPTransport::setProviderOption(const char* provider, const char* option, const char* value) +{ + return false; +} + +HTTPSOAPTransport::HTTPSOAPTransport() +{ +} + +HTTPSOAPTransport::~HTTPSOAPTransport() +{ +} + SOAPClient::SOAPClient(bool validate) : m_validate(validate), m_transport(NULL) { }