Questions tagged [wokkel]

9 questions
7
votes
2 answers

Wokkel Resources

This isn't a technical question, however after hours of scouring google I have not found an viable examples or resources to learn the Wokkel framework. I've extrapolated what I can from the source code itself, and the unit tests but still do not…
Kyle
  • 355
  • 1
  • 4
  • 13
2
votes
2 answers

Connection issue with twisted / wokkel when running locally

I've created a simple XMPP robot with the twisted/wokkel lib. It works wonderfully when I run it on my local machine connecting to a foreign XMPP server. However, when I run the twisted script from the xmpp machine itself it immediately refuses the…
Kyle
  • 355
  • 1
  • 4
  • 13
1
vote
1 answer

How to use wokkel with google talk: (error twisted.words.protocols.jabber.sasl.SASLNoAcceptableMechanism)

I tried the answer given here. Looked up the problem here, and found something to indicate this is completely hopeless here I have already tried upgrading my openssl (macports) and tried installing pyopenssl (macports.) Although I have had problems…
Alex Eftimiades
  • 2,527
  • 3
  • 24
  • 33
1
vote
1 answer

xmpp client with server ejabberd

I am using ejabberd as server and want to deploy it on a large scale. Can you suggest me the client best suited so that I can plug it in seamlessly. I am thinking of using wokkel or pidgin but not really sure of the best possibility. Any sort of…
Him
  • 103
  • 2
  • 4
  • 7
1
vote
0 answers

Retrieving offline messages not working -XMPP wokkel

I have an XMPP chat client using wokkel and twisted and it works fine, but when a user comes online, I send this stanza to get the messages a user received while offline:
user1387717
  • 1,039
  • 1
  • 13
  • 30
0
votes
1 answer

python xmpp wokkel JID escaping

After a painful search for Python XMPP library to use for XEP 060 I finally decided on wokkel and twisted. However, they cannot understand the simple JID escaping of XEP-106 I am trying to pass username as an email address so I escape it like…
Abhishek Dujari
  • 2,343
  • 33
  • 43
0
votes
0 answers

How can I use wokkel xmpp with a SOCKS proxy (e.g. txsocksx)?

I've had some success writing an XMPP client using the wonderful wokkel.xmppim module. I would like to send my XMPP traffic through a SOCKS proxy (v4a or v5). I've had some success getting txsocksx to work with twisted.web.client.Agent by…
Louis Thibault
  • 20,240
  • 25
  • 83
  • 152
0
votes
1 answer

Accept all incoming XMPP chats wokkel python

I have an XMPP client working with Google's GTalk XMPP server. I'd like to make it so that my JID/resource can receive messages from anyone (whether they are subscribed to me or not). Right now, if a client sends a messages to my username without…
user1387717
  • 1,039
  • 1
  • 13
  • 30
-1
votes
1 answer

Does Wokkel (XMPP Library) support following features?

I want to develop a XMPP protocol to implement an RPC communication with following features. 1.Security Authentication between client and Server. 2.Support Null values(send null values to server) 3.Can able to send arbitrary values(XML-RPC support…