Man of Honour
Hi,
I have created a WCS API which I have tested from SOAPUI using the JSon, so I know that side all works 100%.
I now want to invoke the Json from a vb.net app, but I've no idea where to start. Some Googling around yesterday seems very vague and complicated, and I'm sure it's not.
Here's an example of the string I have built that i'd like to call.
If any one has any simple example to help, that would be great.
Thanks
I have created a WCS API which I have tested from SOAPUI using the JSon, so I know that side all works 100%.
I now want to invoke the Json from a vb.net app, but I've no idea where to start. Some Googling around yesterday seems very vague and complicated, and I'm sure it's not.
Here's an example of the string I have built that i'd like to call.
Code:
JsonRequest = "{"
JsonRequest += """UserId"":""MyUserID"" , ""BankBIC"","
JsonRequest += "{"
JsonRequest += """BIC"" :""" + BankBIC.BIC + ""","
JsonRequest += """SortCode"" :""" + BankBIC.SortCode + ""","
JsonRequest += """Suffix"" :""" + BankBIC.Suffix + ""","
JsonRequest += """BankName"" :""" + BankBIC.BankName + ""","
JsonRequest += """City"" :""" + BankBIC.City + ""","
JsonRequest += """CountryName"" :""" + BankBIC.CountryName + ""","
JsonRequest += """CountryCode"" :""" + BankBIC.CountryCode + ""","
JsonRequest += """CountryAlphaCode"" :""" + BankBIC.CountryAlphaCode + ""","
JsonRequest += """Status"" :""" + BankBIC.Status + ""","
JsonRequest += "}"
JsonRequest += "}"
If any one has any simple example to help, that would be great.
Thanks