Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~209 People Reached
Favorite Forums
Favorite Tags
xml x 1
Member Avatar for Eshwaramoorthy

I am using xslt 1.0 My input xml is as below <?xml version="1.0" encoding="UTF-8"?> <Employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > <FirstName>John</FirstName> <LastName>Peter</LastName> <Initial>T</Initial> <Spouse> <FirstName>Rita</FirstName> <LastName>Hudson</LastName> </Spouse> </Employee> I an trying to write a xsl to produce below output... <?xml version="1.0" encoding="UTF-8"?> <ArrayOfstringVariable xmlns="http://schemas.abc.org/2004/07/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <stringVariable> <name>ServerName</name> <value>tmn.eu.com</value> </stringVariable> <stringVariable> <name>EmpFirstName</name> <value>John</value> </stringVariable> …

Member Avatar for Mike Askew
0
209