Http_delete
Children Tags
(http_config | headergroup | cookiegroup | cookie | header) {0,*}
Events
http.delete Event
body
the http.delete data that was received along with the HTTP response.
headerout
each of the output headers received from the HTTP request response will generate an event with this attribute name as the prefix to the header attribute name. So if you had a header with the name X then your resulting event would be named event.headerout.x
bodysize
the size in bytes of the data that was received in the HTTP response.
status
the status code for the HTTP request.
bodyhash
the hash of the http.delete data that was received along with the HTTP response.
headerin
each of the input headers for the HTTP request will have an event with this attribute name as the prefix to the header attribute name. So if you had a header with the name X then your resulting event would be named event.headerin.x
statusmsg
the status code for the HTTP request.
uri
the exact uri passed to the http request.
Required Attributes
uri
the uri is the exact hostname, port and path to where the following http request should be sent. The format looks like so: http://server:port/path
Usage Examples
Example #1
<http_delete onFailure="fail" perfrun="true" uri="${dtf.http.uri}">
   
<header name="header1" value="XXXXX" />
   
<header name="header2" value="YYYY" />
</http_delete>
Example #2
<http_delete uri="${dtf.http.uri}" />