HttpRequest SQL Server Reference Documentation

HttpRequest

Current Version: 11.6.0

Chilkat.HttpRequest

Build structured HTTP requests for use with Chilkat.Http.

Chilkat.HttpRequest is a helper class for constructing HTTP requests that are sent by Chilkat.Http. It does not perform network communication on its own. Instead, it provides structured control over the request method, HTTP version, path, headers, query parameters, form parameters, content type, request body, multipart uploads, streamed file bodies, and diagnostic request generation.

Request construction

Build an HTTP request object with the method, path, version, headers, parameters, and body settings required by the target endpoint.

Form parameters

Add name/value parameters for form posts and API requests that expect structured form data.

Custom headers

Set request headers such as content type, accept headers, authorization headers, or application-specific metadata.

Request bodies

Provide body content for POST, PUT, PATCH, or other methods that send data to a server.

Multipart and file uploads

Construct multipart/form-data requests, attach file parts, or stream a file as the request body when the API requires upload content.

Diagnostics

Generate a textual representation of the request to inspect headers, paths, parameters, body structure, and upload formatting before sending.

Common pattern: Create a HttpRequest, set the HTTP method and path, add any headers, parameters, body data, or file parts, then pass the request object to the appropriate Chilkat.Http method for sending. Use HttpRequest for structured or multipart requests; use simpler Http methods directly when only a basic GET, POST, upload, or download is needed.

Object Creation

DECLARE @hr int
DECLARE @httpRequest int
EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @httpRequest OUT
IF @hr <> 0
BEGIN
    PRINT 'Failed to create ActiveX component'
    RETURN
END

-- ... use @httpRequest ...

EXEC @hr = sp_OADestroy @httpRequest

T-SQL uses the Chilkat ActiveX through the OLE Automation stored procedures. They must be enabled once on the server (EXEC sp_configure 'Ole Automation Procedures', 1; RECONFIGURE;), and the Chilkat ActiveX registered must match the bitness of the SQL Server instance (64-bit for a 64-bit SQL Server). To bind to a specific major version of Chilkat, append the major version number to the ProgID, such as sp_OACreate 'Chilkat.HttpRequest.11' for Chilkat v11.*.*.

sp_OACreate returns an object token (an int) that is passed as the first argument of every sp_OAMethod, sp_OAGetProperty and sp_OASetProperty call, and released with sp_OADestroy. Objects returned by methods (such as an HttpResponse or JsonObject) are also tokens received through an int OUT parameter; they must likewise be destroyed, and the OUT parameter is NULL when the method fails to return an object. Objects passed as arguments are passed by their token. When an OLE Automation procedure itself fails (non-zero @hr), sp_OAGetErrorInfo describes the error.

Data types: strings are nvarchar(4000); integers, booleans (1 or 0) and object tokens are int; dates are datetime. In the signatures on this page, @success, @iResult, @sResult and the like are the OUT variables receiving a method's return value, @iValue / @sValue receive or supply a property value, and the remaining @ variables are the method's arguments in order.

A string returned through an OUT parameter is limited to 4000 characters. For longer values, retrieve the result as a result set into a table variable instead of an OUT parameter, for example DECLARE @tmp TABLE (outputLine ntext) followed by INSERT INTO @tmp EXEC sp_OAGetProperty @httpRequest, 'LastErrorText'. See string length limitations for strings returned by sp_OAMethod calls.

Methods that pass or return raw byte arrays are not shown on this page, because varbinary(max) values cannot be exchanged through sp_OAMethod (see varbinary(max) limitation). Use the BinData-based alternatives (methods ending in Bd) or the base64 / hex string-encoded variants instead. Binary properties (such as LastBinaryResult) can be retrieved as a result set into a table variable, as shown in their signatures. Asynchronous (*Async) methods and event callbacks are not available from SQL Server.

Properties

Boundary
EXEC sp_OAGetProperty @httpRequest, 'Boundary', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'Boundary', @sValue
Introduced in version 9.5.0.49

