This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
i have no idea about web services, but i was given a work to find any framework or another thing which can be used to validate the web services.
thanks in advance.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
I suggest to find out what whoever suggested to "use a framework" or "validate a web service" meant by that, because neither phrase has a clear, well-defined meaning in the web service world.
hey, did you mean there is nothing like validation in the web services world? as in we have both client side and server side validations in the web tier , business tier.
Of course data being sent to a web service needs validation just like any other input data. But, the term "validate a web service", doesn't bring that to mind.
Rauhl Roy wrote:did you mean there is nothing like validation in the web services world?
For performance reasons validation only occurs between a consumer and provider when a trust boundary is crossed. If you control both the consumer and provider it makes more sense to sanitize any input on the consumer side before it is included in a web service request. When a trust boundary is crossed a document/literal (Which style of WSDL should I use?) SOAP web service can simply use a validating parser in a handler hooked into the incoming message handler chain to verify that the SOAP payload is valid in reference to the XML Schema that used is in the WSDL (the web services contract).