How to bypass TPTP IWAT0435E on Windows

I just installed the latest version of TPTP (4.6.1) and am using Eclipse build 20090621-0832on Windows 7 (User Control is enabled).
I am trying to profile an application, but the following error appears on the Monitor tab:

IWAT0435E An error occurred when connecting to the host.

Does anyone know how to solve this?

+3
source share
2 answers

For Windows, this may be due to a missing link to the Integrated Agent Controller (IAC)

- (IAC) - Workbench TPTP, Java TPTP- , - .
TPTP .
Integrated Agent Controller , TPTP , -. .

, TPTP, , :

  • ()
    . workspace\.metadata\.plugins\org.eclipse.tptp.platform.iac.administrator\config\ serviceconfig.xml
  • , IAC :
    localhost ( Window- > preferences- > Agent Controller- > hosts- > Test connection).
    . ( ) .

.


, Linux:

gcc libstdc++xx-glibcy.y, 244213 240677

, . , .


Extract:

.

: deb libstdc++2.10-glibc2.2_2.95.4-27_i386.deb sudo dpkg....

( 2010: gcc 3.x .
, , (gcc-3.3) libstdc++5_3.3.6-20_i386.deb, a. deb :

sudo dpkg --install libstdc++5_3.3.6-20_i386.deb

, 64-:

sudo dpkg --force-architecture --install libstdc++5_3.3.6-20_i386.deb

.)

, root.
-, root.
, deb root, , , , .

( , ) ~/usr.
, autotools --prefix=~/usr, ~/usr/bin, ~/usr/lib, ~/usr/share ..

deb, , ~/usr .
-, deb , :

dpkg -x libstdc++2.10-glibc2.2_2.95.4-27_i386.deb tmp/

:

tmp/
`-- usr
    |-- lib
    |   |-- libstdc++-3-libc6.2-2-2.10.0.so
    |   `-- libstdc++-libc6.2-2.so.3 -> libstdc++-3-libc6.2-2-2.10.0.so
    `-- share
        `-- doc
            `-- libstdc++2.10-glibc2.2
                |-- README.Bugs.gz
                |-- README.Debian
                |-- changelog.Debian.gz
                `-- copyright

libstdc++*.so ~/usr/lib , , deb :

dpkg -x libstdc++2.10-glibc2.2_2.95.4-27_i386.deb ~/

- , ( , ).
, LD_LIBRARY_PATH LD_RUN_PATH, , ~/.bashrc ~/.profile:

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/usr/lib
export LD_LIBRARY_PATH
LD_RUN_PATH=$LD_RUN_PATH:~/usr/lib
export LD_RUN_PATH

Eclipse TPTP . .

+2

, IAC . Windows/Preferences/Agent Controller/Integrated Agent Controller/

0

Source: https://habr.com/ru/post/1726994/


All Articles