Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a pubsub related application in html where I have to create a pubsub node.I have seen in 'Professional XMPP Programming with JavaScript and jQuery' how to create anode.but In the book node is created without giving its name.I know we do both way around. but I am unable to create a node by specified name. actuall code of creating node in book which is running properly is:

var createiq = $iq({to: Together.service, type: "set"})
          .c('pubsub', {xmlns: Together.NS_PUBSUB})
          .c('create');

and I have modified it for creating node with a name:

 var createiq = $iq({to:Together.service,
                type:"set",
                })
                .c('pubsub', {xmlns: Together.NS_PUBSUB})
                .c('create',{node:'asdfghjkl'});

If any one has created a pubsub node using xmpp and strophe then plz help me out...

share|improve this question

1 Answer

up vote 0 down vote accepted

There already exist plugins for Strophe to do PubSub:

share|improve this answer
but i didn't understood why my 'create iq' is not working. But any ways its done with this strophe plugin. – Shobha Singh Aug 27 '12 at 4:43
If you include the response I might be able to help you with that. – ggozad Aug 27 '12 at 12:00
With the help of your plugin its working properly.Thanks. – Shobha Singh Aug 27 '12 at 12:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.