Error Message:

Service 'XXXService' has zero application (non-infrastructure) endpoints. This might be because no configuration file was found for your application, or because no service element matching the service name could be found in the configuration file, or because no endpoints were defined in the service element.
Solution:
Service name must include the namespace as it is defined, like SayoBroker.Services.XXXService.
You can also add some attribute in your code like the following.
<ServiceBehavior(Name:="XXXService", _
                 Namespace:="http://Sayo.Own.Services", _
                 ConfigurationName:="AuthService")> _

 

相关文章:

  • 2022-12-23
  • 2021-08-09
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
  • 2021-07-04
  • 2022-01-18
  • 2021-06-30
猜你喜欢
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2021-09-22
  • 2021-05-24
  • 2021-06-10
  • 2021-12-03
相关资源
相似解决方案