Reputation: 938
I need a Openfire plugin component or direction to develop myself to deal with offline file sharing. In one of our IM applications for iOS (like WhatsApp) we use Stream Initiation to transfer a file using a media proxy. This works ok, however if the recipient is offline you can't setup the bytestream. To overcome this limitation I'm looking for alternatives and one i'm looking into is:
Anyone have experience with this and or has complemenatry ideas
Upvotes: 2
Views: 1503
Reputation: 4136
You can extend and modify XEP-0065 and the Openfire code so that it stores your file for later download.
You can also use something totally different like XEP-0066 for example, upload the files to a web or webdav server and just send the link with OOB for later download.
I am not aware of a standardized XEP for this. So you have to develop your own. The only existing project I am aware of is Jabber Disk http://dev.jabbim.cz/jdisk
Upvotes: 2