使用Powershell调用WCF服务方法

时间:2015-10-08 02:43:37

标签: c# wcf powershell wshttpbinding

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

[OperationContract]
string SayHello();

public string SayHello()
    {
        return "HELLO";
    } 

<wsHttpBinding>
    <binding name="WSHttpBinding">          
      <security mode="Message">
        <message clientCredentialType="Windows" />
      </security>
    </binding>
  </wsHttpBinding>

我正在尝试执行下面的powershell(版本&gt; = 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)

1 个答案:

答案 0 :(得分:0)

我创建了一个PowerShell模块WcfPS,该模块也可以在gallery 中使用,该模块可以帮助您使用元数据交换为目标服务创建内存代理。我已使用此模块访问具有联合安全性的服务,该服务在配置中非常繁琐且困难,因此我相信它也将对您有用。还有一个blog post。所有模块均允许您使用肥皂端点,而无需维护通常在.net项目中找到的servicemodel配置文件和servicereferences。

这是一个示例,其中$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

该模块不是完美的,因此如果缺少某些内容,请随时提供帮助。

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