Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
11.1
11.2
11.3
11.4
11.5
12.0
12.1
12.2
12.3
12.4
Statistic
FMM
Blog
CURL.Release
End a CURL session.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
CURL | 2.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
(old name: CURL.Cleanup)
Parameters
Parameter | Description | Example |
---|---|---|
curl | The CURL session handle. | $curl |
Result
Returns "OK" on success or error on failure.
Description
End a CURL session.This function must be the last function to call for a CURL session. It is the opposite of the CURL.New function and must be called with the same handle as input that the CURL.New call returned.
This will effectively close all connections this handle has used and possibly has kept open until now. Don't call this function if you intend to transfer more files.
Any uses of the handle after this function has been called and have returned, are illegal. This kills the handle and all memory associated with it!
Please don't try to close a running transfer.
Used to be named CURL.Cleanup, but we changed named to CURL.Release in version 10.2.
Examples
Cleanup session:
# for every New call
$curl = MBS( "CURL.New")
# work with $curl
# you need a release call on the end
MBS( "CURL.Release"; $curl )
Download URL to temp file:
Set Variable [$curl; Value:MBS("CURL.New")]
#this is URL to download
Set Variable [$url; Value:"https://www.monkeybreadsoftware.com/filemaker/test.txt"]
#get file name from URL
Set Variable [$name; Value:MBS( "Path.LastPathComponent"; $URL )]
#now make temp file path
Set Variable [$path; Value:MBS( "Path.AddPathComponent"; MBS( "Folders.SystemTemporary" ); $name )]
#set URL to download
Set Variable [$r; Value:MBS("CURL.SetOptionURL"; $curl; $url)]
#open destination file
Set Variable [$r; Value:MBS("CURL.CreateOutputFile"; $curl; $path)]
#run transfer
Set Field [CURL Test::Result; MBS("CURL.Perform"; $curl)]
#close destination file
Set Variable [$r; Value:MBS("CURL.CloseOutputFile"; $curl)]
#get debug messages
Set Field [CURL Test::debug; MBS("CURL.GetDebugAsText"; $curl)]
Set Variable [$result; Value:MBS("CURL.Release"; $curl)]
See also
- CURL.ReleaseAll
- CURL.SetOptionWildCardMatch
- CURL.SetupAWS
- CURL.SetupOAuth
- CURL.UseSystemCertificates
- Folders.System
- GMImage.Scale
- JSON.GetPathItem
- JSON.Parse
- Path.LastPathComponent
Release notes
- Version 10.2
- Added CURL.Release and CURL.ReleaseAll functions. Marked CURL.Cleanup as deprecated.
Example Databases
- CURL/CURL Certificate Pinning
- CURL/CURL Download on Server
- CURL/CURL Download Picture with Info
- CURL/CURL Download Text to file
- CURL/CURL Download zip file
- CURL/CURL get and put/CURLS get and put
- CURL/Email/IMAP Email Upload
- CURL/FTP/CURL FTP Download all Files in Directory
- CURL/FTP/CURL FTP Download File
- CURL/FTP/CURL FTP Upload File
Blog Entries
- Translating Insert from URL options for CURL to MBS Plugin calls
- Socket changes for MBS FileMaker Plugin
- Using Apple's Global Service Exchange web service in FileMaker
- Let CURL handle cookie list
- Use root certificates included with FileMaker
- Upload email to Sent folder via IMAP
- Amazon S3 Upload with Mime Type and Permissions
- Using Apple's Global Service Exchange web service in FileMaker
- Query geolocation in FileMaker via MBS Plugin and Google Maps API
- Sending emails in FileMaker with MBS Plugin
FileMaker Magazin
Created 18th August 2014, last changed 19th April 2020
CURL.ReceiveText - CURL.ReleaseAll
Feedback: Report problem or ask question.
