Operators
- HTTPGetJSONContent: Periodically connects to an HTTP endpoint to GET JSON content as a single tuple.
- HTTPGetStream: Connects to an HTTP endpoint, reads "chunks" of data and sends it to the output port.
- HTTPGetXMLContent: Periodically connects to an HTTP endpoint to GET XML content as a single tuple.
- HTTPParallelRequest: The operator HTTPParallelRequest issues HTTP requests in parallel asynchronously from the input stream.
- HTTPPost: This operator sends incoming tuples to the specified HTTP server as part of a POST request.
- HTTPRequest: Issue an HTTP request of the specified method for each input tuple.
Functions
- httpDelete(rstring, list<rstring>, rstring, rstring, int32): HTTP DELETE on the given url, using the username and password, if present.
- httpDelete(rstring, list<rstring>, rstring, rstring, int32, int32, int32): HTTP DELETE on the given url, using the username and password, if present.
- httpDelete(rstring, list<rstring>, rstring, rstring, rstring, rstring, rstring, rstring, rstring, int32, int32, int32): HTTP DELETE on the given url, using the username and password, if present and certificates.
- httpGet(rstring, list<rstring>, rstring, rstring, int32): HTTP GET on the given url, using the username and password, if present.
- httpGet(rstring, list<rstring>, rstring, rstring, int32, int32, int32): HTTP GET on the given url, using the username and password, if present.
- httpGet(rstring, list<rstring>, rstring, rstring, list<rstring>, int32): HTTP GET on the given url, using the username and password, if present.
- httpGet(rstring, list<rstring>, rstring, rstring, list<rstring>, int32, int32, int32): HTTP GET on the given url, using the username and password, if present.
- httpGet(rstring, list<rstring>, rstring, rstring, rstring, rstring, rstring, rstring, rstring, list<rstring>, int32, int32, int32): HTTP GET on the given url, using the username and password, if present, and using certificates/private keys.
- httpPost(rstring, rstring, list<rstring>, rstring, rstring, list<rstring>, int32): HTTP POST data to the given url using the username and password (if non-empty).
- httpPost(rstring, rstring, list<rstring>, rstring, rstring, list<rstring>, int32, int32, int32): HTTP POST data to the given url using the username and password (if non-empty).
- httpPost(rstring, rstring, list<rstring>, rstring, rstring, rstring, rstring, rstring, rstring, rstring, list<rstring>, int32, int32, int32): HTTP POST data to the given url using the username and password (if non-empty).
- httpPut(rstring, rstring, list<rstring>, rstring, rstring, list<rstring>, int32): HTTP PUT data to the given url using the username and password given if not empty.
- httpPut(rstring, rstring, list<rstring>, rstring, rstring, list<rstring>, int32, int32, int32): HTTP PUT data to the given url using the username and password given if not empty.
- httpPut(rstring, rstring, list<rstring>, rstring, rstring, rstring, rstring, rstring, rstring, rstring, list<rstring>, int32, int32, int32): HTTP PUT data to the given url using the username and password given if not empty.
- passThrough(rstring): This function passes the input string unchanged
- urlDecode(rstring): Decode a URL encoded rstring.
- urlEncode(rstring): URL encode the given rstring.