The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
14 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
40 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
89 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
108 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
62 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
128 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 ...
6
votes
1answer
176 views

xmpp4r - not able to retrieve offline messages

I am trying to get openfire multi user group chat history using ruby xmpp4r library with openfire server. I am able to frame the request but I am not getting the server reply. Below is the discovery ...
0
votes
0answers
37 views

xmpp4r: add_presence_callback not working?

I am testing "add_presence_callback". First, modify "roster.rb" provided in the examples, nothing really special here... ... cl = Client.new(jid) cl.connect cl.auth(password) ...
0
votes
0answers
66 views

xmpp4r_facebook does not connect to client with proxy

Is there a way to configure xmpp4r_facebook to connect to client with a proxy server? I've used devise and omniauth from this link ...
1
vote
1answer
313 views

Not able to send facebook message using xmpp4r_facebook

I am following the instructions presented in http://dalibornasevic.com/posts/35-how-to-send-private-messages-with-facebook-api to send message to my friend and currently testing from command line. ...
2
votes
1answer
306 views

Error while sending message using xmpp4r_facebook

I am following the instructions presented in http://dalibornasevic.com/posts/35-how-to-send-private-messages-with-facebook-api to send message to my friend and currently testing from command line. ...
0
votes
1answer
57 views

Getting RID and SID using XMPP4r

I'm having problems in how to get the SID and the RID after I connect to my jabber server using the XMPP4r gem. I can connect successfully and I just need the SID and RID to pass it to the javascript. ...
1
vote
0answers
91 views

Ruby XMPP4R useer JID

I use xmpp4r gem for create simple jabber bot. how do you know jid users in the room? How do I know what jid posted a message? Example code: @room.join Jabber::JID.new("#{conf}/#{nick}") ...
1
vote
1answer
223 views

Xmpp4r Google Talk Unable To Set Presence

I want to be able to set my presence (ie status and availability) for my google talk from a ruby script. I can't seem to be able to make it work using xmpp4r. I think it might either be that google ...
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, ...
0
votes
1answer
233 views

Ruby on Rails, xmpp4r 0.5 and no such file to load — xmpp4r

have ruby 1.8.7, gem 1.3.7 and rails 3.0.6. I wanted to add xmpp4r to my project, but i got error just i require this gem. I'm install this gem using gem install xmpp4r. Installation seems ...
1
vote
0answers
407 views

Using ejabberd with Rails

I'm trying to create a chat component to add to an existing Rails web app (and perhaps optimize communication with clients along the way). The architecture I was thinking of is: when a user ...
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
452 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
634 views

Ruby XMPP4R bot and Threads - trouble

I want my bot sends and receives messages in parallel threads. I also want my bot sends message back to user when receives any message from user. But now he sends it back to user every 5 seconds. I ...
1
vote
1answer
499 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
843 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
630 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
323 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
1answer
719 views

XMPP4R Callbacks dont seem to work

Im using xmpp4r and trying to get the hang of a basic chat feature that I wish to implement later in my Rails app. My fundamentals on Ruby Threads is still a bit shaky so I would appreciate any help ...
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 ...