From: Scott Cantor Date: Tue, 23 Sep 2008 14:55:02 +0000 (+0000) Subject: https://issues.shibboleth.net/jira/browse/CPPXT-25 X-Git-Tag: 1.2.0~69 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-xmltooling.git;a=commitdiff_plain;h=9fb150e821a2db58558e306d698f9836718b424e https://issues.shibboleth.net/jira/browse/CPPXT-25 --- diff --git a/xmltooling/soap/impl/CURLSOAPTransport.cpp b/xmltooling/soap/impl/CURLSOAPTransport.cpp index 0aca880..41828dc 100644 --- a/xmltooling/soap/impl/CURLSOAPTransport.cpp +++ b/xmltooling/soap/impl/CURLSOAPTransport.cpp @@ -478,7 +478,7 @@ void CURLSOAPTransport::send(istream& in) log.debug("sending SOAP message to %s", m_endpoint.c_str()); if (curl_easy_perform(m_handle) != CURLE_OK) { throw IOException( - string("CURLSOAPTransport failed while contacting SOAP responder: ") + + string("CURLSOAPTransport failed while contacting SOAP endpoint (") + m_endpoint + "): " + (curl_errorbuf[0] ? curl_errorbuf : "no further information available")); } }