目前已禁用此服务的元数据发布

时间:2015-03-18 15:07:08

标签: c# asp.net

我收到此错误

  

此服务的元数据发布目前已停用。

我的web.config文件是

 <?xml version="1.0"?>
 <configuration>
    <system.web>
        <compilation debug="true" targetFramework="4.0"/>
    </system.web>

    <system.serviceModel>
        <services>
            <service name="WCFService1.Service">
                <endpoint address=""  binding="wsHttpBinding" contract="WCFService1.IService"  /> 
                <endpoint address="mex" binding="mexHttpBinding"   contract="IMetadataExchange" />
            </service>
        </services>
        <behaviors>
            <serviceBehaviors>
                <behavior name="ServiceBehavior">
                    <serviceMetadata httpGetEnabled="true"/>
                    <serviceDebug includeExceptionDetailInFaults="false" httpHelpPageEnabled="True"/>
                </behavior>
            </serviceBehaviors>
        </behaviors>

        <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    </system.serviceModel>

    <system.webServer>
        <modules runAllManagedModulesForAllRequests="true"/>
        <directoryBrowse enabled="true"/>
    </system.webServer>
</configuration>

Service.cs

public class Service : IService1    
public interface IService1
{
    [OperationContract]

0 个答案:

没有答案