Search found 7 matches

by jponnoua
Thu Apr 05, 2012 2:21 pm
Forum: Support - RCF
Topic: Checking the connexion with Ping functionality
Replies: 4
Views: 8861

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...
by jponnoua
Thu Apr 05, 2012 2:17 pm
Forum: Support - RCF
Topic: Unhandled exception with Breakpoint
Replies: 2
Views: 6206

Re: Unhandled exception with Breakpoint

I found the solution: it was due do the standard timeout, set at 10s initially.

Julien.
by jponnoua
Fri Mar 30, 2012 12:39 pm
Forum: Support - RCF
Topic: Checking the connexion with Ping functionality
Replies: 4
Views: 8861

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...
by jponnoua
Thu Mar 29, 2012 2:01 pm
Forum: Support - RCF
Topic: Identify the client from the server side.
Replies: 1
Views: 5036

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...
by jponnoua
Thu Mar 29, 2012 9:56 am
Forum: Support - RCF
Topic: Unhandled exception with Breakpoint
Replies: 2
Views: 6206

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.
by jponnoua
Mon Mar 26, 2012 2:47 pm
Forum: Support - RCF
Topic: Checking the connexion with Ping functionality
Replies: 4
Views: 8861

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...