gpt4 book ai didi

java - 设置从 .bat 文件调用 Web 服务的授权

转载 作者:行者123 更新时间:2023-12-01 23:49:40 24 4
gpt4 key购买 nike

我正在尝试从 .bat 文件调用 Web 服务。如何设置服务调用的用户名和密码?

我正在尝试这个:

start iexplore https://hostname:port/myapplication/services/service/process?source=srcA

最佳答案

使用IE可以吗?我们需要用 wsh 来完成。这是我们在 vbs Matias Balsløw, Foxtrot Alliance 中执行此操作所需的所有信息

示例,

set IE = CreateObject("InternetExplorer.Application")
With IE

.Visible = True

.Navigate "https://hostname:port/myapplication/services/service/process?source=srcA"

Do While .Busy Or .readyState <> 4
'Do nothing, wait for the browser to load.
Loop

Do While .Document.ReadyState <> "complete"
'Do nothing, wait for the VBScript to load the document of the website.
Loop

'We have to change this two lines
.Document.getElementsByName("q").Item(0).Value = "Stackoverflow"
.Document.getElementsByName("btnK").Item(0).Click

End With

我们可以使用(在命令提示符中)执行它,

cscript/nologo [名称.vbs]

关于java - 设置从 .bat 文件调用 Web 服务的授权,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58224416/

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