<?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 Re: Datasource and Web service in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261310#M42130</link>
    <description>&lt;P&gt;I *think* I might have figured your issue. What version of MySQL are you using? You say you are using the&amp;nbsp;&lt;SPAN&gt;mariadb-java-client-1.8.0.jar driver. Is this because you are using MariaDB? If so, your blueprint is likely wrong. I cannot test this I'm afraid. If you are using MySQL then you need to know which version you are using. If you are using v5 then you need to run the following command in your runtime....&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;bundle:install mvn:mysql/mysql-connector-java/5.1.18&lt;/PRE&gt; 
&lt;P class="p1"&gt;....then restart all relevant bundles. This should either fix your issue or give you a different error.&lt;/P&gt; 
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;If you are using MariaDB, you will need to change your blueprint.&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;My *guess* at what this should be is something like below....&lt;/SPAN&gt;&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
default-activation="lazy"&amp;gt;

&amp;lt;bean id="mysqlDataSource" class="&lt;SPAN class="s2"&gt;&lt;SPAN&gt;org.mariadb.jdbc.MariaDbDataSource&lt;/SPAN&gt;&lt;/SPAN&gt;"&amp;gt;
&amp;lt;property name="url" value="jdbc:xxx"/&amp;gt;
&amp;lt;property name="user" value="xxx"/&amp;gt;
&amp;lt;property name="password" value="xxx"/&amp;gt;
&amp;lt;/bean&amp;gt;

&amp;lt;bean id="dataSource" class="org.apache.commons.dbcp.datasources.SharedPoolDataSource" destroy-method="close"&amp;gt;
&amp;lt;property name="connectionPoolDataSource" ref="mysqlDataSource"/&amp;gt;
&amp;lt;property name="maxActive" value="20"/&amp;gt;
&amp;lt;property name="maxIdle" value="5"/&amp;gt;
&amp;lt;property name="maxWait" value="-1"/&amp;gt;
&amp;lt;/bean&amp;gt;

&amp;lt;service ref="dataSource" interface="javax.sql.DataSource"&amp;gt;
&amp;lt;service-properties&amp;gt;
&amp;lt;entry key="osgi.jndi.service.name" value="ds-mysql"/&amp;gt;
&amp;lt;/service-properties&amp;gt;
&amp;lt;/service&amp;gt;
&amp;lt;/blueprint&amp;gt;
&lt;/PRE&gt; 
&lt;P class="p1"&gt;As I said, I cannot test this myself.&lt;/P&gt; 
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;Can you give whichever of these suggestions that apply a go, then let me know how you got on?&lt;/P&gt;</description>
    <pubDate>Wed, 04 Dec 2019 23:11:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-12-04T23:11:02Z</dc:date>
    <item>
      <title>Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261299#M42119</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a thing I would like to be sure, because it is not so clear on the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the documentation :&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.talend.com/reader/P98mtIVGCSoGmSITOuxPTw/TSNegZNcYUVGqIlO5M3QGw" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/reader/P98mtIVGCSoGmSITOuxPTw/TSNegZNcYUVGqIlO5M3QGw&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a job, which is a WebService (using a tRestRequest in entrance, tRestResponse in answer, etc...).&lt;/P&gt;
&lt;P&gt;This job runs on our runtime (Karaf).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have DB connections in this job, and I have checked the "Specify a datasource alias", with an alias.&lt;/P&gt;
&lt;P&gt;The datasource exists and is well defined on Karaf.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the documentation, it is written this :&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;This section introduces the use of connection pooling in Jobs with tRouteInput component, which can be started from a Route using the cTalendJob component. Similar use cases and configurations can also be used with ESB data services.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does my Web service will use my data source ? (if everything is well configured of course)&lt;/P&gt;
&lt;P&gt;Because it is written that the data source is use with the Routes (tRouteInput) only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot for your answer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:05:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261299#M42119</guid>
      <dc:creator>SncJt</dc:creator>
      <dc:date>2024-11-16T04:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261300#M42120</link>
      <description>&lt;P&gt;The "Datasource Alias" will work in Talend Runtime. However, it will not work in the Studio, So when you are using this you will need to make sure the alias is set and any Studio test configurations are removed before running it in the Runtime. The "Specify a datasource alias" option is described here for Oracle. It works in the same way for all DBs.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2019 22:24:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261300#M42120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-21T22:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261301#M42121</link>
      <description>&lt;P&gt;Hi, i also have deployed a trestRequest job, i have subjobs for logging that connect to mysql DB with mariadb-java-client-1.8.0.jar driver.&lt;/P&gt;
