Upload Unicode C Reference Documentation

Upload

Current Version: 9.5.0.97

This is a class to upload files over HTTP and HTTPS to a web server.

  • Supports both HTTP and HTTPS protocols.
  • Progress monitoring with percentage completion and "heartbeat" monitoring.
  • Abort capability.
  • Asynchronous uploads with real-time monitoring of percentage completion and number of bytes transferred.
  • Add arbitrary HTTP POST form parameters to your upload.
  • Upload multiple files in a single transaction.
  • Add arbitrary (custom) HTTP header fields to the HTTP upload.
  • Retrieve the HTTP response status, header, and body returned by the web server.

Create/Dispose

HCkUploadW instance = CkUploadW_Create();
// ...
CkUploadW_Dispose(instance);
HCkUploadW CkUploadW_Create(void);

Creates an instance of the HCkUploadW object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkUploadW_Dispose(HCkUploadW handle);

Objects created by calling CkUploadW_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkUploadW_Dispose.

Callback Functions

Callback Functions introduced in Chilkat v9.5.0.56
void CkUploadW_setAbortCheck(HCkUploadW cHandle, BOOL (*fnAbortCheck)(void));

Provides the opportunity for a method call to be aborted. If TRUE is returned, the operation in progress is aborted. Return FALSE to allow the current method call to continue. This callback function is called periodically based on the value of the HeartbeatMs property. (If HeartbeatMs is 0, then no callbacks are made.) As an example, to make 5 AbortCheck callbacks per second, set the HeartbeatMs property equal to 200.

void CkUploadW_setPercentDone(HCkUploadW cHandle, BOOL (*fnPercentDone)(int pctDone));

Provides the percentage completed for any method that involves network communications or time-consuming processing (assuming it is a method where a percentage completion can be measured). This callback is only called when it is possible to know a percentage completion, and when it makes sense to express the operation as a percentage completed. The pctDone argument will have a value from 1 to 100. For methods that complete very quickly, the number of PercentDone callbacks will vary, but the final callback should have a value of 100. For long running operations, no more than one callback per percentage point will occur (for example: 1, 2, 3, ... 98, 99, 100).

This callback counts as an AbortCheck callback, and takes the place of the AbortCheck event when it fires.

The return value indicates whether the method call should be aborted, or whether it should proceed. Return TRUE to abort, and FALSE to proceed.

void CkUploadW_setProgressInfo(HCkUploadW cHandle, void (*fnProgressInfo)(const wchar_t *name, const wchar_t *value));

This is a general callback that provides name/value information about what is happening at certain points during a method call. To see the information provided in ProgressInfo callbacks, if any, write code to handle this event and log the name/value pairs. Most are self-explanatory.

void CkUploadW_setTaskCompleted(HCkUploadW cHandle, void (*fnTaskCompleted)(HCkTaskW hTask));

Called in the background thread when an asynchronous task completes. (Note: When an async method is running, all callbacks are in the background thread.)

Properties

AbortCurrent
BOOL CkUploadW_getAbortCurrent(HCkUploadW cHandle);
void CkUploadW_putAbortCurrent(HCkUploadW cHandle, BOOL newVal);
Introduced in version 9.5.0.58

When set to TRUE, causes the currently running method to abort. Methods that always finish quickly (i.e.have no length file operations or network communications) are not affected. If no method is running, then this property is automatically reset to FALSE when the next method is called. When the abort occurs, this property is reset to FALSE. Both synchronous and asynchronous method calls can be aborted. (A synchronous method call could be aborted by setting this property from a separate thread.)

top
BandwidthThrottleUp
int CkUploadW_getBandwidthThrottleUp(HCkUploadW cHandle);
void CkUploadW_putBandwidthThrottleUp(HCkUploadW cHandle, int newVal);
Introduced in version 9.5.0.49

If non-zero, limits (throttles) the upload bandwidth to approximately this maximum number of bytes per second. The default value of this property is 0.

More Information and Examples
top
ChunkSize
int CkUploadW_getChunkSize(HCkUploadW cHandle);
void CkUploadW_putChunkSize(HCkUploadW cHandle, int newVal);

The chunk size (in bytes) used by the underlying TCP/IP sockets for uploading files. The default value is 65535.

