Hi,
I've created a WCF web service and generated the xml serialization class with xsd.exe. My problem is that when I request the xsd from the service (
http://localhost:59120/Service1.svc?xsd=xsd2) the element names are appended with "Field" does anyone know how to override these default names with the original element names?
<xs:sequence>
<xs:element name="
addressField" type="xs:string" nillable="true"/>
<xs:element name="
emailIdField" type="xs:string" nillable="true"/>
<xs:element name="
idField" type="xs:string" nillable="true"/>
<xs:element name="
itemsField" type="tns:ArrayOfArrayOfOrdersCustomerItemsItem" nillable="true"/>
<xs:element name="
nameField" type="xs:string" nillable="true"/>
</xs:sequence>
Regards Al