I am connected to server(Xmpp)
but unable to send and receive packets at my psi client
Here is snippet of my code
POSClientIQ posclientiq = new POSClientIQ();
posclientiq.connectXMPPServer();
posclientiq.processMessage();
}
public void processMessage()
{ try{
final IQ iq1 = new IQ() {
public String getChildElementX...
I am developing a messenger like skype. For this i have downloaded Ejabberd Server.
I am developing my own client using Java. But i do not know how to configure the server so that they can communicate with each other. Please help me in that.
...
Basically im trying to build a bot that can send a message using one of many accounts out to a user and be able to receive messages to that account it originally used process and do whatever I need it to do. So far I found the JAXL library (http://code.google.com/p/jaxl/) but based on examples it is only able to handle one user at a time...
I'm already working on this for weeks to get it working but without success. I'm using Javafx and java for implementing a small chat programm using the smack API (xmpp). The problem is how to get the received messages from java to javafx. The code below is actualy working when I have variable with a static string like "test message" and ...
I am new to xmpp and need to understand its basics for integrating it with my php application. I have set up Openfire server and want to use my preexisting mysql database to get the users. So as per the docs, i modified Openfires config xml file to add the database Auth and User settings.
Also the Xmpphp lib seems to be the right lib...
Hi all,
Is there any way to maintain stream from php to the jabber server without javascript to keep the client side live?
Some low end mobile do not support javascript, so to maintain permanent connection to server is key question? any hacks?
...
I am looking for a Python library for writing Jabber/XMPP clients using the Twisted framework.
...
Hello
I was trying to create an XMPP and a Jabber chat-program.
I was unable to set chat state to 'Invisible'.
I would love to hear from users experience if this is possible and how they do that.
I don't mind to use any .NET assembly for it.
...
Is there a way to access a XmlReader asynchronously? The xml is coming in off the network from many different clients like in XMPP; it is a constant stream of <action>...</action> tags.
What i'm after is to be able to use a BeginRead/EndRead-like interface. The best solution I've managed to come up with is to do an asynchronous read for...
Hi,
I'm coding by python about Gtalk I use XMPPPY.
But I can chat with GTalk client but the problem is I can't accept invitation.
Is XMPPY can do ?
...
Hi,
I'm trying to establish a connection to an XMPP server using smack.
ConnectionConfiguration cf = new ConnectionConfiguration("jabber.ccc.de");
cf.setTruststorePassword("changeme");
this.connection = new XMPPConnection(cf);
this.connection.connect();
this.connection.login("user", "password");
But whenever logging in I get an XMPPE...
I've read this paragraph from the App Engine documentation a dozen times and still am completely in the dark about how chat invitations work:
Invitations
Google Talk and other chat servers
will only accept messages for users
that are "subscribed" to the sender,
either because the user invited the
sender to chat or becaus...
The XMPP service in GAE is great and all, but I'm really interested in when a user opens up a window to send a message, or when he/she starts typing. I think XMPP supports this, because Pidgin does this, as does Google Talk, so why not the XMPP/GAE service?
...
hello, I need a simple, lightweight authentication and data transfer mechanism (on .NET platform). I have looked a WCF and SOAP etc. they all seem too top-heavy and complicated for my needs. I need something simple and straight-forward leading me to a chat protocol like Jabber. My data-transfer is mostly small - example: user searches fo...
With Facebook now supporting XMPP, would it be possible to implement a simple chat bot, perhaps through an app (i.e. conversations not coming from an individual).
...
Hello All,
i'm working on a IM Bot that will send a simple IM to GTalk account, but I'm having trouble using the XMPPHP library. The authentication works fine and it looks like the first message sends correctly, but the last message receives an error from google code: 503.
You can view the errors here:
Example Method
Here is the sa...
I'm working on a design for a xmpp chat solution which involves some servers and where at least one server is connected with serious bandwidth limitations.
Assuming, we have two servers A and B, some users 0..n connected to Server A and some conferences 0..m provided by Server B.
Now assume, some users enter a conference room and a mes...
Hey there,
I use the twisted.words.protocols.jabber.client.XMPPClientFactory . Do you know how I can callback a function when the connection gets lost (for example WiFi-connection is down)?
thank you for your help!
...
I'm designing a game where players are programmed bots competing in a programming contest. The bots can be programmed in any language - Java, Ruby, Python, C#. I'm looking for some way to transmit game data across the network or some way by which the game server can talk to the bots. What would be a better choice for this? Should i use X...
I'm developing a website using the Django framework, and I need to retrieve Jabber (okay, Google Talk) statuses for a user. Most of the Jabber python libraries seem like an incredible amount of overkill (and overhead) for a simple task. Is there any simple way to do this?
I know very little about XMPP/Jabber, though of course I'm willi...