In .NET, is there a standard way to indicate that a web service method has been deprecated?

To clarify, by 'web service method', I mean a method that has been decorated with the [WebMethod] attribute.

Is standard practice to just use the [Obsolete] attribute to mark it as deprecated, just like any other method?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Yes; standard practice is to use the [Obsolete] attribute for deprecation within .NET.

EDIT:

Keep in mind that this will not formally propagate to the WSDL/service as exposed to the consumer. Since WS's are a standard across technologies; the protocol has to be honored. With that in mind your goal of propagating change to the consumer will unfortunately be tied to release notes as noted in this question. While not ideal it does provide a vehicle for deprecation.

link|improve this answer
Do you have reason to believe this attribute will make it into the web or service reference? – Anthony Pegram Apr 19 '11 at 17:35
1  
No it won't. The idea behind a WS in that there is a protocol in place and all vendors (MS, Axis2, etc...) can support the defined protocol. Obsolete is specific to .NET and would not propagate to the WSDL. See stackoverflow.com/questions/3188744/… on deprecation of WCF services which is really a communication effort to your consumer. – Aaron McIver Apr 19 '11 at 17:46
Right. So if Dan wants to communicate to users that the method is no longer supported, marking it [Obsolete] accomplishes? (Not that I'm arguing against marking it, but I merely feel the answer is incomplete in light of the question.) – Anthony Pegram Apr 19 '11 at 17:49
@Anthony Additional commentary added... – Aaron McIver Apr 19 '11 at 17:50
Thank you for updating. – Anthony Pegram Apr 19 '11 at 17:54
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.