Hi everyone,
Currently I have a stored procedure that makes some updates to a table, and after it makes them, I need to call a web service.
The procedure uses a transaction, and I need to call the web service at the end of the transaction. If the web service call should fail, the transaction would get rolled back.
I need to know how do I add a SOAP web service reference to SQL and how do I call the service from the stored procedure.
Distributed transactions / Enterprise services are excluded for architectural reasons.
Later Edit: Also, CLR assemblies are excluded. CLR has been deactivated on the server i need to deploy the procedure.