public void xmppDisconnect() throws Exception {
AgentFactory factory = getAgentFactory();
XmppService service = (XmppService) factory.getTransportService("xmpp");
if (service != null) {
service.disconnect(getId());
}
else {
throw new Exception("No XMPP service registered");
}
}