WebUrlDelete Function

Action

Sends a DELETE request to the HTTP/1.1 server. The DELETE method requests that the origin server delete the resource identified by the Request-URI. A successful response SHOULD be 200 (OK) if the response includes an entity describing the status, 202 (Accepted) if the action has not yet been enacted, or 204 (No Content) if the response is OK but does not include an entity.

Include file

WebAPI.bdh

Syntax

WebUrlDelete( in sUrl  : string,
              in fWait : float optional): boolean;

Return value

  • true if the worker thread communicating with the server could be started successfully

  • false otherwise

Parameter Description
sUrl Complete URL to the file on the server
fWait Minimum time or minimum mean time that this function call has to last (optional). Default value is 0.0

Example

dcltrans
transaction TWebHttp11
  begin
    // To have a resource we can delete, we first have to
    // upload a test file to the server.
    // Note that you will need write permissions
    WebUrlPutBin("http://standardhost/test.html","1234567890", 10, "text/txt", 0.0);
    // And now let’s delete it again:
    WebUrlDelete("http://standardhost/test.html", 0.0);
  end TWebHttp11;

Sample scripts

WebHttp11.bdf