Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Error: Module xxxxxx.jar is required in User component

Hello,
i have 2 usercomponents, using the same Module cobol2j.jar which is a bugfixed and extended Version of cobol2j.1.5.3
One component we developed on our own, immideadly using the new jar file:
  <IMPORTS>
   <IMPORT NAME="cobol2j" MODULE="cobol2j.jar" REQUIRED="true" />
   <IMPORT NAME="IMSFileAidFormat" MODULE="IMSFileAidFormat.jar" REQUIRED="true" />
   <IMPORT NAME="commons-lang" MODULE="commons-lang-2.4.jar" REQUIRED="true" />
   <IMPORT NAME="commons-logging" MODULE="commons-logging-1.1.1.jar" REQUIRED="true" />
   <IMPORT NAME="guava" MODULE="guava-19.0.jar" REQUIRED="true" />
  </IMPORTS>
This component work perfektly finding the jar, which is in the componentfolder and also automaticly deployed to <talendbase>\lib\java The second component is derived f

To see the whole post, download it here
Labels (6)
1 Solution

Accepted Solutions
JR1
Creator III
Creator III

Just stating the obvious here. In your XML you have the following line:
<IMPORT NAME="cobol2j" MODULE="cobol2.jar" REQUIRED="true" />
Should this not be 
<IMPORT NAME="cobol2j" MODULE="cobol2j.jar" REQUIRED="true" />
(like in your first XML)?

View solution in original post

2 Replies
JR1
Creator III
Creator III

Just stating the obvious here. In your XML you have the following line:
<IMPORT NAME="cobol2j" MODULE="cobol2.jar" REQUIRED="true" />
Should this not be 
<IMPORT NAME="cobol2j" MODULE="cobol2j.jar" REQUIRED="true" />
(like in your first XML)?
Anonymous
Not applicable
Author

i am so mortified :-/
You are 100% right, thank you very much