InfoLearner
InfoLearner

Reputation: 15598

Are there any benefits of creating WCF service layer if Only one UI application will consume it?

I want to understand if there are any benefits of creating a WCF service layer for a asp.net web application, knowing that UI layer will always be asp.net web forms.

Upvotes: 3

Views: 224

Answers (1)

John Saunders
John Saunders

Reputation: 161773

I would recommend designing the "service" layer around a service contract, but not implementing as a WCF service unless required. This will make it easier to use WCF in the future if required, while not wasting your time with issues relating to networking and such, which you do not need at this time.

Upvotes: 8

Related Questions