&lt;P&gt;I'm trying to add connection pooling. I've defined and deployed ds:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
default-activation="lazy"&amp;gt;

&amp;lt;bean id="mysqlDataSource" class="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource"&amp;gt;
&amp;lt;property name="url" value="jdbc:xxx"/&amp;gt;
&amp;lt;property name="user" value="xxx"/&amp;gt;
&amp;lt;property name="password" value="xxx"/&amp;gt;
&amp;lt;/bean&amp;gt;

&amp;lt;bean id="dataSource" class="org.apache.commons.dbcp.datasources.SharedPoolDataSource" destroy-method="close"&amp;gt;
&amp;lt;property name="connectionPoolDataSource" ref="mysqlDataSource"/&amp;gt;
&amp;lt;property name="maxActive" value="20"/&amp;gt;
&amp;lt;property name="maxIdle" value="5"/&amp;gt;
&amp;lt;property name="maxWait" value="-1"/&amp;gt;
&amp;lt;/bean&amp;gt;

&amp;lt;service ref="dataSource" interface="javax.sql.DataSource"&amp;gt;
&amp;lt;service-properties&amp;gt;
&amp;lt;entry key="osgi.jndi.service.name" value="ds-mysql"/&amp;gt;
&amp;lt;/service-properties&amp;gt;
&amp;lt;/service&amp;gt;
&amp;lt;/blueprint&amp;gt;&lt;/PRE&gt;
&lt;P&gt;I flag "Specify a data source alias" and named it "ds-mysql"&lt;/P&gt;
&lt;P&gt;When I try to call my ws I receive this error:&lt;/P&gt;
&lt;PRE&gt;java.lang.RuntimeException: Child job running failed.
java.lang.RuntimeException: Driver Class should not be empty, please set it&lt;/PRE&gt;
&lt;P&gt;It seems that the flag&amp;nbsp;"Specify a data source alias" is completely ignored.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;What i am missing?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 09:55:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261301#M42121</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T09:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261302#M42122</link>
      <description>&lt;P&gt;Where are you running your service? In the Studio or in the Runtime?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 10:05:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261302#M42122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T10:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261303#M42123</link>
      <description>&lt;P&gt;I deployed the jar in test environment.&lt;/P&gt;&lt;P&gt;btw if i run&amp;nbsp;&amp;nbsp;"service:list DataSource" it seems to be ok.&lt;/P&gt;&lt;PRE&gt;[javax.sql.DataSource]
----------------------
service.id = 385
osgi.jndi.service.name = ds-mysql
osgi.service.blueprint.compname = dataSource
service.bundleid = 286
service.scope = bundle
Provided by :
Bundle 286&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 10:23:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261303#M42123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T10:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261304#M42124</link>
      <description>&lt;P&gt;From what you have shown, this should be working. Can you share a screenshot of a service that is not working. Also can you share the DB config for that job?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 14:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261304#M42124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T14:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261305#M42125</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;I've posted the xml bean with &lt;SPAN&gt;DB config and the error in the previous message.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;below you find the screen of the option i set to use a ds alias in the dbconnection component, i also try the same config in a tdboutput with the connection option "use this component", i also try to remove all context params (JDBC URL, Driver Class, User Id, Password) that i normally use in TOS ide&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LwDk"&gt;tDBConn.JPG&lt;/A&gt;</description>
      <pubDate>Wed, 04 Dec 2019 15:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261305#M42125</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T15:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261306#M42126</link>
      <description>&lt;P&gt;Can you show how your service is built? I cannot see any issues so far. I may have to recreate this. So can you tell me what version you are using so that I can recreate this as closely as possible? If you are using a subscription version, it might be better for you to speak to support.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 15:44:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261306#M42126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T15:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261307#M42127</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;thank you for your patience, this is my main job, but i don't think it can help you:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mainJob.JPG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8dS.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138741i09151A68958E773C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8dS.jpg" alt="0683p000009M8dS.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;here's a subjob that reads from db:&lt;BR /&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CompanyConf.JPG" style="width: 750px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8dX.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151518iCDAB1426DD2490FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8dX.jpg" alt="0683p000009M8dX.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;every log subjob writes some data...&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="log.JPG" style="width: 682px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8Tn.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/141846i620401E7933876D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8Tn.jpg" alt="0683p000009M8Tn.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I'm using TOS for ESB 7.1.1.20181026_1147&lt;/P&gt; 
