Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does WCF return myObject[] instead of List<T> like I was expecting?

I am returning a List from my WCF method. In my client code, it's return type shows as MyObject[]. I have to either use MyObject[], or IList, or IEnumerable...

WCFClient myClient = new WCFClient();

    MyObject[] list = myClient.GetMyStuff();
or
    IList<MyObject> list = myClient.GetMyStuff();
or
    IEnumerable<MyObject> list = myClient.GetMyStuff();

All I am doing is taking this collection and binding it to a grid. What is the best object to assign my returned collection?

like image 998
ScottG Avatar asked Jan 29 '09 20:01

ScottG


3 Answers

You can specify that you want to use a generic list instead of an array by clicking the advanced button when you add a reference, or you can right click on the service reference and choose configure to change it in place.

The reason is that WCF serializes Generic lists as arrays to send across the wire. The configuration is just telling svcutil to create a proxy that converts them back to a generic list for your convenience.

like image 177
Stever B Avatar answered Sep 22 '22 18:09

Stever B


When you use svcutil.exe to create you client code you need to tell it how to resolve certain references that are not available to it.

This is how you would do it for List<T>:

svcutil /o:YourService.cs /ct:System.Collections.Generic.List`1 http://example.com/mex
like image 13
Andrew Hare Avatar answered Sep 19 '22 18:09

Andrew Hare


Stever B is correct. WCF tries really hard not to be coupled to .NET. You may want to allow a Java client to connect to your component. Arrays are interoperable. Generic .NET lists aren't.

However, you're more than welcome to create your own proxy class that will convert the array back into a List or anything else that you'd like. The nice thing about manually creating your own proxies is that you're in complete control of what they do.

like image 8
Tad Donaghe Avatar answered Sep 21 '22 18:09

Tad Donaghe