Skip to content

Tag Archives: firstname

What would be the Xml schema of this data?

what would be the xml schema for this xml data? <DiscBox> <disc color ="green"> <author> Top author <firstName> John </firstName> <lastName> Doe </lastName> </author> </disc> </DiscBox>

please please convert the following XML to another XML with XSLT:?

This is the xml: <Account> <Id>1</Id> <FirstName>Ajoy</FirstName> <LastName>Chakraborty</LastName> </Account> convert the above xml to the xml below(with the help of XSLT): <Customer> <CustomerId>1</CustomerId> <Name>Ajoy Chakraborty</Name> </Customer>

How to convert an this xml document to another xml using XSLT:?

This is the xml: <Account> <Id>1</Id> <FirstName>Ajoy</FirstName> <LastName>Chakraborty</LastName> </Account> I want to convert the above xml to the xml below(with the help of XSLT: <Customer> <CustomerId>1</CustomerId> <Name>Ajoy Chakraborty</Name> </Customer>