I have a list of objects List that I need to send over a web service. The list contains about 37,000 Objects. This translates to about a 125 MB XML File if I serialized it to XML.
I think by default web services communicate via serialized XML. This leads me to believe I am actually sending 125MB file each time. In binary format this would only be about 5MB. Is there a way to make the Web Service call in binary format to avoid the large bandwidth hit?