Aloha

I'm referencing an external webservice in my .NET 2.0 application. Adding a service reference generated a nice proxy class for me. I'd like to add ///<summary> style documentation to this. If the service reference is updated, all my shiny comments are gone.

Is there any solution to this?

-Edoode

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You could create a wrapper class around the generated proxy class, and document the methods there. Then instead of using the generated proxy directly, you always use your wrapper class. E.g:

public class MyWebServiceWrapper
{
  private MyWebService _service = null;

  public MyWebServiceWrapper()
  {
    _service = new MyWebService();
  }

  ///<summary>
  /// doc goes here
  ///<summary>
  public int MethodOne()
  {
    return _service.MethodOne();
  }
}

This approach allows you to re-generate the proxy class whenever required.

Of course this means, that you will have to (manually) update the wrapper class whenever the interface of the web service changes. On the other hand, the wrapper class also allows you to add some centralized error handling, etc.

link|improve this answer
Nice.. I think I'll try that. It would mean rewriting the calling code though – edosoft Jan 15 '09 at 11:04
feedback

Your Answer

 
or
required, but never shown

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