```
### HTTP connector
-parameters: url, url-suffix, post, post\_json, cafile, capath, timeout (default 2000)
+parameters: url, url-suffix, post, post\_json, timeout (default 2000)
```
remote-connection-string=http:url=http://localhost:63636/dns,url-suffix=.php
URL should not end with /, and url-suffix is optional, but if you define it, it's up to you to write the ".php" or ".json". Lack of dot causes lack of dot in URL. Timeout is divided by 1000 because libcurl only supports seconds, but this is given in milliseconds for consistency with other connectors.
-You can use HTTPS requests. If cafile and capath is left empty, remote SSL certificate is not checked. HTTP Authentication is not supported. SSL support requires that your cURL is compiled with it.
+HTTPS is not supported. HTTP Authentication is not supported.
### ZeroMQ connector
parameters: endpoint, timeout (default 2000ms)
int timeout;
bool d_post;
bool d_post_json;
- std::string d_capath;
- std::string d_cafile;
bool json2string(const rapidjson::Value &input, std::string &output);
void restful_requestbuilder(const std::string &method, const rapidjson::Value ¶meters, YaHTTP::Request& req);
void post_requestbuilder(const rapidjson::Document &input, YaHTTP::Request& req);