Search found 238 matches

by jarl
Tue Dec 13, 2016 10:58 pm
Forum: Support - RCFProto
Topic: Pointer to RCF::RcfClient
Replies: 3
Views: 10261

Re: Pointer to RCF::RcfClient

Hi,

There is a null interface you can use:

Code: Select all

RCF::RcfClient<RCF::I_Null> client( RCF::UdpEndpoint("232.5.5.5", 50001) );
by jarl
Tue Nov 15, 2016 1:06 am
Forum: Support - RCF
Topic: Build error: Callback connection example.
Replies: 2
Views: 5565

Re: Build error: Callback connection example.

Hi there, I was able to reproduce this compiler error with boost 1.59, but not with boost 1.60... So one option is to upgrade to a newer Boost version. Alternatively you can use standard C++ binding instead of Boost Bind, by changing this code: setOnCallbackConnectionCreated( boost::bind(&onCallback...
by jarl
Fri Jul 08, 2016 3:55 am
Forum: Support - RCF
Topic: Problem: Asynchronous remote call dispatching using UDP
Replies: 1
Views: 4520

Re: Problem: Asynchronous remote call dispatching using UDP

Hi,

Asynchronous call dispatching is currently not supported for the UDP transport... We are looking at implementing this in the next version.
by jarl
Sat Apr 23, 2016 12:06 pm
Forum: Support - RCF
Topic: publish/subscribe has a bug
Replies: 4
Views: 9669

Re: publish/subscribe has a bug

Are you able to send us some code that will reproduce the problem? Otherwise it will be hard to make any progress.
by jarl
Tue Apr 19, 2016 11:40 am
Forum: Support - RCF
Topic: Visual Studio 2015
Replies: 4
Views: 8139

Re: Visual Studio 2015

OK, I see. If you are serializing shared_ptr<> objects, all you need to do is put this:

Code: Select all

#include <SF/shared_ptr.hpp>
, at the top of your source code.
by jarl
Tue Apr 12, 2016 11:36 pm
Forum: Support - RCF
Topic: Visual Studio 2015
Replies: 4
Views: 8139

Re: Visual Studio 2015

Hi,

We have a new RCF release which is just about ready to go out the door. It has been tested against both VS 2015 and Boost 1.60.0 , so most likely that will resolve your issues. It should be on the website within the next few days.
by jarl
Wed Mar 30, 2016 11:41 pm
Forum: Support - RCF
Topic: Returning dynamic RCFClients
Replies: 3
Views: 6943

Re: Returning dynamic RCFClients

OK, I see what you mean. This isn't really possible, and I wouldn't recommend structuring a system like that either. I think a simpler way of implementing a solution is to just return whatever information you need, in a struct of some sort, and then you can have a factory function on the callers sid...
by jarl
Wed Mar 30, 2016 12:15 am
Forum: Support - RCF
Topic: Returning dynamic RCFClients
Replies: 3
Views: 6943

Re: Returning dynamic RCFClients

Hi, All RcfClient<> classes are derived from RCF::I_RcfClient. So you could have a function which returns a I_RcfClient, or more specifically, a RcfClientPtr which is just a boost::shared_ptr<RCF::I_RcfClient> : #include <RCF/ClientStub.hpp> RCF::RcfClientPtr someFactoryFunc() { if (...) { return RC...
by jarl
Thu Mar 10, 2016 12:37 am
Forum: Support - RCFProto
Topic: RCFProto how to do callback connection
Replies: 1
Views: 8136

Re: RCFProto how to do callback connection

Hi,

RCFProto does not yet support callback connections. However, it is high on the list of items we want to implement in the next version. Unfortunately I can't give a timetable for that though.
by jarl
Fri Jan 29, 2016 12:08 am
Forum: Support - RCFProto
Topic: receive SIGABRT
Replies: 14
Views: 27444

Re: receive SIGABRT

Hi,

Thanks for obtaining that assert message. I suspect that the assert on that line is actually incorrect, and may be the cause of the problem. Can you comment it out and rerun your tests?