tec.java.web
iteye_14299
这个作者很懒,什么都没留下…
展开
-
Comet:基于 HTTP 长连接的“服务器推”技术 摘要
参见 http://www.ibm.com/developerworks/cn/web/wa-lo-comet/ 最新的pushlet一些变动的地方:()里面的是更正Pushlet 支持客户端自己选择使用流、拉(长轮询)、轮询方式。服务器端根据客户选择的方式在读取事件队列(fetchEvents)时进行不同的处理。“轮询”模式下 fetchEvents() 会马上返回。”流“和”拉“模式使...2008-05-15 18:13:20 · 112 阅读 · 0 评论 -
JavaScript Development Toolkit 简介
JavaScript Eclipse 插件助您一臂之力,提高 JavaScript 生产力指日可待[url]http://www.ibm.com/developerworks/cn/opensource/os-eclipse-jsdt/[/url]原创 2008-07-21 15:19:25 · 102 阅读 · 0 评论 -
cometd: 基于jetty 的压力测试步骤
http://docs.codehaus.org/display/JETTY/Stress+Testing+Cometd Jetty comes with cometd installed in $JETTY_HOME/webapps/cometd.war.To run the server with additional memory needed for the test, use:...2008-06-18 20:40:31 · 218 阅读 · 0 评论 -
cometd: jetty
http://docs.codehaus.org/display/JETTY/Cometd+%28aka+Bayeux%29 Jetty includes a servlet implementation of the Bayuex protocol of cometd from the Dojo Foundation.Cometd is a message bus for Ajax...2008-06-18 20:22:35 · 210 阅读 · 0 评论 -
cometd: dojo 跨越访问之JSONP
http://www.matrix.org.cn/resource/article/2008-03-06/b2e0ea4e-eb69-11dc-91da-b599c3ba16ef.html // if xdomain, then we assume jsonp for handshake if(this._isXD){ bindArgs.callbackParamName = "...2008-06-16 20:14:55 · 167 阅读 · 0 评论 -
cometd: dojo channel ""/cometd/meta"
"/cometd/meta" I didn't have time to test it, but here's a code snippet that I *think* should work:function listenerFunc(event) { if (event.action == "disconnect") { // do something }} ...2008-06-15 21:50:36 · 107 阅读 · 0 评论 -
cometd: Bayeux Protocol
http://svn.xantus.org/shortbus/trunk/bayeux/bayeux.html 要了解DOJO的COMETD的实现,最好先了解一下这个协议 http://cometd.com/ http://dojotoolkit.org/ http://jetty.mortbay.org/jetty-6/ http://cometdproject.dojoto...2008-06-14 22:36:29 · 200 阅读 · 0 评论 -
js里的匿名函数
介绍一下js里的匿名函数,这个在阅读dojo的源代码的时候,会发现到处都有匿名函数;(function(){alert(123);})();//前面的分号是一个空语句,是可以不要的匿名函数。一个匿名函数就是一个没有名字的函数。你可以认为他们是一次性函数。当你只需要用一次某个函数时,他们就特别有用。通过使用匿名函数,没有必要把函数一直放在内存中,所以使用匿名函数更加有效率。当然你...2008-06-14 16:00:33 · 141 阅读 · 0 评论 -
ie js 调试
综合网上的资料; 具体方法为:2、下载安装Microsoft Script Debugger,如果您的机器已经安装过了就可以免过这一步。3、打开IE菜单“工具”--“Internet选项”--“高级”,找到“禁用脚本调试(Internet Explorer)”,将选项前面的对钩都去掉,然后重启IE。打开想调试的网页,然后去菜单 View->Script Debugger->...2008-06-06 13:22:00 · 127 阅读 · 0 评论 -
jetty eclipse plugin 问题
http://docs.codehaus.org/display/JETTY/Jetty+DocumentationHi,I'm trying to use Jetty to debug a Java Web application. I installed the JST plugin like described on this page: http://docs.codehaus.org...2008-05-30 20:45:22 · 103 阅读 · 0 评论 -
comet: pushlet 一些资料
http://blog.csdn.net/yyri/archive/2008/02/22/2113976.aspx http://hi.baidu.com/holin/blog/item/51c9d15875124183800a189f.html "Pushlet作者也承认,Pushlet存在着可伸缩性的问题:QUOTE:Yes, I am aware of the scalabili...2008-05-27 20:31:48 · 88 阅读 · 0 评论 -
PUSHLET 实战:push mode 的流程
Pushlet js 分开的收发过程收:1.p_join->join-ack->callback断开;2.p_listen->listen-ack->p_heartbeat断开; ->push data->callback长联; 发:1.p_join->join-ack->callback断开;2.p_pub...2008-05-21 21:45:01 · 193 阅读 · 0 评论 -
PUSHLET 实战:FRAME ONLOAD
<FRAMESET BORDER="0" ROWS="0,*" ONLOAD="_framesReady()"> <FRAME SRC="about:blank" NAME="controlFrame" ONLOAD="_controlFrameReady()"> <FRAME SRC="about:bla2008-05-21 20:08:48 · 119 阅读 · 0 评论 -
PUSHLET 实战:发现一个小BUG
在使用PUSHLET push model开发的时候,参考“Web Presentation2”example 时发现了一个问题,困惑了我一天的时间(JS不是很熟),把它提交给了PUSHLET开发组了http://sourceforge.net/tracker/index.php?func=detail&atid=502328&aid=1968649&group_id=6...2008-05-21 20:07:21 · 114 阅读 · 0 评论 -
PUSHLET 实战:JavaScript是否在html完全显示后执行
else if (eventType == 'listen-ack') { _setStatus('listening'); _doCallback(event, window.onListenAck); // Send empty heartbeat event. This // silences many busy browser windows. // At least...2008-05-20 21:57:10 · 131 阅读 · 0 评论 -
PUSHLET 实战:JavaScript下利用setTimeout调度
<body><div id="content" /></body><SCRIPT LANGUAGE="JavaScript"><!--function main(){ for (var i = 0; i < 10; i++) { setTimeout("print('"2008-05-20 16:22:13 · 116 阅读 · 0 评论 -
How to get IP address of the browser
http://www.faqts.com/knowledge_base/view.phtml/aid/9005How to get IP address of the browser when its operating behind a proxy/firewall? (applets...activex....??)i have copied the code in my fron...原创 2008-08-14 15:10:48 · 234 阅读 · 0 评论