6

当我调用http://localhost/TestService.svc/GetColors时,我收到一个 Http (400) 错误请求。当我在提琴手中运行它时,我也会收到错误的请求。当我通过 wcf 测试客户端调用服务时,它工作正常。什么可能导致这种情况?

服务合约:

[ServiceContract]
public interface ITestService
{
    [OperationContract]
    string GetColors();
}

ITestService 的实现:

[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class TestService : ITestService
{
    public List<Color> GetColors()
    {
        List<Color> colors= new List<Color>();

        colors.Add(new Color { Name = "Red", Code = "123" });
        colors.Add(new Color { Name = "Blue", Code = "323" });
        colors.Add(new Color { Name = "Green", Code = "3394" });

       return colors;
    }
}

这是我的 web.config:

<?xml version="1.0"?>
<configuration>
   <system.web>
       <compilation debug="true" targetFramework="4.0"/>
   </system.web>
   <system.serviceModel>
      <bindings>
         <wsHttpBinding>
            <binding name="CustomAuthentication">
               <security mode="Message">
                  <message clientCredentialType="UserName"/>
               </security>
            </binding>
         </wsHttpBinding>
      </bindings>
      <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
      <services>
          <service name="TestService.TestService"
                behaviorConfiguration="CustomValidator" >
             <endpoint 
                 address="" 
                 binding="wsHttpBinding" 
                 bindingConfiguration="CustomAuthentication"
                 contract="TestService.ITestService">
                 <identity>
                    <dns value="localhost" />
                 </identity>
             </endpoint>
             <endpoint 
                 address="mex" 
                 binding="mexHttpBinding" 
                 contract="IMetadataExchange" />
             <host>
                 <baseAddresses>
                     <add baseAddress="http://localhost/TestService/" />
                 </baseAddresses>
             </host>
          </service>
      </services>
      <behaviors>
          <serviceBehaviors>
             <behavior name="CustomValidator">
                <serviceCredentials>
                   <userNameAuthentication userNamePasswordValidationMode="Custom"
                                customUserNamePasswordValidatorType="TestService.CustomUserNameValidator, TestService"/>
                   <serviceCertificate findValue="Test" storeLocation="LocalMachine" 
                         storeName="My" x509FindType="FindBySubjectName"/>
                </serviceCredentials>
                <serviceMetadata httpGetEnabled="True"/>
             </behavior>
             <behavior>
                <serviceMetadata httpGetEnabled="True"/>
                <serviceDebug includeExceptionDetailInFaults="False"/>
             </behavior>
         </serviceBehaviors>
      </behaviors>
   </system.serviceModel>
   <system.webServer>
       <modules runAllManagedModulesForAllRequests="true"/>
   </system.webServer>
</configuration>

当我调用它时,我只需打开任何浏览器并输入 url http://localhost/TestService.svc/GetColors。如果我通过开发环境执行此操作,我会看到 Http 400 bad request。如果我通过 IIS 执行此操作,我只会看到一个空白页。

这是内部异常:

<ExceptionString>System.Xml.XmlException: The body of the message cannot be read  
because it is empty.</ExceptionString>

关于我的 CustomUserNameValidation 的另一个问题:

我正在通过 UserNamePasswordValidator 的 Validate 方法实现自定义验证,但是当我通过 wcf 客户端调用 GetColors 之类的东西时,它不会调用 Validate 方法。我可以让它调用验证的唯一方法是直接在 GetColors 中调用 Validate(user,pass)。我认为如果您在 web.config 中正确设置了它,那么每次服务调用都会自动调用它。

4

2 回答 2

5

您的服务合同和服务实施似乎不匹配....

服务合同定义了一个string要从以下位置返回的单GetColors()

[ServiceContract]
public interface ITestService
{
    [OperationContract]
    string GetColors();
}

但是实现返回 a List<Color>

[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class TestService : ITestService
{
    public List<Color> GetColors()
    {

您是否有可能更改了服务实现,而忘记更新服务合同?

另外:由于这是一个带有 SOAP 服务的 SOAP 服务wsHttpBinding,因此您不能只通过浏览到其地址来从浏览器调用该方法 - 您需要使用 WCF 测试客户端(如您所说,它可以工作)。您也不能只从 Fiddler 调用它 - 您必须手动创建带有标题和正文的整个 SOAP 信封以及所有内容 - 这根本不是一件容易的事。

您可以尝试去http://localhost/TestService.svc?wsdl检查您是否会为该服务取回正确的 WSDL。

于 2011-05-13T18:38:58.300 回答
0

很多事情都可能导致这种情况。我建议您首先启用 WCF 跟踪,它通常很有帮助,因为它可以为您提供服务器端的实际情况输出。这是一个应该有帮助的链接:如何启用 WCF 跟踪

编辑:使用 WCF 需要注意的一件小事:与自动生成的 ole' ASMX Web 服务不同,它不允许您使用标准浏览器浏览到基地址。您可以浏览到元数据地址(mex 之一),但不能浏览到根。这只是设计使然(我相信不支持 HTTP 方法)。

于 2011-05-13T17:14:10.773 回答