Openfire Meeting iOS Implementation - ios

I have set up openfire on my EC2 ubuntu server with openfire meetings installed.
Focus user, test users, group chat and ofmeet are configured using admin console http://myserver:9090/.
Multi users video conference is working properly on chrome browser using https://myserver:7443/ofmeet/?r=testroom.
Now i want to implement this in an iOS app and i have no idea where to start.I did look into some demo projects but still unable to figure it out.
Can someone please help with this? If anyone has worked with something like this please let me know. Thanks

Try the following jitsi projects
https://github.com/jitsi/jitsi-meet-ios
Or
https://github.com/jitsi/react-native-webrtc

The Openfire Meetings plugin is an implementation that wraps various Jitsi projects (such as VideoBridge and Meet). To create a native client that works with Openfire Meetings, it is advisable to use the native client implementations as provided by the Jitsi project.
A good place to start are the React-Native based SDKs that are part of Jitsi Meet:
https://github.com/jitsi/jitsi-meet/tree/master/ios
https://github.com/jitsi/jitsi-meet/tree/master/android

Related

How to integrate xmpp with Openfire server in iOS app ?

I want to make an chat app for iOS using xmpp and Openfire server. I have set up the server and currently running well, but I am not getting how to integrate the xmpp using Openfire?
I have also gone through some tutorial but in that tutorials they used a jabbered client.
Appreciate any help..
I found some thing like what that I need here https://github.com/processone/xmpp-messenger-ios

Enable BOSH services in XMPP IOS framework (XMPPFramework) to create chat based app

I have implemented Chat based application. I can able to do many functionality with https://github.com/robbiehanson/XMPPFramework library. It is very good library. But after some days my server side guys included bash services in server. My server side guys implementing xmpp using Strophe.js. And they are using following code to enable BOSH service while connecting.
BOSH_SERVICE = "http://host.com:5280/http-bind";
new Strophe.Connection(BOSH_SERVICE);
Now they told me enable BASH service in IOS side also. Now I can not connect to that server.
How to include BOSH service in robbiehanson xmpp IOS library (https://github.com/robbiehanson/XMPPFramework)?
The iOS xmppFramework does not currently offer support for BOSH. Here's a confirmation:
https://github.com/robbiehanson/XMPPFramework/issues/6#issuecomment-54085037
But, your iOS client can still login to the server via the socket connection and your web client can use BOSH. That's your alternative and it should work well.
If you really want to create your own iOS BOSH implementation, look into XMPPTransports as a starting point.
Happy coding :)

Realtime communication app backend

I am developing a desktop application which will communicate with an iOS app and transfer/receive data in realtime. What is the best way to do this? Should I use something like OpenFire as the backend server?
Thanks.
What about using Bonjour? This project on GitHub will help you a lot.
https://github.com/Cocoanetics/DTBonjour
I am going with OpenFire. OpenFire has a lot of options starting from private messaging to conferencing to email notifications using plugins. Overall, it is more flexible than any of the other solutions out there.

Fetching Skype chat logs in blackberry via code

I am developing a blackberry application, in that I have to fetch Skype chat logs. I have googled a lot on this topic, but didn't find any related info. Could any one tell me how to fetch Skype logs(Chat history) via code.
Thanks.
I do not believe this is possible as this would be a third party application asking for information from another third party application. Each application is sand boxed and therefore unable to retrieve information outside of their verticals unless it is released, example like using the shared folder.
Hope that helps!
WiLL

How to access an IMAP Server using the iOS SDK

Are there any classes/frameworks within the iOS SDK which can be used to easily access an IMAP server?
I do NOT what to write a new Mail app. I just need the basic IMAP functions like check for new message, download messages, etc.
So far I have found MailCore but as far as I can tell it is for MacOS and not iOS.
Thank you very much for your help!
Andrei
There is a remail project so you can look into it... there is no public iOS framework for dealing with IMAP as much as I know...

Resources