我的客户是闪电/Flex(与聊天结合使用),并将与 Java服务器交谈。 我的闪电客户与我的服务器交谈的最佳方式(protocol/界面)是什么? 我听到了>Flash Remoting MX/a>,但这是一个请求/反应机制。 我总是会要求服务器提供一些信息,并等待其发出同步通知。 然后又请求执行“Comet服务器。
任何途径,这种通信的行业标准是什么: 闪电客户与Java服务器交谈,支持服务器的“粉碎”通知。
感谢!
我的客户是闪电/Flex(与聊天结合使用),并将与 Java服务器交谈。 我的闪电客户与我的服务器交谈的最佳方式(protocol/界面)是什么? 我听到了>Flash Remoting MX/a>,但这是一个请求/反应机制。 我总是会要求服务器提供一些信息,并等待其发出同步通知。 然后又请求执行“Comet服务器。
任何途径,这种通信的行业标准是什么: 闪电客户与Java服务器交谈,支持服务器的“粉碎”通知。
感谢!
你们可以利用一种主流化的AMF联系来获得实时、双向、同步的推动。 如果你想要某种自由的话,布莱泽DS就能够为你做(它利用一种可满足的需求)。 我的耳光非常好,一只频道每秒播放1 000多条电线,为简单的游戏或聊天。
倒数是,布莱克斯瓦特利用阻挡国际交易日志,因此,你可以支持多少同时连接(因为每个人都需要自己阅读)。 截断取决于你重新使用的申请服务器,但根据我的经验,你在不停资源的情况下,从来不会得到100多份。
因此,如果你只需要100名同时使用的人,你可能会与BlazeDS和简化AMF进行罚款。 如果你需要比这更需要的话,那么你就不得不用麦克尔的建议来支付不锁定的国际会计组织的费用。
考虑采用基于RTMP的解决办法(闪电网)。 遥感共享的物体或直接的溪流出版可以做你想要的。
与此类似,需要执行闪电媒体服务器,无论是Red5、Adobe s、Wowzas,还是其他一些。
在使用诸如布莱泽斯、LCDS、格拉尼特、红色5等产品时,你有几种选择。 请注意,我只了解LCDS,以包括下文列出的所有选项(a)b)c(d)(如果我错过的人可以补充评论的话)。
a)RMTP over full duplex sockets b)Streaming c)Long polling d)Short polling
(b) c) d) 您可以选择阻止IO,而不是阻止IO。
所有这些国家都有优势和劣势。 例如,用2条连接进行精简——一个是随时开放的,服务器将用电线传递信息,第二个是在客户希望发出电文时开放的。 但是,有些代理人可以决定,它不会允许超过20秒的公开联系,在这种情况下,流出问题就没有了。
详情见Damon blog 。 首先,可以找到有关这一联系的太多信息,但情况并非如此。 事实上,你们需要读到更多的文章(或书籍,如)。 这不是一个轻而易举的议题,如果你需要建立专业解决办法,你需要详细理解所有方面。
还有一种选择,即利用自己的习俗议定书制定自己的习俗。 紧靠另一种渠道,但发展型号将是巨大的。
你们还可以从我知道为赌博业专门建造的电动器或智能Fox等服务器上去。
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...