I have an array of strings.I want to make an xml string using the values of the array elements. I will pass this xml string as a parameter to a .net webservice. Can anybody please tell me how do I make an xml string in c++? What library do I have to use and what are the methods?
The xml structure:
<xml>
<DeviceName></devicename>
<State></State>
<xml>
It wont have any attribute.Each array element will have devicename and state info. I dont want to write this into a file. i just want to create a string, which i can pass as a parameter to a webmethod.