Last change
on this file since 65:6936acbdb9bd was
65:6936acbdb9bd,
checked in by Ralph Meijer <ralphm@…>, 13 years ago
|
Add support for the XMPP Ping protocol.
Author: ralphm
Fixes #55.
This adds a whole bunch of examples around the ping protocol in different
settings for both the pinger and pingee: as a external server-side component,
as a standalone server with server-to-server connectivity and as a client.
Also updates the disco support to allow for non-deferred responses from
subprotocol handlers
|
File size:
739 bytes
|
Line | |
---|
1 | """ |
---|
2 | An XMPP Ping client as an XMPP client. |
---|
3 | |
---|
4 | This pinger client logs in as C{pinger@example.org}. |
---|
5 | """ |
---|
6 | |
---|
7 | from twisted.application import service |
---|
8 | from twisted.words.protocols.jabber.jid import JID |
---|
9 | from wokkel import client |
---|
10 | from pinger import Pinger |
---|
11 | |
---|
12 | # Configuration parameters |
---|
13 | |
---|
14 | THIS_JID = JID('pinger@example.org') |
---|
15 | OTHER_JID = JID('ping.example.com') |
---|
16 | SECRET = 'secret' |
---|
17 | LOG_TRAFFIC = True |
---|
18 | |
---|
19 | |
---|
20 | # Set up the Twisted application |
---|
21 | |
---|
22 | application = service.Application("Pinger Component") |
---|
23 | |
---|
24 | pingerClient = client.XMPPClient(THIS_JID, SECRET) |
---|
25 | pingerClient.logTraffic = LOG_TRAFFIC |
---|
26 | pingerClient.setServiceParent(application) |
---|
27 | pingerClient.send('<presence/>') # Hello, OpenFire! |
---|
28 | |
---|
29 | pingerHandler = Pinger(OTHER_JID) |
---|
30 | pingerHandler.setHandlerParent(pingerClient) |
---|
Note: See
TracBrowser
for help on using the repository browser.