3

我知道 WCF 支持许多 WS-* 协议,但似乎列出了 WS-Eventing。

我知道 WCF 有一个发布/订阅模型,但它是否符合 WS-Eventing 标准?

4

3 回答 3

3

我似乎记得不久前在 CodeProject 上读到过这个。

抱歉,我帮不上忙,但这是 Roman Kiss 的文章

于 2008-09-20T04:27:11.910 回答
1

至少使用 WCF4,您可以通过导入 WS-Eventing WSDL(使用soap 绑定)来简单地创建一个 wsdl 客户端。它需要双工绑定,因此 http-duplex 或简单的 tcp 应该可以工作。问题是添加正确的回调。对我们来说,这成功了

                            Subscribe s = new Subscribe();
                        (s.Delivery = new DeliveryType()).Mode = "http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/Push";

                        XmlDocument doc = new XmlDocument();
                        using (XmlWriter writer = doc.CreateNavigator().AppendChild())
                        {
                            EndpointReferenceType notifyTo = new EndpointReferenceType();

                            (notifyTo.Address = new AttributedURI()).Value = callbackEndpoint.Uri.AbsoluteUri;

                            XmlRootAttribute notifyToElem = new XmlRootAttribute("NotifyTo");
                            notifyToElem.Namespace = "http://schemas.xmlsoap.org/ws/2004/08/eventing";

                            XmlDocument doc2 = new XmlDocument();                                    
                            using (XmlWriter writer2 = doc2.CreateNavigator().AppendChild())
                            {
                                XmlRootAttribute ReferenceElement = new XmlRootAttribute("ReferenceElement");
                                foreach(AddressHeader h in callbackEndpoint.Headers)
                                {
                                    h.WriteAddressHeader(writer2);  
                                }

                                writer2.Close();
                                notifyTo.ReferenceParameters = new ReferenceParametersType();
                                notifyTo.ReferenceParameters.Any = notifyTo.ReferenceParameters.Any = doc2.ChildNodes.Cast<XmlElement>().ToArray<XmlElement>();               
                            }

                            new XmlSerializer(notifyTo.GetType(), notifyToElem).Serialize(writer, notifyTo);
                        }

                        (s.Delivery.Any = new XmlElement[1])[0] = doc.DocumentElement;
                        (s.Filter = new FilterType()).Dialect = "http://schemas.xmlsoap.org/ws/2006/02/devprof/Action";
                        (s.Filter.Any = new System.Xml.XmlNode[1])[0] = new System.Xml.XmlDocument().CreateTextNode("http://www.teco.edu/SensorValues/SensorValuesEventOut");

                        SubscribeResponse subscription;
                        try
                        {
                            Console.WriteLine("Subscribing to the event...");
                            //Console.ReadLine();
                            subscription = eventSource.SubscribeOp(s);
                        }
于 2010-11-15T14:24:33.187 回答
0

WCF 3.0 中没有本机发布/订阅模型,但是有一些选项。
- 发现的罗马之吻文章 Ash。
- 您可以实现许多其他模式(在MSDN Mag中介绍)
- Juval Lowy 有两个框架实现,您可以在他的IDesign
网站上下载 - 最后,我目前使用的以很少开销来模拟这一点的是 MSMQ。

于 2009-03-03T12:14:06.270 回答