Web Service Architecture Questions
I've finally gotten above water in my work and have been now tasked with a new project where I am constructing a Web Services architecture. I've been scanning a few sites and I have a few questions that I need answered that I'm either missing or just can't understand what I'm reading. So maybe someone here will be able to either point in the direction of a good Best Practices document or help with the answers.
- Multiple calls to various methods or single call with lots of data? I would think that since processing is cheap these days that all the data should be piped down to the method and have the callee process all the data.
- Since the caller and the callee with both be in .Net better to use simple datatypes or can I get away with using objects since they are of the same development language?
Thanks for whatever you can give me. I'm now gonna settle down and start reading the Application Architecture document from the patterns group and see if I can deduce some other questions I have.