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:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
Socket.SetNewConnectionHandler
Sets the new connection handler for this socket.
| Component | Version | macOS | Windows | Linux | Server | FileMaker 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.
See also
- Socket.AcceptNewConnection
- Socket.ClearNewConnectionHandler
- Socket.Connect
- Socket.Listen
- Socket.NewTCPSocket
- Socket.SetErrorHandler
- Socket.SetNewConnectionEvaluate
- Socket.SetNewConnectionURL
- Socket.SetTag
Example Databases
- Network/HTTP Server hosted
- Network/HTTP Server local
- Network/Socket Test/Socket Test
- Network/TCP Send and Receive/TCP Receiver
Created 18th August 2014, last changed 27th March 2019
Socket.SetNewConnectionEvaluate - Socket.SetNewConnectionURL
Feedback: Report problem or ask question.
Links
MBS FileMaker Plugins