You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not able to connect to server from client using ACE framework using C++. Could you please let me know what could be the probable reason. More details about the system and steps are as below.
ACE VERSION: 6.5.4
HOST MACHINE and OPERATING SYSTEM: Intel core I7 8700. Windows10 Enterprise 2016 LTSB 64-bit OS. WinSock version: 10.0.14393.0 (This is a server)
TARGET MACHINE and OPERATING SYSTEM: Intel Xeon CPU. Windows10 Enterprise LTSC 64-bit OS. WinSock version: 10.0.17763.1 (this is a client)
THE $ACE_ROOT/ace/config.h FILE [if you use a link to a platform-specific file, simply state which one]: Not using
THE $ACE_ROOT/include/makeinclude/platform_macros.GNU FILE [if you use a link to a platform-specific file, simply state which one
(unless this isn't used in this case, e.g., with Microsoft Visual C++)]: Not using
CONTENTS OF $ACE_ROOT/bin/MakeProjectCreator/config/default.features(used by MPC when you generate your own makefiles): Not using
AREA/CLASS/EXAMPLE AFFECTED: Connection to the Server.
DOES THE PROBLEM AFFECT: Both are affected.
SYNOPSIS: Connection getting failed
DESCRIPTION:
On server machine, when I start main Application, a thread will be first started, which will use CAcceptor class to listen request on 8088 port. Next it launches client application on different machine in same network, using PsExec utility.
On client machine, first I am creating instance of ACE_INET_Addr using server’s IP and port number. Then connection to server is made using ACE_Proactor::instance()->proactor_run_event_loop(), which calls handle_connect (const ACE_Asynch_Connect::Result &result) function. Inside the function, Result’s error is shown as 10061. And due to the error, connection with server couldn’t establish.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Team,
I am not able to connect to server from client using ACE framework using C++. Could you please let me know what could be the probable reason. More details about the system and steps are as below.
ACE VERSION: 6.5.4
HOST MACHINE and OPERATING SYSTEM: Intel core I7 8700. Windows10 Enterprise 2016 LTSB 64-bit OS. WinSock version: 10.0.14393.0 (This is a server)
TARGET MACHINE and OPERATING SYSTEM: Intel Xeon CPU. Windows10 Enterprise LTSC 64-bit OS. WinSock version: 10.0.17763.1 (this is a client)
THE $ACE_ROOT/ace/config.h FILE [if you use a link to a platform-specific file, simply state which one]: Not using
THE $ACE_ROOT/include/makeinclude/platform_macros.GNU FILE [if you use a link to a platform-specific file, simply state which one
(unless this isn't used in this case, e.g., with Microsoft Visual C++)]: Not using
CONTENTS OF $ACE_ROOT/bin/MakeProjectCreator/config/default.features(used by MPC when you generate your own makefiles): Not using
AREA/CLASS/EXAMPLE AFFECTED: Connection to the Server.
DOES THE PROBLEM AFFECT: Both are affected.
SYNOPSIS: Connection getting failed
DESCRIPTION:
On server machine, when I start main Application, a thread will be first started, which will use CAcceptor class to listen request on 8088 port. Next it launches client application on different machine in same network, using PsExec utility.
On client machine, first I am creating instance of ACE_INET_Addr using server’s IP and port number. Then connection to server is made using ACE_Proactor::instance()->proactor_run_event_loop(), which calls handle_connect (const ACE_Asynch_Connect::Result &result) function. Inside the function, Result’s error is shown as 10061. And due to the error, connection with server couldn’t establish.
Beta Was this translation helpful? Give feedback.
All reactions