我在WCF中创建了一个服务 当我尝试添加其他服务时,我收到此错误
Failed to add a service. Service metadata may not be accessible.
Make sure your service is running and exposing metadata.
其他服务正常运行,但只有在我运行新服务时才会收到错误
这是我的web.config
<services>
<service name="namespace.CreateCompetition">
<endpoint address="mex" binding="mexHttpsBinding" contract="namespace.ICreateCompetition" />
</service>
<service name="namespace.ProblemStatement">
<endpoint address="mex" binding="mexHttpBinding" contract="namespace.IProblemStatement"/>
</service>
</services>
当我在ProblemStatement.svc之外运行解决方案时,它甚至没有显示此服务 仅列出CreateCompetition.svc