HI
I have an example ( see below ).
I expect to have all messages sent using this code to have the same group id but they are all different. what I am doing wrong?
Leonid.
DECLARE
@conversationHandle uniqueidentifierDECLARE @usergroup uniqueidentifier
select @usergroup = uid from bvuser where userid = 1
select
@usergroupBegin
TransactionBEGIN
DIALOG @conversationHandleFROMSERVICE [BvMainResponseService]TOSERVICE'BvMainService'ONCONTRACT [BvMainContract]WITH RELATED_CONVERSATION_GROUP = @usergroup;-- Send a message on the dialog
SEND
ONCONVERSATION @conversationHandle MESSAGETYPE [BvTaskMsg](
N'Test')commit