Using xmlrpc-client.lsp...

Q&A's, tips, howto's
Locked
oofoe
Posts: 61
Joined: Wed Sep 28, 2005 7:13 pm
Contact:

Using xmlrpc-client.lsp...

Post by oofoe »

Hi!

I ran into a little problem when using %xmlrpc-client.lsp with our python/django XMLRPC server at work. It has a very strict interpretation of how many arguments it will accept for certain functions, like system.listMethods, so the default request with the single dummy argument won't work.

I wound up adding something like this to xmlrpc-client.lsp:

Code: Select all

(define (format-request method)
  "( method /arg.../ -- XML) Compose XML request."

  (let ((xml (format
	      "<?xml version=\"1.0\"?><methodCall><methodName>%s</methodName><params>"
	      method)))
    (dolist (value (args))
      (push (format "<param><value>%s</value></param>" value) xml -1))
    (push "</params></methodCall>\n" xml -1)))
Then changing system.listMethods to:

Code: Select all

(define (system.listMethods url)
    (execute url (format-request "system.listMethods")))
Technically, format-request should also determine the type of the argument values (and encode lists and dictionaries correctly), but if you're only using string arguments, it should suffice.

Maybe someone has a better format-request they could share? ; - )
Testing can show the presence of bugs, but not their absence.

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: Using xmlrpc-client.lsp...

Post by Lutz »

Thanks Oofoe, additions added to the module:

http://www.newlisp.org/code/modules/xml ... t.lsp.html

abaddon1234
Posts: 21
Joined: Mon Sep 14, 2015 3:09 am

Re: Using xmlrpc-client.lsp...

Post by abaddon1234 »

Thanks for the info
ทางเข้า gclub

Locked