...
Message | Description |
---|---|
HTTP Response Exception: | Occurs when a web server returns a "throwable http code". This error reflects what the web server is responding |
parseResponse exception - Unexpected response code from server | Occurs when netcurl tries to return parsed content but gets http code 400 or above from server |
The maximum tries of curl_exec() for <url> has been reached without any successful response [...] | Occurs during a http/https-request and the call has failed by a reason not affected by netcurl itself. In some cases, netcurl will try to repeat the http/https-request with different parameters during the first number of tries. If nothing goes success, this exception might be seen on your screen. |
The maximum tries of curl_exec() for <url> , during a try to make a SSL connection to work, has been reached without any successful response [...] | Occurs during https-requests when SSL connections fail and netcurl failovers are enabled. In this case, netcurl will for example lower the security level and recall an url again. If this call fails, this exception might be seen on your screen. |
exception from PHP/CURL at <functionName>: <message> | Invokes a curlexception (external), normally one defined as constant CURLE_<exceptionId> |
exception from soapClient: <message> | Invokes an exception (external), inherited from the SoapClient |
Internal error messages
Error messages thrown by the library itself.
Message | Code | Description |
---|---|---|
Host validation failed | NETCURL_HOSTVALIDATION_FAIL | |
curl init exception: curl library has been disabled system wide | NETCURL_CURL_DISABLED | |
curl init exception: curl library not found | NETCURL_CURL_MISSING | |
Could not set up a proper communications driver since none exist | NETCURL_NOCOMM_DRIVER | |
setDriverException: GuzzleStream does not exists | NETCURL_EXTERNAL_DRIVER_MISSING | |
Flags can not be empty | NETCURL_SETFLAG_KEY_EMPTY | |
Version requests are not allowed in current state (permissions required) | 403 | Occurs when getInternalRelease is invoked without permission |
<ip> is not a valid ip-address | NETCURL_IPCONFIG_NOT_VALID | |
HtmlParse exception: Can not parse DOMDocuments without the DOMDocuments class | NETCURL_DOMDOCUMENT_CLASS_MISSING | |
getParsedValue exception: Requested key was not found in parsed response | NETCURL_GETPARSEDVALUE_KEY_NOT_FOUND | |
SoapClient is not available in this system | NETCURL_SOAPCLIENT_CLASS_MISSING | |
SoapClient is not available in this system | NETCURL_SOAPCLIENT_CLASS_MISSING | |
Could not find any available transport for WordPress Driver | NETCURL_WP_TRANSPORT_ERROR | |
streams for guzzle is probably missing as I can't find the request method in the current class | NETCURL_GUZZLESTREAM_MISSING | |
NetCurlDriverException: No communication drivers are currently available (not even curl). | NETCURL_NO_DRIVER_AVAILABLE | |
The format of pemLocationData is not properly set | NETCURL_PEMLOCATIONDATA_FORMAT_ERROR | |
exception from SimpleSoap->getSoap(): Could not create SoapClient. Make sure that all settings and URLs are correctly configured | NETCURL_SIMPLESOAP_GETSOAP_CREATE_FAIL |
...