xmpp

Can XMPP be used like Comet's http long wait?

Can XMPP be applied in a similar way to the reverse Ajax pattern? Can it be used to implement http long wait like Comet? Is there an example of using such a technique with XMPP? ...

How do you display an XMPP (Jabber) vcard photo in Delphi?

How can I read a photo from an XMPP vcard (an avatar picture, which I think is in JPEG format) and display it in a Delphi TImage control? The XMPP server sends this XML: <presence id="e3T50-75" to="cvg@esx10-2022/spark" from="semra@esx10-2022" type="unavailable"> <x xmlns="vcard-temp:x:update"> <photo>897ce4538a4568f2e3c4838c69...

Which format for transmitting data over TCP?

Hi, I'd like some advice on which format to use for transmitting data over TCP. Currently, I have devised a simple text-protocol with delimited strings. I'm thinking I should use something out there that already exists such as XML, JSON, or XMPP? What data formats do people use for transmitting over TCP? I would like to optimize for...

How to send multiple messages with xmpphp

As the title says, i want to send the same message to multiple recipients. I use the PHP library XMPPHP and send single messages with this: <?php include("xmpp.php"); $conn = new XMPP('talk.google.com', 5222, 'username', 'password', 'xmpphp', 'gmail.com', $printlog=False, $loglevel=LOGGING_INFO); $conn->connect(); $conn->processUntil('s...

Recommend an XMPP server software

I understand this is subjective but there are other questions asking about library/language/etc comparisons. What XMPP server software should I use if I want a XMPP server and why. Thanks. ...

Can I invoke XMPPConnection.sendPacket from concurrent threads ?

Motivation I want extra eyes to confirm that I am able to call this method XMPPConnection.sendPacket( Packet ) 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 ...

How should one handle sending xmpp welcome messages when users subscribe to bot (in general)

As the title says, I would like to send a welcome message when a user subscribes to a bot. However, as I understand it, presence subscribe stanzas should not contain a from-JID that includes resource (and my testing with Adium indicates that is also the case). That is, welcome message could easily be sent to the bare JID but is that rea...

Best protocol\technology for real-time server-less chat application

I need to embed chat functionality into .NET application (Windows client app). Requirements: Preferably server-less/zero-config architecture (p2p), but not required Based on open standards (XMPP alike) Implementation (library) for .NET (native C/C++ is OK too) exists What can you recommend? Currently I'm looking at XMPP/Jabber, do y...

what in your opinion would be best way to get all the retweets from twitter

working PHP probably on amazon ec2... can anyone explain what would be the best way to get all the retweets that contains http links from twitter using either twitter api or some kind of a third party parser (pubsubhub,xmpp, etc)? my application needs the widest aas possible perspective on that data meaning every retweet counts! in order...

Monit XMPP notifications

Is there any way to tell Monit to send XMPP notifications as well as emails on alerts? ...

what is Orbited?

from my understanding obited can do both comet and xmpp ? it is better than using typical comet library dwr right? ...

trying to understand xmpp

xmpp is federated. does that mean that as long as i connected to one xmpp server .example gtalk server. from there, i can communicate with any external jabber server in the world when sending "iq stanze" ? ...

differences between smack, tinder and whack

Can anyone tell me what the differences are between smack, tinder and whack? Are tinder and whack slim-down versions of smack? Do the 3 libraries serve different purposes? ...

SMTP and XMPP deployment/workflow

I'm developing a website that incorporates an XMPP bot and a custom SMTP server (mainly these services process commands and reply). I'd like to set up a system where I can develop locally, push changes to a staging server, and finally to a production system. (Essentially I'm developing on the live server currently.) I'm using python, ...

openfire smack pubsub

1.i published a content to a node then use "spark" try to retrieve the message. in spark, i suppose to add user "admin@userx" right? i cannot get any message. below message showed, i sucessfully published the content to 'thenode' <iq id="ySmn5-0" to="userx/3f3ae10c" type="result"><bind xmlns="urn:ietf:params:xml:ns:xmpp-bind"><jid>a...

pubsub publish to node success, retrieve from node fail

Below showed i suggest published to node call "ghost2" iq id="kB8dk-0" to="computer/2c10ee6b" type="result"><bind xmlns="urn:ietf:params:xml:ns:xmpp-bind"><jid>admin@computer/Smack</jid></bind></iq> <iq id="kB8dk-1" to="admin@computer/Smack" type="result"></iq> <iq id="kB8dk-2" to="admin@computer/Smack" type="result"><query xmlns="jabbe...

xmpp pubsub understanding

The subscriber will only receive content from the moment he is subscripting to a node and all old content published by publisher will not be received by subscriber. Is this correct? May i know, what do i need to do in order for subscriber to receive all previous old content ? ...

best way to analyze xml stanza from xmpp

i get stream of xml stanza from log. i want to understand the flow , currently what i can think of is get the spec from xmpp.org protocol and try to understanding each line. Is there any best prastice do you folks do to understand the xml stream? any easier way? ...

XMPP web client for commercial web application

I have the task of choosing an XMPP server/client solution for an internal web application. The goal is for employees to be able to utilize it via desktop client or the web application. The web client is mandatory. The web application is written in PHP, but I don't necessarily need a PHP solution. Flash or Java are acceptable (Flash ...

understanding the term "extension" ,"component" and "plugin" in xmpp?

can anyone explain the different "extension" ,"component" and "plugin" in xmpp? ...