Sends a HTTP Get or Post request to a web server.
Parameters
80
.name=value
, one parameter per row. The following formatting variables can be included in a parameter.%time
- current time%object_name
- object name%object_destination
- object address%monitor_name
- monitor name%monitor_error
- monitor error message%monitor_error2
- monitor error message, no time stamp%sys_distributionlist
- distribution list%monitor_dependencystatus
- dependency tree status%object_description
- object description%network_name
- network name%network_contactinfo
- network contact informationExample: Get and post request with absolute URL
This example demonstrates two different ways of sending requests with variables to a web server, using either the get request or post request.
Get request
http://www.yourserver.com/test.php?test1=1&test2=2
Post request
http://www.yourserver.com/test.php
test1=1
test2=2
Example: Get and post request with a relative URL
This example demonstrates two different ways of sending requests with variables to a web server, using either the get request or post request. The URL is relative to the address of the object calling the action list.
Get request
test.php?test1=1&test2=2
Post request
test.php
test1=1
test2=2