I’m currently making some system that will gather statistical reports from different sites, for any user transaction in there.
My question is for would be better to implement from you experience …
All websites that will report data to statistics sites are on my servers.
So whats better to user WebRequest to send GET data to page or to use Webservice for that…
thanks
If you have small volume of input/output data a
WebRequestwould be better and probably faster, but if you need to pass complex objects a web service will be suitable because it will handle the serialization/deserialization of these objects you won’t need to parse them in your code.