Sample Header Ad - 728x90

Calling a web service from T-SQL (Stored Procedure) using MSXML

0 votes
1 answer
3575 views
enter image description here EXEC @hResult = sp_OAMethod @objectID, 'send', null, @requestBody IF @hResult 0 BEGIN EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT SELECT hResult = convert(varbinary(4), @hResult), source = @source, description = @desc, FailPoint = 'Send failed', MedthodName = @methodName goto destroy When I Call a web service Through Sp IN SQl Server In Above Mention I'm getting error as Shown In The Pics
Asked by Alfaiz Ahmed (136 rep)
Oct 6, 2016, 11:51 AM
Last activity: Oct 6, 2016, 09:44 PM