Reputation: 365
I have deployed a WCF service. When that service is accessed from web browsers it is showing a message :
You have created a service.
To test this service, you will need to create a client and use it to call the service. You can do this using the
svcutil.exe
tool from the command line with the following syntax:svcutil.exe http://sitename/Service1.svc?wsdl
You can also access the service description as a single file:
http://sitename/Service1.svc?singleWsdl
This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service.
How to change this default message shown by WCF service ?
Upvotes: 4
Views: 401
Reputation: 39966
You can't override the default
page. But you can use a Help Page
. Also you could create a totally separate page to describe your service.
Upvotes: 2