每次 silverlight 轮询时在服务器上运行的自定义代码。 (轮询双工)

发布于 2024-09-06 22:28:07 字数 548 浏览 7 评论 0原文

当 silverlight 客户端每次轮询服务器以保持连接活动时,是否可以运行自定义代码。我的应用程序是彗星风格轮询双工通信的实现,可从 silverlight3 获得。 我发现它在每次轮询时都会发送以下 Soap 消息。

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
    <wsmc:MakeConnection xmlns:wsmc="http://docs.oasis-open.org/ws-rx/wsmc/200702">
        <wsmc:Address>
            http://docs.oasis-open.org/ws-rx/wsmc/200702/anoynmous?id=7f64eefe-9328-4168-8175-1d4b82bef9c3
        </wsmc:Address>>
    </wsmc:MakeConnection>
</s:Body>

Is it possible to run custom code when the silverlight client polls everytime to the server to keep the connection alive. My application is a implementation of the comet style polling duplex communication which is available from silverlight3.
I found that it sends the following Soap message on every poll.

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
    <wsmc:MakeConnection xmlns:wsmc="http://docs.oasis-open.org/ws-rx/wsmc/200702">
        <wsmc:Address>
            http://docs.oasis-open.org/ws-rx/wsmc/200702/anoynmous?id=7f64eefe-9328-4168-8175-1d4b82bef9c3
        </wsmc:Address>>
    </wsmc:MakeConnection>
</s:Body>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

揪着可爱 2024-09-13 22:28:07

我相信这应该是可能的,但由于我自己没有使用过双工服务,所以我不能 100% 相信这一点。我使用了以下方法: System.ServiceModel。 Dispatcher.IDispatchMessageInspector.AfterReceiveRequest 在服务器端实现,用于拦截所有传入消息,从消息中删除一些安全信息,并在消息到达服务层之前运行一些自定义代码。

我找到了这篇 Paolo Pialorsi 文章 在实现我的解决方案时很有用。

I believe that should be possible, but having not worked with duplex services myself I can't be 100% on this. I've used the following method: System.ServiceModel.Dispatcher.IDispatchMessageInspector.AfterReceiveRequest implemented on the server side to intercept all incoming messages to strip out some security information from the message and run some custom code before it reaches the service layer.

I found this Paolo Pialorsi Article useful when implementing my solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文