Improve error msg.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Sat, 1 Mar 2008 00:41:26 +0000 (00:41 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Sat, 1 Mar 2008 00:41:26 +0000 (00:41 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@2752 cb58f699-b61c-0410-a6fe-9272a202ed29

isapi_shib/isapi_shib.cpp

index bff7387..7ca3057 100644 (file)
@@ -894,7 +894,7 @@ extern "C" DWORD WINAPI HttpExtensionProc(LPEXTENSION_CONTROL_BLOCK lpECB)
         // Match site instance to host name, skip if no match.
         map<string,site_t>::const_iterator map_i=g_Sites.find(static_cast<char*>(buf));
         if (map_i==g_Sites.end())
-            return WriteClientError(lpECB, "Shibboleth Extension not configured for this web site.");
+            return WriteClientError(lpECB, "Shibboleth Extension not configured for web site (check <ISAPI> mappings in configuration).");
 
         ShibTargetIsapiE ste(lpECB, map_i->second);
         pair<bool,long> res = ste.getServiceProvider().doHandler(ste);