Extended store procedure calling a webservice

  • Is it possible for an extended store procedure in SQL Server to call methods in .NET WebService?

    I know it is possible for extended store procedure to call methods that are in a DLL.

    I'm new to all this so if I don't make sense just say and I'll try and clarify.

    Tommy

  • Just a thought.

    You can use Sp_Oa ... methods for COM object access.

    So you can create MSXML.XMLHTTP object using sp_oaCreate and call the Open method with web serice url.

    The result will be in ResponseXml property of the same object.

    However note that this requires MSXML to be installed on the server.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply