Any URI query part contains parameters and values related to them. For example the URI - http://www.ieee.org/sitemap.html?WT.mc_id=hu_smap contains value hu_smap assigned to variable WT.mc_id.
So this can be represented in a xml file as below
<root>
<WT.mc_id>hu_smap<\WT.mc_id>
<\root>
Question
- Is there any tool available (online/offline) which can provide the xml file when the URI is provided as input? I am developing a web related application and am converting the URI (query part) to XML. I need a validation mechanism. If such tool exists, then it would help me.
- Is there any other mechanism through which I can do this validation?
