<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward. in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113964#M16526</link>
    <description>&lt;P&gt;So you need to pull your data from the soap service. Like you normally would. Which will give you some data. &lt;/P&gt;&lt;P&gt;Lets assume a JSON String? There are different options to push it into Kafka, the Example I used directly takes a String, ( there is one taking a byte array as well )&lt;/P&gt;&lt;P&gt;After that you can simple connect a consumer to kafka and you get the message out as you put them in, your consumer then needs to parse the string/byte array to whatever format you want. &lt;/P&gt;</description>
    <pubDate>Wed, 27 Jan 2016 23:25:25 GMT</pubDate>
    <dc:creator>bleonhardi</dc:creator>
    <dc:date>2016-01-27T23:25:25Z</dc:date>
    <item>
      <title>Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113958#M16520</link>
      <description>&lt;P&gt;Fill in the details...&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 17:34:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113958#M16520</guid>
      <dc:creator>rohan_kapadekar</dc:creator>
      <dc:date>2016-01-27T17:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113959#M16521</link>
      <description>&lt;P&gt;Kafka producers are Java programs. Here is a very simple example of a KafkaProducer that uses Syslog4J I did a while back for example. &lt;/P&gt;&lt;P&gt;In your case you need to have a program that can pull the data from the webservice and then push it into the producer.&lt;/P&gt;&lt;P&gt;You need to serialize your package into a byte array for kafka but apart from that the main work will be connecting to WSDL.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/benleon/SysLogProducer" target="_blank"&gt;https://github.com/benleon/SysLogProducer&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 17:48:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113959#M16521</guid>
      <dc:creator>bleonhardi</dc:creator>
      <dc:date>2016-01-27T17:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113960#M16522</link>
      <description>&lt;P&gt;
So I basically need to write a Java program which can pull the data from the wsdl which will act as a key for the producer ?&lt;/P&gt;&lt;P&gt;I couldn't get the thing where you are suggesting to serialize the package and the task of connecting to WSDL..&lt;/P&gt;&lt;P&gt;p.s.- I am completely new in KAFKA,haven't written a single producer/consumer... &lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 18:42:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113960#M16522</guid>
      <dc:creator>rohan_kapadekar</dc:creator>
      <dc:date>2016-01-27T18:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113961#M16523</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2396/rohankapadekar.html" nodeid="2396"&gt;@Rohan kapadekar&lt;/A&gt; are you open to using additional products? Take a look at apache nifi. It has a visual command and control and a large seg of processors to use, including native Kafka.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 19:09:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113961#M16523</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-01-27T19:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113962#M16524</link>
      <description>&lt;P&gt;Can you please explain in brief about using Apache NiFi. Will it be able to pull data by using a WSDL?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 19:45:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113962#M16524</guid>
      <dc:creator>rohan_kapadekar</dc:creator>
      <dc:date>2016-01-27T19:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113963#M16525</link>
      <description>&lt;P&gt;My knowledge is limited on wsdl let's ask experts &lt;A rel="user" href="https://community.cloudera.com/users/364/jwitt.html" nodeid="364"&gt;@jwitt&lt;/A&gt; &lt;A rel="user" href="https://community.cloudera.com/users/367/mpayne.html" nodeid="367"&gt;@mpayne&lt;/A&gt; &lt;A rel="user" href="https://community.cloudera.com/users/361/apiri.html" nodeid="361"&gt;@Aldrin Piri&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 19:47:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113963#M16525</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-01-27T19:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113964#M16526</link>
      <description>&lt;P&gt;So you need to pull your data from the soap service. Like you normally would. Which will give you some data. &lt;/P&gt;&lt;P&gt;Lets assume a JSON String? There are different options to push it into Kafka, the Example I used directly takes a String, ( there is one taking a byte array as well )&lt;/P&gt;&lt;P&gt;After that you can simple connect a consumer to kafka and you get the message out as you put them in, your consumer then needs to parse the string/byte array to whatever format you want. &lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 23:25:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113964#M16526</guid>
      <dc:creator>bleonhardi</dc:creator>
      <dc:date>2016-01-27T23:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113965#M16527</link>
      <description>&lt;P&gt;The KeyedMessage by the way can be confusing if called KeyedMessage("topic", "value") your kafka topic does not have a key. The first string is the topic the second the value of the message. This is good for most situations.&lt;/P&gt;&lt;P&gt;IF you need a message key ( db primary key for example ) to do log compaction etc. you can do&lt;/P&gt;&lt;P&gt;KeyedMessage("topic","key","message")  &lt;/P&gt;&lt;P&gt;But for you I would assume that you simply serialize the SOAP output into a String and push it into Kafka, then you need a consumer on the other side that can parse it again. ( for example in  spark or storm ) &lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2016 23:28:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113965#M16527</guid>
      <dc:creator>bleonhardi</dc:creator>
      <dc:date>2016-01-27T23:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113966#M16528</link>
      <description>&lt;P&gt;NiFi does not at present offer any generic SOAP interface support.  You would need to built a custom processor to do that.  NiFi you can think of as a great host for the Java process suggested in this thread.  Once the data is pulled via the SOAP API you can then use NiFi to do any number of things such as delivery to Kafka all within a managed process.  Then you get the benefits NiFi offers and address your core use case.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 10:04:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113966#M16528</guid>
      <dc:creator>JoeWitt</dc:creator>
      <dc:date>2016-01-28T10:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113967#M16529</link>
      <description>&lt;P&gt;+1 on adding WSDL processor &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2016 10:07:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113967#M16529</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-01-28T10:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113968#M16530</link>
      <description>&lt;P&gt;+1 (another) for WSDL Processor. &lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 04:06:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113968#M16530</guid>
      <dc:creator>mgrabenstein</dc:creator>
      <dc:date>2016-02-02T04:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113969#M16531</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2396/rohankapadekar.html" nodeid="2396"&gt;@Rohan kapadekar&lt;/A&gt; has this been resolved? Can you post your solution or accept best answer?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 22:47:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113969#M16531</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-02T22:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113970#M16532</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt; I used the method which &lt;A rel="user" href="https://community.cloudera.com/users/168/bleonhardi.html" nodeid="168"&gt;@Benjamin Leonhardi&lt;/A&gt; suggested.&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 13:54:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/113970#M16532</guid>
      <dc:creator>rohan_kapadekar</dc:creator>
      <dc:date>2016-02-05T13:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hi , I need to integrate data coming from a WSDL soap webservice into KAFKA.Please guide me the way forward.</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/373520#M16533</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/45950"&gt;@rohan_kapadekar&lt;/a&gt;&amp;nbsp;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.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2023 09:51:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Hi-I-need-to-integrate-data-coming-from-a-WSDL-soap/m-p/373520#M16533</guid>
      <dc:creator>Nitin1130</dc:creator>
      <dc:date>2023-07-03T09:51:25Z</dc:date>
    </item>
  </channel>
</rss>

