How to implement file transfer in jabber net

I have currently created a patch application, which is a Windows application (C #). I created a basic version of the client that helps jabber net, which internally uses the XMPP protocol and openfire server.Now I had to implement File Transfer between two users in jabber net. I searched a lot, but there is no solution for this aproach in C #

+3
source share
2 answers

http://www.ag-software.de/agsxmpp-sdk.html supports Filetransfers. It is released under a dual license for commercial and open source use. You can also compile the C ++ library and use this function in C # code. Gloox is a well-known file transfer support library.

0
source

Just do this: http://xmpp.org/extensions/xep-0096.html

If your libraries no longer have an implementation, this can be quite difficult.

0
source

Source: https://habr.com/ru/post/1725140/


All Articles