Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
cl.send(Iq.new_rosterget)

cl.add_presence_callback { |pres|
  puts "presence: from #{pres.from} type #{pres.type} to #{pres.to}"
}

cl.add_iq_callback { |i|
  ...
}

exit = false
while not exit
end
cl.close

Then to test,

start roster.rb using account A

start echo.rb using account B (sends Presence, also in examples)

expecting A will be notified of B's availability, but not happening

really appreciated

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.