&lt;P&gt;I try to recap what's going on:&lt;/P&gt; 
&lt;P&gt;the service is working fine if i don't use db-alias flag but use instead a cfg file with db info.&lt;BR /&gt;If i try to use datasource alias flag, (I clear all db parameters in components to be sure that the info is taken from xml ds), than i get this error "Driver Class should not be empty, please set it" just as the flag is not set.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 16:00:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261307#M42127</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T16:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261308#M42128</link>
      <description>&lt;P&gt;Thanks for this. I will try and recreate it. However, in the meantime you might be able to try something. Can you write a quick service to use a DB component without a tRunJob. So just a simple service to return a value from a database with all of the components running in the service and not in a tRunJob. That *could* be it.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I'll need to set up a MySQL DB and replicate your type of job. I'll get on to this as soon as I am through a few meetings. I'll probably be able to respond by tomorrow.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 16:50:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261308#M42128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T16:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261309#M42129</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;thank you for you time, here's what i did:&lt;BR /&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test.JPG" style="width: 539px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8KE.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/128420i8A681CAD3D514932/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8KE.jpg" alt="0683p000009M8KE.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;and here's what i got:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error.JPG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8dc.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151027i3E3070EC7B485829/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8dc.jpg" alt="0683p000009M8dc.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 17:03:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261309#M42129</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T17:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261310#M42130</link>
      <description>&lt;P&gt;I *think* I might have figured your issue. What version of MySQL are you using? You say you are using the&amp;nbsp;&lt;SPAN&gt;mariadb-java-client-1.8.0.jar driver. Is this because you are using MariaDB? If so, your blueprint is likely wrong. I cannot test this I'm afraid. If you are using MySQL then you need to know which version you are using. If you are using v5 then you need to run the following command in your runtime....&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;bundle:install mvn:mysql/mysql-connector-java/5.1.18&lt;/PRE&gt; 
&lt;P class="p1"&gt;....then restart all relevant bundles. This should either fix your issue or give you a different error.&lt;/P&gt; 
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;If you are using MariaDB, you will need to change your blueprint.&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;My *guess* at what this should be is something like below....&lt;/SPAN&gt;&lt;/P&gt; 
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
default-activation="lazy"&amp;gt;

&amp;lt;bean id="mysqlDataSource" class="&lt;SPAN class="s2"&gt;&lt;SPAN&gt;org.mariadb.jdbc.MariaDbDataSource&lt;/SPAN&gt;&lt;/SPAN&gt;"&amp;gt;
&amp;lt;property name="url" value="jdbc:xxx"/&amp;gt;
&amp;lt;property name="user" value="xxx"/&amp;gt;
&amp;lt;property name="password" value="xxx"/&amp;gt;
&amp;lt;/bean&amp;gt;

&amp;lt;bean id="dataSource" class="org.apache.commons.dbcp.datasources.SharedPoolDataSource" destroy-method="close"&amp;gt;
&amp;lt;property name="connectionPoolDataSource" ref="mysqlDataSource"/&amp;gt;
&amp;lt;property name="maxActive" value="20"/&amp;gt;
&amp;lt;property name="maxIdle" value="5"/&amp;gt;
&amp;lt;property name="maxWait" value="-1"/&amp;gt;
&amp;lt;/bean&amp;gt;

&amp;lt;service ref="dataSource" interface="javax.sql.DataSource"&amp;gt;
&amp;lt;service-properties&amp;gt;
&amp;lt;entry key="osgi.jndi.service.name" value="ds-mysql"/&amp;gt;
&amp;lt;/service-properties&amp;gt;
&amp;lt;/service&amp;gt;
&amp;lt;/blueprint&amp;gt;
&lt;/PRE&gt; 
&lt;P class="p1"&gt;As I said, I cannot test this myself.&lt;/P&gt; 
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P class="p1"&gt;Can you give whichever of these suggestions that apply a go, then let me know how you got on?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 23:11:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261310#M42130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T23:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261311#M42131</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to change my bean in:&lt;/P&gt;&lt;PRE&gt;&amp;lt;bean id="mysqlDataSource" class="org.mariadb.jdbc.MariaDbDataSource"&amp;gt;&lt;/PRE&gt;&lt;P&gt;to be sure i also run this:&lt;/P&gt;&lt;PRE&gt;bundle:install mvn:org.mariadb.jdbc/mariadb-java-client/2.5.2&lt;/PRE&gt;&lt;P&gt;I got always the same result:&lt;/P&gt;&lt;PRE&gt;Exception in component tDBInput_1 (TestDs)
java.lang.RuntimeException: Driver Class should not be empty, please set it&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 08:41:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261311#M42131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-05T08:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261312#M42132</link>
      <description>&lt;P&gt;Quick update:&lt;/P&gt; 
