I would expect next code to launch the chrome extension of my 3cx softphone the same way an html link call me would do. But it just opens google chrome default page and no number is dialed on softphone extension.
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Process.Start("tel:+34555555555")
End Sub
Am I missing anything?
After some research it seems 3cx needs extra attribute tcxhref on anchor to do the job. In order to launch the dialer with the proper phone number on it I had to publish an ASP MVC page which clicks the anchor on loading.
This is the Html code:
This is how the MVC controller looks like:
And this is how to invoke it from winforms: