Microsoft Azure Service Bus Publish

You can use this activity to publish messages on Azure Service Bus entities such as queues or topics.

Configuration

This tab has the following fields.

Field Description
Connection Lists all Microsoft Azure Service Bus connections. If no connection is found, create a Microsoft Azure Service Bus connection.
Entity Type The messaging entities which form the core of the messaging capabilities in Azure Service Bus. There are two entity types which are Queue and Topic.

Input

This tab has the following fields:

Field Description
queueName/topicName Name of the queue/topic to which the message would be published.
messageString A valid string data which has to be pushed to a queue/topic.
brokerProperties The broker properties are predefined by the system. These predefined properties either control message-level functionality inside the broker, or they map to common and standardized metadata items of the broker. For example, the property TimetoLive sets the message's time to live value. The following is a list of brokerProperties available in the Publish activity.
  • ContentType
  • CorrelationId
  • Label
  • PartitionKey
  • ReplyTo
  • TimeToLive
  • To

Some properties of the Microsoft.ServiceBus.Messaging.BrokerMessage class which implement write method are listed in this field. For a detailed reference, see Microsoft Azure Service Bus documentation.

Output

The Output tab displays the output schema of the activity in a tree structure format. The output is read-only.

Message Description
responseMessage The information or acknowledgement after publishing the message. This also has the exception information in case of failures.
Related concepts