Sorry for the newbie question but I'm still new to Linux I have configured the 2x App sever on MS Server 2003 Enterprise. I have added an app to run remotely. I have configured a windows client on a Vista machine and I can connect and run the app without a problem. I have downloaded and extracted the Linux Beta client on my OpenSUSE desktop. I double click WTSClient and it launches a login screen almost the same as the windows version. When I set all the login info as on the windows client I get the error "An error occurred when connecting to the 2X ApplicationServer" I have read through this forum and I'm not sure what to do next. If someone could help I would appreciate it.
check that the applicationserver bin file is in a directory in your path /environment directive. Otherwise wtsclient cannot locate it
may be library issue - Linux appserver client fedora 9 Hi, The beta 2X appserverclient for Linux did not initially work for me either. I received the same error that the poster reported. appserverclient was looking for the "libcrypto.so.0.9.8" library and couldn't find it and would error out. My Fedora 9 32-bit workstation had "libcrypto.so.0.9.8g" installed in /lib instead of "libcrypto.so.0.9.8". The exact version of the crypto library that appserverclient was looking for _was_ located on my computer due to some NX software that I had installed and it was located in /usr/NX/lib/ . I loaded that library by creating a file located at /etc/ld.so.conf.d/2xappclient.conf containing the text "/usr/NX/lib/" (without the quotes) and then running the ldconfig command as root. I also created symlinks in /usr/local/bin: appserverclient -> /opt/2X/applicationserverclient/bin/appserverclient WTSClient -> /opt/2X/applicationserverclient/bin/WTSClient I probably also could have created a symlink named libcrypto.so.0.9.8 in /lib pointing to libcrypto.so.0.9.8g or one pointing to the one that I had in /usr/NX/lib, but I didn't want to.