This task will make an HTTP request to the provided URL and match the response against the provided regular expression. If an regular expression is provided and doesn't match the build will fail. You need an installed version of HTTP_Request2 to use this task.
Table C.27: Attributes
Name | Type | Description | Default | Required |
---|---|---|---|---|
url | String | The request URL | n/a | Yes |
responseRegex | String | The regular expression for matching the response | n/a | No |
authUser | String | The authentication user name | n/a | No |
authPassword | String | The authentication password | n/a | No |
authScheme | String | The authentication scheme | basic | No |
verbose | Boolean | Whether to enable detailed logging | false | No |
observerEvents | String | Comma-separated list of events to log when verbose
is set to true | connect, sentHeaders, sentBodyPart, receivedHeaders, receivedBody, disconnect | No |
method | String | The HTTP method of the request, currently only GET or POST supported | GET | No |
<http-request url="http://my-production.example.com/check-deployment.php"/>
Just perform a HTTP request to the given URL.
<http-request url="http://my-production.example.com/check-deployment.php" responseRegex="/Heartbeat/" verbose"true" observerEvents="connect, disconnect"/>
Perform a HTTP request to the given URL and matching the response against the given regex pattern. Enable detailed logging and log only the specified events.
<http-request url="http://my-production.example.com/check-deployment.php"> <config name="adapter" value="HTTP_Request2_Adapter_Curl"/> <header name="user-agent" value="Phing HttpRequestTask"/> </http-request>
Perform a HTTP request to the given URL. Setting request adapter to curl instead of socket. Setting an additional header.
<http-request url="http://my-production.example.com/check-deployment.php" verbose"true" method="POST"> <postparameter name="param1" value="value1" /> <postparameter name="param2" value="value2" /> </http-request>
Perform an HTTP POST request to the given URL. Setting POST request parameters to emulate form submission.
config
Holds additional config data. See HTTP_Request2 for supported values.
Table C.28: Attributes
Name | Type | Description | Default | Required |
---|---|---|---|---|
name | String | Config parameter name | n/a | Yes |
value | Mixed | Config value | n/a | Yes |
header
Holds additional header name
and
value
.
Table C.29: Attributes
Name | Type | Description | Default | Required |
---|---|---|---|---|
name | String | Header name | n/a | Yes |
value | String | Header value | n/a | Yes |