Hi Guys,
Thanks for the help so far, much appreciated! However, I am still struggling here.
I managed to change the Web Service so that it now returns the following, which looks more like JSON and not XML:
{"Table":[{"id_Country":1,"nvcCountry":"Australia"},{"id_Country":2,"nvcCountry":"United States"}]}
There are 2 records here, now the problem I have is that I do not know how to extract values out of here, I need the 'id_Country' and 'nvcCountry' data for each record.
All I have so far is (see below) and I do not know how to proceed from here?
strJSON = job.GetString
parser.Initialize(strJSON)
Dim root_ As Map = parser.NextObject
Please could someone help?
Thank in advance,
Regards,
Jacques.