Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

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

+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 Contributor

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.