I'm using nominatim for reverse geocoding in my asp.net website (Visual Studio 2010, C#).
I'm getting answer in XML or json format on another webpage like below:
I cant read this address using XML reader or HTTP response.
Need help to convert this text into plain text and displaying on my website.
Well, you have to deserialize json data that you got from the web Service. You have to define two new classes, namely:
After that you will able to get the data by using this code:
rootObject contains all data that you need, in order to convert it to plain text or any other format.