Questions tagged [agsxmpp]

An SDK for the Jabber / XMPP protocol written in C#.

agsXMPP is an SDK / library for the eXtensibleMessaging and Presence Protocol (XMPP) protocol written in C#. The SDK is released as open source under a dual license.

The SDK could be used for XMPP client, server and component development.

Here is a small sample how easy you can login to an XMPP server and send a simple chat-message to another user:

XmppClientConnection xmpp = new XmppClientConnection("jabber.org");
xmpp.Open("myusername", "mysecret");
xmpp.OnLogin += delegate(object o) {
    xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?")); 
};

Features:

  • cross platform, designed for:
    • Microsoft .NET Framework
    • Microsoft .NET Compact Framework (Pocket PC, Smartphone, Windows CE)
    • Mono
    • Portable .NET
    • compatible with .NET 1.1 and .NET 2.0
  • Multi OS (Windows, Linux, Mac…)
  • for client, server and web applications
  • fast and lightweight
  • uses its own simple and fast XML-Parser
  • open source
69 questions
0
votes
3 answers

connecting to nimbuzz chat with opensource xmpp library

i'm trying to get more info in the nimbuzz protocol, and possibly find any open source implementations. http://en.wikipedia.org/wiki/Nimbuzz_IM it seems that nimbuzz allows connecting between users of different protocols, BUT it provides its own…
lurscher
  • 25,930
  • 29
  • 122
  • 185
0
votes
1 answer

agsXMPP OnAuthError on different id

hi i am connecting to facebook using the following code it work fine for my two account one is gmail and another one is yahoo but it is only working on that accounts not log in on the other accounts of the gmail,yahoo,hotmail i check every acccount…
Faizan Malik
  • 95
  • 1
  • 13
0
votes
1 answer

How to set proxy on agsXMPP

i am new on agsXMPP i connected to the facebook and now able to make chat on the facebook but i have now one problem i am unable to make login on the proxy server like i have a serve which use proxy 168.10.10.19 and port 8080 so i am using this…
Faizan Malik
  • 95
  • 1
  • 13
0
votes
1 answer

How to implment "Agent Protocol" using agsXMPP

I need to implement "Agent Protocol" mention in (http://xmpp.org/extensions/xep-0142.html). But I have no idea how to do it. I am using agsXMPP as client and Openfire as server. I need a guideline how can I do this. I need a guide line to implement…
animesh
  • 1
  • 1
0
votes
1 answer

How to know that when the user goes offline in AgsXMPP?

I am currently trying with agsXMPP library , i added users to a treenode on OnPresence event. its works well, but when the other user goes offline i want to update the tree node, for that i need his Offline Presence ,How i get result when a chat…
Dileep DiL
  • 83
  • 1
  • 1
  • 6
0
votes
1 answer

agsXMPP, Create muc room "Only occupants are allowed to send messages to the conference"

I need help with agsXMPP user (testz2@mx.testserverz.info) authorization is successful the user testz2@mx.testserverz.info created muc room (group chat) testconfa@conference.mx.testserverz.info 3.the user testz2@mx.testserverz.info send request to…
0
votes
0 answers

MatriX vNext doesn't connect in Android

I am trying to create a simple XMPP client in Xamarin using the Matrix.vNext package. I have this basic code on my MainActivity: using Android.App; using Android.OS; using Android.Widget; using Matrix; using System.Threading.Tasks; namespace…
Oval
  • 37
  • 8
0
votes
0 answers

MatriX doesn't login in Xamarin

I'm trying to create a xmpp client on Xamarin using the MatriX.Xamarin.Android package. I have this very basic code running on my main activity: using Android.OS; using Android.Widget; using Matrix; using Matrix.Xmpp.Client; namespace…
Oval
  • 37
  • 8
0
votes
1 answer

Dock Windows Forms (tabbed chat interface)

Edit for those who say to use tab control I would love to use a tab control; yet i have no idea how to go about linking the tab control up from the main form. I would assume that I would have to do something like this: Create Form with a blank…
user674311
0
votes
1 answer

Sharp.XMPP with Xamarin Forms

I am using Xamarin forms to create a chat application and to achieve that i am using Sharp.XMPP library from Nuget but i ran into issues. It was stated that it doesn't support in PCL at here So i converted the project into shared .net standard…
axcl
  • 410
  • 6
  • 21
0
votes
1 answer

get information from xml node using agsxmpp library

26164 Fhh 11/25/2016 6:30:39 AM 0 get information…
bilal
  • 648
  • 8
  • 26
0
votes
1 answer

how can i create a hub object in n layer architecture

currently, am working on client server application using 3 layer architecture, User interface, API and than agsxmpp Library. Hubs are written in class library, I want to create the object of hub from front end. below is the script, I have included…
bilal
  • 648
  • 8
  • 26
0
votes
1 answer

Xmpp library for Visual basic language

https://xmpp.org/software/libraries.html which xmpp library has to be used for VB.NET language, I haven't seen VB.NET language mentioned in language column? currently, I am using agsxmpp for C#.
bilal
  • 648
  • 8
  • 26
0
votes
1 answer

How do I know if JID specified is already connected to the server?

I'm trying to find a solution to check if the user is logged in through the jid as a parameter, but without success. I wonder if there is a way to check this without my having to log into the server. Before log verify that jid is already logged in…
0
votes
1 answer

Ejabberd account registration issues

I am trying to register an account on my eJabberd server using the agsXMPP library. This is my code which is pretty much the same like here: http://www.codeproject.com/Articles/21267/Creating-a-Jabber-Client-using-the-agsXMPP-Library static void…