Tagged Questions
The xmpp4r tag has no wiki summary.
5
votes
3answers
467 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
222 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
0answers
162 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
502 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
1answer
390 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.
...
1
vote
1answer
402 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
910 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];
...
0
votes
0answers
36 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
0answers
106 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
100 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 ...
0
votes
0answers
89 views
Graceful disconnect with XMPP4r
I'm doing a lot of testing with XMPP4r and I'd like to make sure that Ctrl-C closes my XMPP connection as gracefully as possible.
I've got a class wrapping up the functionality and I'm trying to ...
0
votes
2answers
241 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
91 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.
0
votes
1answer
239 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 ...
0
votes
1answer
278 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
517 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 ...
0
votes
2answers
407 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 ...