hi all,
i got this web service's method :
<WebMethod()> _
Public Function SalvaTabelle(ByVal dsTabelle As Tabelle) As Tabelle()
Dim at() As Tabelle = {dsTabelle, ConflictTabelle}
Return at
End Function
the client's call to the web service is:
Public Shared Function SalvaTabelle(ByVal dsTabelle As Tabelle) As Tabelle()
......
Dim _dataService As New DataService
Dim at() As Tabelle = _dataService.SalvaTabelle(instanceChanges)
......
end Sub
p.s Tabelle is a typed dataset
but the at() client's variable is only populated of the first dataset and
has length=1
where have i missed the second element ?
what is wrong?
thanks very much
cosetta
AC - 06 Feb 2005 01:03 GMT
Hi. It works fine on my computer. Try to test it. E.g. change Tabelle on a
String, replace a line with some like
Dim at() As String = {"hello", "world"} and so forth.
> hi all,
> i got this web service's method :
[quoted text clipped - 20 lines]
> thanks very much
> cosetta