尝试将Web引用添加到WCF服务时出现HTTP 400 Bad Request错误

时间:2010-05-25 21:28:06

标签: .net wcf wse3.0

我一直在尝试将传统的WSE 3 Web服务移植到WCF。由于目标是保持与WSE 3客户端的向后兼容性,因此我遵循了此article中的指导。

经过多次试验和错误,我可以从我的WSE 3客户端调用WCF服务。但是,我无法从Visual Studio 2005(安装了WSE 3)添加或更新此服务的Web引用。响应为“请求失败,HTTP状态为400:错误请求”。我尝试使用wsewsdl3实用程序生成代理时遇到同样的错误。我可以使用VS 2008添加服务引用。

我尝试在Windows 7和Windows 2008 Server R2上以IIS 7.5托管服务,结果相同。任何解决方案或故障排除建议?

以下是我的WCF服务的配置文件中的相关部分。

<system.serviceModel>
    <services>
      <service behaviorConfiguration="MyBehavior"
        name="MyService">
        <endpoint address="" binding="customBinding" bindingConfiguration="wseBinding"
          contract="IMyService" />
        <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
      </service>
    </services>

    <bindings>
      <customBinding>
        <binding name="wseBinding">
          <security authenticationMode="UserNameOverTransport" />
          <mtomMessageEncoding messageVersion="Soap11WSAddressingAugust2004" /> 
          <httpsTransport/>
        </binding>
      </customBinding>
    </bindings>

    <behaviors>
      <serviceBehaviors>
        <behavior name="MyBehavior">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
          <serviceCredentials>
            <userNameAuthentication userNamePasswordValidationMode="Custom"
              customUserNamePasswordValidatorType="MyCustomValidator" />
          </serviceCredentials>
          <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="MyRoleProvider" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
  </system.serviceModel>

UPDATE:在尝试了Paul的跟踪建议后,我确​​定异常是 System.Xml.XmlException:无法读取邮件正文,因为它是空的

不幸的是,这似乎没什么帮助。我注意到的另一件事是serviceMetadata元素有一个单独的httpsGetEnabled属性。我添加了它并将其设置为true,因为这是一个https服务,但结果是相同的。似乎由于某种原因,WCF没有意识到这是元数据请求。

2 个答案:

答案 0 :(得分:2)

您可以尝试在服务器上启用WCF跟踪。在</system.serviceModel>行之前插入

<diagnostics>

    <messageLogging 
     logEntireMessage="true" 
     logMalformedMessages="true" 
     logMessagesAtServiceLevel="true" 
     logMessagesAtTransportLevel="false" 
     maxMessagesToLog ="3000" />

</diagnostics>

</system.serviceModel>之后插入

<system.diagnostics>
    <sharedListeners>
        <add name="sharedListener" 
          type="System.Diagnostics.XmlWriterTraceListener"
          initializeData="c:\logs\tracelog.svclog" />
    </sharedListeners>
    <sources>
        <source name="System.ServiceModel" switchValue="Verbose, ActivityTracing" >
            <listeners>
                <add name="sharedListener" />
            </listeners>
        </source>
        <source name="System.ServiceModel.MessageLogging" switchValue="Verbose">
            <listeners>
                <add name="sharedListener" />
            </listeners>
        </source>
        <source name="ApplicationLogging" switchValue="Information" >
            <listeners>
                <add name="sharedListener" />
            </listeners>
        </source>
    </sources>
</system.diagnostics>   

复制错误后,启动WCF tracing tool并打开日志文件。可能会发生一些异常。

- 编辑 -

嗯,这是一个有趣的错误信息。它会带来更多Google搜索结果:

  1. Another stackoverflow question
  2. Could be fixed in next release of Windows 7
  3. TransferMode.StreamedResponse

答案 1 :(得分:0)

我会做以下事情:

<serviceMetadata httpGetEnabled="true" />

更改为:

<serviceMetadata httpsGetEnabled="true" />

另外。您是否设置了HTTPS绑定属性: http://blogs.msdn.com/b/wenlong/archive/2007/08/02/how-to-change-hostname-in-wsdl-of-an-iis-hosted-service.aspx