Changes between Version 7 and Version 8 of XmlRpcDeveloping
- Timestamp:
- 05/15/06 11:17:06 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
XmlRpcDeveloping
v7 v8 48 48 Note 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. 49 49 50 = The real rocking coolexample =50 = The real Javascript example = 51 51 Download gnowsis and run this page: 52 52 * http://127.0.0.1:9993/gnowsis-server/ajax_example.html … … 117 117 * source:branches/gnowsis0.9/gnowsis-server/service/gnowsis-server/ajax_example.html use the source, luke 118 118 119 = A Visual Basic example = 120 You need [http://www.pocketsoap.com/pocketXMLRPC/ pocket-xmlrpc] to run this. 121 {{{ 122 Public 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) 127 End Sub 128 }}} 129 119 130 = So what services can I call? = 120 131 You can call all services that are listed in the corresponding {{{service.xml}}} files.