How to add comments/description/information about the web service methods so that the person who will invoke it will know what the method is for , what are the useful params etc. so the invoker will be able to read these.
+2
A:
Sorry, there's no way to do this. You have to create actual documentation instead.
John Saunders
2010-03-29 03:29:26
I thought so .Thanks.
2010-03-29 03:32:05
+3
A:
Add a help()
method to the webservice. Return text, the same way you would for a command-line program (as in: progname -help
).
I've done this myself, because six months later I can't remember what the parameters meant.
egrunin
2010-03-29 03:33:52
A:
There is a way if you are using WCF REST. Otherwise it is not possible as said John.
Incognito
2010-03-29 04:15:58