Search found 12 matches
- Mon Mar 30, 2020 9:29 pm
- Forum: Support - RCF
- Topic: RCF 3.1 with Boost.Serialization?
- Replies: 1
- Views: 15620
RCF 3.1 with Boost.Serialization?
I'm trying to build RCFDemo with RCF_FEATURE_BOOST_SERIALIZATION. It does not compile. Does RCF 3.1 support Boost Serialization? I change #include <SF/vector.hpp> for #include <boost/serialization/vector.hpp> in DemoInterface.hpp but get an error message: rcf-3.1.328\include\sf\serializer.hpp(267): ...
- Thu Jun 26, 2014 11:26 am
- Forum: Support - RCF
- Topic: Deriving from RcfClient<>
- Replies: 2
- Views: 6923
Deriving from RcfClient<>
The following code compiles with RCF 2.0.0.2682 and 1.3.1, but does not compile with the current 2.0.1.100 version. class Client : public RcfClient<MyService> { public: Client(RCF::Endpoint const &Endpoint) : public RcfClient<MyService>(Endpoint) {} }; Error log (VS 2010): error C2512: 'RCF::I_RcfCl...
- Thu Jun 26, 2014 11:05 am
- Forum: Support - RCF
- Topic: Using Boost Serialization
- Replies: 3
- Views: 8153
Re: Using Boost Serialization
Thank you. It works.
PS. Just want to notice you what it was OK before (in 2.0.0.2682 and 1.3).
PS. Just want to notice you what it was OK before (in 2.0.0.2682 and 1.3).
- Mon Jun 23, 2014 2:14 pm
- Forum: Support - RCF
- Topic: Using Boost Serialization
- Replies: 3
- Views: 8153
Using Boost Serialization
Hello! I'm trying to build a RCF-2.0.1.100 with using Boost.Serialization. I've defined RCF_USE_BOOST_SERIALIZATION for all RCFDemo projects and I modified MyService.hpp like this: #ifndef INCLUDE_MYSERVICE_HPP #define INCLUDE_MYSERVICE_HPP #include <string> #include <vector> #include <boost/seriali...
- Fri Jun 07, 2013 2:00 pm
- Forum: Support - RCF
- Topic: Staticaly linking of Zlib
- Replies: 6
- Views: 13103
Re: Staticaly linking of Zlib
It works! Thanks a lot!
- Thu Jun 06, 2013 8:52 pm
- Forum: Support - RCF
- Topic: Staticaly linking of Zlib
- Replies: 6
- Views: 13103
Re: Staticaly linking of Zlib
RCF_ZLIB_STATIC and RCF_ZLIB_STATIC=1 doesnot help
I'm getting "Unable to load library. Library name: zlib.dll" exception (RcfError_DllLoad) inside ZlibDll::ZlibDll(), i.e. before ZlibDll::loadFunctionPtrs() call (where RCF_ZLIB_STATIC comes into action)
I'm getting "Unable to load library. Library name: zlib.dll" exception (RcfError_DllLoad) inside ZlibDll::ZlibDll(), i.e. before ZlibDll::loadFunctionPtrs() call (where RCF_ZLIB_STATIC comes into action)
- Tue May 28, 2013 11:39 am
- Forum: Support - RCF
- Topic: Hung connections
- Replies: 6
- Views: 13942
Re: Hung connections
Jarl, please suggest a solution for 1.3.1. Thanks a lot!
- Fri May 24, 2013 9:42 am
- Forum: Support - RCF
- Topic: Hung connections
- Replies: 6
- Views: 13942
Re: Hung connections
Thanks for solution! How to do such thing with 1.3.1?
- Fri May 24, 2013 9:35 am
- Forum: Support - RCF
- Topic: Staticaly linking of Zlib
- Replies: 6
- Views: 13103
Re: Staticaly linking of Zlib
Thanks a lot. Waiting for a new version.
- Thu May 23, 2013 1:14 pm
- Forum: Support - RCF
- Topic: Hung connections
- Replies: 6
- Views: 13942
Hung connections
I'm having a huge trouble with hung connections on application running 24/7. Here is the short example to reproduce the problem. Server.cpp #include <algorithm> #include <iostream> #include <string> #include <vector> #include <RCF/RCF.hpp> #include "MyService.hpp" class Session { public: Session() {...