Open protobuf service [closed] - web-services

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Do you know of a robust, free, ideally open source, web service that uses protobuf.
I maintain an Android library for networking and I write samples for every module. For instance, the JSON modules use Github apis to get some data from the network and illustrate the client library usage.
Do you know an equivalent for protobuf ?
Thanks in advance.

Your protobuf module could use this api to access from the android market place:
https://code.google.com/p/android-market-api/

Related

How to interact with a smart card in C/C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is there any open framework written in C/C++ which helps in interacting with smart card devices, here my aim is to create such a system which is platform independent by in C/C++.
I have been trying to search such Libraries but all i came across is Java based frameworks like OCF and Java Smart Card I/O API.
Any help is appreciated.
Indeed there are methods like SCardEstablishContext, SCardConnect, SCardTransmit, which you use to establish communication with the smart card, and then send commands to the card, on the APDU level.
See also here

How to canonicalize XML in C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have an in-app purchase support in my Windows Phone app, and want to add a server-side receipt verification. However, I want to canonicalize the receiptXml before sending it to server, so I am looking for a ready-to-use approach for XML canonicalization on Windows Phone.
Good libraries for C++ XML parsing are RapidXML, TinyXML, pugixml or maybe (depending on work env) Xerces-C++

Web services which offer free data in JSONP format [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
For example, Google provides dictionary definitions for English words in JSONP format from the following URL:
http://www.google.com/dictionary/json?callback=a&sl=en&tl=en&restrict=pr,de&client=te&q=internet
Do you know other JSONP sources of interesting free information on the Internet, which could be useful to create mash-up webs?
Thanks!
Check out Programmableweb's API directory
https://www.programmableweb.com/apis/directory
I believe they are trying to be the Git Hub of APIs. They have over 13,000 APIs in their registry.
Should be very easy to find sources to mash up. =)

Native C++ HTTPS REST call with certificate validation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What library is the best to use for the purpose? Target platform is Linux.
Difficult to tell the best, but i used Qt (QNetworkAccessManager) and a Qt JSON Parser with success.
I picked up libcurl thus it is enforced with SSL certificate validation. Regarding to REST, I am able to send GET and POST requests also. However it is C but not C++ library. But it does not make a big difference for me because the syntax is pretty clear and there are lot of examples.

Is there a C++ CalDav protocol library to connect to iCloud//Yahoo [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have started working on C++ Windows application which needs to fetch Icloud and Yahoo Calendars by connecting to the CalDav servers.
Is there a C++ library that implements this protocol?
Is there a C++ library that implements this protocol?
There's always a number of good opensource libs that implement standardised protocols like CalDav.
They are best hunted on FOSS project hosts (with the help of Google).
Here is afew:-
http://libcaldav.sourceforge.net/
http://trac.mulberrymail.com/repos/wiki/icalendar
https://code.google.com/p/kcaldav/ <- unmaintained but may be usefull
http://www.zarafa.com/ <- you might want to extract the CalDav only code from this
https://code.google.com/p/openconnector/ <- same as above