Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET API for SQL Server Service Broker [closed]

Is there a .NET API or object model for using SQL Server Service Broker?

like image 259
duraid Avatar asked Jan 18 '10 21:01

duraid


3 Answers

There isn't an official supported API. There are some community samples though which are developed by the Service Broker team or related teams in MS which you can use as a starting point, but they are not officially supported (you cannot call product support and report a bug).

like image 164
Remus Rusanu Avatar answered Nov 19 '22 15:11

Remus Rusanu


Checkout this file: https://github.com/jdaigle/servicebroker.net/blob/893a2d9c6a6ef6aed9c1d05dc6a253183a5d7470/ServiceBrokerDotNet/ServiceBrokerWrapper.cs

It's a small wrapper around the T-SQL calls that I wrote. The community samples that other mentioned are more complicated than it needs to be.

like image 45
Joseph Daigle Avatar answered Nov 19 '22 14:11

Joseph Daigle


A easy to use queue library for SQL Service Broker based on rhino-queues

http://github.com/CoreyKaylor/servicebroker-queues

like image 22
Denis Bakharev Avatar answered Nov 19 '22 13:11

Denis Bakharev