What is the XML format corresponding to java.util.Map? -
i using apache httpclient in order make http post operation. request xml should correspond java.util.map.
eg :-
map<string, employee> employeerecords = new hashmap<string, employee>(); map.add("xyz", new employee()); map.add("xyz", new employee()); i want create xml represents "employeerecords" map cane use further "requestentity" http post operation. idea should format of such xml ?
use xml apis convert xml.
Comments
Post a Comment