Warning, /frameworks/kxmlrpcclient/README.md is written in an unsupported language. File is not indexed.
0001 # KXmlRpcClient 0002 0003 XML-RPC client 0004 0005 ## Introduction 0006 0007 This library contains simple XML-RPC Client support. It is a complete 0008 client and is quite easy to use. Only one interface is exposed to the 0009 world, kxmlrpcclient/client.h and of that interface, you only need to 0010 use 3 methods: setUrl, setUserAgent and call. 0011 0012 A small note on authentication. If you will be accessing an XML-RPC server 0013 which uses HTTP-AUTH, simply set the user and pass in the URL. To use 0014 Digest authentication, call setDigestAuthEnabled(true). 0015 0016 0017 ## Licensing 0018 0019 Redistribution and use in source and binary forms, with or without 0020 modification, are permitted provided that the following conditions 0021 are met: 0022 0023 1. Redistributions of source code must retain the above copyright 0024 notice, this list of conditions and the following disclaimer. 0025 2. Redistributions in binary form must reproduce the above copyright 0026 notice, this list of conditions and the following disclaimer in the 0027 documentation and/or other materials provided with the distribution. 0028 0029 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 0030 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 0031 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 0032 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 0033 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 0034 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 0035 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 0036 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 0037 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 0038 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.