top
ClientIpAddress
void CkUploadW_getClientIpAddress(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putClientIpAddress(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_clientIpAddress(HCkUploadW cHandle);
Introduced in version 9.5.0.49

The IP address to use for computers with multiple network interfaces or IP addresses. For computers with a single network interface (i.e. most computers), this property should not be set. For multihoming computers, the default IP address is automatically used if this property is not set.

The IP address is a string such as in dotted notation using numbers, not domain names, such as "165.164.55.124".

top
CurrentFilename
void CkUploadW_getCurrentFilename(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_currentFilename(HCkUploadW cHandle);
Introduced in version 9.5.0.90

The current filename being uploaded while an asynchronous upload is in progress.

top
DebugLogFilePath
void CkUploadW_getDebugLogFilePath(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putDebugLogFilePath(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_debugLogFilePath(HCkUploadW cHandle);

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

top
Expect100Continue
BOOL CkUploadW_getExpect100Continue(HCkUploadW cHandle);
void CkUploadW_putExpect100Continue(HCkUploadW cHandle, BOOL newVal);

When TRUE, the request header will included an "Expect: 100-continue" header field. This indicates that the server should respond with an intermediate response of "100 Continue" or "417 Expectation Failed" response based on the information available in the request header. This helps avoid situations such as limits on upload sizes. It allows the server to reject the upload, and then the client can abort prior to uploading the data.

The default value of this property is TRUE.

top
HeartbeatMs
int CkUploadW_getHeartbeatMs(HCkUploadW cHandle);
void CkUploadW_putHeartbeatMs(HCkUploadW cHandle, int newVal);

This property is only valid in programming environment and languages that allow for event callbacks.

Specifies the time interval in milliseconds between AbortCheck events. An Upload operation can be aborted via the AbortCheck event.

top
Hostname
void CkUploadW_getHostname(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putHostname(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_hostname(HCkUploadW cHandle);

The hostname of the HTTP server that is the target of the upload. Do not include "http://" in the hostname. It can be a hostname, such as "www.chilkatsoft.com", or an IP address, such as "168.144.70.227".

top
IdleTimeoutMs
int CkUploadW_getIdleTimeoutMs(HCkUploadW cHandle);
void CkUploadW_putIdleTimeoutMs(HCkUploadW cHandle, int newVal);

A timeout in milliseconds. The default value is 30000. If the upload hangs (i.e. progress halts) for more than this time, the component will abort the upload. (It will timeout.)

top
LastErrorHtml
void CkUploadW_getLastErrorHtml(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_lastErrorHtml(HCkUploadW cHandle);

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
void CkUploadW_getLastErrorText(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_lastErrorText(HCkUploadW cHandle);

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
void CkUploadW_getLastErrorXml(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_lastErrorXml(HCkUploadW cHandle);

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastMethodSuccess
BOOL CkUploadW_getLastMethodSuccess(HCkUploadW cHandle);
void CkUploadW_putLastMethodSuccess(HCkUploadW cHandle, BOOL newVal);

Indicate whether the last method call succeeded or failed. A value of TRUE indicates success, a value of FALSE indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = TRUE and failure = FALSE.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to TRUE. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
Login
void CkUploadW_getLogin(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putLogin(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_login(HCkUploadW cHandle);

The HTTP login for sites requiring authentication. Chilkat Upload supports Basic HTTP authentication.

top
NumBytesSent
unsigned long CkUploadW_getNumBytesSent(HCkUploadW cHandle);

After an upload has completed, this property contains the number of bytes sent. During asynchronous uploads, this property contains the current number of bytes sent while the upload is in progress.

top
Password
void CkUploadW_getPassword(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putPassword(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_password(HCkUploadW cHandle);

The HTTP password for sites requiring authentication. Chilkat Upload supports Basic HTTP authentication.

top
Path
void CkUploadW_getPath(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putPath(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_path(HCkUploadW cHandle);

The path part of the upload URL. Some examples:

If the upload target (i.e. consumer) URL is: http://www.freeaspupload.net/freeaspupload/testUpload.asp, then

Hostname = "www.freeaspupload.net" Path = "/freeaspupload/testUpload.asp"
If the upload target URL is https://www.chilkatsoft.com/cgi-bin/ConsumeUpload.exe, then
Hostname = "www.chilkatsoft.com" Path = "/cgi-bin/ConsumeUpload.exe"

top
PercentDoneScale
int CkUploadW_getPercentDoneScale(HCkUploadW cHandle);
void CkUploadW_putPercentDoneScale(HCkUploadW cHandle, int newVal);
Introduced in version 9.5.0.49

This property is only valid in programming environment and languages that allow for event callbacks.

Sets the value to be defined as 100% complete for the purpose of PercentDone event callbacks. The defaut value of 100 means that at most 100 event PercentDone callbacks will occur in a method that (1) is event enabled and (2) is such that it is possible to measure progress as a percentage completed. This property may be set to larger numbers to get more fine-grained PercentDone callbacks. For example, setting this property equal to 1000 will provide callbacks with .1 percent granularity. For example, a value of 453 would indicate 45.3% competed. This property is clamped to a minimum value of 10, and a maximum value of 100000.

top
PercentUploaded
unsigned long CkUploadW_getPercentUploaded(HCkUploadW cHandle);

Contains the current percentage completion (0 to 100) while an asynchronous upload is in progress.

top
Port
int CkUploadW_getPort(HCkUploadW cHandle);
void CkUploadW_putPort(HCkUploadW cHandle, int newVal);

The port number of the upload target (i.e. consumer) URL. The default value is 80. If SSL is used, this should be set to 443 (typically).

top
PreferIpv6
BOOL CkUploadW_getPreferIpv6(HCkUploadW cHandle);
void CkUploadW_putPreferIpv6(HCkUploadW cHandle, BOOL newVal);

If TRUE, then use IPv6 over IPv4 when both are supported for a particular domain. The default value of this property is FALSE, which will choose IPv4 over IPv6.

top
ProxyDomain
void CkUploadW_getProxyDomain(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putProxyDomain(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_proxyDomain(HCkUploadW cHandle);

The domain name of a proxy host if an HTTP proxy is used. Do not include the "http://". The domain name may be a hostname, such as "www.chilkatsoft.com", or an IP address, such as "168.144.70.227".

top
ProxyLogin
void CkUploadW_getProxyLogin(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putProxyLogin(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_proxyLogin(HCkUploadW cHandle);

If an HTTP proxy is used and it requires authentication, this property specifies the HTTP proxy login.

top
ProxyPassword
void CkUploadW_getProxyPassword(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putProxyPassword(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_proxyPassword(HCkUploadW cHandle);

If an HTTP proxy is used and it requires authentication, this property specifies the HTTP proxy password.

top
ProxyPort
int CkUploadW_getProxyPort(HCkUploadW cHandle);
void CkUploadW_putProxyPort(HCkUploadW cHandle, int newVal);

The port number of a proxy server if an HTTP proxy is used.

top
ResponseBody
void CkUploadW_getResponseBody(HCkUploadW cHandle, HCkByteData retval);

An HTTP upload is nothing more than an HTTP POST that contains the content of the files being uploaded. Just as with any HTTP POST or GET, the server should send an HTTP response that consists of header and body.

This property contains the body part of the HTTP response.

top
ResponseBodyStr
void CkUploadW_getResponseBodyStr(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_responseBodyStr(HCkUploadW cHandle);
Introduced in version 9.5.0.83

Returns the response body as a string.

top
ResponseHeader
void CkUploadW_getResponseHeader(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_responseHeader(HCkUploadW cHandle);

An HTTP upload is nothing more than an HTTP POST that contains the content of the files being uploaded. Just as with any HTTP POST or GET, the server should send an HTTP response that consists of header and body.

This property contains the header part of the HTTP response.

top
ResponseStatus
int CkUploadW_getResponseStatus(HCkUploadW cHandle);

The HTTP response status code of the HTTP response. A list of HTTP status codes can be found here: HTTP Response Status Codes.

top
Ssl
BOOL CkUploadW_getSsl(HCkUploadW cHandle);
void CkUploadW_putSsl(HCkUploadW cHandle, BOOL newVal);

Set this to TRUE if the upload is to HTTPS. For example, if the target of the upload is:

https://www.myuploadtarget.com/consumeUpload.asp

then set:

Ssl = TRUE
Hostname = "www.myuploadtarget.com"
Path = "/consumeupload.asp"
Port = 443

top
SslAllowedCiphers
void CkUploadW_getSslAllowedCiphers(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putSslAllowedCiphers(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_sslAllowedCiphers(HCkUploadW cHandle);
Introduced in version 9.5.0.55

Provides a means for setting a list of ciphers that are allowed for SSL/TLS connections. The default (empty string) indicates that all implemented ciphers are possible. The TLS ciphers supported in Chilkat v9.5.0.55 and later are:

TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
TLS_DHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA256
TLS_RSA_WITH_AES_256_GCM_SHA384
TLS_RSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
TLS_DHE_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA256
TLS_RSA_WITH_AES_128_GCM_SHA256
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
TLS_RSA_WITH_3DES_EDE_CBC_SHA
TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_MD5
TLS_DHE_RSA_WITH_DES_CBC_SHA
TLS_RSA_WITH_DES_CBC_SHA
To restrict SSL/TLS connections to one or more specific ciphers, set this property to a comma-separated list of ciphers such as "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384". The order should be in terms of preference, with the preferred algorithms listed first. (Note that the client cannot specifically choose the algorithm is picked because it is the server that chooses. The client simply provides the server with a list from which to choose.)

The property can also disallow connections with servers having certificates with RSA keys less than a certain size. By default, server certificates having RSA keys of 512 bits or greater are allowed. Add the keyword "rsa1024" to disallow connections with servers having keys smaller than 1024 bits. Add the keyword "rsa2048" to disallow connections with servers having keys smaller than 2048 bits.

Note: Prior to Chilkat v9.5.0.55, it was not possible to explicitly list allowed cipher suites. The deprecated means for indicating allowed ciphers was both incomplete and unprecise. For example, the following keywords could be listed to allow matching ciphers: "aes256-cbc", "aes128-cbc", "3des-cbc", and "rc4". These keywords will still be recognized, but programs should be updated to explicitly list the allowed ciphers.

secure-renegotiation: Starting in Chilkat v9.5.0.55, the keyword "secure-renegotiation" may be added to require that all renegotions be done securely (as per RFC 5746).

best-practices: Starting in Chilkat v9.5.0.55, this property may be set to the single keyword "best-practices". This will allow ciphers based on the current best practices. As new versions of Chilkat are released, the best practices may change. Changes will be noted here. The current best practices are:

  • If the server uses an RSA key, it must be 1024 bits or greater.
  • All renegotations must be secure renegotiations.
  • All ciphers using RC4, DES, or 3DES are disallowed.

Example: The following string would restrict to 2 specific cipher suites, require RSA keys to be 1024 bits or greater, and require secure renegotiations: "TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA, rsa1024, secure-renegotiation"

top
SslProtocol
void CkUploadW_getSslProtocol(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putSslProtocol(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_sslProtocol(HCkUploadW cHandle);
Introduced in version 9.5.0.55

Selects the secure protocol to be used for secure (SSL/TLS) connections. Possible values are:

default
TLS 1.3
TLS 1.2
TLS 1.1
TLS 1.0
SSL 3.0
TLS 1.3 or higher
TLS 1.2 or higher
TLS 1.1 or higher
TLS 1.0 or higher
The default value is "default" which will choose the, which allows for the protocol to be selected dynamically at runtime based on the requirements of the server. Choosing an exact protocol will cause the connection to fail unless that exact protocol is negotiated. It is better to choose "X or higher" than an exact protocol. The "default" is effectively "SSL 3.0 or higher".

top
TlsPinSet
void CkUploadW_getTlsPinSet(HCkUploadW cHandle, HCkString retval);
void CkUploadW_putTlsPinSet(HCkUploadW cHandle, const wchar_t *newVal);
const wchar_t *CkUploadW_tlsPinSet(HCkUploadW cHandle);
Introduced in version 9.5.0.55

Specifies a set of pins for Public Key Pinning for TLS connections. This property lists the expected SPKI fingerprints for the server certificates. If the server's certificate (sent during the TLS handshake) does not match any of the SPKI fingerprints, then the TLS handshake is aborted and the connection fails. The format of this string property is as follows:

hash_algorithm, encoding, SPKI_fingerprint_1, SPKI_fingerprint_2, ...
For example, the following string specifies a single sha256 base64-encoded SPKI fingerprint:
"sha256, base64, lKg1SIqyhPSK19tlPbjl8s02yChsVTDklQpkMCHvsTE="
This example specifies two SPKI fingerprints:
"sha256, base64, 4t37LpnGmrMEAG8HEz9yIrnvJV2euVRwCLb9EH5WZyI=, 68b0G5iqMvWVWvUCjMuhLEyekM5729PadtnU5tdXZKs="
Any of the following hash algorithms are allowed:.sha1, sha256, sha384, sha512, md2, md5, haval, ripemd128, ripemd160,ripemd256, or ripemd320.

The following encodings are allowed: base64, hex, and any of the encodings indicated in the link below.

More Information and Examples
top
TotalUploadSize
unsigned long CkUploadW_getTotalUploadSize(HCkUploadW cHandle);

The total size of the upload (in bytes). This property will become set at the beginning of an asynchronous upload. A program may monitor asynchronous uploads by tracking both NumBytesSent and PercentUploaded.

This property is also set during synchronous uploads.

top
UploadInProgress
BOOL CkUploadW_getUploadInProgress(HCkUploadW cHandle);

Set to TRUE when an asynchronous upload is started. When the asynchronous upload is complete, this property becomes equal to FALSE. A program will typically begin an asynchronous upload by calling BeginUpload, and then periodically checking the value of this property to determine when the upload is complete.

top
UploadSuccess
BOOL CkUploadW_getUploadSuccess(HCkUploadW cHandle);

Set to TRUE (success) or FALSE (failed) after an asynchronous upload completes or aborts due to failure. When a program does an asynchronous upload, it will wait until UploadInProgress becomes FALSE. It will then check the value of this property to determine if the upload was successful or not.

top
VerboseLogging
BOOL CkUploadW_getVerboseLogging(HCkUploadW cHandle);
void CkUploadW_putVerboseLogging(HCkUploadW cHandle, BOOL newVal);

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

top
Version
void CkUploadW_getVersion(HCkUploadW cHandle, HCkString retval);
const wchar_t *CkUploadW_version(HCkUploadW cHandle);

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

More Information and Examples
top

Methods

AbortUpload
void CkUploadW_AbortUpload(HCkUploadW cHandle);

May be called during an asynchronous upload to abort.

top
AddCustomHeader
void CkUploadW_AddCustomHeader(HCkUploadW cHandle, const wchar_t *name, const wchar_t *value);

Adds a custom HTTP header to the HTTP upload.

top
AddFileReference
void CkUploadW_AddFileReference(HCkUploadW cHandle, const wchar_t *name, const wchar_t *filename);

Adds a file to the list of files to be uploaded in the next call to BlockingUpload, BeginUpload, or UploadToMemory. To upload more than one file, call this method once for each file to be uploaded.

top
AddParam
void CkUploadW_AddParam(HCkUploadW cHandle, const wchar_t *name, const wchar_t *value);

Adds a custom HTTP request parameter to the upload.

top
BeginUpload
BOOL CkUploadW_BeginUpload(HCkUploadW cHandle);

Starts an asynchronous upload. Only one asynchronous upload may be in progress at a time. To achieve multiple asynchronous uploads, use multiple instances of the Chilkat Upload object. Each object instance is capable of managing a single asynchronous upload.

When this method is called, a background thread is started and the asynchronous upload runs in the background. The upload may be aborted at any time by calling AbortUpload. The upload is completed (or failed) when UploadInProgress becomes FALSE. At that point, the UploadSuccess property may be checked to determine success (TRUE) or failure (FALSE).

Returns TRUE for success, FALSE for failure.

top
BlockingUpload
BOOL CkUploadW_BlockingUpload(HCkUploadW cHandle);

Uploads files to a web server using HTTP. The files to be uploaded are indicated by calling AddFileReference once for each file (prior to calling this method).

Returns TRUE for success, FALSE for failure.

top
BlockingUploadAsync (1)
HCkTaskW CkUploadW_BlockingUploadAsync(HCkUploadW cHandle);

Creates an asynchronous task to call the BlockingUpload method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)

Returns NULL on failure

top
ClearFileReferences
void CkUploadW_ClearFileReferences(HCkUploadW cHandle);

Clears the internal list of files created by calls to AddFileReference.

top
ClearParams
void CkUploadW_ClearParams(HCkUploadW cHandle);

Clears the internal list of params created by calls to AddParam.

top
LoadTaskCaller
BOOL CkUploadW_LoadTaskCaller(HCkUploadW cHandle, HCkTaskW task);
Introduced in version 9.5.0.80

Loads the caller of the task's async method.

Returns TRUE for success, FALSE for failure.

top
SleepMs
void CkUploadW_SleepMs(HCkUploadW cHandle, int millisec);

A convenience method for putting the calling process to sleep for N milliseconds. It is provided here because some programming languages do not provide this capability, and sleeping for short increments of time is helpful when doing asynchronous uploads.

top
UploadToMemory
BOOL CkUploadW_UploadToMemory(HCkUploadW cHandle, const unsigned char * outData);

Writes the complete HTTP POST to memory. The POST contains the HTTP header, any custom params added by calling AddParam, and each file to be uploaded. This is helpful in debugging. It allows you to see the exact HTTP POST sent to the server if BlockingUpload or BeginUpload is called.

Returns TRUE for success, FALSE for failure.

top