Difference between revisions of "URI"

From MgmtWiki
Jump to: navigation, search
(References)
(References)
Line 16: Line 16:
 
*[https://msdn.microsoft.com/en-us/windows/desktop/mt228339 Handle URI activation on Windows].
 
*[https://msdn.microsoft.com/en-us/windows/desktop/mt228339 Handle URI activation on Windows].
 
*[https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-app-with-uri Launch an app with a URI] on Windows.
 
*[https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-app-with-uri Launch an app with a URI] on Windows.
 +
*[https://msdn.microsoft.com/en-us/windows/desktop/aa767914 Registering the Application Handling the Custom URI Scheme] on Windows
 
*Windows registry Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ProtocolExecute\
 
*Windows registry Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ProtocolExecute\
  

Revision as of 15:16, 6 April 2019

Full Title or Meme

Uniform Resource Identifier URI is the term for any type of identifier (e.g., URN, URL, etc.) that identifies an abstract or physical resource. It may or may not be resolvable to a resource.

Context

In order to ensure the global uniqueness of URN namespaces, their identifiers (NIDs) are required to be registered with the IANA. Registered namespaces may be "formal" or "informal".

Problems

New URIs may not have dedicated resources to handle then on all devices.

Solutions

References