About Store Forum Documentation Contact



Post Reply 
XmlData problem
Author Message
PRG3D Offline
Member

Post: #1
XmlData problem
Hi,
I have unsigned __int8 buffer[MAX_SIZE]; and XmlData xml;
How to save XmlData to buffer?

It's my code:
Code:
FileText data;
data.writeMem(UTF_8);

xml.del();
xml.getNode("req").getParam("name").set("name", "value");
xml.save(data);

//whats now...?
01-30-2012 01:03 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: XmlData problem
currently saving xml is available only when saving to files on disk
can you tell why would you need to save in the memory?
02-03-2012 11:41 PM
Find all posts by this user Quote this message in a reply
Post Reply