|
How to use ShotIp in your scripts
It's very easy.
To use ShotIp you should create the SHOTIP.Connection object:
Set tcpip=CreateObject("SHOTIP.Connection")
This is the root object of ShotIp.
After that, there are several possible ways:
- Use the http property to get the HttpConnection object:
Set http=tcpip.http
- Use the mail property to get the Mail object:
Set http=tcpip.http
- Use the low level methods: Open, Close, Send, Receive to exchange data with remote host
- Use the Ping method to ping other host
Set pingdata=tcpip.Ping(otherhost)
The detailed information about methods, properties, and usage of these objects you can find in the Examples and
methods & properties sections
|
|
|