Hi,
Can you post a stack trace of the crash, using RCF 3.0?
Search found 238 matches
- Fri Jul 13, 2018 7:55 pm
- Forum: Support - RCF
- Topic: RCF Server crash in deinitThreadLocalData!!!
- Replies: 3
- Views: 8342
- Thu Jun 07, 2018 2:52 pm
- Forum: Support - RCF
- Topic: RCF Server crash in deinitThreadLocalData!!!
- Replies: 3
- Views: 8342
Re: RCF Server crash in deinitThreadLocalData!!!
Can you try the latest version of RCF (3.0)and see if you can still get a crash to occur?
- Wed May 16, 2018 3:18 am
- Forum: Support - RCF
- Topic: Tutorial for the Installation of RCF framework
- Replies: 1
- Views: 6272
Re: Tutorial for the Installation of RCF framework
Hi,
Did you run into any problems when following the build instructions in the documentation? There are also demo projects in the download, that can help to get you going.
I don't think we will be producing any video tutorials at this time, unfortunately.
Did you run into any problems when following the build instructions in the documentation? There are also demo projects in the download, that can help to get you going.
I don't think we will be producing any video tutorials at this time, unfortunately.
- Sun May 13, 2018 1:03 am
- Forum: Announcements
- Topic: RCF 3.0 released
- Replies: 0
- Views: 18354
RCF 3.0 released
We are pleased to announce the latest release of RCF. RCF 3.0 represents a major modernization of the RCF codebase, and lays the foundation for future development of the product. From the release notes in the product documentation : * RCF codebase upgraded to use C++11 and C++14 features. * Removed ...
- Fri Apr 20, 2018 12:14 am
- Forum: Support - RCF
- Topic: Bespoke Transport
- Replies: 3
- Views: 7894
Re: Bespoke Transport
We're currently in the process of getting RCF 3.0 ready for release. Once that's done I'll be reviewing what features to prioritize for development, but it's not really possible to give a schedule for that...
- Thu Apr 19, 2018 9:19 am
- Forum: Support - RCF
- Topic: Bespoke Transport
- Replies: 3
- Views: 7894
Re: Bespoke Transport
Hi,
Currently it's not feasible - there isn't any simple interface that you can implement and plug in.
I think it's a great idea though and would like to look at making this possible.
Currently it's not feasible - there isn't any simple interface that you can implement and plug in.
I think it's a great idea though and would like to look at making this possible.
- Thu Apr 19, 2018 3:43 am
- Forum: Support - RCF
- Topic: Multiple outstanding calls using Asynchronous RCF?
- Replies: 6
- Views: 11857
Re: Multiple outstanding calls using Asynchronous RCF?
Hi,
That's correct - you need to use distinct RcfClient<>'s for concurrent asynchronous calls. RCF currently does not support multiple outstanding calls on a single connection.
That's correct - you need to use distinct RcfClient<>'s for concurrent asynchronous calls. RCF currently does not support multiple outstanding calls on a single connection.
- Sat Jun 03, 2017 9:51 am
- Forum: Support - RCF
- Topic: Exception attempting to use Http Tunneling
- Replies: 11
- Views: 22277
Re: Exception attempting to use Http Tunneling
OK, that's good to know.
You can also try using RCF::HttpsEndpoint instead of RCF::HttpEndpoint, and see if that makes any difference.
You can also try using RCF::HttpsEndpoint instead of RCF::HttpEndpoint, and see if that makes any difference.
- Fri Jun 02, 2017 12:33 am
- Forum: Support - RCF
- Topic: Exception attempting to use Http Tunneling
- Replies: 11
- Views: 22277
Re: Exception attempting to use Http Tunneling
Do you have any compression or encryption configured on the client connection? That could possibly be triggering the extra writes. It would be very useful to see a call stack, at the point where the extra write is happening. Are you able to put a breakpoint in HttpFrameFilter::write() , in src\RCF\H...
- Wed May 31, 2017 4:26 am
- Forum: Support - RCF
- Topic: Exception attempting to use Http Tunneling
- Replies: 11
- Views: 22277
Re: Exception attempting to use Http Tunneling
Hi, Are there any forward or reverse HTTP proxies between the client and the server? If so you should try connecting a client directly to a server and see if that makes any difference. Are you able to run up Fiddler and inspect the HTTP traffic between the client and server? In each HTTP request the...