package
0.0.0-20190709194620-9c397d37ddf5
Repository: https://github.com/project-flogo/eftl.git
Documentation: pkg.go.dev

# README

EFTL Trigger

This activity provides your microgateway application the ability to receive EFTL messages.

The available trigger settings are as follows:

NameTypeDescription
urlstringThe URL of the EFTL server
idstringThe client ID of the EFTL trigger
userstringThe login user for the EFTL server
passwordstringThe login passwod for the EFTL server
castringThe certificate for the EFTL server

The available trigger handler settings are as follows:

NameTypeDescription
deststringThe destination to listen on

The available output for the request are as follows:

NameTypeDescription
contentJSON objectThe content of the EFTL message

Example

A sample trigger definition is:

{
  "name": "flogo-eftl",
  "id": "MyProxy",
  "ref": "github.com/project-flogo/eftl/trigger",
  "settings": {
    "url": "ws://localhost:9191/channel"
  },
  "handlers": [
    {
      "settings": {
        "dest": "sample"
      },
      "actions": [
        {
          "id": "microgateway:Pets"
        }
      ]
    }
  ]
}