Jayson Mynard | Hi,
Im having problems is setting up my own custom adapter.
The system has been set up as per the instructions. But it is receiving the following error:
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.ArgumentOutOfRangeException: Index and length must refer to a location within the string. Parameter name: length at Cisco.UCCDT.Server.RequestHandler.RequestHandler.FindCustomer(Contact CustomerData, User Requestor) at Cisco.UCCDT.Server.WebService.CiscoWebService.FindCustomer(Contact CustomerData, User Requestor)
The following code demonstrates the error (when attached to the FindCustomer method)
Dim objSearchItems As Cisco.UCCDT.DataObjects.SearchItems = New Cisco.UCCDT.DataObjects.SearchItems
Dim objAccount As New Cisco.UCCDT.DataObjects.Account objAccount.Name.Text = "Test Account" objAccount.Description = "Description"
Dim ojbLead As New Cisco.UCCDT.DataObjects.Lead ojbLead.Name.Text = "Test Lead" ojbLead.Description = "Description"
objSearchItems.Accounts.Add(objAccount) objSearchItems.Leads.Add(ojbLead)
Return objSearchItems |
| Please sign in to flag this as inappropriate. |