I am trying to get openfire multi user group chat history using ruby xmpp4r library with openfire server. For that i am following XEP-0045: Multi-User Chat.
I have created below xml structure using xmpp4r classes.
Ruby code
client = Jabber::Client.new(Jabber::JID.new('admin@example.com'))
client.connect("example.com",5223)
client.auth("password")
presence = Jabber::Presence.new
presence.from ="admin@example.com"
presence.to ="usertwo-aee@conference.example.com"
x = Jabber::X.new
x.add_namespace("http://jabber.org/protocol/muc")
element = REXML::Element.new 'history'
element.add_attribute("maxstanzas","10")
x.add_element(element)
presence.add_element(x)
response = client.send presence
while executing above ruby script i am not getting any response from openfire server.
What am I missing here?
Does openfire provide room chat history? Is there an ruby xmpp4r api for that? Any help is deeply appreciated. And I dont understand openfire much so any information on it is very much appreciated.