Sets an explicit boundary string to be used in multipart/form-data requests. If no Boundary is set, then a boundary string is automaticaly generated as needed during the sending of a request.

More Information and Examples
top
Charset
EXEC sp_OAGetProperty @httpRequest, 'Charset', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'Charset', @sValue

Controls the character encoding used in the URL encoding of query params. The default value of this propoerty is utf-8.

top
ContentType
EXEC sp_OAGetProperty @httpRequest, 'ContentType', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'ContentType', @sValue

The ContentType property sets the Content-Type header field, and identifies the content-type of the HTTP request body. Common values are:

application/x-www-form-urlencoded
multipart/form-data
application/json
application/xml
If ContentType is set equal to the empty string, then no Content-Type header is included in the HTTP request.

top
DebugLogFilePath
EXEC sp_OAGetProperty @httpRequest, 'DebugLogFilePath', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'DebugLogFilePath', @sValue

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
EntireHeader
EXEC sp_OAGetProperty @httpRequest, 'EntireHeader', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'EntireHeader', @sValue

Composes and returns the entire MIME header of the HTTP request.

top
HttpVerb
EXEC sp_OAGetProperty @httpRequest, 'HttpVerb', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'HttpVerb', @sValue

The HttpVerb property should be set to the name of the HTTP method that appears on the start line of an HTTP request, such as GET, POST, PUT, DELETE, etc. It is also possible to use the various WebDav verbs such as PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK, etc. In general, the HttpVerb may be set to anything, even custom verbs recognized by a custom server-side app.

top
HttpVersion
EXEC sp_OAGetProperty @httpRequest, 'HttpVersion', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'HttpVersion', @sValue

The HTTP version in the request header. Defaults to 1.1. Can only be set to 1.0 or 1.1.

top
LastBinaryResult
INSERT INTO @tmp EXEC sp_OAGetProperty @httpRequest, 'LastBinaryResult'

This property is mainly used in SQL Server stored procedures to retrieve binary data from the last method call that returned binary data. It is only accessible if Chilkat.Global.KeepBinaryResult is set to 1. This feature allows for the retrieval of large varbinary results in an SQL Server environment, which has restrictions on returning large data via method calls, though temp tables can handle binary properties.

top
LastErrorHtml
EXEC sp_OAGetProperty @httpRequest, 'LastErrorHtml', @sValue OUT

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
EXEC sp_OAGetProperty @httpRequest, 'LastErrorText', @sValue OUT

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
EXEC sp_OAGetProperty @httpRequest, 'LastErrorXml', @sValue OUT

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
EXEC sp_OAGetProperty @httpRequest, 'LastMethodSuccess', @iValue OUT
EXEC sp_OASetProperty @httpRequest, 'LastMethodSuccess', @iValue

Indicates the success or failure of the most recent method call: 1 means success, 0 means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
LastStringResult
EXEC sp_OAGetProperty @httpRequest, 'LastStringResult', @sValue OUT

In SQL Server stored procedures, this property holds the string return value of the most recent method call that returns a string. It is accessible only when Chilkat.Global.KeepStringResult is set to TRUE. SQL Server has limitations on string lengths returned from methods and properties, but temp tables can be used to access large strings.

top
LastStringResultLen
EXEC sp_OAGetProperty @httpRequest, 'LastStringResultLen', @iValue OUT

The length, in characters, of the string contained in the LastStringResult property.

top
NumHeaderFields
EXEC sp_OAGetProperty @httpRequest, 'NumHeaderFields', @iValue OUT

Returns the number of request header fields.

top
NumParams
EXEC sp_OAGetProperty @httpRequest, 'NumParams', @iValue OUT

Returns the number of query parameters.

More Information and Examples
top
Path
EXEC sp_OAGetProperty @httpRequest, 'Path', @sValue OUT
EXEC sp_OASetProperty @httpRequest, 'Path', @sValue

The path of the resource requested. A path of / indicates the default document of a domain.

Explaining the Parts of a URL

