Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.

avatar

Fill in the details...

1 ACCEPTED SOLUTION

avatar
Master Guru

Kafka producers are Java programs. Here is a very simple example of a KafkaProducer that uses Syslog4J I did a while back for example.

In your case you need to have a program that can pull the data from the webservice and then push it into the producer.

You need to serialize your package into a byte array for kafka but apart from that the main work will be connecting to WSDL.

https://github.com/benleon/SysLogProducer

View solution in original post

13 REPLIES 13

avatar
New Member

+1 (another) for WSDL Processor.

avatar
Master Mentor

@Rohan kapadekar has this been resolved? Can you post your solution or accept best answer?

avatar

@Artem Ervits I used the method which @Benjamin Leonhardi suggested.

Wrote a Java code which would send a SOAP request,get the response and converted it to JSON string.Then I pushed it to the KAFKA producer.

avatar
New Member

Hi @rohan_kapadekar I want to store the request and response of Soap api via using jms or Kafka, Can you help me in this or suggest a solution by which I can implement this.