Search found 7 matches

by MyongKyun
Tue Jul 16, 2013 6:28 pm
Forum: Support - RCF
Topic: CLOSE_WAIT Socket Problem
Replies: 3
Views: 6935

Re: CLOSE_WAIT Socket Problem

Hi Thanks for your support. I added disconnect() of callback connection at session destroy function. But CLOSE_WAIT is still exist when session timeout. If I misundestand, let me know. static void onCallbackDisconnect(RCF::RcfSession &s) { std::cout << "disconnect" << std::endl; RcfClient<MyServiceC...
by MyongKyun
Thu Jul 11, 2013 12:51 am
Forum: Support - RCF
Topic: CLOSE_WAIT Socket Problem
Replies: 3
Views: 6935

CLOSE_WAIT Socket Problem

Hi I use createCallbackConnection() API, there are 2 TCP connection. When RCF session timed out, it seems RCF framework could not gracefully shutdown socket. client socket server socket 1st connection port 52545 ====> 50001 2nd connection port 52546 ====> 50001 When the session timed out, only 2nd T...
by MyongKyun
Thu Jul 04, 2013 12:01 am
Forum: Support - RCF
Topic: question about connection check
Replies: 2
Views: 5101

Re: question about connection check

if you need more detail description, please let me know.
by MyongKyun
Thu Jun 27, 2013 6:20 pm
Forum: Support - RCF
Topic: question about connection check
Replies: 2
Views: 5101

question about connection check

Hi When use createCallbackConnection() API, there are 2 TCP connection. I want to check connections wether the first connection is connected (or in an errornous situation) or disconnected. When I use client->getClientStub().isConnected(), I guess it is only available to check 2nd connection. Is ther...
by MyongKyun
Mon Jun 03, 2013 5:03 pm
Forum: Support - RCF
Topic: How do I detect tcp connections, from client-side code?
Replies: 2
Views: 5117

Re: How do I detect tcp connections, from client-side code?

Hi

When will you give me the answer?

if you need more detail description, please let me know.

Thanks
by MyongKyun
Tue May 28, 2013 6:26 pm
Forum: Support - RCF
Topic: How do I detect tcp connections, from client-side code?
Replies: 2
Views: 5117

How do I detect tcp connections, from client-side code?

Hi

When connection is establised and disconnected,

Is there connection/disconnection event callback at client side? or something?

Regards
Mr.Lim
by MyongKyun
Tue Apr 30, 2013 1:43 am
Forum: Support - RCF
Topic: Session Object does not exist after RCF::createCallbackConne
Replies: 3
Views: 7968

Session Object does not exist after RCF::createCallbackConne

Hi When I use callback connections, session objects doses not exist after RCF::createCallbackConnection. Test code is like blow. client->setname(test); <-- 1st call : create session obj at server side RCF::createCallbackConnection(*client, callbackServer); <-- 2nd call : session obj exist. client->p...