.Net 与直接 Web 远程处理 (DWR) 的互操作可能吗?
我们有一个使用 DWR 的现有代码库。我想知道有哪些选项可以让 .Net 客户端与 DWR 端点进行通信?
我所说的 .Net 真正指的是 CLR 客户端,而不是基于 .Net 的网站生成的 javascript。
We have an existing code base which is using DWR. I'm wondering what options exist to have .Net clients communicate with the DWR endpoints?
And by .Net I really mean CLR clients, not javascript generated by .Net based websites.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在客户端,dwr 只是 JavaScript,所以应该没问题。只要您从支持 DWR 的 java servlet 容器中包含所需的 dwr Ajax 脚本,并编写 DWR 回调来与 .net 创建的 hrml 元素进行交互。
On the client side, dwr is just JavaScript so it should be fine. As long as you include the needed dwr Ajax scripts from your DWR enabled java servlet container and write your DWR callbacks to interact with the hrml elements that .net creates.