Search found 7 matches
- Thu Apr 05, 2012 2:21 pm
- Forum: Support - RCF
- Topic: Checking the connexion with Ping functionality
- Replies: 4
- Views: 11376
Re: Checking the connexion with Ping functionality
Actually, the isConnected has to be done once a first remote call has been done. But this implementation doesn't fit my expectations: if the connection is not established, the first remote call with throw an exception. As I'm not managing the exceptions, I need to test the connection before any remo...
- Thu Apr 05, 2012 2:17 pm
- Forum: Support - RCF
- Topic: Unhandled exception with Breakpoint
- Replies: 2
- Views: 7995
Re: Unhandled exception with Breakpoint
I found the solution: it was due do the standard timeout, set at 10s initially.
Julien.
Julien.
- Fri Mar 30, 2012 12:39 pm
- Forum: Support - RCF
- Topic: Checking the connexion with Ping functionality
- Replies: 4
- Views: 11376
Re: Checking the connexion with Ping functionality
Actually, isConnected() always returns 0. The fact I'm using Win32NamedPipe might be the issue, don't you think so ? Here is my code to test this function: server = new (std::nothrow) RCF::RcfServer(RCF::Win32NamedPipeEndpoint(OSUP_PIPE)); server->bind<I_SUP>(*this); server->start(); I_SupMonitoring...
- Thu Mar 29, 2012 2:01 pm
- Forum: Support - RCF
- Topic: Identify the client from the server side.
- Replies: 1
- Views: 6399
Identify the client from the server side.
Hello, I have one function on the server side that needs to know a caller identifier. Depending of the client who is calling this function, the result will differ. Is there a way to identify the client, from a function located in the server side ? By the way, is there a way to know all the clients c...
- Thu Mar 29, 2012 9:56 am
- Forum: Support - RCF
- Topic: Unhandled exception with Breakpoint
- Replies: 2
- Views: 7995
Unhandled exception with Breakpoint
Hello,
I have noticed that using a breakpoint in a shared function may throw an unhandled exception continuously. Does sb noticed the same issue ?
Julien.
I have noticed that using a breakpoint in a shared function may throw an unhandled exception continuously. Does sb noticed the same issue ?
Julien.
- Thu Mar 29, 2012 9:51 am
- Forum: Support - RCF
- Topic: Checking the connexion with Ping functionality
- Replies: 4
- Views: 11376
Re: Checking the connexion with Ping functionality
Thanks !
Julien.
Julien.
- Mon Mar 26, 2012 2:47 pm
- Forum: Support - RCF
- Topic: Checking the connexion with Ping functionality
- Replies: 4
- Views: 11376
Checking the connexion with Ping functionality
Hello, I'm managing a Server and a client and I'd like to ping the server to be sure the connexion is well established. As a test, I've created the client before the server, and I've done a ping. An exception is thrown in a loop, because the server is not existing. How can I manage this case? I'd li...