Hi There,I have a stored procedure that resturn a result set. i would like to take that result set and send it up to a web service. I beleive the only way that this is possible is by sending the result set as a type of object... However, I cannot get this to work due to conversions issues. Dim VarName As String = "" ' Try Dim varCurrent As Microsoft.SqlServer.Dts.Runtime.Variable VarName = "User::ET_AccountBalance_SEL_ACCOUNT_BALANCE" varCurrent = Dts.Variables.Item(VarName) AccountBalanceData = DirectCast(varCurrent.Value, HHUploadRoute.AccountBalance) AccountBalanceData = CType(varCurrent.Value, AccountBalance)
I would just like to know how to recieve the result set into the object.Thanks!!