active questions tagged xmpp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T21:17:00Zhttp://stackoverflow.com/feeds/tag/xmpphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/551900/which-group-messaging-technology-to-use3Which group messaging technology to use?Yurii Rashkovskii2009-02-16T00:18:15Z2009-12-16T16:55:39Z
<p>I feel a little bit kind of confused — for about 24 hours I have been thinking which group broadcasting technology to use in my project.</p>
<p>Basically, what I need is:</p>
<ul>
<li>create groups (by some backend process)</li>
<li>broadcast messages by any client (1:N, N:N)</li>
<li>(potentially) direct messages (1:1)</li>
<li>(important) authenticate/authorize clients with my own backend (say, through some kind of HTTP API)</li>
<li>to be able to kick specific clients by backend process (or server plugin) </li>
</ul>
<p>Here is what I will have: </p>
<ol>
<li>Backend-related process(es) in either Ruby or haXe</li>
<li>Frontend in JS+haXe(Flash9) — in browser, so <em>ideally</em> communicating through 80/443, but not necessarily.</li>
</ol>
<p>So, this technology will have to be easily accessible in haXe for Flash and preferably Ruby.</p>
<p>I've been thinking about: RabbitMQ (or OpenAMQ), RabbitMQ+STOMP, ejabberd, ejabberd+BOSH, juggernaut (with a need to write a haXe lib for it).</p>
<p>Any ideas/suggestions?</p>
http://stackoverflow.com/questions/1915305/free-xmpp-jabber-library-for-silverlight0free XMPP/Jabber library for SilverlightMohammed El-Gouhary2009-12-16T15:20:53Z2009-12-16T15:20:53Z
<p>I need to create a silverlight chat application.
I know that there is a library called <a href="http://code.google.com/p/jabber-net/" rel="nofollow">Japper-net</a>
but it only works for .NET applcations and not for silverlight.
My question is: Is there any free XMPP/Jabber client library for Silverlight?</p>
http://stackoverflow.com/questions/1443194/can-i-invoke-xmppconnection-sendpacket-from-concurrent-threads0Can I invoke XMPPConnection.sendPacket from concurrent threads ?Jacques René Mesrine2009-09-18T08:20:24Z2009-12-15T16:08:04Z
<p><strong>Motivation</strong></p>
<p>I want extra eyes to confirm that I am able to call this method <em>XMPPConnection.sendPacket(
Packet )</em> concurrently. For my current code, I am invoking a List of Callables (max 3) in a serial fashion. Each Callable sends/receives XMPP packets on the one piece of XMPPConnection. I plan to parallelize these Callables by spinning off multiple threads & each Callable will invoke sendPacket on the shared XMPPConnection without synchronization.</p>
<p><strong>XMPPConnection</strong></p>
<pre><code>class XMPPConnection
{
private boolean connected = false;
public boolean isConnected()
{
return connected;
}
PacketWriter packetWriter;
public void sendPacket( Packet packet )
{
if (!isConnected())
throw new IllegalStateException("Not connected to server.");
if (packet == null)
throw new NullPointerException("Packet is null.");
packetWriter.sendPacket(packet);
}
}
</code></pre>
<p><strong>PacketWriter</strong></p>
<pre><code>class PacketWriter
{
public void sendPacket(Packet packet)
{
if (!done) {
// Invoke interceptors for the new packet
// that is about to be sent. Interceptors
// may modify the content of the packet.
processInterceptors(packet);
try {
queue.put(packet);
}
catch (InterruptedException ie) {
ie.printStackTrace();
return;
}
synchronized (queue) {
queue.notifyAll();
}
// Process packet writer listeners. Note that we're
// using the sending thread so it's expected that
// listeners are fast.
processListeners(packet);
}
protected PacketWriter( XMPPConnection connection )
{
this.queue = new ArrayBlockingQueue<Packet>(500, true);
this.connection = connection;
init();
}
}
</code></pre>
<p><strong>What I conclude</strong></p>
<p>Since the PacketWriter is using a BlockingQueue, there is no problem with my intention to invoke sendPacket from multiple threads. Am I correct ?</p>
http://stackoverflow.com/questions/1907502/openfire-groups-not-updated-on-roster-from-database-using-custom-db0Openfire - Groups not updated on Roster from Database using custom DBFernando2009-12-15T13:34:11Z2009-12-15T13:34:11Z
<p>Hi, I made this question over at the Openfire groups, but it seems to be pretty quiet out there. Maybe someone here at SO works with Xiff/Openfire and has a clue about this:</p>
<p>We are using an external database for users and groups, on Openfire 3.6.4 through Xiff 3.0 beta with our own client.</p>
<p>When a user is added on our database, the roster doesn't get updated. I am logged in as "User1". "User2" is added to the database to the same shared group, so I should see him in my roster. User2 can login and see User1 on his roster, but User1's roster hasn't been updated. Even after log out, User2 still doesn't show up on User1's roster.</p>
<p>Apparently the group is being cached or something. Where should I be looking at for a fix to this problem? Xiff? OpenFire? I found about the property "cache.name.maxLifetime" in the docs, but I'm not sure if this is the property I should be using to get groups to update the members.</p>
http://stackoverflow.com/questions/1901828/best-python-xmpp-jabber-client-library0Best python XMPP / Jabber client library?flybywire2009-12-14T16:11:59Z2009-12-14T19:43:21Z
<p>What are your experiences with Python Jabber / XMPP client libraries?
What do you recommend?</p>
http://stackoverflow.com/questions/1492075/monit-xmpp-notifications0Monit XMPP notificationsMilan Novota2009-09-29T11:52:30Z2009-12-13T06:26:43Z
<p>Is there any way to tell Monit to send XMPP notifications as well as emails on alerts?</p>
http://stackoverflow.com/questions/1881227/openfire-pubsubcollection-multiple-parents-implemented0Openfire pubsub#collection (multiple parents implemented?)Quasar2009-12-10T14:10:40Z2009-12-10T14:10:40Z
<p>I've been checking out OpenFire recently and am now trying to ascertain whether I can make a pubsub node with multiple collection nodes as parents. It would be very handy for the architecture I have in mind. Unfortunately, while the XEPs make it very clear this should be possible for an appropriate hierarchy of nodes, I can't tell which hierach(y/ies) are implemented by OpenFire, and whether they support this feature at all. I've asked on the official forums but haven't gotten any replies - I heard there were a number of people experienced with OpenFire here so I'm hoping you guys can shed light on this for me. Thanks in advance!</p>
http://stackoverflow.com/questions/1847120/best-xmpp-library-for-python-web-application1Best XMPP Library for Python Web ApplicationYosy2009-12-04T14:02:47Z2009-12-10T13:36:16Z
<p>Hi,
I want to learn how to use XMPP and to create a simple web application with real collaboration features.
I am writing the application with Python(WSGI), and the application will require javascript enabled because I am going to use jQuery or Dojo.</p>
<p>I have downloaded Openfire for the server and which lib to choose? SleekXMPP making trouble with tlslite module(python 2.5 and I need only python 2.6).</p>
<p>What is your suggestion?</p>
http://stackoverflow.com/questions/1838770/how-to-set-get-profile-data-with-xmpp-using-smack0How to set/get profile data with XMPP using SmackUlrich Scheller2009-12-03T09:33:43Z2009-12-10T13:21:55Z
<p>I am working on a XMPP client on Android, using the Smack library. The roster/messaging/presence stuff is running very well. However, I didn't find a way to store additional profile information (userpicture, the dogs name, ...).</p>
<p>The only way I see from googling is using VCards. But it simply did not work. I tried the following:</p>
<pre><code> VCard vCard = new VCard();
vCard.load(connection);
vCard.setEmailHome("meine_home@email.de");
vCard.setLastName("Scheller");
vCard.setField("blafasel", "asdf");
vCard.save(connection);
</code></pre>
<p>Then I was looking for a way to see that VCard information. It did neither show up in iChat nor in this System.out:</p>
<pre><code> vCard.load(connection, user);
System.out.println(user + " has this vCard: " + vCard.toXML());
</code></pre>
<p>So anything went wrong, but theres no indication what it was. I tried this with the google talk server and my own copy of openfire with the same result. Btw, I am using this version of Smack: <a href="http://davanum.wordpress.com/2007/12/31/android-just-use-smack-api-for-xmpp/" rel="nofollow">http://davanum.wordpress.com/2007/12/31/android-just-use-smack-api-for-xmpp/</a></p>
<p>What am I doing wrong here? What is the correct way of storing profile related information with Smack?</p>
http://stackoverflow.com/questions/1776955/how-to-get-port-number-for-iphone-chatting-application0How to get port number for iPhone Chatting Applicationsagar2009-11-21T22:14:36Z2009-12-09T20:28:35Z
<p>I am developing a chat application.</p>
<p>But Right now chatting is possible with only google because I know only google's port no.</p>
<pre><code>xmppClient = [[XMPPClient alloc] init];
[xmppClient addDelegate:self];
// Replace me with the proper domain and port.
// The example below is setup for a typical google talk account.
[xmppClient setDomain:@"talk.google.com"];
[xmppClient setPort:5222];
</code></pre>
<p>You can see that, google has set 5222 as port number.</p>
<p>Same way I want to set port no for yahoo, windows messenger & other popular sites, How can I get all these?</p>
<p>(Is it something like that - "XMPP is specific for Google ones" ? ? )</p>
http://stackoverflow.com/questions/1850162/is-there-an-open-source-websockets-javascript-xmpp-library4Is there an open source WebSockets (JavaScript) XMPP library?Daniel Sterling2009-12-04T22:47:29Z2009-12-09T18:29:22Z
<p>Has anyone written an open source XMPP library that uses WebSockets and is meant to be run by a browser?</p>
http://stackoverflow.com/questions/1631632/wave-bot-and-xmpp-bot1wave bot and xmpp bot?cometta2009-10-27T15:31:17Z2009-12-09T18:00:07Z
<ol>
<li><p>Wave protocol bot is just like any typical xmpp agent bot / component bot right? </p></li>
<li><p>Can wave bots used on other places or use bosh and create webclient to consume the bot?</p></li>
<li><p>Is wave protocol bot library created using ignite whack library? if yes, can we just use directly whack library to create component bot for wave?</p></li>
</ol>
http://stackoverflow.com/questions/1872407/file-transfer-using-xmpp0File transfer using XMPPKalyan Ganjam2009-12-09T08:26:04Z2009-12-09T08:26:04Z
<p>I am using Jabbernet DLL to implement a c# based XMPP client with some customizations specific to my project. I want to support file transfers in my XMPP client. From what I could google/read, This can be done using Muzzle DLL that's available. I could not find any documentation/example to do this.</p>
<p>Can any one point me to a link/example/library that I can quickly use to integrate file trsansfers in my c# client ?</p>
http://stackoverflow.com/questions/1859634/using-appengine-xmpp-for-client-notifications0Using AppEngine XMPP for Client NotificationsKoen Bok2009-12-07T12:12:06Z2009-12-07T14:18:07Z
<p>I've been looking for a way to tell clients about expired objects and AppEngine's XMPP implementation seems really interesting because it's scalable, should be reliable and can contain up to 100kb of data.</p>
<ol>
<li><p>But as I understand it, before a client can listen to messages, he should have a gmail account. That's very impractical. </p></li>
<li><p>Is there maybe a way to make temporary readonly XMPP accounts to use with this?</p></li>
</ol>
http://stackoverflow.com/questions/1845301/which-language-to-choose-for-a-jabber-bot0Which language to choose for a Jabber bot?Piskvor2009-12-04T06:59:03Z2009-12-04T08:16:11Z
<p>I'll be writing an XMPP (Jabber) bot, and I need to decide in which language should I write it. Currently I'm considering Python, Java, and PHP. </p>
<p>Since I'm expecting the bot to be running most of the time (i.e. 23.5/7), are there some specific arguments for or against using one of these languages? (e.g. not "$x sucks", but "$y has good daemon library" or "$z leaks memory") </p>
<p>The bot's purpose will mostly be responding to user input.</p>
<p>If none of these languages seem suitable to you, what would you recommend?</p>
http://stackoverflow.com/questions/1843837/what-is-the-throttling-rate-that-gtalk-applies-to-xmpp-messages0What is the throttling rate that GTalk applies to XMPP messages?Hightechrider2009-12-03T23:29:00Z2009-12-03T23:29:00Z
<p>Even after throttling down to one message per second, after about 20 messages GTalk starts bouncing XMPP messages with ...</p>
<pre><code><error type="cancel" code="503"><service-unavailable xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /></error>
</code></pre>
<p>What is the maximum send rate for XMPP messages through Google Talk?</p>
http://stackoverflow.com/questions/1839645/home-automation-using-arduino-xmpp-client-for-arduino1home automation using arduino / xmpp client for arduinoAshish2009-12-03T12:40:33Z2009-12-03T17:23:08Z
<p>Hi,</p>
<p>I am trying to setup a system for automating certain tasks in my home.</p>
<p>I am thinking of a solution wherein a server side application would be able to send/receive commands/data to Arduino(attached with arduino ethernet shield) via the web. </p>
<p>Here the Arduino may both act as a sensor interface to the server app or command executor interface for the server app.</p>
<p>e.g. (user story): </p>
<ol>
<li><p>The overhead water tank in my house has a water level sensor attached with Arduino(attached with arduino ethernet shield).</p></li>
<li><p>Another Arduino(attached with arduino ethernet shield) is attached with a relay/latch. This relay/latch is then connected to a water pump.</p></li>
<li><p>Now the server side application on the web is able to get/receive water level information from the arduino on the water tank.</p></li>
<li><p>Depending on the water level information received, the web application should send suitable signals/commands to Arduino on water pump to switch 'ON' or switch 'OFF' the water pump.</p></li>
</ol>
<p>Now for such a system to work across the web, I am thinking of using one of the type of solutions in order of my priority:</p>
<ol>
<li><p>Using XMPP for communication between server app and arduino.</p></li>
<li><p>Using HTTP polling.</p></li>
<li><p>Using HTTP hanging GET.</p></li>
</ol>
<p>For solution number 1, I need to implement a XMPP client that would reside on Arduino.</p>
<p>Is it possible to write a XMPP client small enough to reside on an Arduino?</p>
<p>If yes what are the minimum possible XMPP client functionality that I need to write for Arduino, so that it would be able to contact XMPP servers solutions like gTalk etc.</p>
<p>For solution number 2 and 3 I need guidance in implementation.</p>
<p>Also which solution would be cost effective and easily extendable ?</p>
<p>Thanks in advance</p>
<p>Ashish</p>
http://stackoverflow.com/questions/1826912/xmpp-connect-to-gtalk0XMPP: Connect to GTalkLennie De Villiers2009-12-01T15:26:48Z2009-12-01T15:26:48Z
<p>Hi, Am using XMPP trying to connect to Gtalk to send a message from one of my other gtalk accounts to my main account from a PHP page. I get an error that its unable to connect before timeout. Please advise. </p>
http://stackoverflow.com/questions/968185/how-to-turn-off-autosignin-of-registered-transports-in-openfire0How to turn off autosignin of registered transports in Openfire ?Jacques René Mesrine2009-06-09T04:48:29Z2009-11-27T13:22:37Z
<p>This is regarding the gateway XEP 0100 support in Openfire.</p>
<p>I have noticed that for some transports, they are auto-signed in once a connection to openfire succeeds (via the xmpp user). This applies specifically to QQ. How does one turn off this auto-signin feature ? Basically from a client perspective, I want to be able to signin selectively. So when I create an XMPPConnection to openfire, all transports should remain signed off until I send directed Presences to transports.</p>
http://stackoverflow.com/questions/1801771/xmpp-server-in-java0XMPP server in JavaPraveen K C2009-11-26T05:52:46Z2009-11-26T09:22:25Z
<p>Hey any body please help me to implement a simple XMPP server using Java.</p>
<p>Thanks,
KC.</p>
http://stackoverflow.com/questions/1767620/secure-iphone-desktop-connection0Secure iPhone-Desktop Connectionpokstad2009-11-20T00:37:03Z2009-11-20T04:04:55Z
<p><strong>Background</strong></p>
<p>There are a lot of App Store released iPhone apps that require an IP based server on the desktop so that the iPhone can connect to the desktop as a client. For example, there are many programs that emulate a keyboard, touchpad, or <a href="http://www.rowmote.com/" rel="nofollow">Apple remote</a> on the iPhone so that a desktop computer can be controlled over wifi. However, many of these applications get around writing their own server by requiring the user to install some VNC server variant.</p>
<p><strong>Question</strong></p>
<p>What is the best way to implement a secure (encrypted) IP server on a desktop (Mac and Windows platforms) that allows for simple two way message passing between itself and an iPhone client on a wifi network?</p>
<p><strong>Sample Use Case</strong></p>
<p>An event on the desktop causes the desktop to push a small image or text to the iPhone. An event on the iPhone causes a short text message to be pushed to the desktop. Any single event can happen at any time (doesn't appear synchronized to the user).</p>
<p><strong>1st Follow-Up Question</strong></p>
<p>Would this type of project be best handled using something like XML or JSON over HTTP? Or is there a better protocol, like BEEP or Bonjour(XMPP)?</p>
http://stackoverflow.com/questions/1719935/communication-between-java-and-c1communication between Java and C#su2009-11-12T04:44:01Z2009-11-19T04:13:19Z
<p>Hi,
I found out that there is a .Net toolkit called GCT - Group Communication Toolkit that is the C# version of JGroup. I want to know whether this and JGroup can be connected together to make java and C# clients communicate with each other.
If not, what would be the best option to make a java program and a C# program communicate?
One other option I came across is XMPP implementation.
I require very fast message passing between those two programs that are running in the same computer. The main requirement is that either of this program would send a message to the other, when some particular events are triggered.
any ideas are welcome.</p>
http://stackoverflow.com/questions/1688973/im-service-using-google-app-engine0IM service using Google App EngineSuvir2009-11-06T17:09:30Z2009-11-18T15:34:27Z
<p>Hi,</p>
<p>I want to implement a web-based IM service on the lines Meebo. Might sound ambitious but that adds to the fun of it.</p>
<p>My research suggests XMPP would be a good protocol for the IM since it can talk to proprietary protocols as well. Am I right? What else would I need to complete this?</p>
<p>Could Google App Engine(GAE) fit in to this project? Can GAE be used to create and host the whole service? That would simplify matters significantly.Also,GAE does support XMPP.</p>
<p>I know what I want to make, need to know the best way to make it.</p>
<p>Thanks!</p>
<p>Suvir</p>
http://stackoverflow.com/questions/177514/good-xmpp-java-libraries-for-server-side6Good XMPP Java Libraries for server side?Taylor Gautier2008-10-07T07:43:22Z2009-11-18T05:59:25Z
<p>I was hoping to implement a simple XMPP server in Java. </p>
<p>What I need is a library which can parse and understand xmpp requests from a client. I have looked at Smack (mentioned below) and JSO. Smack appears to be client only so while it might help parsing packets it doesn't know how to respond to clients. Is JSO maintained it looks very old. The only promising avenue is to pull apart Openfire which is an entire commercial (OSS) XMPP server.</p>
<p>I was just hoping for a few lines of code on top of Netty or Mina, so I could get started processing some messages off the wire.</p>
http://stackoverflow.com/questions/1714242/can-client-of-the-xmpp-server-disconnect-other-client-from-the-server0can client of the xmpp server disconnect other client from the server?Dolfa2009-11-11T10:08:46Z2009-11-16T19:44:48Z
<p>It this possible? How? (Maybe silly question, but I couldn't find answer :( )</p>
<p>EDIT:I am using Openfire server embedded into different system, so I need if admin of the system kicks out the user from the system server, user's connection to Openfire server should be closed too.</p>
http://stackoverflow.com/questions/1715257/xmpp-chat-sent-received-message-synchronization0XMPP chat sent/received message synchronizationrAm2009-11-11T13:45:11Z2009-11-12T05:08:07Z
<p>Hi,</p>
<p><strong>Scenario</strong>: I am trying to develop a web site which features a chat widget. I am using ASP.NET, C#, agsXMPP library as my tools in achieving this purpose. I use Openfire jabber server for XMPP server.</p>
<p><strong>Problem</strong>: When I access the widget on the website and start chatting, I send a <em>message</em> with message type "chat" and <em>thread</em> set. I receive this message on the client in this case Spark. When I reply to this message, I see that the <em>thread</em> value is not the same as the one I sent? According to <a href="http://xmpp.org/rfcs/rfc3921.html#stanzas-message-children-thread" rel="nofollow">RFC 3921 section 2.1.2.3</a>, <strong>The value of the element is generated by the sender and SHOULD be copied back in any replies.</strong>
However, I don't see this happening.This means, I cannot link the response with the message I sent.</p>
<p>Can anyone help me with what I am missing? The following is the message sent and received.</p>
<blockquote>
<p><strong>Sent Message</strong>: <code><message type="chat" to="saurabh@127.0.0.1/spark" id="agsXMPP_6" from="gantir@127.0.0.1/CPWebchat"><thread>d6ddeebe-f23f-4854-a315-2a9de32906b8</thread><subject>Ramjee Ganti</subject><body>An Anonymous user via the web is attempting to contact you. Name: Ramjee Ganti Email: xxx@xxx.com Issue: Sample Test</body></message></code></p>
<p><strong>Received Message</strong>: <code><message id="BTqN4-34" to="gantir@127.0.0.1/CPWebchat" from="saurabh@127.0.0.1/spark" type="chat"><body>Hello</body> <thread>42MtKq</thread><x xmlns="jabber:x:event"><offline/> <composing/></x></message></code></p>
</blockquote>
http://stackoverflow.com/questions/851156/who-actually-uses-a-full-jid0Who actually uses a full JID ?Jacques René Mesrine2009-05-12T04:37:41Z2009-11-11T22:51:20Z
<p>When logging in to an XMPP server via smack, I only send the userid/password combination.</p>
<p>Do server components actually use the "resource" parameter in a full JID ?</p>
<p>e.g. ali@someplace/resource</p>
<p>What are the benefits of sending it ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1698377/using-the-xmpp4r-ruby-gem-how-can-i-synchronously-discover-if-a-contact-is-onlin0Using the xmpp4r Ruby gem, how can I synchronously discover if a contact is online?Gabe Hollombe2009-11-08T23:45:42Z2009-11-11T22:48:18Z
<p>I'm new to XMPP and the xmpp4r library, so please forgive my noob question if this is obviously documented somewhere.</p>
<p><strong>What's the most straightforward way, in a synchronous manner, to find out if a given JID is online? (so that I can call something like is_online?(jid) in an if statement)</strong></p>
<p>My details:</p>
<p>I'm writing a Sinatra app that will attempt to send a message to a user when a particular url gets requested on the web server, but it should only try to send the message to the user if that user is currently online. Figuring out if a given JID is online is my problem.</p>
<p>Now, I know that if I connect and wait a few seconds for all the initial presence probe responses to come back to the Roster helper, then I can inspect any of those presences from my Roster and call #online? on them to get the correct value. But, I don't know when all of the presence updates have been sent, so there's a race condition there and sometimes calling <code>#online?</code> on a presence from my roster will return false if I just haven't received that presence probe response yet.</p>
<p>So, my current thinking is that the most straightforward way to find out if someone is online is to construct a new Presence message of type :probe and send that out to the JID that I'm interested in. Here's how I'm doing it right now:</p>
<pre><code>#jabber is the result of Client::new
#email is the jid I'm interested in polling
def is_online?(jabber, email)
online = false
p = Presence.new
p.set_to(email)
p.set_from(jabber.jid)
p.set_type(:probe)
pres = jabber.send(p) do |returned_presence|
online = returned_presence.nil?
end
return online
end
</code></pre>
<p>Now, this works in cases where the user is actually online, but when the user is offline, it looks like the presence probe message that comes back is being caught by some other <code>presence_callback</code> handler that doesn't know what to do with it, and my <code>is_online?</code> function never finishes returning a value. </p>
<p>Can anyone help me by providing a simple example is_online? function that I can call, or point me in the right direction for how I can detect when the roster is done getting all the initial presence updates before I try checking a presence for <code>#online?</code></p>
http://stackoverflow.com/questions/1712768/what-jabber-xmpp-libraries-are-available-for-pys60-python-for-symbian-s60-inter1What Jabber/XMPP libraries are available for PyS60 (Python for Symbian S60) interpreter?pkchukiss2009-11-11T03:11:45Z2009-11-11T17:44:54Z
<p>I'm interested in developing a XMPP client on the mobile S60 Symbian platform using the Python interpreter PyS60. I've done a search on Google for possible libraries, but turned up empty. </p>
<p>I'm hoping that by asking this on SO, I can get a definite answer on whether there is actually an existing library that I just hadn't had the luck to find, or if it doesn't really exist. Failing that, I'm thinking of writing my own library. If there is any XML library within PyS60 to make this task easier (I know the normal interpreter has libraries, but they don't appear to be portable to PyS60), that would be good.</p>
<p>The target device is a Nokia N78, Symbian 3rd Edition FP (Feature Pack) 2</p>
http://stackoverflow.com/questions/667510/is-there-a-way-to-manually-register-a-user-with-a-py-transport-server-side1Is there a way to manually register a user with a py-transport server-side?andrew2009-03-20T19:02:48Z2009-11-09T19:02:43Z
<p>I'm trying to write some scripts to migrate my users to ejabberd, but
the only way that's been suggested for me to register a user with a
transport is to have them use their client and discover the service.
Certainly there is a way, right? </p>