You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The constant utl_http.http_version_1_1 is not available on Oracle 11. Although this is clearly an old version, it could still work.
See: #112
I will duplicate the constant in my code so that I don't rely on the Oracle package:
-- The HTTP protocol versions that can be used in the function begin_request
HTTP_VERSION_1_0 CONSTANT VARCHAR2(64) := 'HTTP/1.0'; -- HTTP 1.0
HTTP_VERSION_1_1 CONSTANT VARCHAR2(64) := 'HTTP/1.1'; -- HTTP 1.1
The text was updated successfully, but these errors were encountered:
The constant
utl_http.http_version_1_1
is not available on Oracle 11. Although this is clearly an old version, it could still work.See: #112
I will duplicate the constant in my code so that I don't rely on the Oracle package:
The text was updated successfully, but these errors were encountered: