isn`t it possible to pass a datatable with a webservice to another .net app
???
my webservice raises an exception whenever i declare the datatable type
this doesn`t work
<WebMethod(MessageName:="dtModules")> _
Public Sub CarsHaveModules(ByVal dt As DataTable )
End Sub
this works
<WebMethod(MessageName:="dsModules")> _
Public Sub CarsHaveModules(ByVal ds As DataSet )
End Sub
is this normall behavior ????
M. Posseth - 24 Feb 2005 17:57 GMT
To answer my own question
just for someone who migh encounter this problem
No Michel this is not possible even better this behavior is by design
see this link for more information
http://support.microsoft.com/default.aspx?scid=kb;en-us;306134
> isn`t it possible to pass a datatable with a webservice to another .net app
> ???
[quoted text clipped - 17 lines]
>
> is this normall behavior ????