Difference between revisions of "Protocol Handler"

From MgmtWiki
Jump to: navigation, search
(Solutions)
(Windows)
Line 66: Line 66:
 
===Windows===
 
===Windows===
 
* [https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa767914(v=vs.85) Registering an Application to a URI Scheme] 2016-07-13
 
* [https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa767914(v=vs.85) Registering an Application to a URI Scheme] 2016-07-13
 +
 +
The following adapts their example:
 +
 +
First, you need a ProgID in HKLM\SOFTWARE\Classes that dictates how to handle any input given to it (yours may already exist):
 +
 +
HKLM\SOFTWARE\Classes
 +
    MyApp.ProtocolHandler //this is the ProgID, subkeys are its properties
 +
        (Default) = My Protocol //name of any type passed to this
 +
        DefaultIcon
 +
          (Default) = %ProgramFiles%\MyApp\MyApp.exe, 0 //for example
 +
        shell
 +
          open
 +
              command
 +
                (Default) = %ProgramFiles%\MyApp\MyApp.exe %1 //for example
 +
Then fill the registry with DefaultProgram info inside a Capabilities key:
 +
 +
HKLM\SOFTWARE\MyApp
 +
    Capabilities
 +
      ApplicationDescription
 +
          URLAssociations
 +
              myprotocol = MyApp.ProtocolHandler //Associated with your ProgID
 +
Finally, register your application's capabilities with DefaultPrograms:
 +
 +
HKLM\SOFTWARE
 +
      RegisteredApplications
 +
        MyApplication = HKLM\SOFTWARE\MyApp\Capabilities
 +
Now all "myprotocol:" links should trigger %ProgramFiles%\MyApp\MyApp.exe %1.
  
 
==References==
 
==References==

Revision as of 16:24, 17 November 2021

Full Title

Protocol Handlers are models that can be added to a user's computer to extend the range of protocols that can be handled by that computer.

Context

The scope of this wiki is focused on Protocol Handlers that process Identifiers and Authentication, but might involve payment procols as well.

Existing Providers

These are the providers registered as of 201x

name Location Cat Recent News
bitcoin"
"geo"
"im"
"irc"
"ircs"
"magnet"
"mailto"
"mms"
"news"
"openpgp4fpr"
"sip"
"sms",
"smsto",
"ssh",
"tel",
"urn",
"webcal",
"wtai",
"xmpp"

Solutions

These solutions are directed primarily to Smartphones, although uses on desktop computers are also considered. Originally all protocol handlers were written in native code for the operating system and installed by the user.

Chromium

Was a topic in BlinkOn 15 2021-11-17 now on YouTube

PWA

Windows

The following adapts their example:

First, you need a ProgID in HKLM\SOFTWARE\Classes that dictates how to handle any input given to it (yours may already exist):

HKLM\SOFTWARE\Classes
    MyApp.ProtocolHandler //this is the ProgID, subkeys are its properties
       (Default) = My Protocol //name of any type passed to this
       DefaultIcon
          (Default) = %ProgramFiles%\MyApp\MyApp.exe, 0 //for example
       shell
          open
             command
                (Default) = %ProgramFiles%\MyApp\MyApp.exe %1 //for example

Then fill the registry with DefaultProgram info inside a Capabilities key:

HKLM\SOFTWARE\MyApp
   Capabilities
      ApplicationDescription
          URLAssociations
             myprotocol = MyApp.ProtocolHandler //Associated with your ProgID

Finally, register your application's capabilities with DefaultPrograms:

HKLM\SOFTWARE
     RegisteredApplications
        MyApplication = HKLM\SOFTWARE\MyApp\Capabilities

Now all "myprotocol:" links should trigger %ProgramFiles%\MyApp\MyApp.exe %1.

References