Calling a web service from a script or batch file

We have a financial product that has built-in planning capabilities for launching night parties. This product can also use web services to launch each batch as needed.

I want to know if web services can be called from a .bat file or another type of package / script. If possible, we can call the batch file from the company planning service (Autosys).

I do not want to write exe to call it, if possible (circumstances are beyond my control).

KISS approach :)

+5
source share
4 answers

John'o, Microsoft.XmlHttp( \ )

.vbs a

Set http = CreateObject("Microsoft.XmlHttp")
http.open "GET", "http://www.webservicex.net/stockquote.asmx?WSDL", FALSE
http.send ""
WScript.Echo http.responseText
+5

KISS

bat

iexplore.exe <url to webpage that consumes the webservice>

?

0

IMHO, KISS , , -. , , , .

KISS Visual Studio, , .bat ..bat .

0

All Articles