Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Sets the binary content of the message.
You cannot alter this content after the message has been sent.
In the following example, a message is created with encrypted content and sent:
begin declare @msgid varchar(128); set @msgid = ml_qa_createmessage(); call ml_qa_setbinarycontent( @msgid, encrypt( 'my secret message', 'mykey' ) ); call ml_qa_putmessage( @msgid, 'clientid\queuename' ); commit; end