Posted on: 10/7/2014 1:34:48 PM | Views : 489

Hey folks, I am using this code that lets you check an IP Address and geo locate where it is from.  Code from: http://www.c-sharpcorner.com/Blogs/14094/  While the text visualizer does show me details, the code craps out saying ipAddress is not there at the point of databind.  Here is what I have:
json:
{ "statusCode" : "OK", "statusMessage" : "", "ipAddress" : "65.222.165.65", "countryCode" : "US", "countryName" : "UNITED STATES", "regionName" : "VIRGINIA", "cityName" : "CHESTER", "zipCode" : "23831", "latitude" : "37.3568", "longitude" : "-77.4417", "timeZone" : "-04:00" } ERROR:
An exception of type 'System ...

Go to the complete details ...