对于外部激活器,请查看Microsoft SQL Server 2008 Feature Pack -“Microsoft SQL Server 2008 R2 Service Broker External Activator”。
对于控制台应用程序(处理消息),好主意是关注codeplex。有很好的例子。
放置事件通知(通知,将由外部激活器服务使用)代码如下所示:
Create Queue ExternalActivatorQueue;
Create Service ExternalActivatorService On Queue ExternalActivatorQueue
([http://schemas.microsoft.com/SQL/Notifications/PostEventNotification])
Create Event Notification NotifyExternalActivator
On Queue dbo.ProcessQueue
For QUEUE_ACTIVATION
To Service 'ExternalActivatorService', 'current database'
在队列中发送消息:
Declare @h UniqueIdentifier;
Declare @x xml = '<tag/>';
Begin Dialog Conversation @h
From Service MyTableService
To Service 'ProcessService'
With Encryption = OFF;
Send On Conversation @h(@x)
我为使它工作所做的所有步骤都在这里,但只是在拉脱维亚语:)。实际上几乎有你需要的(当数据插入表时发送消息的触发器..)。