I am trying to send a Change of value Signal to all sessions my alljoyn thin app is connected to using :
AJ_MarshalSignal(&Bus, &sig_out, SIGNAL_ STATECHANGED, NULL, 0, AJ_FLAG_GLOBAL_BROADCAST, 0);
However the Clients (running on AJSCL) are not able to receive the Signal.
But when I send it to a particular session using :
AJ_MarshalSignal(&Bus, &sig_out, SIGNAL_ STATECHANGED, NULL, session_ID, AJ_FLAG_GLOBAL_BROADCAST, 0);
The Client with the specified session_ID
is able to receive it.
Is there any flag in the Thin Client Version similar to the
BusAttachment.SESSION_ID_ALL_HOSTED
I do not want to send it as a Sessionless Signal. Is there any other way all the joined session can receive the Signal?