How to send JSON in Javascript

Options
TestUserName
TestUserName Member Posts: 2

Hello,
in the example files for Javscript, perticular the TopicPublisher, there is a line of code that defines a message text.

var messageText = 'Sample Message'

var message = solace.SolclientFactory.createMessage()

message.setDestination(solace.SolclientFactory.createTopicDestination(publisher.topicName))

message.setBinaryAttachment(messageText)

how can i send a JSON format instead of plain text ?

Best Answer

Answers