Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

Socket.SetNewConnectionHandler

Sets the new connection handler for this socket.

Component Version macOS Windows Linux Server iOS SDK
Socket 3.1 ✅ Yes ✅ Yes ✅ Yes ❌ No ✅ Yes
MBS( "Socket.SetNewConnectionHandler"; SocketID; FileName; ScriptName )   More

Parameters

Parameter Description Example
SocketID The socket ID received by Socket.Connect function. $sock
FileName The name of the FileMaker File that contains the script "MyDatabase.fp7"
ScriptName The name of the script to run "NewConnection"

Result

Returns OK or error message.

Description

Sets the new connection handler for this socket.
This script is called for listening TCP Socket when new connections arrive so you can call Socket.AcceptNewConnection.

Be aware that FileMaker Server does not allow the plugin to operate if no script is running. So if you use sockets there, make sure a script is running or paused while you expect an answer coming in.

The script parameter is the ID of the socket. You can associate additional values with Socket.SetTag function to the socket and use them in the script triggered.


With plugin version 6.0 or newer the script name can be a script ID number. In that case the plugin queries the script name for the given script ID. This allows to call scripts by ID and avoid problems if scripts are later renamed.

Notice: FileMaker 19.2 adds a fmplugin extended privileges. If you have such an extended privileges to allow the plugin to trigger scripts, you need to grant permissions for it. If such a privilege is not defined, the plugin is allowed to trigger scripts. See FileMaker product documentation for details.

See also

Example Databases

This function checks for a license.

Created 18th August 2014, last changed 27th March 2019


Socket.SetNewConnectionEvaluate - Socket.SetNewConnectionURL