C/C++ RPC Tutorial for Linux [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can someone point me to a decent RPC tutorial for (or books) linux, like in this post. I tried looking around myself, I've only found tutorials that are really old.
Thanks

Since the idea of RPC goes back to 1976 and the first business use was by Xerox in 1981, I'm not exactly sure what qualifies as a really old tutorial.
Here are a few resources you might find helpful.
Power Programming with RPC (1992)
Remote Procedure Calls | Linux Journal (Oct 01, 1997)
Remote Procedure Calls (RPC) (1999)
Remote Procedure Call Programming Guide (PDF link)
rpc(3) - Linux man page

Related

Facebook posting in cocos2d-x from windows phone 8 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is it possible to share/post on Facebook from cocos2d-x on windows phone. I am writing in C++.
Yes its possible. You would be need to call your C# code from C++. You would find many example/Tutorial Regarding post on Facebook in C# using webBrowser. you just call that function from your C++ code. and for how to call C# function from C++ this (use webbroswer to integrate Alipay on Windows Phone 8) Documentation would help you out.
You'll want to use the Facebook C# SDK http://facebooksdk.net/ but you'll need some additional logic in order to call the C# API from your C++.
Here is a blog post I wrote on the subject that you should find useful: http://robwirving.com/2014/07/21/calling-c-methods-c-winrt-components/

Libraries for making a voice chat application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
My development team is going to build a voice chat application.
Our plan is to use a pre-made library just for this purpose, but we haven't found any good one after days of searching the internet, so I thought I would consider a question here!
So the question is:
What library / project do you recommend? We are deadly serious with this, so it needs to be a good working one. Preferable an open-source one as well.
We have been looking at some XMPP libraries and projects, but none seems to be up-to-date, tested and well-documented.
Did you have a look at libjingle ? Its the base library for Google Talk.
And on what platforms are you interested in such libraies ? I would recommend http://camaya.net/gloox/ or http://www.igniterealtime.org/projects/smack/ for portability, completeness and open standards.
www.pjsip.org
I think it is the best sip sdk around.

jXchange - How To Get Started? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
jXchange is apparently some sort of Web Service made by a company called Jack Henry. It's used for (I'm assuming) talking to your core AS400 system.
I've quite literally found nothing useful for documentation on how to get started using this.
Does anyone have experience with this and can direct me to a good starting point?
You can email a request for help to VendorQA#jackhenry.com if you are working for one of our customers licensed to jXCHANGE. We do have vendor documentation available provided that you are sponsored by a JHA customer.

C++ SpellChecker Library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Can anybody recommend a good (ideally open source) C++ spell checker library. We are currenly using Talo, which isn't very good, so we are looking to change.
One which includes a grammar checker would also be good.
Thanks
I have heard good things about hunspell. I have used and integrated aspell, which has some nice features and some which I did not like.
If you've got internet access, you can always use on online service like SpellCheck.net which has a CGI interface that you can query.
Following on from Yuval - OpenOffice Lingucomponent

Are there any good beginner tutorials for threads in windows? C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Looking for a good site or book that explains windows threads, preferably for a beginner. Maybe has a example program to run, etc....
You want Chapter 20 of Programming Windows by Charles Petzold "Multitasking and Multithreading".
It also covers related things like synchronization, and events.
This book is a classic, and probably one of the best ways to get a very good understanding of how Windows Win32 programming works with C++.
Otherwise you can start on this MSDN pages for CreateThread.
For a more portable solution, boost threads are another way to go as well. Combined with boost::bind and several boost synchronization objects, it makes for a very powerful threading library.