Commit 747aa7dc authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

Do not send acknowledgement of receiving the Clearspace component disco#info anymore.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10432 b35dd754-fafc-0310-a699-88a17e54d16e
parent 6fd4c00d
......@@ -1095,20 +1095,9 @@ public class ClearspaceManager extends BasicModule implements ExternalComponentM
// If component is Clearspace then keep track of the component
if (isClearspace) {
clearspaces.add(iq.getFrom().getDomain());
// Now send acknowledgement to Clearspace that we received its info
acknowledgeInfoReceived(iq.getFrom());
}
}
private void acknowledgeInfoReceived(JID infoSender) {
IQ iq = new IQ();
iq.setTo(infoSender);
iq.setFrom(XMPPServer.getInstance().getServerInfo().getXMPPDomain());
iq.setID("component_info_recvd_" + StringUtils.randomString(3));
iq.setChildElement("component-info-recvd", "http://jivesoftware.com/clearspace");
getInstance().query(iq, 30000);
}
/**
* Returns a nonce generated by Clearspace to be used in a SSO login.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment