zoukankan
html css js c++ java
Tencent://Message/协议的实现原理
腾讯官方通过 Tencent://Message/协议可以让QQ用户显示QQ/TM的在线状态发布在互联网上;并且点击 XXX ,不用加好友也可以聊天 官方链接: http://is.qq.com/webpresence/code.shtml 具体代码:
< img border="0" SRC='http://wpa.qq.com/pa?p=1:215555521:3' alt="点击这里给我发消息"> < /a> 但它是如何实现的呢?下面文章以及微软官方说明详细解释了其工作原理: 微软官方说明:http://msdn.microsoft.com/library/default.asp?url=/workshop/networking/pluggable/overview/appendix_a.asp Register protocol,此文中对于 Windows、Linux 和 OS X 操作系统如何注册协议都有说明。比如说 Windows,其实只需写入注册表,即可实现协议与执行程序的关联。例如腾讯的Tencent://Message协议注册表如下: [HKEY_CLASSES_ROOTTENCENT] @=”TencentProtocol” “URL Protocol”=”D:\Program Files\Tencent\QQ\Timwp.exe” [HKEY_CLASSES_ROOTTENCENTDefaultIcon] @=”D:\Program Files\Tencent\QQ\Timwp.exe,1″ [HKEY_CLASSES_ROOTTENCENTshell] [HKEY_CLASSES_ROOTTENCENTshellopen] [HKEY_CLASSES_ROOTTENCENTshellopencommand] @=””D:\Program Files\Tencent\QQ\Timwp.exe” ”%1”" 此注册表所实现的就是当浏览器(或其它)碰到 tencent://… 时,自动调用 Timwp.exe,并把 tencent://… 地址作为第一个参数传递给 Timwp.exe。 更多参见:Registering an Application to a URL Protocol。 附:原文 程序代码: A protocol is a method that is used to send, receive, and handle information over a connection. Common protocols viewed from the browser include http, ftp, and mailto. In order for you to view information sent over a specific protocol, it must be registered. Once registered, the protocol can then be handled by the program you specify, such as your browser or a 3rd party viewer. This means that a hyperlink ( e.g. foo://fred ) can use the handler for protocol foo to open the file named fred. Contents [hide] 1 Registering an unsupported protocol 1.1 Windows 1.2 Linux 1.3 OS X 2 Redirecting a registered protocol [edit]Registering an unsupported protocol Mozilla products utilize protocols defined internally, as well as those defined by the operating system. You can add the ability to use an unsupported protocol by registering it. The OS-specific method of doing this is described below. [edit]Windows Create the registry .reg file, replacing foo with your unregistered protocol, and the path with whatever handler program you want to run. Then merge it into the Windows registry. REGEDIT4 [HKEY_CLASSES_ROOTfoo] @="URL:foo Protocol" "URL Protocol"="" [HKEY_CLASSES_ROOTfooshell] [HKEY_CLASSES_ROOTfooshellopen] [HKEY_CLASSES_ROOTfooshellopencommand] @=""C:\Program Files\Application\program.exe" "%1"" See Registering an Application to a URL Protocol for additional information. [edit]Linux Registration is unnecessary. Simply associate whatever proto: with a program through Firefox: Example: Add the sip: protocol to launch kphone for VoIP calls in Firefox: - Type about:config into the address bar - Right-click create new boolean value: network.protocol-handler.external.sip and set to true - Right-click create new boolean value: network.protocol-handler.warn-external.sip and set to false - Right-click create new string value: network.protocol-handler.app.sip and set to /usr/bin/kphone This will actually launch kphone. Not sure if it will dial though. That is untested :) You can also optionally register the protocol with whatever window manager you are using. In KDE this is done through Control Center - KDE Components - File Associations. This step is usually unnecessary unless your window manager has a custom browser, such as konqueror. [edit]OS X Probably very similar to Linux (above). [edit]Redirecting a registered protocol If the protocol is already handled by the browser, you can specify what program will be used as a handler to open the file. To do this, add the pref: network.protocol-handler.app.foo as a string with value C:Program FilesApplicationprogram.exe Note: If the path or name is incorrect, the browser will display an error saying "protocol (foo) isn't associated with any program". (See bug 312953). You may also need to use the following prefs, although this is uncertain: network.protocol-handler.external.foo = true network.protocol-handler.expose.foo = false
查看全文
相关阅读:
高性能JS载入脚本并执行
JavaScriptDOM高级程序设计myLogger.js
(旧文重贴)看看这两段代码有什么不同?
(旧文重贴)原来进行Authorization:basic的时候,后面的credentials就是
(旧文重贴)终于把ServerAppUnaviable的问题搞定了。
(旧文重贴)花了一个小时时间,给项目组作了一个汉字到拼音的转换
(旧文重贴)昨晚和谢晓讨论了一下多组件服务器验证的问题
大家好!我是浪潮通软的鞠强,初来贵地,请多多指教!
(旧文重贴)vs.net的asp.net程序无法在winserver2003上打开,终于搞定了,郁闷ing。。。
(旧文重贴)SQLDMO好像只能在打有sp3的sql2000上用?
原文地址:https://www.cnblogs.com/westsoft/p/5925961.html
最新文章
高性能JS比较nextSibling,ChildNodes,Children速度
豪情作品
web前端研发工程师编程能力成长之路 [转]
精通js部分代码应用鼠标经过tr变色
jQuery插件轻量图片轮换UISlide
关于 contentWindow, contentDocument
Vim快捷键分类
jQuery插件轻量图片轮换UISlide2
贴张图PS快捷键示意图
《精通javascript》几个简单的函数(二)
热门文章
解决li在ie,firefox中行高不一致问题
我的vim颜色主题
Firefox 里的 Vim(转)
前端开发利器webStorm 3.0配置使用
JS的构造函数
jQuery插件轻量弹出层UIDialog
JavaScriptDOM高级程序设计 generateDOM.js
Jq滚动条插件写法(一)
webstorm比dreamweaver强大的地方
Js,jQuery版Zencoding之webstorm & phpstorm
Copyright © 2011-2022 走看看