Hi, How should I send XML over HTTP to my server from lzx ?
Should I build XML text and add it like : LzParam.addValue("xml", theXmlText, false) ? In that case is there a size limit of such a parameter (even like here if it is not in the URI) ?
The next question is how to build efficiently XML text in Javascript ? Is something like that would be fine ? var theXmlText ="<TAG1>" + some var + "</TAG1>"; or is there some magic js library around or other better ways of doing it ? Thanks !
