Skip to main content

Posts

Showing posts with the label WSO2 Connector

How to integrate WSO2 ESB SNMP Connector with Google Spreadsheet Connector?

In my previous blog, I describe how to work with SNMP Connector and now I am going to do a scenario by integrating the SNMP Connector with the Google Spreadsheet connector. This scenario explains that insert the data which is the response of the SNMPSet operation to the spreadsheet. Before start, the ESB, download snmp4j-2.5.5.jar and add it to the <ESB_HOME>/repository/components/lib directory. Environment Setup Download ESB 5.0.0 from  here . Upload the following connectors. (Refer this to  add and enable the connector ) snmp-connector-1.0.0 googlespreadsheet-connector-3.0.0 Follow the  instruction  to get the credential for the Google Spreadsheet Connector. Following is a sample proxy service that illustrates how to test the above scenario. <?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse" name="SNMPSetScenario" startOnLoad="true" statistics=...

How to integrate WSO2 ESB File Connector with Gmail Connector?

In this section, I am going to describe  a connector scenario by integrating the File Connector with  the Gmail connector.  For an example, you can use  the File Connector to read a file content and send that content using Gmail Connector. Environment Setup Download ESB 5.0.0 from  here . Upload the following connectors. (Refer this to add and enable the connector ) fileconnector-connector-2.0.6 gmail-connector-3.0.4 Follow the instruction to get the credential for the Gmail connector. Following is a sample proxy service that illustrates how to test the above scenario. <?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse" name="Read_AND_sendMail" transports="https,http" statistics="disable" trace="disable" startOnLoad="true"> <target> <inSequence> <property name="source" expression="json-eva...