security - how to connect to secure cassandra from wso2bam -


in our setup, have wso2 bam connecting external datastax cassandra cluster. here wso2 bam acting data recvr , dumping data in external cassandra cluster.

we wanted know if secure dse cassandra cluster username/password security.. how can specify authentication details in wso2 bam connecting securely dse cluster.

i read cassandra-auth.xml in http://docs.wso2.org/wiki/display/ss103/changing+the+default+cassandra+configuration

but seems cassandra-auth.xml more authenticating -management console ui

please advice rajiv patil

you can provide username/password cassandra datasource in configuration file found in bam_home/repository/conf/datasources/master-datasources.xml

edit-

here's sample configuration default

<datasource>         <name>wso2bam_cassandra_datasource</name>         <description>the datasource used cassandra data</description>         <definition type="rdbms">             <configuration>                 <url>jdbc:cassandra://localhost:9160/event_ks</url>                 <username>admin</username>                 <password>admin</password>             </configuration>         </definition> </datasource>