Voting

: three plus three?
(Example: nine)

The Note You're Voting On

guilherme dot geronimo at gmail dot com
8 years ago
In some cases (E.g. ActiveMQ), when you have many consumers you need to identify your "client-id" during the connection process, otherwise the server can misunderstand your connection and create new topics/queues:

<?php
$stomp
= new Stomp($url, $user, $password, array('client-id'=> $clientId ));
?>

<< Back to user notes page

To Top