http://example.com:8042/over/there?name=ferret#nose
\__/   \______________/\_________/ \________/ \__/
 |           |            |            |        |
scheme   domain+port     path        query   fragment

This property should be set to the path part of the URL. You may also include the query part in this property value. If the Content-Type of the request is NOT application/x-www-form-urlencoded, then you would definitely want to include query parameters in the path. If the Content-Type of the request IS application/x-www-form-urlencoded, the query parameters are passed in the body of the request. It is also possible to pass some query parameters via the path, and some in the body of a application/x-www-form-urlencoded request, but you shouldn't include the same parameter in both places. You would never need to include the fragment part. The fragment is nothing more than an instruction for a browser to automatically navigate to a particular location in the HTML page (assuming the request returns HTML, otherwise a fragment makes no sense).

More Information and Examples
top
SendCharset
EXEC sp_OAGetProperty @httpRequest, 'SendCharset', @iValue OUT
EXEC sp_OASetProperty @httpRequest, 'SendCharset', @iValue

Controls whether the charset is explicitly included in the content-type header field of the HTTP POST request. The default value of this property is 0.

top
VerboseLogging
EXEC sp_OAGetProperty @httpRequest, 'VerboseLogging', @iValue OUT
EXEC sp_OASetProperty @httpRequest, 'VerboseLogging', @iValue

If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
EXEC sp_OAGetProperty @httpRequest, 'Version', @sValue OUT

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

AddBdForUpload
EXEC sp_OAMethod @httpRequest, 'AddBdForUpload', @success OUT, @name, @remoteFilename, @byteData, @contentType
Introduced in version 9.5.0.76

Adds a file to an upload request where the contents of the file come from byteData.

name is an arbitrary name. (In HTML, it is the form field name of the input tag.)
remoteFilename is the name of the file to be created on the HTTP server.
byteData contains the bytes to be uploaded.
contentType contains is the value of the Content-Type header. An empty string may be passed to allow Chilkat to automatically determine the Content-Type based on the filename extension.

Returns 1 for success, 0 for failure.

More Information and Examples
top
AddFileForUpload
EXEC sp_OAMethod @httpRequest, 'AddFileForUpload', @success OUT, @name, @filePath

Adds a file to an upload request. To create a file upload request, set the ContentType property = multipart/form-data and then call AddFileForUpload, AddBytesForUpload, or AddStringForUpload for each file to be uploaded. This method does not read the file into memory. When the upload occurs, the data is streamed directly from the file, thus allowing for very large files to be uploaded without consuming large amounts of memory.

name is an arbitrary name. (In HTML, it is the form field name of the input tag.)
filePath is the path to an existing file in the local filesystem.

Returns 1 for success, 0 for failure.

More Information and Examples
top
AddFileForUpload2
EXEC sp_OAMethod @httpRequest, 'AddFileForUpload2', @success OUT, @name, @filePath, @contentType

Same as AddFileForUpload, but allows the Content-Type header field to be directly specified. (Otherwise, the Content-Type header is automatically determined based on the file extension.)

name is an arbitrary name. (In HTML, it is the form field name of the input tag.)
filePath is the path to an existing file in the local filesystem.

Returns 1 for success, 0 for failure.

More Information and Examples
top
AddHeader
EXEC sp_OAMethod @httpRequest, 'AddHeader', NULL, @name, @value

Adds a request header to the HTTP request. If a header having the same field name is already present, this method replaces it.

Note: Never explicitly set the Content-Length header field. Chilkat will automatically compute the correct length and add the Content-Length header to all POST, PUT, or any other request where the Content-Length needs to be specified. (GET requests always have a 0 length body, and therefore never need a Content-Length header field.)

More Information and Examples
top
AddMwsSignature
EXEC sp_OAMethod @httpRequest, 'AddMwsSignature', @success OUT, @domain, @mwsSecretKey
Introduced in version 9.5.0.66

Computes the Amazon MWS signature using the mwsSecretKey and adds the Signature parameter to the request. This method should be called for all Amazon Marketplace Web Service (Amazon MWS) HTTP requests. It should be called after all request parameters have been added.

