Home |
Last modified: 14-11-2012 |
http://www.powerbasic.com/support/forums/Forum7/HTML/002018.html
http://www.gipsysoft.com/qhtm/doc/
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html
This is an easier alternative to SOAP to build web services, ie. writing routines accessible from a remote host through the HTTP protocol to carry XML-formated data. Obviously, you should take into consideration the latency of calling routines over a network link, especially over a WAN link like the Internet, and also the fact that the code that make up the routines must be interpreted each time the routine is called; take a look at JIT compilers and cache managers to lower the cost.
Here's a sample XML-RPC call looks like (as copied from here):
Some solutions to access a web service through XML-RPC from VB and PHP code:
Here's a sample that worked using IXR_Library.inc.php (web server) and vbXMLRPC (VB5 client):