Search found 9 matches

by falk
Wed Aug 17, 2022 12:47 pm
Forum: Support - RCF
Topic: Publish/Subscribe issue with mixed RCF versions
Replies: 0
Views: 4482

Publish/Subscribe issue with mixed RCF versions

Hello, here is an issue with using RCF publish/subscribe with different RCF versions. Publishing an event from a publisher (v3.2) to a subscriber (v2.2) is somehow silently swallowed. Nothing happens on subscriber side, no event is received and no error is thrown on either subscriber or publisher si...
by falk
Mon Aug 10, 2015 12:47 pm
Forum: Support - RCF
Topic: Enable TCP socket option KEEPALIVE
Replies: 0
Views: 13440

Enable TCP socket option KEEPALIVE

Hello Jarl and all others, here is a question about the possibility of enabling keep-alive packets for socket connections on client-side. The goal is that the client will be notified via the TCP keep-alive feature if a connection faces problems. With access to the underlying native handler and some ...
by falk
Tue Aug 04, 2015 10:46 am
Forum: Support - RCF
Topic: Turn On/Off Nagel algorithm?
Replies: 4
Views: 8601

Re: Turn On/Off Nagel algorithm?

Hello, sorry for hijacking this thread. But i think that this is an extension to the original question relating to set TCP_NODELAY. We have a Publisher/Subscriber implementation here. And on Win7 we can see delays of 200 ms. The delays are observed on subscriber-side when the publisher tries to send...
by falk
Tue Aug 26, 2014 12:19 pm
Forum: Support - RCF
Topic: Creating callback connection established new connection.
Replies: 4
Views: 6852

Re: Creating callback connection established new connection.

Hi Jarl, well, this is embarrassing. :oops: The callback connection still established two connections, even with the addtional statement in Marshal.cpp . In my test scenario the second connection was made somewhat later on but is still created. Somewhere in TcpAsioServerTransport (e.g. method implTr...
by falk
Mon Aug 25, 2014 6:49 am
Forum: Support - RCF
Topic: Creating callback connection established new connection.
Replies: 4
Views: 6852

Re: Creating callback connection established new connection.

Hi Jarl, thanks for your response and your remarks to the topic. But i disagree with your statement if you want to keep on making regular client-to-server calls, you need to setup a new RcfClient<>, which will have its own TCP connection to the server. With my experiences so far with RCF, this is no...
by falk
Wed Aug 20, 2014 10:22 am
Forum: Support - RCF
Topic: Creating callback connection established new connection.
Replies: 4
Views: 6852

Creating callback connection established new connection.

Hello, we have an issue with the creation of callback connections as documented in http://www.deltavsoft.com/doc/rcf_user_guide/CallbackConn.html#rcf_user_guide.CallbackConn.creating_callback_connections . We are working currently with version RCF 2.0.0.2685. The callback connection makes it possibl...
by falk
Fri Aug 09, 2013 1:14 pm
Forum: Support - RCF
Topic: Android build for Rcf 1.3.1
Replies: 1
Views: 4818

Android build for Rcf 1.3.1

The Android platform was evaluated for the possibility of using the rcf library in version 1.3.1. At last the creation and using of a static lib was successfull with an additional small patch, attached in this post. I am not sure if the rcf framework is tested or even supported on this platform by y...
by falk
Fri Jul 13, 2012 9:00 am
Forum: Support - RCF
Topic: Initialize a SubscriptionService before sending data.
Replies: 3
Views: 7835

Re: Initialize a SubscriptionService before sending data.

Ok, late, but here is an answer post :) Thanks for your answer jarl. Here is it how it is implemented now in case someone is interested in. Now on the client side there is one RcfServer which serves the following purposes: It should listen for UDP Broadcasts if a service is somewhere available where...
by falk
Mon Apr 02, 2012 7:49 am
Forum: Support - RCF
Topic: Initialize a SubscriptionService before sending data.
Replies: 3
Views: 7835

Initialize a SubscriptionService before sending data.

Is it possible to remotely initialize a service subscriber while conneting before it get service data through the publishing service? In RCF there is the possibility to install a setOnConnectCallback function in the publisher. The callback knows the RCF Session object. Now this object is converted v...