Important: The Chilkat v9.5.0.75 release accidentally breaks Amazon MWS (not AWS) authentication. If you need MWS with 9.5.0.75, send email to support@chilkatsoft.com for a hotfix, or revert back to v9.5.0.73, or update to a version after 9.5.0.75.

The domain should be the domain of the request, such as one of the following:

  • mws.amazonservices.com
  • mws-eu.amazonservices.com
  • mws.amazonservices.in
  • mws.amazonservices.com.cn
  • mws.amazonservices.jp

Note: This method automatically adds or replaces the existing Timestamp parameter to the current system date/time.

Returns 1 for success, 0 for failure.

top
AddParam
EXEC sp_OAMethod @httpRequest, 'AddParam', NULL, @name, @value

Adds a request query parameter (name/value pair) to the HTTP request. The name and value strings passed to this method should not be URL encoded.

top
AddStringForUpload
EXEC sp_OAMethod @httpRequest, 'AddStringForUpload', @success OUT, @name, @filename, @strData, @charset

Same as AddFileForUpload, but the upload data comes from an in-memory string instead of a file.

Returns 1 for success, 0 for failure.

top
AddStringForUpload2
EXEC sp_OAMethod @httpRequest, 'AddStringForUpload2', @success OUT, @name, @filename, @strData, @charset, @contentType

