从批处理文件调用Web服务 [英] Invoke a Webservice from a Batch file

查看:142
本文介绍了从批处理文件调用Web服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要创建一个批处理文件,该文件将调用Web服务中包含的特定Web方法.

为此需要代码.

我怎么知道脚本已成功执行

I need to create a batch file that will call a particular web method contained in the webservice.

Need code for this.

How will i know that the script has successfully executed

推荐答案

将以下VBScript创建为WebCall.vbs

Create the following VBScript as WebCall.vbs

Set http = CreateObject("Microsoft.XmlHttp")
http.open "GET", "http://www.mywebservice.com/webmethod.asmx?WSDL", FALSE
http.send ""
WScript.Echo http.responseText




然后,在命令行提示符下以
方式运行脚本




Then, run the script at command line prompt as

C:\>WebCall.vbs


这篇关于从批处理文件调用Web服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