<?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: webservice/deserialize ??? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217437#M13034</link>
    <description>Anyone solve this problem?  I have the same issue in 3.1.1.&lt;BR /&gt;Thanks,&lt;BR /&gt;Joe</description>
    <pubDate>Thu, 05 Nov 2009 21:13:34 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2009-11-05T21:13:34Z</dc:date>
    <item>
      <title>webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217434#M13031</link>
      <description>I'm probably to stupid to find out the reason of my problem : war file generated and deployed from my job (J2EE5/jre 1.6.0_06/Tomcat 6.0.16 on w2000) 
&lt;BR /&gt;I tried and succeed to call the ws, returning a simple integer value. The job executes perfectly but... 
&lt;BR /&gt;Whatever I try to map the return result, I always obtain the following kind of error : 
&lt;BR /&gt;&amp;lt;i&amp;gt;org.xml.sax.SAXException: Deserializing parameter 'item': could not find deserializer for type {htt 
&lt;BR /&gt;p://talend.org}ArrayOf_xsd_string&amp;lt;/i&amp;gt; 
&lt;BR /&gt;I use this axis code to call the ws : 
&lt;BR /&gt;&amp;lt;code&amp;gt; 
&lt;BR /&gt; Service service = new Service(); 
&lt;BR /&gt; Call call = (Call) service.createCall(); 
&lt;BR /&gt; call.setTargetEndpointAddress(new java.net.URL("&lt;A href="http://myServer:myport/MyWsName_0.2/services/MyWsName" target="_blank"&gt;http://myServer:myport/MyWsName_0.2/services/MyWsName&lt;/A&gt;)); 
&lt;BR /&gt; call.setOperationName("runJob"); 
&lt;BR /&gt; String[] returns = (String[]) call.invoke(obj); 
&lt;BR /&gt;&amp;lt;/code&amp;gt; 
&lt;BR /&gt;I also tried with http.talend.ArrayOf_xsd_string (the generated package differs from the call, apparently... 
&lt;BR /&gt;Added the proxy code generated by netbeans in a jar, in WEB-INF/lib directory (containing Args, ArrayOf_xsd_string and so on). 
&lt;BR /&gt;What am I missing ? 
&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Sat, 16 Nov 2024 14:19:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217434#M13031</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217435#M13032</link>
      <description>I"m having a similar problem.  Any help would be appreciated.</description>
      <pubDate>Tue, 20 Jan 2009 01:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217435#M13032</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-01-20T01:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217436#M13033</link>
      <description>hi All,
&lt;BR /&gt;I have a similar problem too. 
&lt;BR /&gt;I'm using an exported talend job as a web service. I invoke it by axis client. It work fine (the procedure implemented for ), but the client give back this error " Deserializing parameter 'item': could not find deserializer for type {http://talend.org}args " .
&lt;BR /&gt;What I do wrong?
&lt;BR /&gt;best regarde</description>
      <pubDate>Fri, 27 Mar 2009 15:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217436#M13033</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-03-27T15:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217437#M13034</link>
      <description>Anyone solve this problem?  I have the same issue in 3.1.1.&lt;BR /&gt;Thanks,&lt;BR /&gt;Joe</description>
      <pubDate>Thu, 05 Nov 2009 21:13:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217437#M13034</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-11-05T21:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217438#M13035</link>
      <description>I found the issue with this service call. It tried it in CXF as well and got a better error message that pointed me to the problem. 
&lt;BR /&gt;This problem is a name conflict in the wsdl:types section. There's an element named "args" and a complexType named "args" which are conflicting with each other when you run wsdl2java. 
&lt;BR /&gt;I modified the element to be "argsE" and updated it's reference in the wsdl below and I'm able to call the web service now from axis and cxf. 
&lt;BR /&gt;Can we get this in the queue to be fixed in future releases? 
&lt;BR /&gt;&amp;lt;wsdl:types&amp;gt; 
&lt;BR /&gt; &amp;lt;schema elementFormDefault="qualified" targetNamespace="http://talend.org" 
&lt;BR /&gt; xmlns="http://www.w3.org/2001/XMLSchema"&amp;gt; 
&lt;BR /&gt; &amp;lt;element name="argsE"&amp;gt; 
&lt;BR /&gt; &amp;lt;complexType&amp;gt; 
&lt;BR /&gt; &amp;lt;sequence&amp;gt; 
&lt;BR /&gt; &amp;lt;element maxOccurs="unbounded" minOccurs="0" name="item" 
&lt;BR /&gt; type="xsd:string" /&amp;gt; 
&lt;BR /&gt; &amp;lt;/sequence&amp;gt; 
&lt;BR /&gt; &amp;lt;/complexType&amp;gt; 
&lt;BR /&gt; &amp;lt;/element&amp;gt; 
&lt;BR /&gt; &amp;lt;complexType name="args"&amp;gt; 
&lt;BR /&gt; &amp;lt;sequence&amp;gt; 
&lt;BR /&gt; &amp;lt;element maxOccurs="unbounded" minOccurs="0" name="item" 
&lt;BR /&gt; type="xsd:string" /&amp;gt; 
&lt;BR /&gt; &amp;lt;/sequence&amp;gt; 
&lt;BR /&gt; &amp;lt;/complexType&amp;gt; 
&lt;BR /&gt; &amp;lt;element name="runJobReturn"&amp;gt; 
&lt;BR /&gt; &amp;lt;complexType&amp;gt; 
&lt;BR /&gt; &amp;lt;sequence&amp;gt; 
&lt;BR /&gt; &amp;lt;element maxOccurs="unbounded" minOccurs="0" name="item" 
&lt;BR /&gt; type="impl:args" /&amp;gt; 
&lt;BR /&gt; &amp;lt;/sequence&amp;gt; 
&lt;BR /&gt; &amp;lt;/complexType&amp;gt; 
&lt;BR /&gt; &amp;lt;/element&amp;gt; 
&lt;BR /&gt; &amp;lt;/schema&amp;gt; 
&lt;BR /&gt; &amp;lt;/wsdl:types&amp;gt;</description>
      <pubDate>Fri, 06 Nov 2009 05:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217438#M13035</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-11-06T05:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217439#M13036</link>
      <description>Hello 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;I modified the element to be "argsE" and updated it's reference in the wsdl below and I'm able to call the web service now from axis and cxf.&lt;BR /&gt;Can we get this in the queue to be fixed in future releases?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Please report a bug on our bugtracker. 
&lt;BR /&gt;Thanks for your support!! 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 06 Nov 2009 06:09:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217439#M13036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-06T06:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: webservice/deserialize ???</title>
      <link>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217440#M13037</link>
      <description>This might be the same kind of pb here : 
&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCqT0CAK" rel="nofollow noopener noreferrer"&gt;https://community.talend.com/t5/Design-and-Development/retriving-source-code-of-Talend-open-Studio-from-Subversion/td-p/109036&lt;/A&gt;</description>
      <pubDate>Fri, 06 Nov 2009 09:45:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/webservice-deserialize/m-p/2217440#M13037</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-06T09:45:17Z</dc:date>
    </item>
  </channel>
</rss>

