Calling A WEB SERVICE FROM SQL SERVER

  • Can you call a .net web service from a sql server stored procedure or dts package?

     

    Taffy

  • Yes. Easily but not nicely.

    a) build a COM. You can call a COM from both DTS and T-SQL (sp_OA* procedures)

    b) build an executable and call it with parameters. Again DTS or T-SQL.

    c) Build an extended stored proc.

    etc (it goes worst with each scenario)

    Wait for SQL 2005 if you can (another year is realistic). Or I would recommend going with a COM.

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

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