Sample code for 30+ languages & platforms
B4X

Add a Content-Length Header to MIME

See more MIME Examples

Demonstrates the Chilkat Mime.AddContentLength method, which computes the byte length of the entity's serialized body and adds or updates its Content-Length header. It takes no arguments and is a void method. The count is based on the transfer-encoded serialized body.

Note: The file path is relative to the application's current working directory. Absolute paths may also be used. Supply the path to your own file.

Background: Some protocols and consumers want a Content-Length declaring the body size up front. This computes it correctly from the encoded body — the bytes actually written — rather than the decoded content, and updates any existing header so it stays accurate. Call it after the body is final; if you change the body afterward, call it again, or remove the header, since a stale length is worse than none.

Chilkat B4X Downloads

B4X
Dim success As Boolean = False

Dim mime As ChilkatMime
mime.Initialize
success = mime.LoadMimeFile("qa_data/message.eml")
If success = False Then
    Log(mime.LastErrorText)
    Return
End If


'  Compute the byte length of the entity's serialized body and add (or update) its Content-Length
'  header.  The count is based on the transfer-encoded serialized body.  It is a void method.
mime.AddContentLength

Dim contentLength As String = mime.GetHeaderField("Content-Length")
If mime.LastMethodSuccess = False Then
    Log(mime.LastErrorText)
    Return
End If

Log("Content-Length: " & contentLength)