当我拨打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>
当我打电话时,我只需打开任意浏览器并输入网址http://localhost/TestService.svc/GetColors
。如果我通过开发环境这样做,我会看到Http 400错误的请求。如果我通过IIS执行此操作,我只会看到一个空白页面。
这是InnerException:
<ExceptionString>System.Xml.XmlException: The body of the message cannot be read
because it is empty.</ExceptionString>
关于我的CustomUserNameValidation的另一个问题:
我正在通过UserNamePasswordValidator的验证方法实现自定义验证,但是当我通过wcf客户端调用类似GetColors的东西时,它不会调用Validate方法。我可以将它调用Invoke验证的唯一方法是在GetColors中直接调用Validate(user,pass)。如果你在web.config中正确设置它,我认为每次服务调用都会自动调用它。
答案 0 :(得分:5)
您的服务合同和服务实施似乎不匹配......
服务合同定义了从string
返回的单个GetColors()
:
[ServiceContract]
public interface ITestService
{
[OperationContract]
string GetColors();
}
但是实现返回List<Color>
而不是:
[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class TestService : ITestService
{
public List<Color> GetColors()
{
您是否有可能更改服务实施,忘记更新服务合同?
另外:由于这是一个wsHttpBinding
的SOAP服务,不能只是通过浏览到其地址从浏览器调用该方法 - 您需要使用WCF测试客户端(哪个有效,正如你所说)。你也不能从Fiddler那里调用它 - 你必须手动创建包含标题和正文的整个SOAP信封 - 根本不是一件容易的事。
您可以尝试访问http://localhost/TestService.svc?wsdl
以检查您是否将获得该服务的正确WSDL。
答案 1 :(得分:0)
很多事情都可能导致这种情况。我建议你首先启用WCF跟踪,它通常非常有用,因为它为你提供了实际发生的服务器端输出。以下是一个应该有用的链接:How to enable WCF tracing
编辑:WCF需要注意的一点:与自动生成的'ASMX Web服务不同,它不允许您使用标准浏览器浏览到基地址。您可以浏览到元数据地址(mex),但不能浏览到根目录。这只是设计(我相信不支持HTTP方法)。