Nick Abbot
Nick Abbot

Reputation: 501

Modifying the WCF/REST or JSON help page

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

Upvotes: 0

Views: 76

Answers (1)

YurongDai
YurongDai

Reputation: 2410

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.

Upvotes: 1

Related Questions