Search found 238 matches

by jarl
Wed Oct 17, 2012 11:21 pm
Forum: Support - RCF
Topic: VS2010 fatal error C1189
Replies: 2
Views: 8517

Re: VS2010 fatal error C1189

Yes, you will generally need to have WIN32_LEAN_AND_MEAN defined, when building on Windows. In build 2664, I've changed the error message that emanates from Boost.Asio, to indicate this. The easiest way to deal with this is to specify WIN32_LEAN_AND_MEAN in your build settings (pass -DWIN32_LEAN_AND...
by jarl
Tue Oct 09, 2012 11:58 pm
Forum: Wish List
Topic: Looking forward more support in JSON-RPC feature
Replies: 2
Views: 13626

Re: Looking forward more support in JSON-RPC feature

Thanks for your feedback. The request id issue comes down to a limitation in JSON Spirit, the library we are using to parse JSON-RPC requests. Basically it will fail to parse a JSON-RPC request if the request id is not a number. I would suggest reporting this to the JSON Spirit author here: http://w...
by jarl
Tue Sep 04, 2012 12:28 pm
Forum: Support - RCF
Topic: File upload/download
Replies: 2
Views: 5344

Re: File upload/download

I will add it to the todo list - thanks for the suggestion.
by jarl
Fri Aug 03, 2012 4:50 am
Forum: Announcements
Topic: RCF 2.0 released
Replies: 0
Views: 18137

RCF 2.0 released

We are pleased to announce the release of RCF 2.0. You can download RCF 2.0 here: http://www.deltavsoft.com/download.html As part of the 2.0 release, we have also reworked the RCF User Guide: http://www.deltavsoft.com/doc RCF 2.0 has a number of syntactic changes from RCF 1.3.1, however almost all f...
by jarl
Sat Jul 28, 2012 1:40 am
Forum: Support - RCF
Topic: when to expect version 2.0?
Replies: 5
Views: 10614

Re: when to expect version 2.0?

A RCF 2.0 release candidate is now available on the Download page.
by jarl
Sat Jul 28, 2012 1:37 am
Forum: Announcements
Topic: RCF 2.0 release candidate available
Replies: 0
Views: 17949

RCF 2.0 release candidate available

A release candidate for RCF 2.0 is now available on the Download page.

A preliminary version of the RCF User Guide for 2.0 is available here.

Unless breaking issues are encountered, we anticipate releasing RCF 2.0 shortly.
by jarl
Sat Jul 14, 2012 1:23 pm
Forum: Support - RCF
Topic: Initialize a SubscriptionService before sending data.
Replies: 3
Views: 8067

Re: Initialize a SubscriptionService before sending data.

Thanks for the explanation :) Glad you got it working.
by jarl
Fri May 25, 2012 12:09 pm
Forum: Support - RCF
Topic: RCF 1.3.1 compiled with gcc 4.7.0 and C++11
Replies: 3
Views: 6857

Re: RCF 1.3.1 compiled with gcc 4.7.0 and C++11

Hi Volker,

I don't have a dev environment with gcc 4.7.0 readily available to test on. However - do you get still get the error if you omit the "-stdc++0x" flag?
by jarl
Sun May 06, 2012 11:36 am
Forum: Support - RCF
Topic: when to expect version 2.0?
Replies: 5
Views: 10614

Re: when to expect version 2.0?

We're hoping to have a release this month. The codebase is ready to go on pretty much all platforms, and we are currently working on finishing the documentation.
by jarl
Fri Apr 06, 2012 1:14 pm
Forum: Support - RCF
Topic: Identify the client from the server side.
Replies: 1
Views: 5042

Re: Identify the client from the server side.

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 ? When the client connects, you can have them pass a client-...