Consuming and using a web service from within VBScript to create a WHOIS tool
Posted by: Jerry Lees
Recently I posted a list of web services at a site that were public web services, in the article entitled A Great list of FREE publicly...
Recently I posted a list of web services at a site that were public web services, in the article entitled A Great list of FREE publicly...
Sometimes the command line is great for getting a script running and doing the task a script was intended to do, however, sometimes you simply don't want to add the overhead of opening a command prompt, navigating to the directory where your script is located, and then remembering the command line...
Recently, I had a situation where I had to pull down a HTML page to compare it to a known copy of the page. Certainly, IE or FireFox-- or Google's Chrome would have done the trick and I could have viewed the source. But that would require me to do...
Recently, I had a situation at the office where I needed to check a web.config file for the existence of a setting. Not a hard problem-- just open the file up an look for it, however, that becomes a little harder when your talking about 30 servers. So, I scripted it using the replace...
Within a VBScript class the Property block allows you to set the value of the property in the class. This statement works in conjunction with the Property Let and Property Get statements and can only be used inside a class inside VBScript-- and no where else in the script. This would in turn be...
Within a VBScript class the Property block allows you to set the name of the property in the class. This statement works in conjunction with the Property Set and Property Get statements and can only be used inside a class inside VBScript-- and no where else in the script. By default the...
The Function statement creates a function and allows you to list the arguments (if any) which are to be passed into the function. The major difference between a function and a subroutine, is that a function can return a value. To return a value you...
One thing that comes up frequently in my need to script tasks, is the ability to run a script from the command line, or as a scheduled job with parameters passed to it from the calling application. In a "set it and forget it" script it's not such a big deal to have arguments...
The VBScript Public statement creates a variable, function, subroutine, or class that is available outside the bounds of the scope it was created in and it functions very much like a global variable, except that it can be declared or initialized inside a non0-global code...
I recently began working on trying to figure out ways to troubleshoot real problems with a VBScript and give me some diagnostic information about the current state of the environment. As I build this script I plan on sharing pieces of it bit by bit with you, my readers. I also wanted to get back to...
