Reputation: 263
If it is possible, do we need to write any plugins?
I wanted to know if there is any use case around TIBCO BE or EMS integration with WSO2-BAM.
Upvotes: 1
Views: 297
Reputation: 2216
There are several ways if you want to publish data to WSO2 BAM.
You can write a Data Agent which resides in your preferred other-vendor-product which pushes data to BAM. Refer http://docs.wso2.org/wiki/display/BAM230/Data+Publisher
Publish data via Thrift to BAM. Here the preferred other-vendor-product is language independent as no need to use Java.
Publish data to BAM via REST API. Example is given in http://docs.wso2.org/wiki/display/BAM230/Sending+Events+through+the+REST+API
Upvotes: 2
Reputation: 866
Need to write custom data publisher. Custom Data Publisher section from the BAM documentation shows how to do this. Also, if you download BAM, unzip and go to <BAM_HOME>/samples there you'll find samples which involve sending bunch of events to BAM to show its functionality. One such example can be found in <BAM_HOME>/samples/httpd-logs/src/main/java/org/wso2/carbon/bam/httpdlogs/sample/HttpdLogAgent.java
Upvotes: 0