XML generating from xsd

wxdqz

New Member
Hi everybody,
Can anyone please show me if there is a way (in VB6 or C#) to generate an XML as described below: :)

xmlSource.xml
<Customer>
<FName>Smith</FName>
<OAddress>123</OAddress>
<MPhone>9582536</MPhone>
</Customer>


xmlDest.xml
<User>
<FirstName>Smith</FirstName>
<OfficeAddress>123</OfficeAddress>
<MobilePhone>9582536</MobilePhone>
</User>

What I want here is generate xmlDest.xml from xmlSource.xml with different xml tags (base on xsd file). I dont want to read the xmlSource.xml file and match them tags by tags in xmlDest.xml

any help is appreciate :cool:
 
Back
Top