[cl-soap-cvs] CVS update: cl-soap/src/soap.lisp
Sven Van Caekenberghe
scaekenberghe at common-lisp.net
Sat Sep 10 19:57:51 UTC 2005
Update of /project/cl-soap/cvsroot/cl-soap/src
In directory common-lisp.net:/tmp/cvs-serv29935/src
Modified Files:
soap.lisp
Log Message:
making clear that we only handle a single soap body elementCVS: ----------------------------------------------------------------------
Date: Sat Sep 10 21:57:50 2005
Author: scaekenberghe
Index: cl-soap/src/soap.lisp
diff -u cl-soap/src/soap.lisp:1.3 cl-soap/src/soap.lisp:1.4
--- cl-soap/src/soap.lisp:1.3 Fri Sep 9 13:21:16 2005
+++ cl-soap/src/soap.lisp Sat Sep 10 21:57:50 2005
@@ -1,6 +1,6 @@
;;;; -*- mode: lisp -*-
;;;;
-;;;; $Id: soap.lisp,v 1.3 2005/09/09 11:21:16 scaekenberghe Exp $
+;;;; $Id: soap.lisp,v 1.4 2005/09/10 19:57:50 scaekenberghe Exp $
;;;;
;;;; The basic SOAP protocol
;;;;
@@ -79,8 +79,16 @@
;;; Call Interface
-(defun soap-call (server-end-point header body &key soap-action envelope-attributes header-attributes body-attributes)
+(defun soap-call (server-end-point
+ header
+ body
+ &key
+ soap-action
+ envelope-attributes
+ header-attributes
+ body-attributes)
"Make a SOAP Call to server-end-point using headers and body"
+ ;; only one single body element is allowed/supported for now
(let* ((call-soap-envelope (soap-envelope header body
:envelope-attributes envelope-attributes
:header-attributes header-attributes
More information about the Cl-soap-cvs
mailing list