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

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -