_ _ _ _ Public Class WebServiceProxy Inherits System.Web.Services.WebService _ Public Function ValidateStringAjax(ByVal prefixText As String) As List(Of Results) 'webservice: "http://ims.jocogov.org/webservices/PropertyWebService/propertywebservice.asmx?op=ValidateStringAjax" Dim resultsList As New List(Of Results)() Dim ws As New org.jocogov.ims.PropertyWebService Dim strLoginResult As Array strLoginResult = ws.ValidateStringAjax(prefixText, 25, '') Dim count As Integer = 0 For Each i In strLoginResult count += 1 resultsList.Add(New Results() With {.ID = 1, .Name = i.Name.ToString, .Value = i.Value.ToString, .Type = i.Type.ToString}) Next Return resultsList End Function End Class