&lt;P&gt;I try to add an oracle DS, installing&amp;nbsp;ojdbc8-12.2.0.1.jar and configuring a&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;   &amp;lt;bean id="dataSource" class="oracle.jdbc.pool.OracleDataSource" destroy-method="close"&amp;gt;&lt;/PRE&gt; 
&lt;P&gt;(I used a sample xml from ..tesb\add-ons\datasources\dataservice)&lt;/P&gt; 
&lt;P&gt;i change my test job to connect to an oracle db, i check if the datasource is visible and it's fine, but i got the same error:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2ds.JPG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8ZA.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135368iA36838724866BD3A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8ZA.jpg" alt="0683p000009M8ZA.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 09:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261312#M42132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-05T09:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261313#M42133</link>
      <description>&lt;P&gt;Other update, i create and build a test job in TOS 5.6.3, deployed on the same server, it works!&lt;/P&gt;
&lt;P&gt;I believe that's a bug of 7.1.1 that completely ignores "specify ds alias" flag.&lt;/P&gt;
&lt;P&gt;The question now is : can i "override" the flag by setting it by code?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 14:02:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261313#M42133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-05T14:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261314#M42134</link>
      <description>&lt;P&gt;Sorry about the delay in getting back to you. I've been quite busy today, but I have been investigating this when I have had the chance. I cannot reproduce this error in v7.1 or v7.2. I have set up an ESB Runtime for both v7.1 and v7.2 and have written services (tRestRequest---&amp;gt;tFlowToIterate---&amp;gt;tDBInput---&amp;gt;tXMLMap----&amp;gt;tRestResponse) in both environments. My DB was a v8 MySQL. While I did get other issues (authentication issues usually associated with MySQL and using the root user), I could not recreate yours. In fact I was able to get the services running pretty quickly once I'd figured out my root user issue.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;As such I do not believe this to be a bug. What it *could* be is an issue with the service when it was built or (more likely) an issue with the tDBInput component. There are occasions when components have issues like this and all it usually takes is a component replacement with in the job/service.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am using a Mac and believe I have given you all other info other than the version of Java I am using. This is v&lt;SPAN class="s1"&gt;1.8.0_191-b12.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="s1"&gt;Sorry I haven't been able to help so far, but maybe one of my suggestions in this post might help?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 17:00:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261314#M42134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-05T17:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261315#M42135</link>
      <description>&lt;P&gt;Thanks for your support,&lt;/P&gt;&lt;P&gt;these are my environment specs:&lt;/P&gt;&lt;P&gt;Talend 7.1.1 -&amp;gt; JOB DOESN'T USE DATASOURCE (Java : zulu8.0.232)&lt;BR /&gt;(java.lang.RuntimeException: Driver Class should not be empty, please set it)&lt;/P&gt;&lt;P&gt;Talend 5.6.3 -&amp;gt; JOB USES DATASOURCE (Java :&amp;nbsp;1.7.0_79)&lt;/P&gt;&lt;P&gt;OS : Windows 7&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i build my RestService i only rightclick the job -&amp;gt; Build Job -&amp;gt; OSGI Bundle For ESB&lt;/P&gt;&lt;P&gt;I tried to recreate new test services taking a new tDBInput from palette... with no success.&lt;BR /&gt;I think i'm&amp;nbsp;throwing in the towel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 09:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261315#M42135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-06T09:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Datasource and Web service</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261316#M42136</link>
      <description>&lt;P&gt;Interesting. The only difference between our setups looks like Zulu...ignoring the operating systems. I guess that *could* be the reason I cannot reproduce this. I would recommend trying v7.2 or maybe waiting for 7.3. I know there are still a few bugs in the v7.3 M3 version which is out for public testing.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;This is really frustrating as if I could reproduce it I could either help you figure it out from my end or raise it as a bug if there was no way around. But since I cannot even reproduce it, I can't do either. However, if you are willing to go through the steps, you can raise this as a potential bug here&amp;nbsp;&lt;A href="https://jira.talendforge.org/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 10:49:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Datasource-and-Web-service/m-p/2261316#M42136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-06T10:49:43Z</dc:date>
    </item>
  </channel>
</rss>

