Jul 10, 2008 #1 hujirong Technical User Aug 22, 2005 13 CA Hi I need to invoke a remote web service from my VBScript. Can anyone give me a sample code to make a HTTP call within VBScript? Thanks a lot. Jirong
Hi I need to invoke a remote web service from my VBScript. Can anyone give me a sample code to make a HTTP call within VBScript? Thanks a lot. Jirong
Jul 10, 2008 #2 tsuji Technical User Jul 25, 2001 10,675 US Using post, here is one. http://tek-tips.com/viewthread.cfm?qid=1478172Using get, it is even simpler. Change the url with query string attached and send null. Upvote 0 Downvote
Using post, here is one. http://tek-tips.com/viewthread.cfm?qid=1478172Using get, it is even simpler. Change the url with query string attached and send null.
Jul 11, 2008 Thread starter #3 hujirong Technical User Aug 22, 2005 13 CA Thanks a lot, tsuji. I will test it out this weekend. Can we use WinInet library to send the HTTP request in VBScript? Jirong Upvote 0 Downvote
Thanks a lot, tsuji. I will test it out this weekend. Can we use WinInet library to send the HTTP request in VBScript? Jirong
Jul 14, 2008 #4 tsuji Technical User Jul 25, 2001 10,675 US With msxml2.xmlhttp, you're using an automation object wrapped around urlmon which in turn is based on wininet. Upvote 0 Downvote
With msxml2.xmlhttp, you're using an automation object wrapped around urlmon which in turn is based on wininet.