Home > Software engineering >  Modifying the WCF/REST or JSON help page
Modifying the WCF/REST or JSON help page

Time:01-28

When a WCF/REST or JSON service is created in Visual Studio with helpEnabled="true" in the web config, there will be a URL similar to "https://Server/Service/ServiceREST.svc/help". IIS will present a help page - see enclosed example.

I'm looking to modify this page, I want to exclude some lines. Does anyone know how, or if that is possible?

SOAP/REST Help Example

CodePudding user response:

According to your description, I would like to tell you that the help page of WCF WebHttp endpoint cannot be modified, and in fact there is no property or configuration to control it. You can replace it with your own custom page, but this requires writing a lot of code according to your needs. You can read about the schemas used in the WCF Web HTTP Services help page through this document.

  • Related