使用Powershell调用WCF服务方法

本文关键字:服务 方法 WCF 调用 Powershell 使用 | 更新日期: 2023-09-27 18:16:39

我有一个WCF服务,它使用带有消息安全性和clientcredentialtype的wsHttpBinding作为窗口,并且该服务有一个简单的方法

[OperationContract]
string SayHello();
public string SayHello()
    {
        return "HELLO";
    } 
<wsHttpBinding>
    <binding name="WSHttpBinding">          
      <security mode="Message">
        <message clientCredentialType="Windows" />
      </security>
    </binding>
  </wsHttpBinding>

我试图在powershell(版本>= 2)上执行以下命令,我得到以下错误

$wshttpbinding= New-WebServiceProxy -uri http://localhost:52871/Service.svc -Credential DOMAIN'gop
PS> $wshttpbinding.SayHello.Invoke()
    Exception calling "SayHello" with "0" argument(s): "The operation has timed out"
    At line:1 char:1
    + $wshttpbinding.SayHello.Invoke()
    + ~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : DotNetMethodException

然而,当我改变绑定使用basicHttpBinding,它工作良好

<basicHttpBinding>
          <binding name="basicconfig" 
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Windows" />
      </security>
    </binding>
</basicHttpBinding>
$basichttpbinding= New-WebServiceProxy -uri http://localhost:52871/Service.svc -Credential DOMAIN'gop
PS> $basichttpbinding.SayHello.Invoke()
HELLO   

在使用wsHttpBinding时,我需要在脚本中做任何不同的事情吗?

提前感谢。

最终方法我使用wsHttpBinding仅用于WCF事务支持。然而,我很快意识到,powershell脚本要求调用的服务方法调用与事务无关。因此,我使用Windows身份验证暴露了另一个BasicHttpBinding端点,它与下面的脚本一起工作。参见下面的代码片段

Try
{
    $cred = new-object -typename System.Management.Automation.PSCredential ` -argumentlist $username, $password -ErrorAction Stop
}
Catch {
    LogWrite "Could not create PS Credential"
    $credErrorMessage = $_.Exception.Message
    LogWrite $credErrorMessage
    Break
}
Try{
    $service=New-WebServiceProxy –Uri $url -Credential $cred -ErrorAction Stop
} Catch {
    LogWrite "Could not create WebServiceProxy with $url"
    $proxyErrorMessage = $_.Exception.Message
    LogWrite $proxyErrorMessage
    Break
}
# Create Request Object
$namespace = $service.getType().namespace
$req = New-Object ($namespace + ".UpdateJobRequest")    
LogWrite "Calling service..."
$response = $service.UpdateJob($req)

使用Powershell调用WCF服务方法

我已经创建了一个PowerShell模块WcfPS,它也可以在图库中获得,它可以帮助您使用目标服务的元数据交换在内存中创建代理。我已经使用这个模块访问具有联邦安全性的服务,这在配置中是非常繁重和困难的,所以我相信它也适用于您。还有一篇博客文章。所有的模块都允许您使用soap端点,而无需维护通常在。net项目中发现的服务模型配置文件和服务引用。

这个示例中,$svcEndpoint保存目标端点

的值
  1. 元数据交换端点探测
  2. 为代理创建内存类型
  3. 根据导入的配置创建端点
  4. 创建通道(代理实例)

这是从github页面

复制的示例代码
$wsImporter=New-WcfWsdlImporter -Endpoint $svcEndpoint -HttpGet
$proxyType=$wsImporter | New-WcfProxyType
$endpoint=$wsImporter | New-WcfServiceEndpoint -Endpoint $svcEndpoint
$channel=New-WcfChannel -Endpoint $endpoint -ProxyType $proxyType

该模块并不完美,所以如果有什么缺失,请随时贡献。

我为可能被认为是不完整的答案而道歉,但这并不适合在评论中。