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
0 answers

Can not open socket in .NET 4.5

i am writing a C# program for communicate with open fire by XMPP protocol using agsXMPP . for start i use MiniClient from ags group and run it. with some simple modifications this program run and connect correctly. But when i change Target Framework…
0
votes
1 answer

How to get chat history using agsXMPP in C#

How to get chat history using XMPP. I am using the agsXMPP framework for C#. How can I do this?
0
votes
1 answer

Discover joined rooms in agsxmpp

I am developing a chat application in C# and .NET with agsxmpp. So far I have managed to do single chat and groupchat. But now I am facing a problem with retrieving the rooms which I have already joined as a owner or member. I have tried finding…
0
votes
1 answer

Can't get entry of persistent room in ofMucRoom table in c#.net using agsxmpp

I am developing chat application using agsxmpp in c#.net,currently i managed to create the persistent room on openfire server,whose entry is shown in openfire server.but the problem is i can't get the same entry of room in openfire mysql database…
0
votes
1 answer

Permanent group in xmpp

I am developing a chat app in c#.net using jabber, agsxmpp library and I want to make groupchat in it such as whatsapp groupchat and skype groupchat. I came across persistent room in xmpp. Does it provides the functionality of permanent groups? and…
0
votes
1 answer

View the messages published to ejabberd xmpp nodes

I have an ejabberd xmpp pubsub server and I'd like to view the messages that have been published to specific nodes. Is there a way to accomplish this within the web admin; if not, how? Thanks much.
jwanga
  • 4,166
  • 4
  • 26
  • 27
0
votes
1 answer

Create User Group using agsxmpp c#

I'm using agsxmpp SDK for interacting with openfire server. I'm trying to create a User Group using agsxmpp sdk but cannot really find any documentation about how to do that. Can any provide any link or code sample about how to got about creating…
iJade
  • 23,144
  • 56
  • 154
  • 243
0
votes
1 answer

can anyone help me to know how to add ags xmpp contact list to XML file and show from it into list view

Can anyone help me to know how to add agsxmpp contact list to XML file.Then to show from XML into list view?
uksp
  • 27
  • 8
0
votes
1 answer

How to connect to google talk using agsxmpp and oauth2?

I am developing mini chat application which uses xmpp protocol and google talk server. I found that google doesn't allow to connect to gtalk servers if application is less secure, i.e. doesn't use OAuth 2.0. I was looking for code to connect to…
Umriyaev
  • 1,150
  • 11
  • 17
0
votes
1 answer

Error subscribing through XMPP Jabber-net

I am trying to connect my .net application to xmpp server for events through Jabber-Net. I am not able subscribe for events and keep getting error. I used matrix and able to connect to the XMPP server. I cam not use matrix for my project there for I…
user2692032
  • 771
  • 7
  • 26
0
votes
3 answers

Not able to connect agsXmpp client to eJabberd server

I am using Visual Studio 2010, and the OS is Windows 7, 64-bit. The project I am working on needs XMPP functionality in it; for this, I am using the agsXMPP library. The project type is a WPF client which throws up a window that stays there while my…
Najeeb
  • 313
  • 1
  • 5
  • 19
0
votes
0 answers

Is it necessary to use XMPPRosterCoreDataStorage in Chat app?

I am creating an i OS app chat application. I have integrated XMPPFramework in my app. Can i create my own core data model and store all roster info in that model instead of XMPPRosterCoreDataStorage ? Please suggest me..
Bhat
  • 602
  • 9
  • 24
0
votes
2 answers

agsXMPP OnLogin event not firing Asp.Net

I am trying to make an agsXMPP GTalk chat client in Asp.Net but the OnLogin event is just not doing anything at all, I have tried so, so many things... Can anyone please help me? Here is the code for the aspx.cs file: using System; ... using…
Wesley Gijzen
  • 67
  • 1
  • 9
0
votes
1 answer

Powershell Events

How to get the content of the $Event in powershell This is my code Add-Type -Path "D:\agsXMPP.dll" $xmpp = New-Object "agsXMPP.XmppClientConnection" $xmpp.Username = "fbusername" $xmpp.Password = "fbpassword" $xmpp.Server =…
Vincent Dagpin
  • 3,581
  • 13
  • 55
  • 85
0
votes
1 answer

How to get my Vcard in agsXMPP?

I want to get my Vcard from server. I send my Vcard to server by this code: VcardIq viq = new VcardIq(IqType.set, new Jid(XmppCon.Server)); viq.Vcard.Nickname = "Alex"; XmppCon.Send(viq); And I know from this,that how to get other user's…