var BOSH_SERVICE = 'http://localhost:5280/http-bind/';
-var show_log = false;
+var show_log = true;
Strophe.addNamespace("ADHOC", "http://jabber.org/protocol/commands");
function checkFeatures() {
featureIQ = $iq({ type: "get", to: queryJID, id: "features1" }).c("query", {xmlns: Strophe.NS.DISCO_INFO});
- connection.sendIQ(featureIQ, function(result) {
- if ($(result).find("feature[var='" + Strophe.NS.ADHOC + "']").length > 0) {
- $('#output').append("<p>This entitiy does support AdHoc commands</p>");
- } else {
- $('#output').append("<p>This entitiy does NOT support AdHoc commands</p>");
- }
- });
$('#output').empty();
- getCommandNodes();
+ connection.sendIQ(featureIQ,
+ function(result) { /* Callback */
+ if ($(result).find("feature[var='" + Strophe.NS.ADHOC + "']").length > 0) {
+ $('#output').append("<p>This entitiy does support AdHoc commands</p>");
+ getCommandNodes();
+ } else {
+ $('#output').append("<p>This entitiy does NOT support AdHoc commands</p>");
+ }
+ },
+ function(result) { /* Errback */
+ $('#output').append("<p>Couldn't get list of supported features</p>");
+ }
+ );
}
function showConnect() {