I have the same problem using TN Console 6.5. I tried to register myself somehow at advantage, but it seems I am not allowed to. Can you please provide me with the resolution here ? We’re in the project and the time counts
If you are running Windows:
1 Navigate to the <TNConsole_directory>\bin directory and open the console.bat file.
2 Scroll down to approximately line 16, where you find the “SET CLASSPATH=…” line. At this line, add the following after %SSL_PATH%:
;%B2BDEVDIR%..\common\lib\fabricClient.jar
3 Save console.bat.
If you are running UNIX:
1 Navigate to the <TNConsole_directory>/bin directory and open the console.sh file.
2 Scroll down to approximately line 87, where you find the “CLASSPATH=${CLASSPATH}:${DEV_JAR}” line. Insert the following line above that line:
CLASSPATH=${CLASSPATH}:${B2BDEVDIR}/…/common/lib/fabricClient.jar
3 Save console.sh.
Unfortunately, the solution provided doesn’t work. Indeed I was missing mentioned line, so I added it, restarted trading networks console and tried to do the same (associating action to new processing rule, but the error message is the same…This instance is run on Windows environment but it is connecting to IS run on UNIX server.
my console.bat looks like this:
@echo off
REM save old classpath
SET SAVEDCP=%CLASSPATH%
SET CONSOLEDIR=E:\software\wM\wM65Dev\TNConsole
SET B2BDEVDIR=E:\software\wM\wM65Dev\Developer
rem SET JAVA_ROOT=E:\software\wM\wM65Dev\jvm\win142
SET JAVA_ROOT=E:\software\java\j2sdk1.4.2_13
SET ADDCLASSES=
SET SSL_DIR=%B2BDEVDIR%\LIB\entrust
SET SSL_PATH=%SSL_DIR%\enttoolkit.jar
SET CLASSPATH=“%B2BDEVDIR%\lib\proxy.jar;%JAVA_ROOT%\lib\rt.jar;%CONSOLEDIR%\lib\tnproxy.jar;%SSL_PATH%;%B2BDEVDIR%..\common\lib\fabricClient.jar”
rem ================================================================
rem LAUNCH
rem ================================================================
rem ================================================================
rem HELPER FUNCTIONS
rem ================================================================
rem ================================================================
rem CLEANUP
rem ================================================================
:done
REM restore old classpath
SET CLASSPATH=%SAVEDCP%