hi all,
i got this web service's method :
<WebMethod()> _
Public Function SalvaTabelle(By Val 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(By Val dsTabelle As Tabelle) As Tabelle()
.......
Dim _dataService As New DataService
Dim at() As Tabelle = _dataService.Sa lvaTabelle(inst anceChanges)
.......
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
i got this web service's method :
<WebMethod()> _
Public Function SalvaTabelle(By Val 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(By Val dsTabelle As Tabelle) As Tabelle()
.......
Dim _dataService As New DataService
Dim at() As Tabelle = _dataService.Sa lvaTabelle(inst anceChanges)
.......
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
Comment