My question is in the title...
It work's well when I send a message, but when I read this message with stomp->readFrame()
, Stomp return me false
.
Thank you.
after creating connection you have to subscribe the queue also.
and for send the message you can connect and sent message.
follow thees step for read frame:
$link = stomp_connect('ssl://localhost:61612');
stomp_subscribe($link, '/queue/foo');
$frame = stomp_read_frame($link);
stomp_close($link);
I think it may help you.