Hi guys, I would like to know if it is possible to handle a custom url protocol using CefGlue the way I would do normally using Windows, where I insert into it's Registry some keys and all browsers installed (IE, Firefox, Chrome) will know what to do when I click on a link that uses this custom protocol, I ran the cefclient demo app and upon clicking on my custom url I get the following message "Failed to load URL vsp:New Session with error (-302), where "vsp" happens to be the custom protocol that I registered which launches an external app installed on the computer.
Can such behavior be achieved on the cefclient app that doesn't require C++ expertise since I don't have it?
Thank you.
Paul
Sample registry keys that I use to register my custom "vsp" url protocol on Windows, works on all browsers installed:
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\vsp]
"URL Protocol"=""
[HKEY_CLASSES_ROOT\vsp\DefaultIcon]
@="\"C:\\MyApp\MyApp.exe,1\""
[HKEY_CLASSES_ROOT\vsp\shell]
[HKEY_CLASSES_ROOT\vsp\shell\open]
[HKEY_CLASSES_ROOT\vsp\shell\open\command]
@="\"C:\\MyApp\MyApp.exe\" \"%1\""