Changes between Version 7 and Version 8 of XmlRpcDeveloping


Ignore:
Timestamp:
05/15/06 11:17:06 (18 years ago)
Author:
sauermann
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • XmlRpcDeveloping

    v7 v8  
    4848Note that when the server throws an exception, the exception message will be passed to the xml/rpc client, so you know whats happening when it fails. 
    4949 
    50 = The real rocking cool example = 
     50= The real Javascript example = 
    5151Download gnowsis and run this page: 
    5252 * http://127.0.0.1:9993/gnowsis-server/ajax_example.html 
     
    117117 * source:branches/gnowsis0.9/gnowsis-server/service/gnowsis-server/ajax_example.html use the source, luke 
    118118 
     119= A Visual Basic example = 
     120You need [http://www.pocketsoap.com/pocketXMLRPC/ pocket-xmlrpc] to run this. 
     121{{{ 
     122Public Sub testXMLRPC() 
     123    Set f = CreateObject("pocketXMLRPC.Factory") 
     124    Set enquireeditor = f.Proxy("http://localhost:9993/RPC2", "enquire2006_editor.") 
     125    Dim hurz As Variant 
     126    hurz = enquireeditor.editResource("http://www.gnowsis.org", True, True) 
     127End Sub 
     128}}} 
     129 
    119130= So what services can I call? = 
    120131You can call all services that are listed in the corresponding {{{service.xml}}} files.