views:

92

answers:

0

Hi

I've built a WCF Service using the Web Service Software Factory (www.codeplex.com/servicefactory). I'm trying to make a CHM help file for users of the web service. When I build a help file (using Sandcastle) the help file doesn't match the interface displayed to users.

Let's take the case of a method in the service called CustomerGetById(). This takes an ID and returns a customer object. Using the software factory designer it is necessary to create a message object to contain the input parameter which is simply a integer. However, the service designer allows you to hide this message class from the user since it is useless in this case.

Unfortunately the help file contains the message class which adds to the complexity of the design and will confuse users. Does anyone know how to make it follow the interface that is exposed to service users?

Cheers Mark