Hi,
At present, we have a number of web services where when we send data to them, we send it as a string which is an XML block and the web service parses and does some work.
Similarly, when we need data from a web service, we are returning a string which is again an XML block which the client application parses.
Are there disadvantages in doing it this way. Also should we be returning types that get serialized to xml?
JD