<?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>topic How to call Talend Web Service functions from java web application in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324434#M94134</link>
    <description>I have created few Talend Data Integration jobs and also have managed to extract them as web service and deployed the same under Apache Tomcat server successfully.&lt;BR /&gt; &lt;BR /&gt;Now i have to call these web service from my Java Web Application so can you please let me know how to do that ?&lt;BR /&gt;1) Will have have to add some talend jar files in class path/lib folder in order to call web service?&lt;BR /&gt;2) how to call webservice from java code?&lt;BR /&gt;It would be great if you can provide an example or step by step to do the above things&lt;BR /&gt;Thanks in advace</description>
    <pubDate>Mon, 13 May 2013 09:14:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-05-13T09:14:17Z</dc:date>
    <item>
      <title>How to call Talend Web Service functions from java web application</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324434#M94134</link>
      <description>I have created few Talend Data Integration jobs and also have managed to extract them as web service and deployed the same under Apache Tomcat server successfully.&lt;BR /&gt; &lt;BR /&gt;Now i have to call these web service from my Java Web Application so can you please let me know how to do that ?&lt;BR /&gt;1) Will have have to add some talend jar files in class path/lib folder in order to call web service?&lt;BR /&gt;2) how to call webservice from java code?&lt;BR /&gt;It would be great if you can provide an example or step by step to do the above things&lt;BR /&gt;Thanks in advace</description>
      <pubDate>Mon, 13 May 2013 09:14:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324434#M94134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-13T09:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Talend Web Service functions from java web application</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324435#M94135</link>
      <description>Hi,
&lt;BR /&gt;Have you exported your job as a "Webservice" (war file)?
&lt;BR /&gt;Here is a URL construction how you can call a job on your webserver:
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;http://&amp;lt;SERVER_NAME&amp;gt;:&amp;lt;PORT&amp;gt;/&amp;lt;WEBAPP_NAME&amp;gt;/services/&amp;lt;JOB_NAME&amp;gt;?method=runJob&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Additionally you can provide context parameters in the following way:
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;&amp;amp;arg1=--context_param%20&amp;lt;PARAM_NAME&amp;gt;=&amp;lt;PARAM_VALUE&amp;gt;&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;do this for all your params you need, but pay attention that you must increment the argument (e.g.: &amp;amp;arg1=....&amp;amp;arg2=...)
&lt;BR /&gt;Hope this helps!
&lt;BR /&gt;BR
&lt;BR /&gt;Stefan</description>
      <pubDate>Mon, 13 May 2013 12:59:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324435#M94135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-13T12:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Talend Web Service functions from java web application</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324436#M94136</link>
      <description>Yes i have exported as .war file and deployed the same in tomcat. I know how to call web service from browser.
&lt;BR /&gt;&amp;gt;&amp;gt; I want to know how to call web service from java code?
&lt;BR /&gt;&amp;gt;&amp;gt; In order to call web service from java code will i have to put some talend specific jar files in class path or lib folder?
&lt;BR /&gt;&amp;gt;&amp;gt; Is there any document to illustrate talend web service calling from java?
&lt;BR /&gt;
&lt;BR /&gt;thanks</description>
      <pubDate>Mon, 13 May 2013 13:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324436#M94136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-13T13:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Talend Web Service functions from java web application</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324437#M94137</link>
      <description>Try this tutorial. &lt;A href="http://docs.oracle.com/javaee/6/tutorial/doc/bnayn.html#bnayx" rel="nofollow noopener noreferrer"&gt;http://docs.oracle.com/javaee/6/tutorial/doc/bnayn.html#bnayx&lt;/A&gt;</description>
      <pubDate>Mon, 13 May 2013 13:39:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-call-Talend-Web-Service-functions-from-java-web/m-p/2324437#M94137</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2013-05-13T13:39:38Z</dc:date>
    </item>
  </channel>
</rss>

