vote up 2 vote down star

How can you make WCF use xs:All instead of xs:Sequence when it defines complex object types in the wsdl/xsd for a web service?

The issue I am having is that xs:Sequence requires that calling applications pass the elements in the soap message in the order specified in the WCF generated xsd (this is alphabetical by default). xs:All (or choice for that matter) does not care about the order.

Can this behaviour be changed simply through a configuration option somewhere?

flag
You could write your own extension to create the WSDL if you really want to - it's not totally trivial, but it can be done. Search the web for "WCF WSDL extension" - there should be quite a few samples out there – marc_s Sep 30 at 8:44

2 Answers

vote up 2 vote down check

From the top of my head, I think you can't. What you can do instead, is to write the WSDL file by hand, then use svcutil.exe to generate the code.

If all you want to do is order elements in a different order than alphabetically, you can order the elements in the DataContract, using the Order (starting at 1, not 0 like arrays) parameter on the [DataMember] attribute ([DataMember(Order = 1)], [DataMember(Order = 2)], etc).

link|flag
+1 you nailed in on the head - there's no way out of the box to instruct WCF to use xs:all instead of xs:sequence – marc_s Sep 30 at 8:43
For once that I have the time to answer a WCF question faster than you do :) – Philippe Sep 30 at 8:48
Thanks, I thought this may have been the case. – Dean Johnston Sep 30 at 22:04
vote up 0 vote down

You can switch WCF to use the XmlSerializer instead of DataContractSerializer. The XmlSerializer supports xs:all. See http://msdn.microsoft.com/en-us/library/ms733901.aspx

link|flag

Your Answer

Get an OpenID
or

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