
Some times you may want to build entire XML document in memory by yourself. This can be the case if your data is stored in RDBMS and you want to convert in into XML only for processing. You can create XML in memory in two ways: 1. Using XMLDOM methods like createElement() and appendChild() 2. Directly loading XML data in the form of a string
|