Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm doing research into BlazeDS , and i am trying to use the ajax-bridge to perform this trough javascript.

What i'm trying to do is send an asynchronous message from the server to the client(s)

On it's own, this work perfectly.

However , now i'm trying to use subtopics , to be able to limit the number of clients the message is sent to.

As i understand it , setting the subtopic at server side ,works by setting the header in AsynchMessage :

msg.setDestination("TestingDestination");
msg.setHeader("DSSubtopic", "siteData.subtopic1" );

And then setting the subtopic in the client :

consumer.setDestination("TestingDestination");
consumer.subtopic = "siteData.subtopic1" ;

However, this is not working correctly : I do not receive any message at the client side.

share|improve this question

1 Answer

up vote 0 down vote accepted

I found the reason it didn't work :

When using the ajax-bridge , you cannot use consumer.subtopic .

You need to use consumer.setSubtopic() :

consumer.setDestination("TestingDestination"); 
consumer.setSubtopic("siteData.subtopic1") ; 

Now it works correctly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.