Same as AddStringForUpload, but allows the Content-Type header field to be directly specified. (Otherwise, the Content-Type header is automatically determined based on the filename's file extension.)

Returns 1 for success, 0 for failure.

top
AddSubHeader
EXEC sp_OAMethod @httpRequest, 'AddSubHeader', @success OUT, @index, @name, @value
Introduced in version 9.5.0.55

Adds a request header to the Nth sub-header of the HTTP request. If a header having the same field name is already present, this method replaces it.

Returns 1 for success, 0 for failure.

top
GenerateRequestFile
EXEC sp_OAMethod @httpRequest, 'GenerateRequestFile', @success OUT, @path
Introduced in version 9.5.0.64

The same as GenerateRequestText, except the generated request is written to the file specified by path.

Returns 1 for success, 0 for failure.

More Information and Examples
top
GenerateRequestText
EXEC sp_OAMethod @httpRequest, 'GenerateRequestText', @sResult OUT

Returns the request text that would be sent if Http.SynchronousRequest was called.

Returns NULL on failure

top
GetHeaderField
EXEC sp_OAMethod @httpRequest, 'GetHeaderField', @sResult OUT, @name

Returns the value of a request header field.

Returns NULL on failure

top
GetHeaderName
EXEC sp_OAMethod @httpRequest, 'GetHeaderName', @sResult OUT, @index

Returns the Nth request header field name. Indexing begins at 0, and the number of request header fields is specified by the NumHeaderFields property.

Returns NULL on failure

top
GetHeaderValue
EXEC sp_OAMethod @httpRequest, 'GetHeaderValue', @sResult OUT, @index

Returns the Nth request header field value. Indexing begins at 0, and the number of request header fields is specified by the NumHeaderFields property.

Returns NULL on failure

top
GetParam
EXEC sp_OAMethod @httpRequest, 'GetParam', @sResult OUT, @name

Returns a request query parameter value by name.

Returns NULL on failure

top
GetParamName
EXEC sp_OAMethod @httpRequest, 'GetParamName', @sResult OUT, @index

Returns the Nth request query parameter field name. Indexing begins at 0, and the number of request query parameter fields is specified by the NumParams property.

Returns NULL on failure

More Information and Examples
top
GetParamValue
EXEC sp_OAMethod @httpRequest, 'GetParamValue', @sResult OUT, @index

Returns the Nth request query parameter field value. Indexing begins at 0, and the number of request query parameter fields is specified by the NumParams property.

Returns NULL on failure

More Information and Examples
top
GetUrlEncodedParams
EXEC sp_OAMethod @httpRequest, 'GetUrlEncodedParams', @sResult OUT

Returns the request parameters in URL encoded form (i.e. in the exact form that would be sent if the ContentType property was application/x-www-form-urlencoded). For example, if a request has two params: param1=abc 123 and param2=abc-123, then GetUrlEncodedParams would return abc+123&param2=abc%2D123

Returns NULL on failure

top
LoadBodyFromBd
EXEC sp_OAMethod @httpRequest, 'LoadBodyFromBd', @success OUT, @requestBody
Introduced in version 9.5.0.67

Uses the contents of the requestBody as the HTTP request body.

Returns 1 for success, 0 for failure.

top
LoadBodyFromFile
EXEC sp_OAMethod @httpRequest, 'LoadBodyFromFile', @success OUT, @filePath

The HTTP protocol is such that all HTTP requests are MIME. For non-multipart requests, this method may be called to set the MIME body of the HTTP request to the exact contents of filePath.
Note: A non-multipart HTTP request consists of (1) the HTTP start line, (2) MIME header fields, and (3) the MIME body. This method sets the MIME body.

Returns 1 for success, 0 for failure.

top
LoadBodyFromSb
EXEC sp_OAMethod @httpRequest, 'LoadBodyFromSb', @success OUT, @requestBody, @charset
Introduced in version 9.5.0.67

Uses the contents of the requestBody as the HTTP request body. The charset indicates the binary representation of the string, such as utf-8, utf-16, iso-8859-*, windows-125*, etc. Any of the character encodings supported at the link below are valid.

Returns 1 for success, 0 for failure.

More Information and Examples
top
LoadBodyFromString
EXEC sp_OAMethod @httpRequest, 'LoadBodyFromString', @success OUT, @bodyStr, @charset

The HTTP protocol is such that all HTTP requests are MIME. For non-multipart requests, this method may be called to set the MIME body of the HTTP request to the exact contents of bodyStr.
Note: A non-multipart HTTP request consists of (1) the HTTP start line, (2) MIME header fields, and (3) the MIME body. This method sets the MIME body.

charset indicates the charset, such as utf-8 or iso-8859-1, to be used. The HTTP body will contain the bodyStr converted to this character encoding.

Returns 1 for success, 0 for failure.

More Information and Examples
top
RemoveAllParams
EXEC sp_OAMethod @httpRequest, 'RemoveAllParams', NULL

Removes all request parameters.

More Information and Examples
top
RemoveHeader
EXEC sp_OAMethod @httpRequest, 'RemoveHeader', @success OUT, @name

Removes all occurrences of a HTTP request header field. Always returns 1.

Returns 1 for success, 0 for failure.

top
RemoveParam
EXEC sp_OAMethod @httpRequest, 'RemoveParam', NULL, @name

Removes a single HTTP request parameter by name.

More Information and Examples
top
SetFromUrl
EXEC sp_OAMethod @httpRequest, 'SetFromUrl', NULL, @url

Parses a URL and sets the Path and query parameters (NumParams, GetParam, GetParamName, GetParamValue).

More Information and Examples
top
StreamBodyFromFile
EXEC sp_OAMethod @httpRequest, 'StreamBodyFromFile', @success OUT, @filePath

Useful for sending HTTP requests where the body is a very large file. For example, to send an XML HttpRequest containing a very large XML document, one would set the HttpVerb = POST, the ContentType = text/xml, and then call StreamBodyFromFile to indicate that the XML body of the request is to be streamed directly from a file. When the HTTP request is actually sent, the body is streamed directly from the file, and thus the file never needs to be loaded in its entirety in memory.

Returns 1 for success, 0 for failure.

More Information and Examples
top
StreamChunkFromFile
EXEC sp_OAMethod @httpRequest, 'StreamChunkFromFile', @success OUT, @path, @offset, @numBytes
Introduced in version 9.5.0.55

This method is the same as StreamBodyFromFile, but allows for an offset and number of bytes to be specified. The offset and numBytes are integers passed as strings.

Returns 1 for success, 0 for failure.

top