What is XML encoded data? Is this just some XML files for data?
Mapraputa Is
Leverager of our synergies
Sheriff
Joined: Aug 26, 2000
Posts: 10065
posted
0
Most likely data repseneted as XML. Suppose you have two abstract pieces of data: name: John Smith salary: 10000 (whatever it means, curently Computer Science isn't concerned with measurement units too much ) You can represent your data in many ways, for example in some proprietary format: name="John Smith", salary="10000" or in "comma separated values" (CSV) format John Smith,10000 or if you choose XML format <root> <name>John Smith</name> <salary>10000</salary> </root> now your data are XML encoded.
Elizabeth King
Ranch Hand
Joined: Jul 11, 2002
Posts: 189
posted
0
Thanks.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.