Calling Soap Web Services from SQL Server

I'm not entirely sure if this is possible, but does anyone know how to do this, or if you can call a SOAP web service from SQL Server? It looks like it can be very useful in the field of data sync applications. I feel like this could be a long shot though.

Thank.

0


source to share


3 answers


You can refer to this stackoverflow question: SQL Server - using CLR integration to consume a web service



+1


source


Making a CLR-based call is quite tedious and not recommended. why do you want to do this? maybe we can provide another option.



+1


source


If you are using SQL Server 2005 or higher, you can invoke a web service by creating a CLR procedure that performs this task.

0


source







All Articles