Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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: ...
4
votes
3answers
919 views

Which is the better approach to web services - contract first or contract last?

Which is the better approach to developing web services; contract first or contract last? What are the advantages and disadvantages of each? Which do you have experience with? EDIT This question is ...
0
votes
1answer
37 views

Contract First Approach with Jersey

I am currently working on a projects API layer with an existing REST services using JERSEY. Most of the initial services are created in a contract last approach utilizing jaxb annotations etc.. ...
0
votes
1answer
62 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
55 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
58 views

How to implement a Contract-First

I am doing some work with a 3rd party supplier who provide data via a web-push. They state that their web-push relies on a contract-first web service, and they have made a WSDL available for me to ...
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
478 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 ...