Click here to Skip to main content
15,906,645 members
Everything / XMPP

XMPP

XMPP

Great Reads

by K.Kirivarnan
Register New Account using Matrix XMPP Library
by Plantronics
SmartPresence for Google Talk
by PGStath
PHP code and pattern for the creation of OpenFire XMPP users from end-user applications via HTTP POST
by Intel
Before you embark on a new Internet of Things project, you should consider which communication patterns are best suited to it.

Latest Articles

by Intel
Before you embark on a new Internet of Things project, you should consider which communication patterns are best suited to it.
by PGStath
PHP code and pattern for the creation of OpenFire XMPP users from end-user applications via HTTP POST
by Plantronics
SmartPresence for Google Talk
by K.Kirivarnan
Register New Account using Matrix XMPP Library

All Articles

Sort by Score

XMPP 

6 Feb 2013 by fjdiewornncalwe
You might get a better response if you ask on their site: http://www.tigase.org/category/application/tigase-server[^]
6 Jan 2016 by CPallini
Do you mean something like jabberd[^]?
3 Sep 2011 by K.Kirivarnan
Register New Account using Matrix XMPP Library
3 Mar 2012 by Dave Kreskowiak
Don't you think asking specific questions about how to use Facebook API would be better asked in a forum dedicated to the Facebook API, like here[^]?
22 Mar 2012 by prakash bala mca
Where to begin? to create XMPP chat client in Windows Phone 7.5 as its not possible to use Jabber-Net library. This library is for .Net Windows application.I have no cues. Any open source library like agsXMPP(supports .Net compack framework but not open source).Could anybody help me please?
27 Mar 2012 by Mellita
Did you post these in facebook forums?
8 Apr 2012 by prakash bala mca
Hi, In my windows7 project, there is a XMPP chat module. I designed chat window using HTML/CSS perfectly. To connect with Jabber server(Openfire), am using JsJaC library Now my question is how to integrate it with the Windows Phone 7 project. Should I include in WWW folder? I am naive to JS....
28 Jun 2012 by @BangIndia
> int TextSessionClient::ProcessStart()> {> const XmlElement *stanza = NextStanza();> if (stanza == NULL)> return STATE_BLOCKED;> const XmlChild *child = stanza->FirstChild();> if (!child)> return STATE_START;>> const XmlElement *body = child->AsElement();> if (body != NULL)...
19 Sep 2012 by EnSorak
Dear everyone, I stuck with transfer file in Objective C (I do Mac application) and I already search many forum and google but they have no idea about this. Could you share me the idea or concept please...!!
19 Sep 2012 by Kuthuparakkal
Have you looked at this before:http://xmpp.org/extensions/xep-0096.html[^]http://mobile.tutsplus.com/tutorials/iphone/building-a-jabber-client-for-ios-xmpp-integration/[^]
4 Oct 2012 by EnSorak
Hello, I want to read my data from xmppvcard but I dont know how. Please guide me. thanks
12 Feb 2013 by Member 9831109
Please can any one help me to do the jingle integration on android?.i am facing an error of "Pending" jingle session while implementing this.
3 Jun 2013 by Plantronics
SmartPresence for Google Talk
29 Sep 2013 by Yesudasan Moses
Hi friends,I am building a XMPP chat application using C# Winforms.I need a listbox which shows users avatar, and status icon and name..Which control I can use to implement this ?Also, How can I easily update the status without looping through the list when a presence status change...
29 Sep 2013 by Rick van Woudenberg
You were on the right track. Using Treelist is definately the way to go. Read some articles on how to add images to the treelist etc. http://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.imagelist.aspx[^]You will have to iterate through the treelist to update statusses...
17 Nov 2013 by Yesudasan Moses
Hi,I am developing a chat application... and All the chat history is saved as seperate textfiles (namely abc@bbc.com.txt, bill@gmail.com.txt)But Now, I want to make a recent chats list (as like Skype).But taking the date from these chat text files is not a good solution.What can I use...
18 Nov 2013 by agent_kruger
Use database to save long histories such as SQL,Oracle or Access (but i prefer not to use access online).
19 Nov 2013 by Yesudasan Moses
Hi, I am developing a chat application using jabber-net opensource library.. my aim is to display a form (chat window ) when a message is coming.But when I use this code, Form appears in the task bar,,, not perfectly rendered... seems like this... More over I can see the form only when I...
20 Nov 2013 by Yesudasan Moses
Thanks all who answered me,,, I have solved it myself.... The Problem was I had to set the InvokeCOntrol property in jabberclient to the very first form loaded in the application... If Invoked COntrol form is not loaded, It will show all forms shown from its events like this... Here is the...
22 Dec 2013 by Yesudasan Moses
Hi, I am developing a chat client application. and I can manually set my presence using this code.. if (jabberClient1.IsAuthenticated) jabberClient1.Presence(jabber.protocol.client.PresenceType.available, "chat", "Online Now", 0); But What I want to do is, The XMPP Server will set...
11 Jan 2014 by Monster Maker
apache server is taking too long to connect..showing request timeoutinclude 'XMPPHP/XMPP.php';$conn = new XMPPHP_XMPP('talk.google.com', 5222, 'xxx@gmail.com', 'xxxx', 'xmpphp', 'gmail', $printlog=false, $loglevel=XMPPHP_Log::LEVEL_INFO);try { $conn->connect(); ...
16 Feb 2014 by Yesudasan Moses
Hi I am making a windows chat client using Jabber-Net Library.When the User exits, I use this code to set the Unavailable status... so that people can see their offline status. Its visible in XMPP clients like Spark. But I cannot get the status of the other contact. setting this status.......
16 Feb 2014 by Yesudasan Moses
Hi friends,How to Implement XEP-0012 (Last Activity of a JID) on Jabber-net .NET library...
10 Mar 2014 by Mehul Thummar
How to XMPP Server Setup for chat in Windows Phone8.1?
21 May 2014 by RAGUNATH V
This is asp.net web application for chatting, developed using agsxmpp and signalR to integrate google chat and facebook chat.We use these settings for establishing an xmpp connection:XmppConnection = new XmppFacebookClientConnection();((XmppFacebookClientConnection)XmppConnection).ApiKey...
25 May 2014 by Sergey Alexandrovich Kryukov
Pinging is totally unrelated to Jabber (XMPP). It works with the ICMP protocol which normally should be supported by all hosts on a network. Please see:http://en.wikipedia.org/wiki/Ping_%28networking_utility%29[^],http://en.wikipedia.org/wiki/Internet_Control_Message_Protocol[^].You can...
3 Jun 2014 by Yesudasan Moses
Hi friends,I am making an xmpp client using .Net Winforms. I want to enable my app to transfer files now. How can I do it using jabber-net library ? http://xmpp.org/extensions/xep-0065.html[^]I have tried to extend a class to initiate SOCKS5 Negotion. But I don't know How can I...
12 Jun 2014 by Member 10810250
I am new to XMPP please guide me how to send and receive iq packets in xmpp using android. Here is my code. when i debug my code it will give me this log error06-12 16:08:22.032: E/AndroidRuntime(4063): FATAL EXCEPTION: AsyncTask #106-12 16:08:22.032: E/AndroidRuntime(4063):...
12 Jun 2014 by Xiao Ling
It's ClassCastException 06-12 16:08:22.032: E/AndroidRuntime(4063): Caused by: java.lang.ClassCastException: java.lang.Object[] cannot be cast to java.lang.String[] Find the relevant code, and fix it.
23 Jul 2014 by Bhavika chaudhari
@Yesudasan-MosesPlease can you share your whole code here?
5 Aug 2014 by tarekwarak0
I am looking for .Net client that support Jabber/XMPP protocol which has a good reliability. if it supports OTR and ZRTP and has a full features, it's very good
9 Oct 2014 by sabodh
Hi i am trying to send and receive iq packets to xmpp server using smack. i send it successfully to the server but i did not get the response from server. How can i handle the iq packet receiving code in android side..
19 Oct 2014 by sabodh
Does anybody have a LIBNICE library compiled for Android for P2P Streaming ? Is there any tutorial for how to build LIBNICE for Android.
27 Oct 2014 by sabodh
We have tried to compile libnice library by using the following way.Compile Libnice For AndroidBut we were stuck up with the same issue. Which Android.mk file should we edit? There is an Android.mk file in most of the folders within NDK folder.
7 Nov 2014 by Lokesh Kondapalli
Hi ,i prepared a client for my Openfire server using JabberClient library.Hosted this client in 2 different - A,B servers.Its working fine in one server "A" but its getting some connecting error in "B" server, the Error from "jabberClient1_OnError" is belowError - A connection attempt...
18 Dec 2014 by Lucaxyz2
I'm new to android and as the title says I'm trying to build very simple chat with the following code. //1. connection ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222, "gmail.com"); try{ connection.connect();} catch (XMPPException ex) { ...
9 Feb 2015 by Member 11404342
I am developing chat application. all the records comes from web services to desktop application. I searched from net about xmpp I downloaded ejabberd server and matrix source code for chat. working good. but how can i developed my own ejabberd server. I searched more on net but I see demo for...
9 Feb 2015 by @shok kumar mishra
JUST CHECK THIS LINK I HOPE IT WILL HELP U DEFINITELYhttp://www.saros-project.org/setupXMPP[^]
30 Mar 2016 by g@urav123
Hello Everyone,I am working on IOS Application for Instant messaging and File transferring like whatspp. I am using the File Transfer demo from GITHUB.https://github.com/nplexity/xmpp-file-transfer-demo[^]in this demo i can transfer the file between two IOS Devices in the same...
18 Sep 2015 by dhiman anuj
I have open this link and its gives error can any one help me to found out admin interface for tigase server.
21 Sep 2015 by Manidas Payyoli
hai.. here am damn confused...am new to the windows phone app developmenti have a task that i have to create a chat app for windows phone .i can use..1.openfire2.xmpp3.sqlitehow can i connect each other?where i can start? please help me.....thanx in advance
21 Sep 2015 by Richard MacCutchan
Start at the beginning: Go to www.google.com[^], and http://www.codeproject.com/KB/windows-phone-7/[^] and research the toturials and samples.
24 Sep 2015 by Sergey Alexandrovich Kryukov
This is simple, but it would take long time to explain all the detail, so here is an example for you:Suppose you have some code likevoid MyFunction(A a, B b, C c) {/* ... */}//...A aValue = //...B bValue = //...C cValue = //...MyFunction(aValue, bValue, cValue);How to delegate...
27 Sep 2015 by Manidas Payyoli
Hi all i am fed up with these error.I am trying to develop a chat application in windows phone 8.1.i have...1.openfire server installed2.using XMPPwhen i am trying to connect with server which showing errors..after connnecting how can i send and recive messages.Actualy am xactli new...
28 Sep 2015 by Richard MacCutchan
You already posted this at Help !!!!Me Openfire Server Connection Using Xmpp Showing Error!! I Cant Fix Pls Help[^]. Please do not repost the same question.
28 Sep 2015 by Manidas Payyoli
i am trying to connect server here for my wp8.1 chat app iam getting this erroe what is this? this s first time i got this type of errorError 1 Cannot find type System.ApplicationException in module mscorlib.dll. agsxmpp_demomy code ..using System;using...
28 Sep 2015 by Leo Chapiro
System.data is not available to Metro style apps. Remove the reference to System.Data.dll from project.Take a look at Adding System.Data into C# MetroApp gives internal eror[^] .
20 Oct 2015 by Manidas Payyoli
Hi iam trying an xmpp connection using singleton class,but a methode and a variable(isxmppsuccess) showing errors.My textboxes also throwing error!how i can maintain the connection in next page also?i am new to the singletonbelow mentioned is my full code and second one is error...
20 Oct 2015 by Nathan Minier
So a couple of things. Your singleton isn't thread safe, and could race with the way it's implemented now. There is an excellent article about it at:http://csharpindepth.com/Articles/General/Singleton.aspxThe easiest fix is to change the instance property to:private static...
21 Oct 2015 by Richard MacCutchan
Sorry, but this site does not provide code to order.
3 Nov 2015 by sanjaysgh
How to create web chat application using XMPP agsXMPP Library and openfire server by using asp.netplease help me
4 Nov 2015 by Member 11998933
I have made a login form in windows phone. and the connection also is established with the server .Kindly tell me the next step in chat application using XMPP and C#.
4 Nov 2015 by Sergey Kizyan
This is very general question. "How to make one to one chat", the answer is to implement it. You should be more specific in your question. The general idea is to design and develop clients, design and develop protocol of communication and implement the chat
5 Nov 2015 by Manidas Payyoli
Hi iam devoloping a chat app in windows phone 8.1 using xmpp.in my server connection part im getting this strange error.pls help me An exception of type 'System.IO.FileNotFoundException' occurred in SConnect.exe but was not handled in user codeAdditional information: Could not load file...
5 Nov 2015 by George Jonsson
Seems like you are not the only one with this problem.Quote:In my case there was no System.Windows reference available to pick up.I had to include a reference to WindowsBase(Just in case the link is broken.)See this Stack Overflow question: Can not find System.Windows...
11 Nov 2015 by Member 11998933
Hi i am writing code for chat apps in windows phone 8 emulator .i want to connect to openfire server using xmpp protocol. But to view chat messages i want open archive plugins. how to add this to an existing openfire settings.
17 Nov 2015 by Member 11266633
I use agsXMPP lib, but i dont understand how retrieve jabber status of purpose client?i add user. I get his status only when i run app. xmppCon.OnPresence += new PresenceHandler(xmppCon_OnPresence);static void xmppCon_OnPresence(object sender, Presence pres) { ...
18 Nov 2015 by Member 11382666
Hi GuysIs there anyway we could implement file transfer in goodwarejabber library class.Actually, I am looking for a Jabber, Server and Client application with group chat and File transfer functionality. Not getting how to implement File Sharing in GoodwareJabber.Your help would be...
14 Dec 2015 by PGStath
PHP code and pattern for the creation of OpenFire XMPP users from end-user applications via HTTP POST
20 Feb 2019 by Member 14156522
I am trying to connect FCM xmpp server by matrix client but the connection is not authenticated and opened. getting the error message as No connection could be made because the target machine actively refused it 74.125.24.188:5235 What I have tried: xmppClient.XmppDomain =...
20 Feb 2019 by Gerry Schmitz
It doesn't like your "connection protocol". It doesn't recognize it. It doesn't know who's knocking. It's expecting a particular command sequence.
20 Jun 2016 by Intel
Before you embark on a new Internet of Things project, you should consider which communication patterns are best suited to it.
27 Mar 2018 by Yesudasan Moses
Hi,I am developing a xmpp client application. I need to send ping iq packets to the xmpp server to make sure the server is still alive. How can i send it thru jabber-net library ?thanksUPdate: Its not ICMP Ping. Its XEP-0199 http://xmpp.org/extensions/xep-0199.html[^]
10 Feb 2015 by Member 11404342
what could anyone say me the XMPP library that supports windows for free for .net, I tried agsoftware's trial version. but I am going to develop my own chat xmpp server so I do not want to use trial version so..
11 Feb 2015 by Mamad Dark
I think there is no other libraries for .NET XMPP Server side :( (include "FREE")this may help you (but old):http://code.google.com/p/goodwarejabber
27 Mar 2018 by Anas.Bouarfa
it's very important to put the IQTracker.IQ method inside a try/catch because it awaits for a response during the timeout you set, if it doesn't recieve it fires an exception (and that happens very frequently), the most important is to send the IQ, you can use IQHandler to recieve an IQ...
20 Nov 2013 by agent_kruger
try chk.BringToFront();
3 Mar 2012 by Member 8689961
hi,I am facing a problem and feeling frustrated with that i mam trying to integrate facebook api with my website by xmpp mechanism there are two ways of integration with login name and password (i am success with it if i put only username but if i put email id in place of username xmpp then i...
19 Oct 2015 by Manidas Payyoli
iam trying to develop an app in WP8.1 using xmpp and openfire server.i logged into the server but the message is cannot sending to the server .I successfully logged into the server.if it is not the way to send and receive please give me a sample..or please help me..iam fedup with this.how can...
3 Nov 2015 by sanjaysgh
I am developing chat application using openfire server and xmpp protocol with agsXMPP SDK and asp.net, i have done login process and get all registered user into list successfully, i have OnMessage method to send message but i do not know that where to call this method.I do not want to use...
16 Feb 2012 by bineeshr
i am trying xmpp but i cant to catch that.first i am using EJabber but in windows7 ejabber server canot connected .after ii used openfire but i cannt to use properly what i do. i am in trouble can u help a detail idea
22 Mar 2012 by Sergey Alexandrovich Kryukov
Please check the list of available libraries from XMPP Standards Foundation:http://xmpp.org/xmpp-software/libraries/ [^].—SA
24 Jun 2012 by @BangIndia
Hi,I downloaded the Openfire server .i created the db in mysql, and i created user in the openfire. In my local machine i configured the OpenFire server. in local machine i can able to connect to the open fire server, using pidgin. but in the remote machine i can't able to connect...
6 Feb 2013 by @BangIndia
hi,i am new to Tigase sever. i already used openfire. openfire server having the UI to configure.but i am not getting any ui option for Tigase server. how to get the . which port i need to use. can you help on this.
31 Jan 2014 by adat7378
My app consumes WCF Data Service. I have disabled the Application Idle Detection Mode. The screen does not go off. But if it is idle for an hour, it becomes unresponsive if an action is chosen which has something to do with Data Service. However the page to page navigation works. Spend hours but...
24 Sep 2015 by Manidas Payyoli
hai all please help me am trying to connect my app with openfire server here.[ignore my button click event]im having trouble in:1. Thread.Sleep(2000); //the name thread does not exist in the current context 2.this.Dispatcher.BeginInvoke(() =>//error! windows.ui.core.core...
27 Sep 2015 by Manidas Payyoli
here am creating a chat app in wp8.1 using openfire and ags xmppi cant create connection and object y?my code..using System;using System.Collections.ObjectModel;using System.Collections.Generic;using System.IO;using System.Linq;using...
8 Oct 2015 by Manidas Payyoli
rivate void SendXmppMessage(String Message, JId ReceiverJid){ObjXmppClient.SendChatMessage(Message.Trim(), ReceiverJid);}ObjXmppClient.OnNewConversationItem += ObjXmppClient_OnNewConversationItem;void ObjXmppClient_OnNewConversationItem(RosterItem item, bool bReceived,TextMessage...
13 Oct 2015 by Manidas Payyoli
here i am trying to develop a chat app using xmpp and openfire server in windows phone 8.1 here am getting this error-Exception sending XMPP class ObjXmppClient.SendChatMessage(Message.Trim(), ReceiverJid); in this line1. how to test weather message is send or receive?using emulator...
6 Jan 2016 by kubibay
Hi,We want to build a mobile chat application. So we will need an xmpp c# host application.Do you have any suggestions? I know agsxmpp-sdk but it is not free.