WCF: service for call service

Suppose I have the following WCF services.

UtilityService (service for providing utility functions)

SomeOtherService 1

SomeOtherService 2

SomeOtherService 3

What is the best design for using UtilityService in other services.

All services are displayed on separate endpoints ...

+3
source share
1 answer

Are these services in one application? If so, create an instance of the service class directly, and do not use the entire WCF infrastructure! If they are not in the same application (and you do not share the service assembly), you should use the Add service link, as with any other WCF service.

0
source

All Articles