PDA

View Full Version : XML RPC for Qt4?



elcuco
15th March 2007, 09:45
I am looking for a XML RPC implementation for Qt4. I have searched a little in the web but found nothing interesting (a librarry with version 0.1 from 2003 and a promess to release something for Qt4 from 2005).

Anyone played with this funky stuff?

zeki709
15th March 2007, 13:32
The Qt solutions SOAP may be help.
http://www.trolltech.com/products/qt/addon/solutions/catalog/4/Utilities/qtsoap/

patrik08
15th March 2007, 13:35
I am looking for a XML RPC implementation for Qt4. I have searched a little in the web but found nothing interesting (a librarry with version 0.1 from 2003 and a promess to release something for Qt4 from 2005).

Anyone played with this funky stuff?


The basic XML-RPC Protocoll is the same as Webdav ... METHOD_PROPFIND

http://en.wikipedia.org/wiki/XML-RPC
http://webdav.org/specs/rfc2518.html#METHOD_PROPFIND

You create a xml file contains the command and send to server ... && server send back your query or XX parameter on xml format ..... on webdav you becom all dir tree level from disk space.. as XML is here a diff?..

Have a look on my Projekt QT WebDav Explorer ... the last subversion code .... this forum help me so match to build the source......

http://sourceforge.net/projects/qt-webdav/
https://qt-webdav.svn.sourceforge.net/svnroot/qt-webdav/webdavdir/dav/davpropfind.h

on QHttp header you can send evry http 1.1 method .... Put,Get,Delete,mkcol,Copy ecc.....

elcuco
15th March 2007, 14:52
Meanwhile I found this: http://qtnode.net/wiki/QxtXmlRpc

I will start looking at the qt-webdav library, but I think it's too overkill for me :)

I am lokoing also for a server, not only client.

And I am looking for LGPL or BSD software, no GPL nor propriety please (GPL as last resort).