Tagged Questions

7
votes
5answers
3k views

Contract-First SOA with WCF

Hello StackOverflow gurus! This question is more of a probe to discover what people are doing in the community, in practical situations, than a specifically targeted question. I have searched pretty ...
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: ...
0
votes
1answer
60 views

Generate C# Code from *.xsd files for use as WCF service

Update I want to generate C# classes files to be used as WCF service based on *.xsd files. How can I achieve that?
0
votes
1answer
51 views

How does a WSDL parser decide to generate a void method for a Request/Reply operation?

I have spent 5 hours on this, and I've already been up 30 hours writing this contract-first spec ("aggressive" deadline, ergo stupid) and I cannot see what I'm missing. I do not want a one-way ...
0
votes
0answers
56 views

Creating a Producer/Consumer Service in WCF

I am a little stuck at the moment. What I have to do is create a Composable Service WSDL first. Using an incremental approach, I have created a service that is callable from a web client successfully. ...
0
votes
1answer
53 views

WCF Contract restrict string values

We are defining some WCF contracts for a project. In one case we want so send over a status field. We though of just sending this over as a text. Can we specify in the WCF contract that only these ...
0
votes
2answers
476 views

Generating Service Contract from a WSDL

I have a WSDL that I need to generate a ServiceContract (OperationContract, DataContract)... I have found a way to do it for ASMX WebServices but can't seem to find how to do it in WCF. I have tried ...