Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
72 views

.NET Winform Program Terminating without any valid reason on End Sub

I'm using agsXMPP in my .NET project (WinForms) I have the following Code block, this is executed whenever a message is received from any client. Now whenever a message is received, this block ...
0
votes
1answer
210 views

XMPP HTTP Binding

According to the wiki, XMPP could use HTTP in two ways: one is polling and other one is binding. This binding model of notification is more efficient than polling, where many of the polls return no ...
0
votes
1answer
106 views

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 ...
0
votes
0answers
68 views

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 ...
0
votes
1answer
230 views

How to retreive Someone's Avatar/Photo with agsXmpp

this is what I have so far: void xmppConnection_OnReadXml(object sender, string xml) { if (xml.Contains(XmlTags.PhotoOpen)) { int startIndex = ...
0
votes
1answer
345 views

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 ...
0
votes
3answers
402 views

Why can't I connect to Google Talk in agsXMPP?

I'm trying to get started using agsXMPP, but I'm having some problems. I'm trying to run this code: using System; using agsXMPP; namespace TestAgs { class MainClass { public static ...
0
votes
1answer
220 views

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.
0
votes
1answer
1k views

XMPP chat sent/received message synchronization

Scenario: I am trying to develop a web site which features a chat widget. I am using ASP.NET, C#, agsXMPP library as my tools in achieving this purpose. I use Openfire jabber server for XMPP server. ...