如何在另一个WCF服务中托管一个WCF服务?
我有 wcf 服务 DLL ,比如 WCFA。我有另一个 wcf 服务 dll ,例如托管 wcfA 的 WCFB。
然后,我使用另一个 consoleApp 托管了 WCFB。
当我尝试使用客户端(内置 wcfclienttest 客户端或我自己的测试客户端)连接到 WCFB 时,我收到了奇怪的错误,例如
- 错误 404
- FaultedException
- 安全异常等......
那么,我想知道使用 wcf 是否可以实现这种情况?
I have wcf service DLL , say WCFA. I have another wcf service dll , say WCFB which hosts wcfA.
Then, I have hosted WCFB using another consoleApp.
When I am tring to connect to WCFB using a client ( inbuilt wcfclienttest client or my own test client ) , am getting wierd errors like
- Error 404
- FaultedException
- Security exception etc....
So, am wodering if this scenario is ever possible using wcf?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这当然是可能的。在通信和序列化层的表面下,WCF 应用程序就像任何其他应用程序一样,因此如果连接和其他配置允许,则可以调用其他 WCF 服务。
Yes it is certainly possible. Under the surface of the communication and serialization layer, a WCF application is just like any other application, and so therefore can call other WCF services if connectivity and other configuration permits.