We have a CTI program which uses IE-Framework and opens its content in Internet Explorer. We would like to use Firefox instead of IE, but the developers refuse to change anything.
So I thought about an URL-Handler.
The CTI-Program uses an URL like https:://software/database/profile=%1.php
I can tell the program to use a URL-handler.
So the finished URL would look like workaround:https:://software/database/profile=%1.php
I made these registry entries:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\workaround]
@="URL:workaround Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\workaround\shell]
[HKEY_CLASSES_ROOT\workaround\shell\open]
[HKEY_CLASSES_ROOT\workaround\shell\open\command]
@="\"C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe\" "%1"
Upon opening workaound:google.de
Firefox opens infinite numbers of tabs.
Same with workaround:"google.de"
Opening workaround: without anything opens Firefox without a page
Sure, I could add the URL to the registry but the program delivers a variable depending on the database entry of whom is calling.
Does anyone have an idea what parameter Firefox needs?
Thanks in Advance