Forum Discussion

sneha26ad's avatar
sneha26ad
New Contributor
7 years ago

Can soapUi be integrated with Kafka and ArangoDB?

Hi All,

 

Can we connect to Kafka and ArangoDB using SoapUI? The need is to automate the applications by integrating with Kafka and ArangoDB.

 

Thanks,

Sneha

3 Replies

  • JHunt's avatar
    JHunt
    Community Hero

    You should be able to use SoapUI's core functionality to get information through the Kafka APIs (taken from https://kafka.apache.org/intro):

     

    Kafka has four core APIs:

    • The Producer API allows an application to publish a stream of records to one or more Kafka topics.
    • The Consumer API allows an application to subscribe to one or more topics and process the stream of records produced to them.
    • The Streams API allows an application to act as a stream processor, consuming an input stream from one or more topics and producing an output stream to one or more output topics, effectively transforming the input streams to output streams.
    • The Connector API allows building and running reusable producers or consumers that connect Kafka topics to existing applications or data systems. For example, a connector to a relational database might capture every change to a table.

    Google says there are JDBC drivers available for ArangoDB. You should be able to use any JDBC driver in SoapUI.

  • nmrao's avatar
    nmrao
    Champion Level 3
    If that database has got a driver library, then soapui allows to connect.
  • sneha26ad's avatar
    sneha26ad
    New Contributor

    Thanks Rao for the reply.

     

    Do you have any solution on Kafka?