Tagged Questions
1
vote
1answer
196 views
Twisted - SleekXMPP compatibility
I am making a XMPP middleware in python which listens on a an address(host,port) and when it receives some connection on that port, it sends a XMPP message to a jid(XMPP user) on a server.
A quick ...
0
votes
0answers
60 views
Architecture of Component to connect to XMPP Server [closed]
I am new to XMPP and new to event based(Asynchronous) programming , hence I need guidance in structuring my XMPP based application.
We are building a real time location based service where XMPP forms ...
1
vote
1answer
322 views
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 ...
2
votes
1answer
311 views
Python twisted event based jabber/xmpp/email/irc/chat client that listens and responds to messages
I am looking to have my client "react" to a received message through some xml based communications medium. I was looking into xmpp with google talk, but I just need something that can quickly relay ...
3
votes
2answers
304 views
punjab can't connect to outside services
I've installed punjab with (python 2.7.2).
To further ensure SRV isn't the issue, I've included:
connect_srv = False
in punjab.tac.
The server seems to start fine, and I can access ...
-1
votes
1answer
208 views
Simple questions about python Jabber, Twisted, XMLRPC, and SCP [closed]
I have a few questions about these protocols that I am having a really hard time answering just searching the web. So here goes. Please excuse my ignorance in advance, I know at least one of these ...
0
votes
1answer
308 views
How to get punjab/twisted to bypass dns
I am trying to get a punjab BOSH server to work with a development XMPP server. punjab is trying to do a SRV DNS lookup of the XMPP domain, which is not present in our DNS infrastructure. Is there ...
2
votes
2answers
243 views
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 ...
7
votes
2answers
596 views
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 ...
1
vote
1answer
1k views
facebook chat using strophe, punjab
using the answer of my previous question and another post I tried to implement facebook-chat from a browser. Here is what I did:
on an ubuntu virtual machine, I have python 2.6.5, ...
1
vote
1answer
2k views
Simple XMPP bot on python
I have the simple code of XMPP bot by python and http://xmpppy.sourceforge.net/
#!/usr/bin/python
# -*- coding: utf-8 -*-
import xmpp
import urllib2
import ConfigParser
config = ...
0
votes
1answer
517 views
Running Xmpp punjab and twisted on Windows
I installed openfire, punjab, and twisted (with its dependencies) and i have also done all necessary setting for proxy now when i got to http://localhost/httpbind i get "503 Service Unavaliable"
I ...
2
votes
3answers
2k views
Sending data received in one Twisted factory to second factory
I am trying to write a simple program using Twisted framework and I am struggling with resolving (or even with imaging how to write it) issue I couldnt find any relevant documentation for:
The main ...
3
votes
1answer
1k views
twistd in Twisted cant be run in window
in command prompt i type >>twistd echobot.tac
Traceback (most recent call last):
File "C:\Python26\Scripts\twistd.py", line 18, in ?
from twisted.scripts.twistd import run
ImportError: No module ...
3
votes
1answer
837 views
chatbot using twisted and wokkel
I am writing a chatbot using Twisted and wokkel and everything seems to be working except that bot periodically logs off. To temporarily fix that I set presence to available on every connection ...
1
vote
3answers
2k views
Twisted - how to create multi protocol process and send the data between the protocols
Im trying to write a program that would be listening for data (simple text messages) on some port (say tcp 6666) and then pass them to one or more different protocols - irc, xmpp and so on. I've tried ...
3
votes
2answers
1k views
Python (Twisted) - reading from fifo and sending read data to multiple protocols
Im trying to write some kind of multi protocol bot (jabber/irc) that would read messages from fifo file (one liners mostly) and then send them to irc channel and jabber contacts. So far, I managed to ...
1
vote
1answer
544 views
Twisted connectionLost Event
Hey there,
I use the twisted.words.protocols.jabber.client.XMPPClientFactory . Do you know how I can callback a function when the connection gets lost (for example WiFi-connection is down)?
thank you ...
3
votes
2answers
695 views
How to init twisted reactor in the right way?
i have a class MyJabber which init a basic jabber account that print
the incoming messages to stdout + put them into a queue.
The code that add the client to the reactor is this:
def ...
5
votes
2answers
3k views
Python Jabber/XMPP client library for Twisted
I am looking for a Python library for writing Jabber/XMPP clients using the Twisted framework.
1
vote
1answer
900 views
Why do all twisted/wokkel xmpp examples ignore the proper usage of JID in the xmpp protocol?
Okay, this isn't a question. All the examples of wokkel and twisted I have seen do not properly observe generated resources in the JID.
Google talk clients built using wokkel/twisted generally break ...
15
votes
4answers
7k views
How do you create a simple Google Talk Client using the Twisted Words Python library?
I am interested in making a Google Talk client using Python and would like to use the Twisted libraries Words module. I have looked at the examples, but they don't work with the current ...