https://issues.shibboleth.net/jira/browse/CPPXT-25
authorScott Cantor <cantor.2@osu.edu>
Tue, 23 Sep 2008 14:55:02 +0000 (14:55 +0000)
committerScott Cantor <cantor.2@osu.edu>
Tue, 23 Sep 2008 14:55:02 +0000 (14:55 +0000)
xmltooling/soap/impl/CURLSOAPTransport.cpp

index 0aca880..41828dc 100644 (file)
@@ -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"));
     }
 }