Konstantin
Konstantin

Reputation: 6131

library for server side (c/c++) xmlrpc

I want to implement support of the XMLRPC protocol for my server that is written in C and C++ and now looking for the most widely adopted xmlrpc library. License is not an issue, GPL would be fine. What would you suggest ? Is there any defacto standard xmlrpc C library for such a purpose ?

Upvotes: 3

Views: 1595

Answers (2)

Richard Wolf
Richard Wolf

Reputation: 4109

Here are two options:

I've never used this one.

I have used this. It's industrial strength and does what it says on the tin.

Upvotes: 2

amo-ej1
amo-ej1

Reputation: 3307

The de facto standard would imo be this one: http://xmlrpc-c.sourceforge.net/ and it supports both C and C++ and it even has its own embedded http daemon for servicing the http requests ...

edit: and it's available under a BSD-style license, so it allows you to boldly go where GPL didn't allow you to go before ;)

Upvotes: 5

Related Questions