WCF工具:此服务的元数据发布当前已禁用

时间:2010-04-15 10:27:56

标签: wcf castle-windsor

之前我问过这个问题并且没有在哪里,所以我再次要求,因为我现在绝望了!

如果我创建一个新的wcf项目,我可以立即浏览元数据。

如果我尝试 - 使用WCF工具时 - 我得到以下内容:

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

我按照那里的指示在其他一百万个地方找不到。

如果我将我的faciltity服务的内容复制到新创建的项目中,则会抱怨aspNetCompatibilityEnabled未启用。

所以我启用它,然后再次禁用mex,我得到:此服务的元数据发布目前已禁用。

再次!!

这让我发疯了 - 我试过尝试过网络上的每一个例子!!

这是我当前的配置 - 还没有客户端:

<system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
        <services>
            <service name="IbzStar.WebServices.UserServices" behaviorConfiguration="ServiceBehavior">
                <!-- Service Endpoints -->
                <endpoint address="" binding="wsHttpBinding" contract="IbzStar.WebServices.IUserServices">
                    <!-- 
              Upon deployment, the following identity element should be removed or replaced to reflect the 
              identity under which the deployed service runs.  If removed, WCF will infer an appropriate identity 
              automatically.
          -->
                    <identity>
                        <dns value="localhost"/>
                    </identity>
                </endpoint>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
            </service>
        </services>
        <behaviors>
            <serviceBehaviors>
                <behavior name="ServiceBehavior">
                    <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
                    <serviceMetadata httpGetEnabled="true"/>
                    <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
                    <serviceDebug includeExceptionDetailInFaults="false"/>
                </behavior>
            </serviceBehaviors>
        </behaviors>
    </system.serviceModel>

请有人在我的笔记本电脑进入轨道之前帮助我!!

瓦特://

1 个答案:

答案 0 :(得分:2)

是的,您需要确保正确定义服务名称,接口和配置定义。检查名称不匹配等。更好地从头开始定义配置而不是识别错误。