无法在wcf中添加新服务。无法添加服务。可能无法访问服务元数据

时间:2014-03-20 06:30:53

标签: c# web-services wcf

我在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

0 个答案:

没有答案