Hi,
Is it possible to have a sqlDataReader function in service1.asmx
i.e.
public function test() as sqldatareader
...
end function
It's just that I remember reading somewhere that this may not be possible.
Thanks
Printable View
Hi,
Is it possible to have a sqlDataReader function in service1.asmx
i.e.
public function test() as sqldatareader
...
end function
It's just that I remember reading somewhere that this may not be possible.
Thanks
No, I don't think that you can implement that. You can return a dataset from a web service because it is serializable. I believe that is what it takes to pass an object. A datareader isn't serializable.