0
votes
1answer
12 views

How Can I Use xmpp4r To Detect The Online/Offline Status Of A Given Jabber ID?

What is the proper xmpp4r way to know if a given contact is online before sending them a message? Can you post sample xmpp4r code for doing this? Here is my use case: If contact online, send ...
0
votes
1answer
39 views

“IOError: closed stream” error when authenticating on xmpp4r_facebook

This is quite strange since it used to work, and now it doesn't. If it was 'Not Authorized' error, it would have been easy, but with "IOError: closed stream", I am stumped. I thought it may have ...
0
votes
1answer
83 views

Can't send a message from xmpp4r?

I'm trying to test sending a message to one jid account by using xmpp4r: require 'xmpp4r' include Jabber jid = JID::new('alice@wonderland.lit') password = 'secr3t' cl = Client::new(jid) ...
-1
votes
1answer
104 views

Ruby Thread Deadlock in XMPP (xmpp4r)

I'm implementing a Google Talk listener that updates me with all my contact list items' presence. require 'xmpp4r' require 'xmpp4r/roster' require 'xmpp4r/roster/helper/roster' sender_jid = ...
1
vote
0answers
60 views

xmpp4r throws exception on login: “Exception caught in Parser thread! (Jabber::ServerDisconnected)”

I tried to connect to my XMPP server using xmpp4r in ruby and my code is very simple, but I don't know why I got error. I can successfully use ichat to log in using chat@localhost and also to the ...
0
votes
0answers
120 views

not able to get openfire group chat history using ruby xmpp4r

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 ...
5
votes
1answer
126 views

Not able to get previous group chat history using ruby xmpp4r

I am using ruby xmpp4r library to implement multi user group chat application with openfire server. I have created chat room on openfire server successfully. If user joins into chat room with openfire ...
4
votes
2answers
144 views

Rails + XMPP bot in background

I'm building a service which basically allows users to chat with a bot, and the bot then does some strange processing with the chat sent by the user, and eventually reply back with some meaningful ...
2
votes
2answers
569 views

Get online users XMPP4r + Rails

I'm trying get online friends by user in XMPP server (Ejabberd). I'm using Ruby on Rails 3.2. The idea is to add in array all online users to use this on view page. I found asynchronous code (below), ...
1
vote
0answers
197 views

XMPP4R icq transport troubles

jid = Jabber::JID.new('....@jabber.ru') j = Jabber::Client.new(jid) j.connect j.auth('12345') if i trying to send message through transport it responds to me SENDING: <message ...
0
votes
1answer
306 views

XMPP4r bot presence - randomly appearing offline until restart?

I have some bots built with XMPP4r and I'm seeing a strange problem where they will appear offline after being online for a while. (no set amount of time) I'll see them fine in my roster one night, ...
1
vote
1answer
868 views

Sending XMPP message to offline Google Talk user with ruby xmpp4r

When using Perl's Net::Jabber, sending a simple message to an offline user causes the message to be delivered to the user when he comes online (it even show's in the user's gmail account as unread ...
1
vote
2answers
451 views

xmpp4r and Iq.new_register for in-band registration

I've been having trouble using xmpp4r to do in-band registration following the SO thread here: XMPP transport to another protocol The problem comes down to that I get a NoMethodError Exception error ...
0
votes
0answers
191 views

Google/Jabber lost connection

Good day. I use xmpp4r library and google account in rails app. All work fine, but after 7 hours connection breaks. I think, @client.on_exception do not catch this error. I can't understand. Thanks.
1
vote
1answer
498 views

Setting Gtalk Status with Jabber

I'm using Jabber to communicate with gTalk server. Right now, I'm able to connect properly. Also, I can send/receive messages. But, I'm unable to set my gtalk presence as busy though jabber.status ...
0
votes
1answer
841 views

Ruby 24/7 working XMPP bot

Could someone help me with this? I would to create a bot which receives word in one language, looks in database, gets translation and sends it back. How i understand it's not possible on shared ...
1
vote
1answer
629 views

XMPP transport to another protocol

I would like to add support of ICQ in my application using jabber-transport. I use xmpp4r ruby's library. All that I found doesn't show how to login to external (icq) server and how to send messages. ...
7
votes
3answers
2k views

How can I send an image on the web in an XMPP (Jabber) message?

For the XMPP interface for the Stack Overflow chat, I am currently taking the HTML of the chat messages and converting to valid XML, and setting that as the html child element of the XMPP message ...
3
votes
4answers
321 views

Using Ruby, how can I confirm that an XML snippit is valid?

As some of you make know, I'm working on XMPP (Jabber) integration for the StackOverflow chat system, as an XMPP component written in Ruby using the xmpp4r package. I'm struggling with one issue ...
1
vote
3answers
2k views

How to get port number for iPhone Chatting Application

I am developing a chat application. But Right now chatting is possible with only google because I know only google's port no. xmppClient = [[XMPPClient alloc] init]; [xmppClient addDelegate:self]; ...
2
votes
1answer
601 views

Using the xmpp4r Ruby gem, how can I synchronously discover if a contact is online?

I'm new to XMPP and the xmpp4r library, so please forgive my noob question if this is obviously documented somewhere. What's the most straightforward way, in a synchronous manner, to find out if a ...