SQL Server 2005 Beta 2 Service Broker: State of conversation endpoint

编程知识 更新时间:2023-05-02 21:12:51

SQL Server 2005 Beta 2 Service Broker: State of conversation endpoint

 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

Posted by: Rickie Lee (wwwblogs/rickie)

Date: Apr. 2005

1. Conversation Endpoints can be looked up via querying the sys.conversation_endpoints catalog view in the local broker’s database.

Use [DatabaseName]

Select * From sys.conversation_endpoints

 

Part of fields of sys.conversation_endpoints table:

(1) conversation_handle - uniqueidentifier, identifier for the conversation endpoint, one side of the conversation.

(2) conversation_id – uniqueidentifier, indentifier for the conversation. This identifier is shared by both participants in the conversation.

(3) state and state_desc fileds – description of endpoint converstation state.

There are the following states available for different cases.

  • STARTED_OUTBOUND

  • STARTED_INBOUND

  • CONVERSING

  • DISCONNECTED_INBOUND

  • DISCONNECTED_OUTBOUND

  • CLOSED

  • ERROR

 

2. Purge Conversation Endpoints without notifying the remote service

Using the “with cleanup” clause, you can remove the left conversation endpoint records in the sys.conversation_endpoints table.

 

Select * From sys.conversation_endpoints

End Conversation [conversation_handle] with cleanup;

 

For example,

End Conversation '2f442c49-5b57-4078-b6e8-af2d9414e241' with cleanup;

 

The above example ends the dialog specified by DIALOG_HANDLE, without transmitting any further messages to the remote service. Since ending a dialog with cleanup does not notify the remote service, you should only use this in case where the remote service is not available to receive an EndDialog or Error message.

 

3. Demo

(1) Send message at the Initiator EndPoint

Assume you have already created the necessary Service Broker objects, such as Message Type, Contract, Queue and Service, etc.

Moreover, 'A727462B-52E7-4405-9EEE-D19923729790' is just the demo Broker Instance, which specifies the database that hosts the target service.

 

You can use the following SQL script the get the Broker Instance ID of the target database.

Select service_broker_guid from sys.databases

where database_id=DB_ID('HelloWorldDB')

 

The following is sending the message from the Initiator.

Declare @handle uniqueidentifier

Begin Dialog Conversation @handle

From Service SendingService

To Service 'ReceivingService','A727462B-52E7-4405-9EEE-D19923729790'

On Contract XMLContract;

 

Send on Conversation @handle

Message Type XMLMessage

('<hello>Welcome to Rickie Lee''s blog, wwwblogs/rickie</hello>');

 

Select * From sys.conversation_endpoints

 

End Conversation @handle;


(2) Check the messages in the Target Queue

Select * From ReceivingQueue

 


Well, there are two messages in the Target Queue. The first one is the message of XMLMessage type, the next one is the End Dialog message, which notifies the remote service to end the dialog conversation.

 

(3) Check the Target Endpoint

Select * From sys.conversation_endpoints

 



From the above query result, we can see that the Endpoint record for the dialog conversation at the Target’s broker database has the state of DI, or DISCONNECTED_INBOUND.

 

 

References:

1. A First Look at SQL Server 2005 Service Broker, Roger Wolter, http://msdn.microsoft/library/default.asp?url=/library/en-us/dnsql90/html/sqlsvcbroker.asp?frame=true

2. Michael G., Service Broker Architecture, http://www.dotnetfun/articles/sql/sql2005/SQL2005ServiceBrokerBasicArchitecture.aspx

3. Mike Taulty’s Weblog, SQL Server 2005 Service Broker & WSE 2.0, http://mtaulty/blog/archive/2005/02/14/1484.aspx

 

 

转载于:https://wwwblogs/rickie/archive/2005/04/09/134516.html

更多推荐

SQL Server 2005 Beta 2 Service Broker: State of conversation endpoint

本文发布于:2023-04-28 16:55:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/4b946b52f53cdf4f22962422ba75d3c9.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Beta   SQL   Server   Service   conversation

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!

  • 109192文章数
  • 27716阅读数
  • 0评论数