Ole Mugaas via .NET 247 <anonymous@dotnet247.com> wrote in
news:OvAvlsUWFHA.2796@TK2MSFTNGP09.phx.gbl:
> I am setting up a web service using VB.NET and one of the methods will
> return an order-object to the user. My problem is that the object will
> contain an array/arraylist of products and it gives me an error message
> saying that I must "implement a default accessor on System.array". Seems
> like there are some problems returning an object that consists of an
> array and I wondered if anyone had seen this before and maybe found a
> solution to the problem...
>
> Also: is it better to use arraylist over array?
Objects cant be returned over a soap connection unless they can be passed by
value. You cant just magically transport any object and reassemble it on the
other side.


--
Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
"Programming is an art form that fights back"

Blog: [url]http://blogs.atozed.com/kudzu[/url]