Asynchronous web service streaming

后端 未结 1 2020
甜味超标
甜味超标 2021-01-14 06:45

I need some framework that will help me to do asynchronous streaming over http. It may look like SOAP WS or somethign else. I don\'t know if I name it correctly, so here is

相关标签:
1条回答
  • 2021-01-14 07:31

    What you're talking about sounds like a COMET service. You can read the Wikipedia entry here:

    Comet (programming)

    Not sure how you'd implement something like that in Java, but in .NET you can use a Duplex contract for a WCF service. You can read more about how to access and communicate with that style of service here:

    How to: Access Services with a Duplex Contract

    0 讨论(0)
提交回复
热议问题