I have some questions about event handling in cl-xmpp.<br><br>I have been able to successfully start receive-stanza-loop, and have it process several messages with the following handler:<br><br><br>(defmethod xmpp:handle ((connection xmpp:connection) (message xmpp:message))
<br>;;  (format nil "message was sent to: ~a" (xmpp:to message))<br>  (push message (gethash (xmpp:to message) *message-hash*))<br>;;  (xmpp:disconnect connection)<br>  )<br><br>However, once I send a message, like this:
<br><br>(xmpp:message connection "<a href="mailto:awt@jabber.loglibrary.com">awt@jabber.loglibrary.com</a>"body)<br><br>xmpp:handle seems to stop processing messages on the connection.  Why does this happen?  How can I get it to start processing messages again?
<br><br>Thanks,<br>-Adam<br>