Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The proxy methods that I am seeing generated for methods that have generics for parameters like List Of <T> are getting converted to arrays in the proxy methods. I am not sure what the problem is, is it that the wsdl.exe that shipped with Visual Studio 2005 can't handle generics, or is it the version of soap on the machine where the web service is deployed or something else? When I view the asmx file in IE 7, I see SOAP 1.1 I expected to see soap 1.2 but that could be an IE7 thing.

share|improve this question
this help? svcutil.exe localhost/Services/Sample.svc?wsdl /ct:System.Collections.Generic.List`1 – Rubens Farias Jan 14 '10 at 19:59
@Rubens: he's using VS2005. – John Saunders Jan 14 '10 at 20:09

3 Answers

up vote 1 down vote accepted

WSDL.EXE and "Add Web Reference" will always use an array. This has nothing to do with generics.

When you upgrade to WCF, you'll be able to specify to use List<T> for lists like this.


XML Schema has neither arrays nor lists, just repeated elements. For instance, if your service returns List<int>, the XML Schema in the WSDL will be something like

<xs:element name="result" maxOccurs="unbounded" type="xs:int"/>

The program that creates the proxy class has to decide whether to translate this into arrays or lists. With "Add Web Reference", the choice is always "array". With "Add Service Reference", you get a number of choices, including List<int>.

share|improve this answer
I presume that this is only using the DataContractSerializer and not the 'legacy' XmlSerializer? – STW Jan 14 '10 at 19:34
Of course. "Legacy" implies dead. – John Saunders Jan 14 '10 at 19:36
@John in the part of the "real-world" I'm in "Legacy" describes what most of our devs write day in and day out--and will defend their practices tooth&nail. Then again, our devs just use .NET... they aren't really .NET devs. :-( – STW Jan 14 '10 at 20:00
@Yooder: it's great that you can live in the past, while the rest of us progress, but note that "legacy" has some practical meaning as well. Example: the "legacy" ASMX web services are in maintenance mode. This greatly reduces the number of bugs that Microsoft will be fixing, down to near zero. Similarly, "Add Web Reference" will never support use of List<T> in a proxy. – John Saunders Jan 14 '10 at 20:08

.NET's XmlSerializer serialized collections into arrays. I'm unfamiliar if there is any difference for Generic lists but I doubt so. As such SOAP "collections" are always .NET arrays, it's up to the generated proxy to restore the array to the proper collection type (which is really of it's choice).

One other side-effect of collections being serialized into arrays is that only the collection elements are serialized. For example, the below class inherits from a list and adds a new property which will not be serialized by the XmlSerializer, since arrays consist only of elements and not additional properties.

public class MyList : List
{
    public string MyProperty{get;set;}
}

This behaviorism is specific to the XmlSerializer, binary serializers (and perhaps WCF's DataContractSerializer) can handle these conditions.

share|improve this answer
So if the method contains a Generic List, SOAP converts this to an array in your proxy method, because of that I can't compile with the proxy class if I am using that method, you say it is up to the generated proxy to restore the array to the proper type. Are you saying to manually modify the generated proxy class to pass the correct type? I guess I am still confused without an example. – OutOFTouch Jan 14 '10 at 19:38
XML Schema has neither arrays nor lists, just repeated elements. The proxy has to decide whether to translate that into arrays or lists. With "Add Web Reference", the choice is always "array". With "Add Service Reference", you get a number of choices. – John Saunders Jan 14 '10 at 19:39
This project is built in VS 2005, and I don't have the "Add Service Reference" option avalible, but I do appreciate the explanation, So do I have to manually change the auto generated proxy method to use a generic list instead of an array? – OutOFTouch Jan 14 '10 at 19:45
@OutOfTouch: I would presume that you will need to manually handle the conversion--whether by adding a partial class to the generated proxy (a partial class won't have man-made changes undone during an "update web reference" action) or by mapping the proxy-generated class into a non-generated POCO under your full control. – STW Jan 14 '10 at 19:58
No. Never edit generated code - your edits will disappear next time you use "Update Web Reference". You can use partial classes to add your own methods to the proxy class. Those methods can call the proxy methods, but load the arrays into the corresponding list type. – John Saunders Jan 14 '10 at 19:58
show 3 more comments

Generics are not interoperable.

share|improve this answer
many would suggest that 2005/ASMX webservices are not interoperable ;-) – STW Jan 14 '10 at 19:35
Certainly not, but I don't think they were designed to be, or were they? WCF is designed to try to be as interoperable as possible. – Tad Donaghe Jan 14 '10 at 19:37
@Yooder: many would be wrong. They're dead, but quite interoperable. – John Saunders Jan 14 '10 at 19:37
@Terry: the fact that the code returns List<int> does not enter into the WSDL. It shows up as <xs:element type="xs:int" maxOccurs="unbounded"/>. – John Saunders Jan 14 '10 at 19:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.