views:

348

answers:

3

I'm not entirely sure if this is possible, but does anyone know how, or if you can make calls to a SOAP web service from SQL Server? Seems like it might be good performance-wise in the area of data sync applications. I feel like this might be a long shot though.

Thanks.

A: 

If you're using SQL Server 2005 or higher, you can call a Web service by creating a CLR Procedure that does the task.

Mehrdad Afshari
+1  A: 

Creating a CLR based call is pretty tedious and not really recommended. why do you want to do this? maybe we can provide another option.

Mladen Prajdic
I don't think there is another option. I'm basically looking into it because a client of ours said they wanted to use our web service and they don't know anything of .NET programming, all they know is SQL Server. I was seeing if it was even possible to achieve.
Wes P
+1  A: 

You may want to refer to this stackoverflow question: SQL Server - Using CLR integration to consume a Web Service

Nick Kavadias