我见过:

http://www..。 ftp://blah.blah..。 文件:/ / blah.blah…… 不真实:/ / blah.blah…… mailto: / / blah.blah……

你看到http和类似调用的第一部分是什么?

我可以自己登记吗?


当前回答

第一部分被称为协议,是的,你可以注册自己的协议。在Windows上(我假设你是在使用c#标签——抱歉Mono的粉丝们),它是通过注册表完成的。

其他回答

第一部分被称为协议,是的,你可以注册自己的协议。在Windows上(我假设你是在使用c#标签——抱歉Mono的粉丝们),它是通过注册表完成的。

这叫做协议。唯一阻止你制定自己的协议的是:

编写某种类型的浏览器或用户代理来理解该协议,包括URL形式和实际数据格式 编写一个能够理解该协议的服务器 最好有一个协议规范,这样浏览器和服务器就可以继续一起工作。

Windows使#1变得非常简单,在很多情况下这就是你真正需要的。即:

将应用程序注册到URL协议

这对于每个浏览器都是不同的,在IE和windows中,你需要创建一个他们称之为可插入的协议处理程序。

基本步骤如下:

Implement the IInternetProtocol interface. Implement the IInternetProtocolRoot interface. Implement the IClassFactory interface. Optional. Implement the IInternetProtocolInfo interface. Support for the HTTP protocol is provided by the transaction handler. If IInternetProtocolInfo is implemented, provide support for PARSE_SECURITY_URL and PARSE_SECURITY_DOMAIN so the URL security zone manager can handle the security properly. Write the code for your protocol handler. Provide support for BINDF_NO_UI and BINDF_SILENTOPERATION. Add a subkey for your protocol handler in the registry under HKEY_CLASSES_ROOT\PROTOCOLS\Handler. Create a string value, CLSID, under the subkey and set the string to the CLSID of your protocol handler.

关于MSDN上的异步可插协议,请参阅windows方面的详细信息。windows SDK中也有一个示例。

快速谷歌还在codeproject上显示了本文:http://www.codeproject.com/KB/IP/DataProtocol.aspx。

Finally, as a security guy I have to point out that this code needs to be battle hardened. It's at a high risk because to do it reliably you can't do it in managed code and have to do it in C++ (I suppose you could use VB6). You should consider whether you really need to do this and if you do, design it carefully and code it securely. An attacker can easily control the content that gets passed to you by simply including a link on a page. For example if you have a simple buffer overflow then nobody better do this: <a href="custom:foooo{insert long string for buffer overflow here}"> Click me for free porn</a>

强烈考虑使用strsafe和VC8及以上编译器中包含的新的安全CRT方法。如果你不知道我在说什么,请访问http://blogs.msdn.com/michael_howard/archive/2006/02/27/540123.aspx。

You don't really have to do any registering as such. I've seen many programs, like emule, create their own protocol specificier (that's what I think it's called). After that, you basically just have to set some values in the registry as to what program handles that protocol. I'm not sure if there's any official registry of protocol specifiers. There isn't really much to stop you from creating your own protocol specifier for your own application if you want people to open your app from their browser.

带有HTTP://,FTP://等的部分称为URI方案

您可以通过注册中心注册自己的网站。

HKEY_CLASSES_ROOT/
  your-protocol-name/
    (Default)    "URL:your-protocol-name Protocol"
    URL Protocol ""
    shell/
      open/
        command/
          (Default) PathToExecutable

来源:https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml http://msdn.microsoft.com/en-us/library/aa767914 (v = vs.85) . aspx