This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.

Working with Connectors

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. For example, there are several ESB connectors that call the APIs of services like Twitter and JIRA. You can also write your own connector to provide access to other services.

WSO2 ESB provides a variety of connectors that allow your message flows to connect to and interact with services such as Twitter and Salesforce. To download ESB connectors, go to https://store.wso2.com/store. You can also write your own connector to provide access to other services. Before you use the ESB connectors or a custom connector, you need to add and enable them in your ESB instance.

The following topics provide more information on working with connectors:

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.

Replace the value of the name property with the name of your connector, and name the configuration file {org.wso2.carbon.connector}<CONNECTOR_NAME>.xml (e.g., {org.wso2.carbon.connector}salesforce.xml).

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

To browse through the complete list of WSO2 ESB connectors and for information on configuring operations for each connector, see WSO2 ESB Connectors Documentation