Kurento + Java Spring Client + IOS - Networking with IOS

We are testing the Kurento 6.0 + Java Spring client. Examples work well (one2one call + one2one-recording). We are trying to implement the same functionality in an iOS application so that we can make Peer (IOS) → Peer (Web) calls. But, unfortunately, the documentation is not very clear.

The Kurento Server application and Java Spring are loaded into the AWS ec2 instance for download and the stunning servers are configured.

We use the https: // kurento-IP: 8443 / call call with json to register:

var message = {
   id : 'register',
   name : name
};

ws.send(message)

And it works!

Question:

How can we now initiate a call in iOS after that?

iOS Spring App (https://kurento-IP:8443/call) ws://kurento-ip:8888/kurento ( , ?)

JS :

webRtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerSendrecv(options,
      function(error) {
         if (error) {
            return console.error(error);
         }
         this.generateOffer(onOfferCall);
      });

onOfferCall - calls directly the Web!

Kurento IOS, . IOS?

!

+4
1

iOS . , enter image description here

: , -)

+1

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


All Articles