Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A connector is a collection of templates that define operations users can call from their ESB configurations to easily access specific logic for processing messages. Typically, connectors are used to wrap the API of an external service such as Twitter or Google Spreadsheet. Each connector provides operations that perform different actions in that service. For example, the Twitter connector has operations for creating a tweet, getting a user's followers, and more.

...

Child pages (Children Display)

Info

Other than In addition to the above methods, you can enable a connector by creating a configuration file in the <ESB_HOME>/repository/deployment/server/synapse-configs/default/imports directory with the following configurations.

Tip

You need to replace Replace the value of the name property with the name of your connector. Also, you need to and name the configuration file based on the following format: {org.wso2.carbon.connector}<CONNECTOR_NAME>.xml (e.g., {org.wso2.carbon.connector}salesforce.xml).

Code Block
languagexml
<import xmlns="http://ws.apache.org/ns/synapse"
        name="salesforce"
        package="org.wso2.carbon.connectors"
        status="enabled"/>

...