gpt4 book ai didi

.net - 如何从 PowerShell 访问 Web 服务?

转载 作者:可可西里 更新时间:2023-11-01 12:15:10 24 4
gpt4 key购买 nike

我想从 Windows PowerShell 中使用给定的(简单的)WSDL 访问 Web 服务。

有没有简单的方法来做到这一点?

最佳答案

# Working example of how to use PowerShell (version >= 2) to access a web service.
$svc = New-WebServiceProxy –Uri ‘http://www.webservicex.net/stockquote.asmx?WSDL’

$svc | Get-Member # Use Get-Member to discover the interface of a web service.
# Get stock quotes.
$svc.GetQuote(‘BA’) # Boeing
$svc.GetQuote(‘AMZN’) # Amazon
$svc.GetQuote(‘SBUX’) # Starbucks

关于.net - 如何从 PowerShell 访问 Web 服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2022678/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com