[SCM] Debian packaging for XMLTooling-C branch, master, updated. upstream/1.0-42-g0a138bc
Russ Allbery
rra at debian.org
Sat Jun 7 18:06:59 UTC 2008
The following commit has been merged in the master branch:
commit 0a138bc45799ce67b31ffc9848dbd03e931827de
Merge: 0817a6cc3dbd795a8a2a08c80eb5f8172591f143 57d3720c2af36f7e23a688395f3b57d081ac28dd
Author: Russ Allbery <rra at debian.org>
Date: Sat Jun 7 11:01:41 2008 -0700
Merge branch 'bug/gcc-4.3'
diff --combined xmltooling/soap/impl/SOAPClient.cpp
index 91215b5,0addc31..d14d5bd
--- a/xmltooling/soap/impl/SOAPClient.cpp
+++ b/xmltooling/soap/impl/SOAPClient.cpp
@@@ -28,6 -28,7 +28,7 @@@
#include "util/XMLHelper.h"
#include "validation/ValidatorSuite.h"
+ #include <memory>
#include <sstream>
using namespace soap11;
@@@ -89,11 -90,8 +90,11 @@@ Envelope* SOAPClient::receive(
XercesJanitor<DOMDocument> janitor(doc);
Category& log = Category::getInstance(XMLTOOLING_LOGCAT".SOAPClient");
- if (log.isDebugEnabled())
- log.debugStream() << "received XML:\n" << *(doc->getDocumentElement()) << logging::eol;
+ if (log.isDebugEnabled()) {
+ string serializedXml;
+ XMLHelper::serialize (doc->getDocumentElement(),serializedXml,false);
+ log.debugStream() << "received XML:\n" << serializedXml << logging::eol;
+ }
auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
janitor.release();
--
Debian packaging for XMLTooling-C
More information about the Pkg-shibboleth-devel
mailing list