Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
3k views

WCF - contract-first vs. code-first - how to document easily / properly?

Folks, I'm facing this problem here: I'm designing my second larger batch of WCF services which external parties will consume. For the first batch, I used a strict "contract-first" approach: ...
2
votes
1answer
150 views

Web Service Contract Design - Single-Responsibility

I'm curious as to see how most developers go about designing the contracts to their web services. I am quite new to service architecture and especially new to WCF. In short, I'd like to find out ...
2
votes
2answers
799 views

Best practice to handle large WCF service

I'm working on a 4-player network game in WPF and learning WCF in the process. So far, to handle the network communication, I've followed the advice from the YeahTrivia game on Coding4Fun game: I use ...
0
votes
0answers
33 views

Whether to use REST+JSON instead of Protocolbuffers in a slower service

I am thinking about changing my client-server system that utilizes protocolbuffers to a REST web service but have some problems to deal with. I am not sure if I should make the transfer at all. This ...
0
votes
1answer
50 views

Build better WCF service

I'm building WCF service and I have a question about WCF service design: For example: If I have a data accass layer with two class Person and Product: public class Person { public DataTable ...