xmpp

Dynamic XMPP rosters?

Hello, I'm currently looking into XMPP and I would like to know if there is a way to create dynamic XMPP rosters. I want the contact list of any user be automatically generated by the server / component / plugin. Can components access and modify rosters? I know that some servers (like OpenFire) use an external database to store these ...

Is there a WebSocket client implemented for python?

I find this project: http://code.google.com/p/standalonewebsocketserver/ for a websocket server, but i need implement a client of websocket in python, more exactly i need receive some commands from xmpp in my websocket server ...

War room Message center

Looking for ideas on how to implement a kiosk style/full screen client that will display messages sent to it, in realtime or push based. Basically, think a 911 dispatch center call board. I was thinking a xmpp bot to display, and making a simple xmpp client that can only send messages to the bot. This is for a very small emergency dis...

One to many chat with XMPP

I am developing a XMPP chat with XIFF library using Flex. My problem is I want to develop a customer service chat system. When user enter my program they will only see one service man and service man will see all users. When I tried with XIFF, I developed small chat program like google talk. First, users need to to add buddy. Second, us...

How to Create UIImage from NSData and Avatar Data of XMPP?

Hi, This question is related to Iphone SDK, NSData and UIImage. I am trying to create an image from the Avatar Data returned from the xmpp like the following: <presence from='[email protected]/spark' to='[email protected]/424978324712783686768453' id='Oj02v-45'><status>Away due to idle.</status><priority>0</priority><show>away</show><x...

amqp or xmpp for real time online games

Which of these technology suite for Multi user online game project.. Project requirements: 1. Able to handle 2k-5k user at any given time. 2. client library for iphone and android (native, no javascript). 3. client library for Microsoft Windows (most important), also for mac os x and linux. 4. Good documentation specially for mod develo...

GPLv3 License use case

If I use Tigase(xmpp server demon) on my server (not distributing it) and build custom plugin(stay within server). Do I have to release my source codes? What if my website have google adsense and If I build some commercial usage plugs for tigase for my own website use. I have no clue how GPL license work for software which we don't distr...

XMPP Android - build client to chat on facebook or facebook chat integration

Has anyone built a XMPP client for android? I know you can use the SMACK.JAR which has a XMPP client API's but I'm having issues connecting to it. I think it needs to be modified so that it works with android? has anyone been able to do this? build a XMPP client on android? Please help ...

Why can't I connect to Google Talk in agsXMPP?

I'm trying to get started using agsXMPP, but I'm having some problems. I'm trying to run this code: using System; using agsXMPP; namespace TestAgs { class MainClass { public static void Main (string[] args) { XmppClientConnection connection = new XmppClientConnection (); connection.OnLogi...

Smack messaging client other than Chat Text

Hi all, client1 can send txt message to client2 using connection.getChatManager().createChat(to, this).sendMessage(message); How to send other kind of message: like INFO message ? (client1 to client2) ? Because I want, INFO message should not be displayed in the chat window....is it possible ? using smack, smackx library. Many Th...

Configuring ejabberd shaper rules using regexp

I'm running an ejabberd server where I need users whose name applies to a specific pattern will have a fast shaper assigned to them. For example, if I have these users: A123 A222 B892 C123 I would like to make all the users use the "normal" shaper, but if the user name is "A*", I want it to get the "fast" shaper. I'm trying to avoid con...

How would you mirror XMPP bind sessions to multiple tabs or windows a la facebook, okCupid etc

I've implemented a web based instant messaging / chat feature using http binding and ejabberd. For the lazy here's the short version of my question: How would you go about implementing a web based XMPP chat client which could be displayed in multiple browser windows simultaneously, each displaying an identical view of the open chats? M...

Does xmpp Resource Change?

I'm writing an app which communicates with clients via XMPP. I want to be able to use the users existing xmpp account (they all have google ID's) but I don't want my messages to appear in their regular IM stream. I'm thinking that when my client pairs with the server it could use a custom resource id eg [email protected]/MYCUSTOMID ...

XMPP for exchanging game info between two iPad via Wi-Fi, good approach?

Hi all: Just got my iPad yesterday and I wanna start programming a distributed game between iPads for a little community across the globe, so no blue-tooth. I've heard of the XMPP protocol to enable data exchange between two PCs, such like this thread on SO Basically, the approach is a decentralized solution, once a valid connection ...

Would it be possible to use XMPP on Google App Engine to make a realtime multiplayer game?

Theoretically speaking, is such a thing possible? I know that Google App Engine can't make socket connections, so I figured using XMPP to send messages to the clients would work. Is XMPP on Google App engine low-latency enough to work for a realtime game? I was looking into multiplayer game servers like Smartfox and the like, but I fi...

Best Way to Build a Web Based Instant Messaging?

Want to build an web based Instant Messaging system similar to www.chatzy.com The question is what is the best way to go about it? Go soley the Ajax way, where i write a script that continually pings and updates a database for u conversation? Or play around with XMPP? If the answer is XMPP? i would appreciate any pointer to any online...

XMPP/Jabber based architecture for Android (pseudo) peer to peer?

I have no experience of XMPP but undertsand it's an extensible realtime messaging protocol. What I don't really have a feel for are the architectural components that I'd need to put in place if I were going to use it to meet my requirements. I'm building a pseudo peer to peer application to allow users to collaborate. All message paylo...

Flash Media Server and XMPP Server Communication, is it possible?

i create a chat application using Adobe FLEX, currently it is not implemented yet, but i have a plan to use Flash Media Server as the chat server. The problem is my application should be able to communicate with other XMPP server such as AIM or Google talk. Is it possible to do that? or is there any better solution? UPDATE The point i ...

XMPP Server-to-server SASL handshake

I am trying to connect a server to a XMPP server, using the MD5 Digest SASL handshake. But the XMPP server always rejects my response to the challenge. The RFC says the response should look like: username="example.org",realm="somerealm",\ nonce="OA6MG9tEQGm2hh",cnonce="OA6MHXh6VqTrRk",\ nc=00000001,qop=auth,digest-uri="xmpp/example.org"...

Is it possible to send message via GTalk Intent?

I'm looking for a solution to send multicast (text) messages to all my google contacts from my android app. Is there a way to do this with the GTalk App (Intent), or do i have to use my own xmpp implementation? Any recommendations for an appropriate solution/framework besides gtalk piggybacking? Thx ...