I am using a asp.net WSE web service in my web application.
For some reason, some collections are in the form of an array.
i.e. I am doing:
MyService.SomeObject so = new MyService.SomeObject();
so.SomeCollection = new SomeCollection[0];
Yet the developer of the service says he defined it as a List, not an array.
Is this common where the types don't match between the actual service and the client proxy?
What about enumerations, do they serialize/deserialize properly?