I am trying to make a skype call using the SKYPE4COMLib library , but it worked only once
Call call = skype.PlaceCall(username);
do
{
System.Threading.Thread.Sleep(1);
} while (call.Status != TCallStatus.clsInProgress);
call.StartVideoSend();
In the second attempt, the identifier did not work. And also I'm trying to make a skype call using the skype button
<script type="text/javascript" src="https://secure.skypeassets.com/i/scom/js/skype-uri.js"></script>
<div id="SkypeButton_Call_skypename_1">
<script type="text/javascript">
Skype.ui({
"name": "call",
"element": "SkypeButton_Call_skypename_1",
"participants": ["skypename"]
});
</script>
</div>
It works well. But he opens up the original skype software and makes calls. I need to add a widget to my asp.net MVC webpage and then make skype calls on my webpage and capture some details (call start time, end time, call recording) and save them in my database. Is there a way to do this. I had no valuable solution for this.
thank