1
vote
1answer
27 views

Error while writing a Google CCS server in node using node-xmpp

This is python code in Google documentation of writing a CCS server: https://developer.android.com/google/gcm/gs.html#server I figured out most of it, and how to code it in Javascript using ...
0
votes
1answer
108 views

Send a Facebook Message with XMPP using Access Tokens in Python

This is a very specific question, but I cannot find any documentation on how I can do it. The Facebook Documentation is pretty vague with some horrible and useless PHP examples (really, it's code like ...
0
votes
1answer
38 views

Connecting to Jabber Server Via Proxy in Python (XMPPY)

Trying to connect to jabber with proxy: > JCON = xmpp.Client(server=SERVER, port=PORT, debug=[]) > con=JCON.connect(server=(CONNECT_SERVER, PORT), proxy=(127.0.0.1, 80), ...
0
votes
1answer
199 views

Facebook Chat API - Python App Engine

I'm trying to use the Facebook chat API in my web service(AppEngine Python). I found some code on line, but any of them help me to make it work. This is the code I'm using, but don't work. What I am ...
0
votes
0answers
46 views

Python - xmpp message getting ssl error

I have tried this with XMPPPY installed and I get this error and can't figure out why... import sys,os import xmpp as xmpp jid=xmpp.protocol.JID('FromUsername@ServerName') ...
0
votes
1answer
27 views

How to get contact image url in python xmpp

Using python xmpp am able to connect to gtalk and send messages. But how to get the user's profile pic ?
0
votes
1answer
51 views

XMPP connecting to server (Python)

I am currently following a tutorial/getting started on creating a Google Talk Bot I have made the EchoBot but it fails at runtime with the following error: File "echobot.py", line 59, in ...
0
votes
1answer
91 views

xmpppy create user account

I have searched about how to create Openfire account in Python and found the following answer. I tried given by Joe Hildebrand and run the code at the machine running Openfire 3.8.1 with python ...
2
votes
1answer
54 views

Can I add xmpp python library to my google app engine server

I'm trying to send messages between xmmp clients using gogle app engine as a server, for that reason I prefer to use xmpp library for python (xmpppy) instead the xmpp library of the google app engine ...
0
votes
2answers
209 views

Send a xmpp message using xmmp python library and google app engine

I'm trying to send a message using xmpp and google app engine. I'm using xmpp library for python. My code is the following: import webapp2 import xmpp _SERVER = 'serverdomain' class ...
1
vote
1answer
58 views

pyxmpp2 connect to openfire cannot resolve NXDOMAIN

I installed pyxmpp2 https://github.com/Jajcus/pyxmpp2to my Ubuntu machine. I also installed Openfire 3.8.1 to it. I would like to use pyxmpp2 to connect to my Openfire server within the same machine. ...
1
vote
1answer
174 views

XMPP Chat Client - Some IM messages to Google Talk don't get received

I've created an XMPP chat client in python. Chat generally works except it seems that Google Talk 'blocks' some messages when sending from my chat client to a user using Google Talk. For example, if I ...
1
vote
1answer
329 views

Send an XMPP message with Python

I'm trying to send an XMPP message using Python but I can't get it to work. It seems to be failing at the authentication step. I took this example from a previous question and set up a gmail account ...
2
votes
3answers
949 views

Creating a chat bot integrated with Google Talk preferably in Python or Go

This question has been asked in different forms at different times, But since things have changed quite a bit over time, and the existing answers are not very satisfactory to begin with, I permit ...
-1
votes
2answers
171 views

Can we create an XMPP chat client code in windows just like in android?

I need my android phone and my PC (win-xp-sp3) to be able to communicate with each other. I am successfully running a xmpp code in my android phone through SL4a/python and it can send and receive ...
0
votes
1answer
76 views

Python-XMPP - Iterate the IQ stanza items

I'm using python-xmpp to connect to gtalk. I'm receiving the responses and I can send and receive a message to a specific user/email. I am looking for a way to iterate over the IQ items so that I can ...
0
votes
0answers
118 views

Error connecting to google server using Punjab

I've installed punjab with (python 2.7.3). I am trying to connect to google server (gmail.com) using emite via Punjab as the intermediate. The server seems to start fine, and I can access ...
1
vote
1answer
60 views

How do I declare individual array values in Python?

I am currently playing around with the python-jabberbot and am having trouble creating a simple method which sends a random sentence. I am not proficient in python so I am wondering where I am going ...
2
votes
1answer
246 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
1answer
214 views

XMPP— openfire,PHP and python web service

I am planning to integrate real time notifications into a web application that I am currently working on. I have decided to go with XMPP for this and selected openfire server which i thought to be ...
0
votes
1answer
253 views

Send an xmpp message to all connected clients/resources

How can I send one XMPP message to all connected clients/resources using a Python libraries for example: xmpppy, jabber.py, jabberbot. Any other commandline solution is well. So far I've only been ...
0
votes
1answer
83 views

Python gtalk client code not working

I am trying to run this code to make a gtalk client but it is not running. i a new to this and i guess i a doing some silly mistake.please help me out. also please tell me how to remove these ...
0
votes
0answers
53 views

How do I subscribe to SuperFeedr's Tumblr (free, real-time) feed?

I want to subscribe to the Tumblr feed in SuperFeedr. I'm using the SuperFeedr python wrapper, and I'm successfully receiving the dummy.xml subscription. But I can't manage to subscribe to ...
1
vote
0answers
124 views

How to subscribe to real-time XMPP RSS feeds with Superfeedr

I'm trying to subscribe to feeds with Superfeedr, and I've got a python wrapper for XMPP up and running, and I'm receiving the dummy.xml successfully. I don't quite understand how to add more ...
0
votes
0answers
47 views

Persisting data in XMPP application [closed]

Here is the stack that we plan to use for our XMPP based application. Server- ejabberd Business Logic - Python Here are the questions: We want to persist data in an external database. Data ...
2
votes
0answers
241 views

xmpp + ssl handshake failed

I am having difficulty in establishing a connection with XMPP (Prosody) . But if I use PSI it works fine and request for your suggestions. Here is the code snippet of my python : client = ...
0
votes
0answers
73 views

PyQt4 - Connecting to a jabber server

I'm totally new to PyQt4 and am looking for examples on how to make a simple jabber GUI client based on xmpppy library (or any other). A simple client code that would just login and send presence ...
0
votes
1answer
143 views

Python - How to make a background response timeout function

I've made a Farkle Jabber game bot using Python SleekXMPP library. In multiplayer mode, a user plays against a user by turns. I'm trying to make a timeout duration so that if your opponent didn't ...
0
votes
2answers
195 views

python does not connect to local XMPP server

i'm trying to connect my local XMPP server by the code coming below import xmpp client = xmpp.Client('localhost',debug=[]) client.connect(server=('localhost',5222)) but i always get this message : ...
1
vote
2answers
652 views

how to send message to gtalk using python?

i'm trying to work with XMPP Servers and it's related python libraries and i'm gonna send a message to a google user with my account using the below python code segment : import sys,os,xmpp ...
-2
votes
1answer
257 views

how to send message to openfire XMPP server with python [closed]

I want to send "hello world" message (and of course receive it) to an Openfire/XMPP server on port 5222 with python. How can I do that?
1
vote
0answers
124 views

python-xmpp received message

I wrote application with xmpp. It sending message using gtalk. I want to print received message. How can i do? My application short code as follows. def process_message(): client = ...
1
vote
1answer
96 views

Deny subscription to users with different domain on Google App Engine

I'm developing an application on GAE (google app engine). This app is a chat bot which the users can use in order to access some resources. The problem is that I don't want that any user who knows the ...
-1
votes
2answers
96 views

Running XMPP on Amazon for a chat app

I'm building an Android IM chat app for fun. I can develop the Android stuff well but i'm not so good with the networking side so I am looking at using XMPP on AWS servers to run the actual IM side. ...
0
votes
1answer
122 views

Python And EJABBER/XMPP [closed]

I have to write a program in python that can shutdown/hibernate/restart the windows/Linux base operating systems through the EJABBER/XMPP server , Now i wondering that what is EJABBER and how should i ...
0
votes
1answer
137 views

AssertionError: No api proxy found for service “xmpp”

I am trying to run gae app without dev_appserver.py, and have following error AssertionError: No api proxy found for service "xmpp" room = webrtc.Room.get_by_key_name(room_key) I found in the ...
0
votes
1answer
257 views

SleekXMPP: Get ClientXMPP JID Resource?

import sleekxmpp class SendMsgBot(sleekxmpp.ClientXMPP): def __init__(self, jid, password, recipient, wsh): print "jid is " + jid sleekxmpp.ClientXMPP.__init__(self, jid, ...
2
votes
1answer
113 views

pyxmpp - How to send raw XML

How can I send raw XML code using pyxmpp? something like: c.send("<presence to='jid@domain.com/resource'/>")
1
vote
0answers
148 views

pyxmpp user registration: plain text authentication on SASL fail?

When using pyxmpp is the jabber user registered (for example in plain text) when the SASLAuthenticationFailed exception raises? My colleague left me a code in which he logs "registration sucessful" ...
1
vote
0answers
68 views

Http xmpp multithread process

I am using a python library called sleekxmpp to imeplement xmpp protocol. Actually, the whole process is, a client send a http request to me, then I need to send xmpp messages to other clients through ...
1
vote
1answer
245 views

Google Talk/XMPP audio support in Python

I'm looking for a Python library to communicate with Google Talk that can handle audio chat. There are plenty of them that can do text-only, but I can't find any that support audio or video. Does ...
0
votes
0answers
127 views

Freezing python script wtih use xmppy (Jabber)

I am try made primitive bot with use xmpppy (for learning). I wrote script: Bot.py import xmpp from jabber_bot import JabberBot config = {'jid': 'myname@example.org', 'pass': 'mypassword'} def ...
2
votes
2answers
208 views

XMPP library with support for XEP-133 (admin commands)

I'm trying to get a list of online users from our jabber server, together with their IP addresses. XEP-133 provides 2 methods I can use for that: get-online-users-list and get-user-stats. Now my ...
2
votes
2answers
146 views

How can I send data using xmpppy?

How can I send data with xmpppy using this method: http://xmpp.org/extensions/xep-0047.html#send I suppose I should use IBB class but have no idea how to do it. ...
1
vote
2answers
272 views

Getting ejabberd to notify an external module on client presence change

I have an ejabberd server at jabber.domain.com, with an xmpp component written in python (using sleekxmpp) at presence.domain.com. I wanted the component to get a notification each time a client ...
0
votes
2answers
565 views

How to create MUC in gtalk using python xmpppy

Can anybody help me to fix this code, I really need it, but have no idea what to do next. I need to create a groupchat and send messega to invited persons, now it is example2@gmail.com, but it does ...
0
votes
2answers
135 views

XPath Namespace issues

When connecting to an XMPP server I get one of these two responses: <stream:features xmlns:stream="http://etherx.jabber.org/streams"> <mechanisms ...
0
votes
0answers
93 views

Why xmpp message with html tag not being sent using xmpppy?

I'm sending this message which is sent successfully to a chatroom: <message xmlns="jabber:client" to="11111_myroom@conf.hipchat.com" type="groupchat"> <body>test messsage</body> ...
0
votes
1answer
83 views

What's the difference between xmpp.protocol.Message and xmpp.Message?

What's the difference between xmpp.protocol.Message and xmpp.Message? I've used xmpp.Message and it works as expected, but I don't know how to send html messages using it. I found a solution for ...
0
votes
1answer
220 views

Sleekxmpp: Working with more than one custom stanza

I am working on creating a test for a xmpp client and I have the need to work with different custom stanzas along the way. I have two issues that I was wondering if you guys can help me: As I ...

1 2 3 4