views:

3082

answers:

7

Is there a way to call out from a TSQL stored procedure or function to a webservice?

+4  A: 

Not in T-SQL code itself, but with SQL Server 2005 and above, they've enabled the ability to write CLR stored procedures, which are essentially functions in .NET code and then expose them as stored procedures for consumption. You have most of the .NET framework at your fingertips for this, so I can see consumption of a web service possible through this.

It is a little lengthy to discuss in detail here, but here's a link to an MSDN article on the topic.

Dillie-O
I can also add a more recent (may 2009) article on this subject: http://www.databasejournal.com/features/mssql/article.php/3821271/Calling-a-Web-Service-from-within-SQL-Server.htm
Hilton Perantunes
+1  A: 

In earlier versions of Sql, you could use either an extended stored proc or xp_cmdshell to shell out and call a webservice.

Not that either of these sound like a decent architecture - but sometimes you have to do crazy shit.

Mark Brackett
+2  A: 

Yes, in SQL 2005 and above. You can write a CLR Stored Procedure in .NET. There is a tutorial to do exactly that here:

CLR Stored Procedure Calling External Web Service - SQL Server 2005 Tutorials

Portman
+5  A: 

Sure you can, but this is a terrible idea.

As web-service calls may take arbitrary amounts of time, and randomly fail, depending on how many games of counterstrike are being played on your network at the time, you can't tell how long this is going to take.

At the bare minimum you're looking at probably half a second by the time it builds the XML, sends the HTTP request to the remote server, which then has to parse the XML and send a response back.

  1. Whichever application did the INSERT INTO BLAH query which caused the web-service to fire is going to have to wait for it to finish. Unless this is something that only happens in the background like a daily scheduled task, your app's performance is going to bomb

  2. The web service-invoking code runs inside SQL server, and uses up it's resources. As it's going to take a long time to wait for the HTTP request, you'll end up using up a lot of resources, which will again hurt the performance of your server.

Orion Edwards
+1 for "depending on how many games of counterstrike are being played on your network at the time" and for the good answer. ;)
Hilton Perantunes
A: 

Agreed that it's not something want to do, however sometimes you have to do things you don't ideally like to do. In this case I ended up re-writing the web service function as a sql function to accomplish the same task.

Thanks for all the links and suggestions.

TheImirOfGroofunkistan
A: 

You can do it with the embedded VB objects.

First you create one VB object of type 'MSXML2.XMLHttp', and you use this one object for all of your queries (if you recreate it each time expect a heavy performance penalty).

Then you feed that object, some parameters, into a stored procedure that invokes sp_OAMethod on the object.

Sorry for the inprecise example, but a quick google search should reveal how the vb-script method is done.

--

But the CLR version is much....MUCH easier. The problem with invoking webservices is that they cannot keep pace with the DB engine. You'll get lots of errors where it just cannot keep up.

And remember, web SERVICES require a new connection each time. Multiplicity comes into play. You don't want to open 5000 socket connections to service a function call on a table. Thats looney!

In that case you'd have to create a custom aggregate function, and use THAT as an argument to pass to your webservice, which would return a result set...then you'd have to collate that. Its really an awkward way of getting data.

Brian
A: 

If you're working with sql 2000 compatibility levels and cannot do clr integration, see http://www.vishalseth.com/post/2009/12/22/Call-a-webservice-from-TSQL-%28Stored-Procedure%29-using-MSXML.aspx

bander