Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 01-27-2016 09:34 AM
Fill in the details...
Created 01-27-2016 09:48 AM
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.
Created 02-01-2016 08:06 PM
+1 (another) for WSDL Processor.
Created 02-02-2016 02:47 PM
@Rohan kapadekar has this been resolved? Can you post your solution or accept best answer?
Created 02-05-2016 05:54 AM
@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.
Created 07-03-2023 02:51 AM
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.