Hi there,
Try adding the following additional endpoint to your app.config for your service.
<service behaviorConfiguration="ServiceBehaviour" name="BusinessServices.NormSpecificationsService">
<endpoint address="NormSpecifications" binding="netTcpBinding" bindingConfiguration="NetTcpBinding" contract="IBusinessServiceContracts.INormSpecifications" />
<
endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" />
This is will allow you to use svcutil to generate proxy classed for your client.
this command should allow you to generate the proxy with default settings.
svcutil.exe net.tcp://mietnb04:9010/NormSpecifications/mex
Regards Andy