我有多个世界合作框架服务,需要一个协会的某些职能。 NET MVC应用程序。
- The MVC app calls Contract-Service (WCF Service)
- Contract-Service during its processing calls Contract-Buy-Service (WCF Service)
- Contract-Buy-Service calls SAM-Utility-Service (WCF Service)
When I run my TDD test cases from Contract-Buy-Service, it works perfectly fine. Because the call goes from Contract-Buy-Service to SAM-Utility-Service. But when the call goes from Contract-Service => Contract-Buy-Service => SAM-Utility-Service I always get the error that the endpoint for SAM-Utility-Service is not found in the config.
SAM-Utility-service在合同服务与合同服务方面都有服务参考。 我已经核实,这项服务是东道机构,正在运行。 当我试图通过浏览器来观察时,我可以接见WSDL。
谁能告诉我,为什么服务呼吁不会穿过多层,或者我在这里做过错?
感谢!