<?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: [resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270218#M48206</link>
    <description>I think I was getting exceptions because i put the objects of the web service parameter type in a flow/row variable. Then talend was trying to serialize the object when the exception happened. Anyway I now have my job working using different methods that do not involve flow/row objects.</description>
    <pubDate>Wed, 15 Jun 2011 20:05:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-06-15T20:05:08Z</dc:date>
    <item>
      <title>[resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270214#M48202</link>
      <description>I have little experience in TOS and java. I get this error at runtime
&lt;BR /&gt;Exception in thread "main" java.lang.Error: java.lang.Error: java.lang.NoClassDefFoundError: org/apache/axis/encoding/Deserializer
&lt;BR /&gt; at eaimport.ordertowv_0_1.OrderToWV.tMSSqlConnection_3Process(OrderToWV.java:541)
&lt;BR /&gt; at eaimport.ordertowv_0_1.OrderToWV.runJobInTOS(OrderToWV.java:8720)
&lt;BR /&gt; at eaimport.ordertowv_0_1.OrderToWV.main(OrderToWV.java:8550)
&lt;BR /&gt;Caused by: java.lang.Error: java.lang.NoClassDefFoundError: org/apache/axis/encoding/Deserializer
&lt;BR /&gt; at eaimport.ordertowv_0_1.OrderToWV.tMSSqlInput_1Process(OrderToWV.java:6750)
&lt;BR /&gt; disconnected
&lt;BR /&gt; disconnected
&lt;BR /&gt; at eaimport.ordertowv_0_1.OrderToWV.tMSSqlConnection_3Process(OrderToWV.java:526)
&lt;BR /&gt; ... 2 more
&lt;BR /&gt;Caused by: java.lang.NoClassDefFoundError: org/apache/axis/encoding/Deserializer
&lt;BR /&gt; at eaimport.ordertowv_0_1.OrderToWV.tMSSqlInput_1Process(OrderToWV.java:6228)
&lt;BR /&gt; ... 3 more
&lt;BR /&gt;Caused by: java.lang.ClassNotFoundException: org.apache.axis.encoding.Deserializer
&lt;BR /&gt; at java.net.URLClassLoader$1.run(Unknown Source)
&lt;BR /&gt; at java.security.AccessController.doPrivileged(Native Method)
&lt;BR /&gt; at java.net.URLClassLoader.findClass(Unknown Source)
&lt;BR /&gt; at java.lang.ClassLoader.loadClass(Unknown Source)
&lt;BR /&gt; at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
&lt;BR /&gt; at java.lang.ClassLoader.loadClass(Unknown Source)
&lt;BR /&gt; ... 4 more
&lt;BR /&gt;What does it mean? It cant find the class Deserializer?
&lt;BR /&gt;How do I troubleshoot and fix?</description>
      <pubDate>Sat, 16 Nov 2024 12:52:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270214#M48202</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270215#M48203</link>
      <description>Hi 
&lt;BR /&gt;In 15612, you said you installed TOS in the C:\Program Files\ folder, it always cause this kind of problem if there are some space in the installation path, have you reinstalled TOS into a path without space? Do you have the same problem when executing other job? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 10 Jun 2011 02:57:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270215#M48203</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-10T02:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270216#M48204</link>
      <description>Hi shong, 
&lt;BR /&gt;I installed in folder C:\Talend. I have tried 3 different installations, 2 with v4.2.0 and 1 with v4.2.1. 
&lt;BR /&gt;I have made some changes and I am now getting a different but similar error java.lang.NoClassDefFoundError: org/apache/axis/description/FieldDesc. 
&lt;BR /&gt;This error only occurs when I try to write java code in a tJavaRow that uses a class from the routines I imported from a web service. I am trying to use a global var of this type and fill in the members from a database record. 
&lt;BR /&gt;The reason I am writing java code is that I cant figure out how to use the tWebService with an array parameter. This is the underlying issue I have, being a newbie with TOS. 
&lt;BR /&gt;The webservice function has 3 params, a string, a object, a array of objects. 
&lt;BR /&gt;I can get the first 2 params OK, but I dont know how to fill the array parameter. 
&lt;BR /&gt;The data for the array parameter comes from a table in a database each item in the array is a record in the database. i can query the database and get the rows, but how do I get the rows into the array parameter at the same time I get the other two params? If I could figure this out I would toss the java code with no regrets. 
&lt;BR /&gt;Is there some example I can see?</description>
      <pubDate>Fri, 10 Jun 2011 15:29:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270216#M48204</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-10T15:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270217#M48205</link>
      <description>Im moving this twebservice question to a new thread.</description>
      <pubDate>Tue, 14 Jun 2011 15:21:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270217#M48205</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-14T15:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270218#M48206</link>
      <description>I think I was getting exceptions because i put the objects of the web service parameter type in a flow/row variable. Then talend was trying to serialize the object when the exception happened. Anyway I now have my job working using different methods that do not involve flow/row objects.</description>
      <pubDate>Wed, 15 Jun 2011 20:05:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270218#M48206</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-15T20:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Exception NoClassDefFoundError: org/apache/axis/encoding/Deserializer</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270219#M48207</link>
      <description>Hi 
&lt;BR /&gt;So, the problem is not caused by the installation path, you have to import the class in the advanced setting of tJava or tJavaRow before use it. 
&lt;BR /&gt;Anyway, you have resolved the problem about tWebservice in 16252. 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 16 Jun 2011 09:27:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Exception-NoClassDefFoundError-org-apache-axis-encoding/m-p/2270219#M48207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-16T09:27:05Z</dc:date>
    </item>
  </channel>
</rss>

