Message Schemas for Query Notification
The Microsoft BizTalk Adapter for SQL Server surfaces the Notification operation to receive query notifications from the SQL Server database.
You configure the Notification operation by setting binding properties in the SQL adapter. For more information about the Notification-related binding properties, see Working with BizTalk Adapter for SQL Server Binding Properties. You set the NotificationStatement binding property to specify a SQL statement (SELECT or EXEC <stored procedure>) for the query notification. The result set of this query is returned as strongly-typed data to your code in the Notification operation.
The following table shows the XML message structure for the Notification operation.
| Operation | XML Message | Description |
|---|---|---|
|
Notification |
<?xml version="1.0" encoding="utf-8" ?> <Notification xmlns="http://schemas.microsoft.com/Sql/2008/05/Notification"> <Info>Value</Info> <Source>Value</Source> <Type>Value</Type> </Notification> |
This is the inbound message that is sent by the SQL Server to the adapter clients. In the message:
For more information about the query notification message tags, see the “Properties” section at http://go.microsoft.com/fwlink/?LinkId=122393. |