Passing string array to web service

K

kpg

I have a web service like this:

<WebMethod()> _
Public Function PassArray(ByVal attachments() As String) As Boolean

I call it like this:

Dim myArray(5) As String
....init array
ws.PassArrayAsync(myArray)

I get:

Value of type '1-dimensional string' cannot be converted to 'ArrayOfString'

How can I pass a string array to a webservice?

thx
kpg
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top