POST groupserver/transports
This web method modifies the definitions of the group service transports.
After modifying the transport definitions, the FTL servers automatically restart their group services. See POST groupserver.
Example Requests
curl -X POST http://<host>:<port>/api/v1/groupserver/transports -d @<json_file>
Input Data
Supply the transport definitions in JSON format, for example:
{
"server_transport": {
"name": "_GroupServerTport1",
"relationships": [
{
"transport": "_GroupClientTport"
}
],
"config": {
"transport_type": "wdtcp",
"port": "7777",
"virtual_name": "_Group_Server_VName",
"mode": "server"
}
},
"client_transport": {
"name": "_GroupClientTport",
"relationships": [
{
"transport": "_GroupServerTport1"
}
],
"config": {
"transport_type": "wdtcp",
"port": "7777",
"virtual_name": "_Group_Server_VName",
"mode": "client"
}
}