Reputation: 15598
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
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