我尝试使用Powershell使用WCF服务。当我使用basichttpbinding时,我可以使用以下命令使用它而不会出现问题
$ MyWcfService = New-WebServiceProxy -UseDefaultCredential -Uri" http://localhost:8733/TestService?wsdl"
$ MyWcfService.HelloWorld()
但是当我将绑定更改为wshttpbinding时,我收到以下错误
异常调用" HelloWorld"用" 0"参数:"底层连接已关闭:意外错误 发生在接收上。"
在行:1字符:1
- $ TestService.HelloWorld()
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- CategoryInfo:NotSpecified:(:) [],MethodInvocationException
- FullyQualifiedErrorId:WebException
如何使用wshttpbinding使用WCF服务?