How can I query full roster using JSJAC XMPP client? I have tried following function for this, but it does not work:
function getRoster(con){
    var roster = new JSJaCIQ();
    roster.setIQ(null, 'get', 'roster_1');
    roster.setQuery(NS_ROSTER);
    con.send(roster);
 }
...
            
           
          
            
            hi, when i connect to gtalk, i able to talk with my bot in appspot. but when i login to jabber.org, i unable to talk with my bot? anything i need to configure?
testetefsdf @ appspot.com
p/s: the bot exist in my jabber.org roster and appear online thou
...
            
           
          
            
            Whenever I add the Jabber-net RosterTree control to my form, I can see that the PresenceManager and RosterManager property values for it have this error listed:
  Unable to cast object of type 'System.Windows.Forms.DataGridViewTextBoxColumn' to type 'System.ComponentModel.Component'.
I can compile the solution and all but this error ...
            
           
          
            
            Where can I find a good XMPP (Jabber) tutorial with detailed information on the XML that's sent to/from a Jabber client and server. I've looked at the xmpp.org website, but what they show there is confusing and doesn't help me learn.
I want to write an XMPP client in C# that uses a TcpClient to connect to the server and send/receive XML...
            
           
          
            
            step 1:on the same domain(.myserver.kicks-ass.net),  i able to send  to the mycomponent,succesfully.
step 2:when i login to other domain ,example gmail.com and try send   to another user on [email protected], success as well.
step 3:just like step2, but i send the  to  mycomponent.myserver.kicks-ass.net , i get below error
...
            
           
          
            
            I am looking for a solution to implement a public chat and a system of instant messaging within the site.
...
            
           
          
            
            Looks like my shared hosting plan does not cover running a Jabber server. Does anyone know of any free or very cheap solutions for doing this?
Thanks!
...
            
           
          
            
            I am writing a chatbot using Twisted and wokkel and everything seems to be working except that bot periodically logs off. To temporarily fix that I set presence to available on every connection initialized. Does anyone know how to prevent going offline? (I assume if i keep sending available presence every minute or so bot wont go offline...
            
           
          
            
                JID jid = new JID("[email protected]"); //success with code
    SUCCESS
    JID jid = new JID("mycomponent.host.domain.com");  //send fail with
    code INVALID_ID    ,but when i try send from gmail OR jabber to
    mycomponent.host.domain.com . it was a success.Is this a bug in google xmpp api?
...
            
           
          
            
            Google App Engine has a great XMPP service built in. One of the few limitations it has is that it doesn't support receiving messages from a group chat. That's the one thing I want to do with it. :(
Can I run a 3rd party XMPP/Jabber server on App Engine that supports group chat?
If so, which one?
...
            
           
          
            
            I'm using xmpppy library for my jabber remote administration bot, but I can't find how to send/receive a file and save it inside the directory specified. The documentation is poor and there isn't any examples, but I really want to make it. Can anyone show some examples or some links about it? Or maybe I should use an alternative xmpp bin...
            
           
          
            
            Hi 
 I m working on an online text chat program in C#.Net . For this i m using ejabberd server and for build a client m using jaber.net .But i m facing some problem during the new user registration . Can anyone give me a proper code for register new user or some advise or instruction to create new account.
Any type of help will be appre...
            
           
          
            
            Hi, 
I need a way to handle XMPP communication in my Rails app. 
My requirements are: 
Keep an instance of XMPP client
running and logged in as one specific
user (my bot user) 
Trigger an event from a controller to
send a message and wait for a
reply. The message is sent to another
machine equipped with a bot so that
the reply is sup...
            
           
          
            
            Hi,
I am using ejabberd as a chatting server now.
And I am writing a client to chat and register new user.
Right now, I know some of the protocol to register a new account,
like sending the following command to register new user:
<iq type="set"><query xmlns="jabber:iq:register"><username>wfwfewegwegwewefg</username><password>wfwefwefwef...
            
           
          
            
            Hi,
I am working on a xmpp client, using eJabberd as server.
My question is How can I support offline file transferring?
I only want to do the offline file transferring for Image file.
For example, 
I can transfer an image to John even he is offline.
When John come back Online, 
the server will send him the image.
How can I do that?
...
            
           
          
            
            Hi all,
I'm creating a centralised web product, i.e. a customer gets assigned a personal domain, for example company1.example.com or company2.example.com and can then use our service.
I'm planning to integrate a jabber service into the website. I have already found a decent jabber client library which I can use for the site.
I know th...
            
           
          
            
            Hi,
I'd like use couchdb for a web application with external user authentication by a XMPP-Server (Openfire). How can I achieve that? Let's say we have thre users:
[email protected]
[email protected]
[email protected]
Now [email protected] should be able to read all documents that are suited for basic us...
            
           
          
            
            What parameters should i pass if i use multiple domains on same jabber server.
my current jaberclient configuration is:
jabberClient1.Server = "localhost";
jabberClient1.Port = 5222;
my domain name is "deni" where should i pass this parameter ?
...
            
           
          
            
            Is it possible to create a simple MSN client with the Jabber-net library?
I use these parameters but hotmail refuses my conection:
jabberClient1.Server = "messenger.hotmail.com";
jabberClient1.NetworkHost = "messenger.hotmail.com";
jabberClient1.Port = 1863;
...
            
           
          
            
            I've been looking at some open-source XMPP servers, and am familiar with the official page http://xmpp.org/. But thus far I've not found anything in between "The Extensible Messaging and Presence Protocol (XMPP) is an open technology for real-time communication" and a list of XEP specifications. For instance articles explaining the basic...