我正在编写一个客户端应用程序,它将使用Web服务并且应该能够获取数据。使用webservice的wsdl我在客户端应用程序中生成了代理类。我按照"添加服务参考"生成代理的方法。现在,当我尝试访问webservice上的方法时,我收到此错误:" UsernameToken和Signature都未提供"。我的第一个疑问是它需要凭据,我试图在我的代码中提供它们。但我仍然看到了这个问题。我在代码中提供凭据的原因是因为我们有2个Web服务,一个是QA,另一个是生产。他们的wsdl是相同的,但凭据是不同的,所以我将使凭据可配置,以便最终用户可以根据他们想要访问的Web服务输入它。
如果有什么我遗失的,请告诉我。感谢
这是我的代码(这是一个测试webservice调用的小测试片段):
GetApplicationServiceClient client= new GetApplicationServiceClient();
client.ClientCredentials.UserName.UserName = "userId";
client.ClientCredentials.UserName.Password = "password";
int[] input= new int[3]{1,2,3};
GetAppResponse response= new GetAppResponse();
foreach (var item in input)
{
response = client.getAppById(item);
}
这是我的配置文件:
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="GetApplicationServiceSoapBinding">
<security mode="Transport" />
</binding>
<binding name="GetApplicationServiceSoapBinding1" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://TestService.com/bo-service/v2/ws/get-application"
binding="basicHttpBinding" bindingConfiguration="GetApplicationServiceSoapBinding"
contract="TestService.GetApplicationService" name="GetApplicationServicePort" />
</client>
</system.serviceModel>
答案 0 :(得分:0)
假设您的网络服务提供带有基本身份验证的传输安全性,请尝试使用
...
<binding name="GetApplicationServiceSoapBinding">
<security mode="Transport">
<transport clientCredentialType="Basic" />
</security>
</binding>
...