Handler protocol call ignored by Chrome

I have a problem with Chrome. The web application sends several protocol handler requests to the application installed on the client computer using the Iframe element.

<iframe src="myprotocol://guid"></iframe> 

It works on Ie and Firefox. On chrome, it only works on the first call. The second call requires the user to be active on the computer and work with Chrome.

Is there any way to do this? perhaps using a Chrome plugin?

+5
source share
1 answer

You will probably need to reset the configuration of your protocol handler. Otherwise, the handler will indeed succeed, a crash in the handler can simply cause chrome to drop it.

Debug both ends if you can.

https://vsee.zendesk.com/hc/en-us/articles/209804153-How-to-Reset-Protocol-Handler-on-Chrome-VSee-doesn-t-launch-from-waiting-room-

0
source

All Articles