我有一个WCF服务,它使用wsHttpBind与消息安全和client凭据类型作为窗口,该服务有一个简单的方法
[OperationContract]
string SayHello();
public string SayHello()
{
return "HELLO";
}
<wsHttpBinding>
<binding name="WSHttpBinding">
<security mode="Message">
<message clientCredentialType="Windows" />
</security>
</binding>
</wsHttpBinding>
我正在尝试在powershell(版本
$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
但是,当我将绑定更改为使用basicHttpBind时,它可以正常工作
<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
有什么不同的,我需要做在我的脚本中使用wsHttpBind时?
提前感谢。
最终方法我仅将wsHttpBind用于WCF事务支持。然而,我很快意识到powershell脚本需要调用的服务方法调用与事务无关。因此,我使用Windows身份验证公开了另一个BasicHttpBindendpoint,它可以与以下脚本一起使用。请参阅下面的片段
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模块WcfPS,它也可以在库中使用,它可以帮助您使用元数据交换在内存中为目标服务创建代理。我已经使用此模块访问具有联邦安全性的服务,这在配置中非常繁重和困难,所以我相信它也适用于您。还有一篇博客文章。所有和所有模块允许您使用肥皂endpoint,而无需维护您通常在. net项目中找到的servicemodel配置文件和服务引用。
这是一个示例,其中$svcEndpoint
保存目标endpoint的值
这是从github页面复制的示例代码
$wsImporter=New-WcfWsdlImporter -Endpoint $svcEndpoint -HttpGet
$proxyType=$wsImporter | New-WcfProxyType
$endpoint=$wsImporter | New-WcfServiceEndpoint -Endpoint $svcEndpoint
$channel=New-WcfChannel -Endpoint $endpoint -ProxyType $proxyType
该模块并不完美,因此如果缺少某些内容,请随时贡献。
我为可能被视为不完整的答案道歉,但这不适合评论。