- Call onGetNotFound method to send back "Page Not Found" to the client when the service or method requested doesn't exist. Signed-off-by: mayx <yanrui.ma@lexisnexisrisk.com>
@@ -1670,7 +1670,7 @@ int EspHttpBinding::getWsdlOrXsd(IEspContext &context, CHttpRequest* request, CH
if (!qualifyServiceName(context, service, method, serviceQName, &methodQName))
{
- response->setStatus(HTTP_STATUS_NOT_FOUND);
+ return onGetNotFound(context, request, response, service);
}
else