vote up 2 vote down star
2

I'm doing some wsdl- and client-first development in C# with WCF (the wsdl and client already exist, I'm building the server-side,) and I'm having an odd issue. I used wsdl.exe to generate a contract from my .wsdl, and I'm able to build it and host the WCF service as a Windows service.

However, the wsdl I get from http://localhost/Service?wsdl exposes private fields instead of the public properties (e.g.: instead of OsType I get m_OsTypeField, which is the private variable associated with the public OsType property.)

Here are the attributes for one of the classes having this issue: [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://xxxxxxx.com/")]

I'm completely stumped, as the .NET XML serializer is supposed to ignore any private members. Any ideas about why this might be happening?

flag

1 Answer

vote up 2 vote down check

If you're using WCF, you shouldn't be using wsdl.exe but svcutil.exe instead.

Also, the standard WCF DataContract serializer will happily serialize anything you've marked with a [DataMember] attribute - the .NET visibility setting has no bearing on the SOA view of your data, really.

However, from your code sample it would appear as if you're using the Xml Serializer and not the DataContractSerializer - probably because you used wsdl.exe instead of svcutil.exe.

Can you try to create the server side stubs using svcutil.exe ? Do you still see the same problem?

Marc

link|flag
The interface generated using SvcUtil.exe with the DataContractSerializer contains void, parameter-less methods (the methods should accept a request type and return a response type.) In addition to this, no data types are generated. Am I missing something with SvcUtil? Also, not sure if this matters: if I set the /ser option to "auto", the XmlSerializer is used. – oltman Oct 21 at 19:00
Update: I got the code generated by SvcUtil.exe to work and publish a correct wsdl. A couple questions though: 1) what is wsdl.exe intended to be used for if not for WCF? 2) What was I doing wrong with SvcUtil.exe when using the DataContractSerializer? – oltman Oct 21 at 20:06
wsdl.exe was used for "old-style" ASMX webservices - that's .NET 1.x/2.x technology - last century almost ;-) – marc_s Oct 21 at 20:27
not sure about the DataContractSerializer - it's the default and should be used, but there are certain conditions (and obviously your wsdl had one of those, I guess) that make it impossible for WCF to use the DataContractSerializer (like attributes in the XML message) and then it'll switch to use the XmlSerializer. – marc_s Oct 21 at 20:32
All very good to know. Thanks! – oltman Oct 22 at 2:34
show 1 more comment

Your Answer

Get an OpenID
or

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