vote up 1 vote down star
1

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 about the implementation of a web service (read: SOAP) The question is whether the implementation classes should be coded first and the WSDL and XSD schema generated from that (contract last) or the WSDL and XSD schema written first and the implementation classes generated (contract first)

flag

80% accept rate
Since the question asks about the advantages and disadvantaages of each side, I don't see that it's subjective. – John Saunders Apr 18 at 18:19

2 Answers

vote up 2 vote down check

Contract-first is the generally accepted 'best practice.'

It makes you be very clear with both the producer and consumer of the service exactly what is needed and what is expected. This becomes especially important when you start trying to convert java types -> xml types. You're also able to reuse schemas across different web service.

link|flag
vote up 0 vote down

I suspect the answer is a definite "it depends."

The issue is that if you build and publish your contract, you're bound by it. This makes change harder. not impossible, but harder.

On the other hand, it's quicker to mess with the contract than with code, if you're comfortable with schemata etc. So you can do some incremental change in the contract.

Aren't there also tools that will generate a code skeleton from the WSDL? I'm almost positive there are. If so, you might do well to make the schemata the "code" item, and generate code from it.

link|flag
There are such tools. In the Java space the Apache Software Foundation and others provide a number of tools which can accomplish generation of code. eg XMLBeans. Also a number of APIs can do it. The JAXB API is all about binding xml to Java objects, and the JAX-WS API includes a tool wsimport, which parses a WSDL and generates Java classes. – Martin OConnor Apr 19 at 22:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.