Reply to myself :-)

After instrumenting a bit Source\Base\Network\Socket\OSGGroupSockConnection.cpp in GroupSockConnection::connectSocket() with :

try
{
  socket.connect(SocketAddress(host.c_str(),port));
  connected = true;
}
// added by MM
catch (SocketError e) {
SNOTICE << "caught an exception in GroupSockConnection::connectSocket() : " << e << std::endl;
}
// end add
catch(...)
{
// added by MM
SNOTICE << "caught an unknown exception in GroupSockConnection::connectSocket()" << std::endl;
// end add
}

I get the following trace on the windows client...

INFO: send request to:224.245.211.234
INFO: send request to:255.255.255.255
NOTICE: caught an exception in GroupSockConnection::connectSocket() : SocketLib: connect() 10061 WSAECONNREFUSED

I will switch back to linux/linux and try to launch the server in debug mode to see where it hangs.

Regards,

--
Mathieu


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to