(require 'cl-lib)
(require 'xml)
(require 'xsd-regexp)
(require 'rng-xsd)
(require 'rng-dt)
(require 'warnings)
(require 'url)
(require 'url-http)
(require 'url-util)
(require 'url-vars)
(require 'mm-decode)
(defsubst soap-warning (message &rest args)
"Display a warning MESSAGE with ARGS, using the `soap-client' warning type."
(display-warning 'soap-client (apply #'format message args) :warning))
(defgroup soap-client nil
"Access SOAP web services from Emacs."
:version "24.1"
:group 'tools)
(defconst soap-well-known-xmlns
'(("apachesoap" . "http://xml.apache.org/xml-soap")
("soapenc" . "http://schemas.xmlsoap.org/soap/encoding/")
("wsdl" . "http://schemas.xmlsoap.org/wsdl/")
("wsdlsoap" . "http://schemas.xmlsoap.org/wsdl/soap/")
("xsd" . "http://www.w3.org/2001/XMLSchema")
("xsi" . "http://www.w3.org/2001/XMLSchema-instance")
("wsa" . "http://www.w3.org/2005/08/addressing")
("wsaw" . "http://www.w3.org/2006/05/addressing/wsdl")
("soap" . "http://schemas.xmlsoap.org/soap/envelope/")
("soap12" . "http://schemas.xmlsoap.org/wsdl/soap12/")
("http" . "http://schemas.xmlsoap.org/wsdl/http/")
("mime" . "http://schemas.xmlsoap.org/wsdl/mime/")
("xml" . "http://www.w3.org/XML/1998/namespace"))
"A list of well known xml namespaces and their aliases.")
(defvar soap-local-xmlns
'(("xml" . "http://www.w3.org/XML/1998/namespace"))
"A list of local namespace aliases.
This is a dynamically bound variable, controlled by
`soap-with-local-xmlns'.")
(defvar soap-default-xmlns nil
"The default XML namespaces.
Names in this namespace will be unqualified. This is a
dynamically bound variable, controlled by
`soap-with-local-xmlns'")
(defvar soap-target-xmlns nil
"The target XML namespace.
New XSD elements will be defined in this namespace, unless they
are fully qualified for a different namespace. This is a
dynamically bound variable, controlled by
`soap-with-local-xmlns'")
(defvar soap-current-wsdl nil
"The current WSDL document used when decoding the SOAP response.
This is a dynamically bound variable.")
(defun soap-wk2l (well-known-name)
"Return local variant of WELL-KNOWN-NAME.
This is done by looking up the namespace in the
`soap-well-known-xmlns' table and resolving the namespace to
the local name based on the current local translation table
`soap-local-xmlns'. See also `soap-with-local-xmlns'."
(let ((wk-name-1 (if (symbolp well-known-name)
(symbol-name well-known-name)
well-known-name)))
(cond
((string-match "^\\(.*\\):\\(.*\\)$" wk-name-1)
(let ((ns (match-string 1 wk-name-1))
(name (match-string 2 wk-name-1)))
(let ((namespace (cdr (assoc ns soap-well-known-xmlns))))
(cond ((equal namespace soap-default-xmlns)
(if (symbolp well-known-name)
(intern name)
name))
(t
(let* ((local-ns (car (rassoc namespace soap-local-xmlns)))
(local-name (concat local-ns ":" name)))
(if (symbolp well-known-name)
(intern local-name)
local-name)))))))
(t well-known-name))))
(defun soap-l2wk (local-name)
"Convert LOCAL-NAME into a well known name.
The namespace of LOCAL-NAME is looked up in the
`soap-well-known-xmlns' table and a well known namespace tag is
used in the name.
nil is returned if there is no well-known namespace for the
namespace of LOCAL-NAME."
(let ((l-name-1 (if (symbolp local-name)
(symbol-name local-name)
local-name))
namespace name)
(cond
((string-match "^\\(.*\\):\\(.*\\)$" l-name-1)
(setq name (match-string 2 l-name-1))
(let ((ns (match-string 1 l-name-1)))
(setq namespace (cdr (assoc ns soap-local-xmlns)))
(unless namespace
(error "Soap-l2wk(%s): no namespace for alias %s" local-name ns))))
(t
(setq name l-name-1)
(setq namespace soap-default-xmlns)))
(if namespace
(let ((well-known-ns (car (rassoc namespace soap-well-known-xmlns))))
(if well-known-ns
(let ((well-known-name (concat well-known-ns ":" name)))
(if (symbolp local-name)
(intern well-known-name)
well-known-name))
nil))
name)))
(defun soap-l2fq (local-name &optional use-tns)
"Convert LOCAL-NAME into a fully qualified name.
A fully qualified name is a cons of the namespace name and the
name of the element itself. For example \"xsd:string\" is
converted to (\"http://www.w3.org/2001/XMLSchema\" . \"string\").
The USE-TNS argument specifies what to do when LOCAL-NAME has no
namespace tag. If USE-TNS is non-nil, the `soap-target-xmlns'
will be used as the element's namespace, otherwise
`soap-default-xmlns' will be used.
This is needed because different parts of a WSDL document can use
different namespace aliases for the same element."
(let ((local-name-1 (if (symbolp local-name)
(symbol-name local-name)
local-name)))
(cond ((string-match "^\\(.*\\):\\(.*\\)$" local-name-1)
(let ((ns (match-string 1 local-name-1))
(name (match-string 2 local-name-1)))
(let ((namespace (cdr (assoc ns soap-local-xmlns))))
(if namespace
(cons namespace name)
(error "Soap-l2fq(%s): unknown alias %s" local-name ns)))))
(t
(cons (if use-tns
soap-target-xmlns
soap-default-xmlns)
local-name-1)))))
(defun soap-name-p (name)
"Return t if NAME is a valid name for XMLSchema types.
A valid name is either a string or a cons of (NAMESPACE . NAME)."
(or (stringp name)
(and (consp name)
(stringp (car name))
(stringp (cdr name)))))
(defun soap-extract-xmlns (node &optional xmlns-table)
"Return a namespace alias table for NODE by extending XMLNS-TABLE."
(let (xmlns default-ns target-ns)
(dolist (a (xml-node-attributes node))
(let ((name (symbol-name (car a)))
(value (cdr a)))
(cond ((string= name "targetNamespace")
(setq target-ns value))
((string= name "xmlns")
(setq default-ns value))
((string-match "^xmlns:\\(.*\\)$" name)
(push (cons (match-string 1 name) value) xmlns)))))
(let ((tns (assoc "tns" xmlns)))
(cond ((and tns target-ns)
(unless (equal target-ns (cdr tns))
(soap-warning
"soap-extract-xmlns(%s): tns alias and targetNamespace mismatch"
(xml-node-name node))))
((and tns (not target-ns))
(setq target-ns (cdr tns)))))
(list default-ns target-ns (append xmlns xmlns-table))))
(defmacro soap-with-local-xmlns (node &rest body)
"Install a local alias table from NODE and execute BODY."
(declare (debug (form &rest form)) (indent 1))
(let ((xmlns (make-symbol "xmlns")))
`(let ((,xmlns (soap-extract-xmlns ,node soap-local-xmlns)))
(let ((soap-default-xmlns (or (nth 0 ,xmlns) soap-default-xmlns))
(soap-target-xmlns (or (nth 1 ,xmlns) soap-target-xmlns))
(soap-local-xmlns (nth 2 ,xmlns)))
,@body))))
(defun soap-get-target-namespace (node)
"Return the target namespace of NODE.
This is the namespace in which new elements will be defined."
(or (xml-get-attribute-or-nil node 'targetNamespace)
(cdr (assoc "tns" soap-local-xmlns))
soap-target-xmlns))
(defun soap-xml-get-children1 (node child-name)
"Return the children of NODE named CHILD-NAME.
This is the same as `xml-get-children', but CHILD-NAME can have
namespace tag."
(let (result)
(dolist (c (xml-node-children node))
(when (and (consp c)
(soap-with-local-xmlns c
(eq (ignore-errors (soap-l2wk (xml-node-name c)))
child-name)))
(push c result)))
(nreverse result)))
(defun soap-xml-node-find-matching-child (node set)
"Return the first child of NODE whose name is a member of SET."
(catch 'found
(dolist (child (xml-node-children node))
(when (and (consp child)
(memq (soap-l2wk (xml-node-name child)) set))
(throw 'found child)))))
(defun soap-xml-get-attribute-or-nil1 (node attribute)
"Return the NODE's ATTRIBUTE, or nil if it does not exist.
This is the same as `xml-get-attribute-or-nil', but ATTRIBUTE can
be tagged with a namespace tag."
(catch 'found
(soap-with-local-xmlns node
(dolist (a (xml-node-attributes node))
(when (eq (ignore-errors (soap-l2wk (car a))) attribute)
(throw 'found (cdr a)))))))
(cl-defstruct soap-element
name
namespace-tag)
(defun soap-element-fq-name (element)
"Return a fully qualified name for ELEMENT.
A fq name is the concatenation of the namespace tag and the
element name."
(cond ((soap-element-namespace-tag element)
(concat (soap-element-namespace-tag element)
":" (soap-element-name element)))
((soap-element-name element)
(soap-element-name element))
(t
"*unnamed*")))
(cl-defstruct (soap-namespace-link (:include soap-element))
target)
(cl-defstruct soap-namespace
(name nil :read-only t) (elements (make-hash-table :test 'equal) :read-only t))
(defun soap-namespace-put (element ns)
"Store ELEMENT in NS.
Multiple elements with the same name can be stored in a
namespace. When retrieving the element you can specify a
discriminant predicate to `soap-namespace-get'."
(let ((name (soap-element-name element)))
(push element (gethash name (soap-namespace-elements ns)))))
(defun soap-namespace-put-link (name target ns)
"Store a link from NAME to TARGET in NS.
TARGET can be either a SOAP-ELEMENT or a string denoting an
element name into another namespace.
If NAME is nil, an element with the same name as TARGET will be
added to the namespace."
(unless (and name (not (equal name "")))
(cond ((soap-element-p target)
(setq name (soap-element-name target)))
((consp target) (setq name (cdr target)))
((stringp target)
(cond ((string-match "^\\(.*\\):\\(.*\\)$" target)
(setq name (match-string 2 target)))
(t
(setq name target))))))
(cl-assert (and name (not (equal name "")))
nil
"Cannot determine name for namespace link")
(push (make-soap-namespace-link :name name :target target)
(gethash name (soap-namespace-elements ns))))
(defun soap-namespace-get (name ns &optional discriminant-predicate)
"Retrieve an element with NAME from the namespace NS.
If multiple elements with the same name exist,
DISCRIMINANT-PREDICATE is used to pick one of them. This allows
storing elements of different types (like a message type and a
binding) but the same name."
(cl-assert (stringp name))
(let ((elements (gethash name (soap-namespace-elements ns))))
(cond (discriminant-predicate
(catch 'found
(dolist (e elements)
(when (funcall discriminant-predicate e)
(throw 'found e)))))
((= (length elements) 1) (car elements))
((> (length elements) 1)
(error
"Soap-namespace-get(%s): multiple elements, discriminant needed"
name))
(t
nil))))
(cl-defstruct (soap-xs-type (:include soap-element))
id
attributes
attribute-groups)
(cl-defstruct (soap-xs-basic-type (:include soap-xs-type))
kind
)
(defun soap-make-xs-basic-types (namespace-name &optional namespace-tag)
"Construct NAMESPACE-NAME containing the XMLSchema basic types.
An optional NAMESPACE-TAG can also be specified."
(let ((ns (make-soap-namespace :name namespace-name)))
(dolist (type '("string" "language" "ID" "IDREF"
"dateTime" "time" "date" "boolean"
"gYearMonth" "gYear" "gMonthDay" "gDay" "gMonth"
"long" "short" "int" "integer" "nonNegativeInteger"
"unsignedLong" "unsignedShort" "unsignedInt"
"decimal" "duration"
"byte" "unsignedByte"
"float" "double"
"base64Binary" "anyType" "anyURI" "QName" "Array" "byte[]"))
(soap-namespace-put
(make-soap-xs-basic-type :name type
:namespace-tag namespace-tag
:kind (intern type))
ns))
ns))
(defun soap-encode-xs-basic-type-attributes (value type)
"Encode the XML attributes for VALUE according to TYPE.
The xsi:type and an optional xsi:nil attributes are added. The
attributes are inserted in the current buffer at the current
position.
This is a specialization of `soap-encode-attributes' for
`soap-xs-basic-type' objects."
(let ((xsi-type (soap-element-fq-name type))
(basic-type (soap-xs-basic-type-kind type)))
(when (eq basic-type 'anyType)
(cond ((stringp value)
(setq xsi-type "xsd:string" basic-type 'string))
((integerp value)
(setq xsi-type "xsd:int" basic-type 'int))
((memq value '(t nil))
(setq xsi-type "xsd:boolean" basic-type 'boolean))
(t
(error "Cannot classify anyType value"))))
(insert " xsi:type=\"" xsi-type "\"")
(unless (or value (eq basic-type 'boolean))
(insert " xsi:nil=\"true\""))))
(defun soap-encode-xs-basic-type (value type)
"Encode the VALUE according to TYPE.
The data is inserted in the current buffer at the current
position.
This is a specialization of `soap-encode-value' for
`soap-xs-basic-type' objects."
(let ((kind (soap-xs-basic-type-kind type))
(value (if (listp value) (progn (car (last value))) value)))
(when (eq kind 'anyType)
(cond ((stringp value)
(setq kind 'string))
((integerp value)
(setq kind 'int))
((memq value '(t nil))
(setq kind 'boolean))
(t
(error "Cannot classify anyType value"))))
(when (or value (eq kind 'boolean))
(let ((value-string
(cl-case kind
((string anyURI QName ID IDREF language)
(unless (stringp value)
(error "Not a string value: %s" value))
(url-insert-entities-in-string value))
((dateTime time date gYearMonth gYear gMonthDay gDay gMonth)
(cond ((consp value)
(format-time-string
(concat
(cl-ecase kind
(dateTime "%Y-%m-%dT%H:%M:%S")
(time "%H:%M:%S")
(date "%Y-%m-%d")
(gYearMonth "%Y-%m")
(gYear "%Y")
(gMonthDay "--%m-%d")
(gDay "---%d")
(gMonth "--%m"))
"Z")
value t))
((stringp value)
(soap-decode-date-time value kind)
(url-insert-entities-in-string value))
(t
(error "Invalid date-time format"))))
(boolean
(unless (memq value '(t nil))
(error "Not a boolean value"))
(if value "true" "false"))
((long short int integer byte unsignedInt unsignedLong
unsignedShort nonNegativeInteger decimal duration)
(unless (integerp value)
(error "Not an integer value"))
(when (and (memq kind '(unsignedInt unsignedLong
unsignedShort
nonNegativeInteger))
(< value 0))
(error "Not a positive integer"))
(number-to-string value))
((float double)
(unless (numberp value)
(error "Not a number"))
(number-to-string value))
(base64Binary
(unless (stringp value)
(error "Not a string value for base64Binary"))
(base64-encode-string value))
(otherwise
(error "Don't know how to encode %s for type %s"
value (soap-element-fq-name type))))))
(soap-validate-xs-basic-type value-string type)
(insert value-string)))))
(defun soap-decode-date-time (date-time-string &optional datatype)
"Decode DATE-TIME-STRING as DATATYPE.
DATE-TIME-STRING should be in ISO 8601 basic or extended format.
DATATYPE can be omitted, or one of the symbols dateTime, time,
date, gYearMonth, gYear, gMonthDay, gDay, or gMonth. If Emacs is
a version that supports fractional seconds, DATATYPE can also be
dateTime-subsecond, or time-subsecond. On older versions of
Emacs (prior to 27.1), which do not support fractional seconds,
leaving DATATYPE nil means that subseconds in DATE-TIME-STRING
will be ignored.
Return a list in a format identical or similar to that returned
by `decode-time'. The returned format is always compatible with
`encode-time'. If DATATYPE is omitted or nil, this function will
return a list that has exactly the same format as that returned
by `decode-time'.
Note that on versions of Emacs that predate support for
fractional seconds, `encode-time' will not notice the SUBSECOND
field so it must be handled specially.
The formats returned by this function are as follows, where _
means \"should be ignored\":
DATATYPE | Return format
------------+----------------------------------------------------------------
nil | (SECOND MINUTE HOUR DAY MONTH YEAR DOW DST UTCOFF)
dateTime | (SECOND MINUTE HOUR DAY MONTH YEAR SUBSECOND dateTime UTCOFF)
time | (SECOND MINUTE HOUR _ _ _ SUBSECOND time _)
date | (_ _ _ DAY MONTH YEAR _ date _)
gYearMonth | (_ _ _ _ MONTH YEAR _ gYearMonth _)
gYear | (_ _ _ _ _ YEAR _ gYear _)
gMonthDay | (_ _ _ DAY MONTH _ _ gMonthDay _)
gDay | (_ _ _ DAY _ _ _ gDay _)
gMonth | (_ _ _ _ MONTH _ _ gMonth _)
When DATATYPE is dateTime or time, the DOW (day-of-week) field is
replaced with SUBSECOND, a float representing the fractional
seconds, and the DST (daylight savings time) field is replaced
with DATATYPE, a symbol representing the XSD primitive datatype.
This symbol can be used to determine which fields apply and which
do not, when it is not already clear from context. For example a
datatype of `time' means the year, month, day and time zone
fields should be ignored.
New code that depends on Emacs 27.1 or newer anyway, and that
wants dateTime or time but with the first argument with subsecond
resolution, i.e., (TICKS . HZ), can set DATATYPE to
dateTime-subsecond or time-subsecond respectively. This function
throws an error if dateTime-subsecond or time-subsecond is
specified when Emacs does not support subsecond resolution.
This function throws an error if DATE-TIME-STRING represents a
leap second, since the XML Schema 1.1 standard does not support
representing leap seconds."
(let* ((new-decode-time (condition-case nil
(not (null
(with-no-warnings (decode-time nil nil t))))
(wrong-number-of-arguments)))
(new-decode-time-second nil)
(no-support "This Emacs version does not support %s")
(datetime-regexp-type
(cl-case datatype
((dateTime-subsecond time-subsecond)
(if new-decode-time
(intern (replace-regexp-in-string
"-subsecond" "" (symbol-name datatype)))
(error (format no-support (symbol-name datatype)))))
((nil) 'dateTime)
(otherwise datatype)))
(datetime-regexp (cadr (get datetime-regexp-type 'rng-xsd-convert)))
(year-sign (progn
(string-match datetime-regexp date-time-string)
(match-string 1 date-time-string)))
(year (match-string 2 date-time-string))
(month (match-string 3 date-time-string))
(day (match-string 4 date-time-string))
(hour (match-string 5 date-time-string))
(minute (match-string 6 date-time-string))
(second (match-string 7 date-time-string))
(second-fraction (match-string 8 date-time-string))
(time-zone nil)
(has-time-zone (match-string 9 date-time-string))
(time-zone-sign (match-string 10 date-time-string))
(time-zone-hour (match-string 11 date-time-string))
(time-zone-minute (match-string 12 date-time-string)))
(setq year-sign (if year-sign -1 1))
(setq year
(if year
(* year-sign
(string-to-number year))
1970))
(setq month
(if month (string-to-number month) 1))
(setq day
(if day (string-to-number day) 1))
(setq hour
(if hour (string-to-number hour) 0))
(setq minute
(if minute (string-to-number minute) 0))
(when new-decode-time
(setq new-decode-time-second
(if second
(if second-fraction
(let* ((second-fraction-significand
(replace-regexp-in-string "\\." "" second-fraction))
(hertz
(expt 10 (length second-fraction-significand)))
(ticks (+ (* hertz (string-to-number second))
(string-to-number
second-fraction-significand))))
(cons ticks hertz))
(cons second 1)))))
(setq second
(if second (string-to-number second) 0))
(setq second-fraction
(if second-fraction
(progn
(when (and (not datatype) (not new-decode-time))
(message
"soap-decode-date-time: Discarding fractional seconds"))
(float (string-to-number second-fraction)))
0.0))
(setq has-time-zone (and has-time-zone t))
(setq time-zone-sign
(if (equal time-zone-sign "-") -1 1))
(setq time-zone-hour
(if time-zone-hour (string-to-number time-zone-hour) 0))
(setq time-zone-minute
(if time-zone-minute (string-to-number time-zone-minute) 0))
(setq time-zone (if has-time-zone
(* (rng-xsd-time-to-seconds
time-zone-hour
time-zone-minute
0)
time-zone-sign)
0))
(unless (and
(> year 0)
(>= month 1) (<= month 12)
(>= day 1) (<= day (rng-xsd-days-in-month year month))
(>= hour 0) (<= hour 23)
(>= minute 0) (<= minute 59)
(>= second 0) (<= second 59)
(>= time-zone-hour 0)
(<= time-zone-hour 23)
(>= time-zone-minute 0)
(<= time-zone-minute 59))
(error "Invalid or unsupported time: %s" date-time-string))
(if datatype
(list (if (memq datatype '(dateTime-subsecond time-subsecond))
new-decode-time-second
second)
minute hour day month year second-fraction datatype time-zone)
(let ((time
(encode-time (list
(if new-decode-time new-decode-time-second second)
minute hour day month year nil nil time-zone))))
(if new-decode-time
(with-no-warnings (decode-time time nil t))
(decode-time time))))))
(defun soap-decode-xs-basic-type (type node)
"Use TYPE, a `soap-xs-basic-type', to decode the contents of NODE.
A LISP value is returned based on the contents of NODE and the
type-info stored in TYPE.
This is a specialization of `soap-decode-type' for
`soap-xs-basic-type' objects."
(let ((contents (xml-node-children node))
(kind (soap-xs-basic-type-kind type))
(attributes (xml-node-attributes node))
(validate-type type)
(is-nil nil))
(dolist (attribute attributes)
(let ((attribute-type (soap-l2fq (car attribute)))
(attribute-value (cdr attribute)))
(when (equal attribute-type (soap-l2fq "xsi:type"))
(setq validate-type
(soap-wsdl-get attribute-value soap-current-wsdl)))
(when (equal attribute-type (soap-l2fq "xsi:nil"))
(setq is-nil (string= (downcase attribute-value) "true")))))
(unless is-nil
(soap-validate-xs-basic-type (car (or contents (list ""))) validate-type))
(if (null contents)
nil
(cl-ecase kind
((string anyURI QName ID IDREF language) (car contents))
((dateTime time date gYearMonth gYear gMonthDay gDay gMonth)
(car contents))
((long short int integer
unsignedInt unsignedLong unsignedShort nonNegativeInteger
decimal byte float double duration)
(string-to-number (car contents)))
(boolean (string= (downcase (car contents)) "true"))
(base64Binary (base64-decode-string (car contents)))
(anyType (soap-decode-any-type node))
(Array (soap-decode-array node))))))
(defalias 'soap-type-of
(if (eq 'soap-xs-basic-type (type-of (make-soap-xs-basic-type)))
#'type-of
(lambda (element)
"Return the type of ELEMENT."
(if (vectorp element)
(aref element 0) (type-of element)))))
(let ((tag (soap-type-of (make-soap-xs-basic-type))))
(put tag 'soap-attribute-encoder #'soap-encode-xs-basic-type-attributes)
(put tag 'soap-encoder #'soap-encode-xs-basic-type)
(put tag 'soap-decoder #'soap-decode-xs-basic-type))
(cl-defstruct (soap-xs-element (:include soap-element))
id
type^ optional?
multiple?
reference
substitution-group
alternatives
is-group)
(defun soap-xs-element-type (element)
"Retrieve the type of ELEMENT.
This is normally stored in the TYPE^ slot, but if this element
contains a reference, retrieve the type of the reference."
(if (soap-xs-element-reference element)
(soap-xs-element-type (soap-xs-element-reference element))
(soap-xs-element-type^ element)))
(defun soap-node-optional (node)
"Return t if NODE specifies an optional element."
(or (equal (xml-get-attribute-or-nil node 'nillable) "true")
(let ((e (xml-get-attribute-or-nil node 'minOccurs)))
(and e (equal e "0")))))
(defun soap-node-multiple (node)
"Return t if NODE permits multiple elements."
(let* ((e (xml-get-attribute-or-nil node 'maxOccurs)))
(and e (not (equal e "1")))))
(defun soap-xs-parse-element (node)
"Construct a `soap-xs-element' from NODE."
(let ((name (xml-get-attribute-or-nil node 'name))
(id (xml-get-attribute-or-nil node 'id))
(type (xml-get-attribute-or-nil node 'type))
(optional? (soap-node-optional node))
(multiple? (soap-node-multiple node))
(ref (xml-get-attribute-or-nil node 'ref))
(substitution-group (xml-get-attribute-or-nil node 'substitutionGroup))
(node-name (soap-l2wk (xml-node-name node))))
(cl-assert (memq node-name '(xsd:element xsd:group))
"expecting xsd:element or xsd:group, got %s" node-name)
(when type
(setq type (soap-l2fq type 'tns)))
(when ref
(setq ref (soap-l2fq ref 'tns)))
(when substitution-group
(setq substitution-group (soap-l2fq substitution-group 'tns)))
(unless (or ref type)
(let ((simple-type (soap-xml-get-children1 node 'xsd:simpleType)))
(if simple-type
(setq type (soap-xs-parse-simple-type (car simple-type)))
(let ((complex-type (soap-xml-get-children1 node 'xsd:complexType)))
(if complex-type
(setq type (soap-xs-parse-complex-type (car complex-type)))
(error "soap-xs-parse-element: Missing type or ref"))))))
(make-soap-xs-element :name name
:namespace-tag soap-target-xmlns
:id id :type^ type
:optional? optional? :multiple? multiple?
:reference ref
:substitution-group substitution-group
:is-group (eq node-name 'xsd:group))))
(defun soap-resolve-references-for-xs-element (element wsdl)
"Replace names in ELEMENT with the referenced objects in the WSDL.
This is a specialization of `soap-resolve-references' for
`soap-xs-element' objects.
See also `soap-wsdl-resolve-references'."
(let ((namespace (soap-element-namespace-tag element)))
(when namespace
(let ((nstag (car (rassoc namespace (soap-wsdl-alias-table wsdl)))))
(when nstag
(setf (soap-element-namespace-tag element) nstag)))))
(let ((type (soap-xs-element-type^ element)))
(cond ((soap-name-p type)
(setf (soap-xs-element-type^ element)
(soap-wsdl-get type wsdl 'soap-xs-type-p)))
((soap-xs-type-p type)
(soap-resolve-references type wsdl))))
(let ((reference (soap-xs-element-reference element)))
(when (and (soap-name-p reference)
(not (soap-xs-element-is-group element)))
(setf (soap-xs-element-reference element)
(soap-wsdl-get reference wsdl 'soap-xs-element-p))))
(let ((subst (soap-xs-element-substitution-group element)))
(when (soap-name-p subst)
(let ((target (soap-wsdl-get subst wsdl)))
(if target
(push element (soap-xs-element-alternatives target))
(soap-warning "No target found for substitution-group" subst))))))
(defun soap-encode-xs-element-attributes (value element)
"Encode the XML attributes for VALUE according to ELEMENT.
Currently no attributes are needed.
This is a specialization of `soap-encode-attributes' for
`soap-xs-basic-type' objects."
(list value element)
nil)
(defun soap-should-encode-value-for-xs-element (value element)
"Return t if VALUE should be encoded for ELEMENT, nil otherwise."
(cond
(value t)
((let ((type (soap-xs-element-type element)))
(and (soap-xs-basic-type-p type)
(eq (soap-xs-basic-type-kind type) 'boolean))))
((let ((type (soap-xs-element-type element)))
(catch 'found
(dolist (a (soap-xs-type-attributes type))
(when (soap-xs-attribute-default a)
(throw 'found t))))))
(t nil)))
(defun soap-type-is-array? (type)
"Return t if TYPE defines an ARRAY."
(and (soap-xs-complex-type-p type)
(eq (soap-xs-complex-type-indicator type) 'array)))
(defvar soap-encoded-namespaces nil
"A list of namespace tags used during encoding a message.
This list is populated by `soap-encode-value' and used by
`soap-create-envelope' to add aliases for these namespace to the
XML request.
This variable is dynamically bound in `soap-create-envelope'.")
(defun soap-encode-xs-element (value element)
"Encode the VALUE according to ELEMENT.
The data is inserted in the current buffer at the current
position.
This is a specialization of `soap-encode-value' for
`soap-xs-basic-type' objects."
(let ((fq-name (soap-element-fq-name element))
(type (soap-xs-element-type element)))
(if (soap-element-name element)
(when (soap-should-encode-value-for-xs-element value element)
(progn
(insert "<" fq-name)
(soap-encode-attributes value type)
(if (or value (and (soap-xs-basic-type-p type)
(eq (soap-xs-basic-type-kind type) 'boolean)))
(progn (insert ">")
(if (soap-type-is-array? type)
(let ((new-element (copy-soap-xs-element element)))
(when (soap-element-namespace-tag type)
(add-to-list 'soap-encoded-namespaces
(soap-element-namespace-tag type)))
(setf (soap-xs-element-type^ new-element)
(soap-xs-complex-type-base type))
(cl-loop for i below (length value)
do (soap-encode-xs-element
(aref value i) new-element)))
(soap-encode-value value type))
(insert "</" fq-name ">\n"))
(insert "/>\n"))))
(when (soap-should-encode-value-for-xs-element value element)
(soap-encode-value value type)))))
(defun soap-decode-xs-element (element node)
"Use ELEMENT, a `soap-xs-element', to decode the contents of NODE.
A LISP value is returned based on the contents of NODE and the
type-info stored in ELEMENT.
This is a specialization of `soap-decode-type' for
`soap-xs-basic-type' objects."
(let ((type (soap-xs-element-type element)))
(soap-decode-type type node)))
(let ((tag (soap-type-of (make-soap-xs-element))))
(put tag 'soap-resolve-references #'soap-resolve-references-for-xs-element)
(put tag 'soap-attribute-encoder #'soap-encode-xs-element-attributes)
(put tag 'soap-encoder #'soap-encode-xs-element)
(put tag 'soap-decoder #'soap-decode-xs-element))
(cl-defstruct (soap-xs-attribute (:include soap-element))
type default reference)
(cl-defstruct (soap-xs-attribute-group (:include soap-xs-type))
reference)
(defun soap-xs-parse-attribute (node)
"Construct a `soap-xs-attribute' from NODE."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'xsd:attribute)
"expecting xsd:attribute, got %s" (soap-l2wk (xml-node-name node)))
(let* ((name (xml-get-attribute-or-nil node 'name))
(type (soap-l2fq (xml-get-attribute-or-nil node 'type)))
(default (xml-get-attribute-or-nil node 'fixed))
(attribute (xml-get-attribute-or-nil node 'ref))
(ref (when attribute (soap-l2fq attribute))))
(unless (or type ref)
(setq type (soap-xs-parse-simple-type
(soap-xml-node-find-matching-child
node '(xsd:restriction xsd:list xsd:union)))))
(make-soap-xs-attribute
:name name :type type :default default :reference ref)))
(defun soap-xs-parse-attribute-group (node)
"Construct a `soap-xs-attribute-group' from NODE."
(let ((node-name (soap-l2wk (xml-node-name node))))
(cl-assert (eq node-name 'xsd:attributeGroup)
"expecting xsd:attributeGroup, got %s" node-name)
(let ((name (xml-get-attribute-or-nil node 'name))
(id (xml-get-attribute-or-nil node 'id))
(ref (xml-get-attribute-or-nil node 'ref))
attribute-group)
(when (and name ref)
(soap-warning "name and ref set for attribute group %s" node-name))
(setq attribute-group
(make-soap-xs-attribute-group :id id
:name name
:reference (and ref (soap-l2fq ref))))
(when (not ref)
(dolist (child (xml-node-children node))
(unless (stringp child)
(cl-case (soap-l2wk (xml-node-name child))
(xsd:attribute
(push (soap-xs-parse-attribute child)
(soap-xs-type-attributes attribute-group)))
(xsd:attributeGroup
(push (soap-xs-parse-attribute-group child)
(soap-xs-attribute-group-attribute-groups
attribute-group)))))))
attribute-group)))
(defun soap-resolve-references-for-xs-attribute (attribute wsdl)
"Replace names in ATTRIBUTE with the referenced objects in the WSDL.
This is a specialization of `soap-resolve-references' for
`soap-xs-attribute' objects.
See also `soap-wsdl-resolve-references'."
(let* ((type (soap-xs-attribute-type attribute))
(reference (soap-xs-attribute-reference attribute))
(predicate 'soap-xs-element-p)
(xml-reference
(and (soap-name-p reference)
(equal (car reference) "http://www.w3.org/XML/1998/namespace"))))
(cond (xml-reference
(setq reference '("http://www.w3.org/2001/XMLSchema" . "string"))
(setq predicate 'soap-xs-basic-type-p))
((soap-name-p type)
(setf (soap-xs-attribute-type attribute)
(soap-wsdl-get type wsdl
(lambda (type)
(or (soap-xs-basic-type-p type)
(soap-xs-simple-type-p type))))))
((soap-xs-type-p type)
(soap-resolve-references type wsdl)))
(when (soap-name-p reference)
(setf (soap-xs-attribute-reference attribute)
(soap-wsdl-get reference wsdl predicate)))))
(put (soap-type-of (make-soap-xs-attribute))
'soap-resolve-references #'soap-resolve-references-for-xs-attribute)
(defun soap-resolve-references-for-xs-attribute-group (attribute-group wsdl)
"Set slots in ATTRIBUTE-GROUP to the referenced objects in the WSDL.
This is a specialization of `soap-resolve-references' for
`soap-xs-attribute-group' objects.
See also `soap-wsdl-resolve-references'."
(let ((reference (soap-xs-attribute-group-reference attribute-group)))
(when (soap-name-p reference)
(let ((resolved (soap-wsdl-get reference wsdl
'soap-xs-attribute-group-p)))
(dolist (attribute (soap-xs-attribute-group-attributes resolved))
(soap-resolve-references attribute wsdl))
(setf (soap-xs-attribute-group-name attribute-group)
(soap-xs-attribute-group-name resolved))
(setf (soap-xs-attribute-group-id attribute-group)
(soap-xs-attribute-group-id resolved))
(setf (soap-xs-attribute-group-reference attribute-group) nil)
(setf (soap-xs-attribute-group-attributes attribute-group)
(soap-xs-attribute-group-attributes resolved))
(setf (soap-xs-attribute-group-attribute-groups attribute-group)
(soap-xs-attribute-group-attribute-groups resolved))))))
(put (soap-type-of (make-soap-xs-attribute-group))
'soap-resolve-references #'soap-resolve-references-for-xs-attribute-group)
(cl-defstruct (soap-xs-simple-type (:include soap-xs-type))
base enumeration pattern length-range integer-range is-list )
(defun soap-xs-parse-simple-type (node)
"Construct an `soap-xs-simple-type' object from the XML NODE."
(cl-assert (memq (soap-l2wk (xml-node-name node))
'(xsd:simpleType xsd:simpleContent))
nil
"expecting xsd:simpleType or xsd:simpleContent node, got %s"
(soap-l2wk (xml-node-name node)))
(let ((name (xml-get-attribute-or-nil node 'name))
(id (xml-get-attribute-or-nil node 'id)))
(let ((type (make-soap-xs-simple-type
:name name :namespace-tag soap-target-xmlns :id id))
(def (soap-xml-node-find-matching-child
node '(xsd:restriction xsd:extension xsd:union xsd:list))))
(cl-ecase (soap-l2wk (xml-node-name def))
(xsd:restriction (soap-xs-add-restriction def type))
(xsd:extension (soap-xs-add-extension def type))
(xsd:union (soap-xs-add-union def type))
(xsd:list (soap-xs-add-list def type)))
type)))
(defun soap-xs-add-restriction (node type)
"Add restrictions defined in XML NODE to TYPE, an `soap-xs-simple-type'."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'xsd:restriction)
nil
"expecting xsd:restriction node, got %s"
(soap-l2wk (xml-node-name node)))
(setf (soap-xs-simple-type-base type)
(soap-l2fq (xml-get-attribute node 'base)))
(dolist (r (xml-node-children node))
(unless (stringp r) (let ((value (xml-get-attribute r 'value)))
(cl-case (soap-l2wk (xml-node-name r))
(xsd:enumeration
(push value (soap-xs-simple-type-enumeration type)))
(xsd:pattern
(setf (soap-xs-simple-type-pattern type)
(concat "\\`" (xsdre-translate value) "\\'")))
(xsd:length
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-length-range type)
(cons value value))))
(xsd:minLength
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-length-range type)
(if (soap-xs-simple-type-length-range type)
(cons value
(cdr (soap-xs-simple-type-length-range type)))
(cons value nil)))))
(xsd:maxLength
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-length-range type)
(if (soap-xs-simple-type-length-range type)
(cons (car (soap-xs-simple-type-length-range type))
value)
(cons nil value)))))
(xsd:minExclusive
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-integer-range type)
(if (soap-xs-simple-type-integer-range type)
(cons (1+ value)
(cdr (soap-xs-simple-type-integer-range type)))
(cons (1+ value) nil)))))
(xsd:maxExclusive
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-integer-range type)
(if (soap-xs-simple-type-integer-range type)
(cons (car (soap-xs-simple-type-integer-range type))
(1- value))
(cons nil (1- value))))))
(xsd:minInclusive
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-integer-range type)
(if (soap-xs-simple-type-integer-range type)
(cons value
(cdr (soap-xs-simple-type-integer-range type)))
(cons value nil)))))
(xsd:maxInclusive
(let ((value (string-to-number value)))
(setf (soap-xs-simple-type-integer-range type)
(if (soap-xs-simple-type-integer-range type)
(cons (car (soap-xs-simple-type-integer-range type))
value)
(cons nil value))))))))))
(defun soap-xs-add-union (node type)
"Add union members defined in XML NODE to TYPE, an `soap-xs-simple-type'."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'xsd:union)
nil
"expecting xsd:union node, got %s"
(soap-l2wk (xml-node-name node)))
(setf (soap-xs-simple-type-base type)
(mapcar #'soap-l2fq
(split-string
(or (xml-get-attribute-or-nil node 'memberTypes) ""))))
(let (result)
(dolist (simple-type (soap-xml-get-children1 node 'xsd:simpleType))
(push (soap-xs-parse-simple-type simple-type) result))
(setf (soap-xs-simple-type-base type)
(append (soap-xs-simple-type-base type) (nreverse result)))))
(defun soap-xs-add-list (node type)
"Add list defined in XML NODE to TYPE, a `soap-xs-simple-type'."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'xsd:list)
nil
"expecting xsd:list node, got %s" (soap-l2wk (xml-node-name node)))
(let* ((item-type (xml-get-attribute-or-nil node 'itemType))
(children (soap-xml-get-children1 node 'xsd:simpleType)))
(if item-type
(if (= (length children) 0)
(setf (soap-xs-simple-type-base type) (soap-l2fq item-type))
(soap-warning
"xsd:list node with itemType has more than zero children: %s"
(soap-xs-type-name type)))
(if (= (length children) 1)
(setf (soap-xs-simple-type-base type)
(soap-xs-parse-simple-type
(car (soap-xml-get-children1 node 'xsd:simpleType))))
(soap-warning "xsd:list node has more than one child %s"
(soap-xs-type-name type))))
(setf (soap-xs-simple-type-is-list type) t)))
(defun soap-xs-add-extension (node type)
"Add the extended type defined in XML NODE to TYPE, an `soap-xs-simple-type'."
(setf (soap-xs-simple-type-base type)
(soap-l2fq (xml-get-attribute node 'base)))
(dolist (attribute (soap-xml-get-children1 node 'xsd:attribute))
(push (soap-xs-parse-attribute attribute)
(soap-xs-type-attributes type)))
(dolist (attribute-group (soap-xml-get-children1 node 'xsd:attributeGroup))
(push (soap-xs-parse-attribute-group attribute-group)
(soap-xs-type-attribute-groups type))))
(defun soap-validate-xs-basic-type (value type)
"Validate VALUE against the basic type TYPE."
(let* ((kind (soap-xs-basic-type-kind type)))
(cl-case kind
((anyType Array byte[])
value)
(t
(let ((convert (get kind 'rng-xsd-convert)))
(if convert
(if (rng-dt-make-value convert value)
value
(error "Invalid %s: %s" (symbol-name kind) value))
(error "Don't know how to convert %s" kind)))))))
(defun soap-validate-xs-simple-type (value type)
"Validate VALUE against the restrictions of TYPE."
(let* ((base-type (soap-xs-simple-type-base type))
(messages nil))
(if (listp base-type)
(catch 'valid
(dolist (base base-type)
(condition-case error-object
(cond ((soap-xs-simple-type-p base)
(throw 'valid
(soap-validate-xs-simple-type value base)))
((soap-xs-basic-type-p base)
(throw 'valid
(soap-validate-xs-basic-type value base))))
(error (push (cadr error-object) messages))))
(when messages
(error (mapconcat #'identity (nreverse messages) "; and: "))))
(cl-labels ((fail-with-message (format value)
(push (format format value) messages)
(throw 'invalid nil)))
(catch 'invalid
(let ((enumeration (soap-xs-simple-type-enumeration type)))
(when (and (> (length enumeration) 1)
(not (member value enumeration)))
(fail-with-message "bad value, should be one of %s" enumeration)))
(let ((pattern (soap-xs-simple-type-pattern type)))
(when (and pattern (not (string-match-p pattern value)))
(fail-with-message "bad value, should match pattern %s" pattern)))
(let ((length-range (soap-xs-simple-type-length-range type)))
(when length-range
(unless (stringp value)
(fail-with-message
"bad value, should be a string with length range %s"
length-range))
(when (car length-range)
(unless (>= (length value) (car length-range))
(fail-with-message "short string, should be at least %s chars"
(car length-range))))
(when (cdr length-range)
(unless (<= (length value) (cdr length-range))
(fail-with-message "long string, should be at most %s chars"
(cdr length-range))))))
(let ((integer-range (soap-xs-simple-type-integer-range type)))
(when integer-range
(unless (numberp value)
(fail-with-message "bad value, should be a number with range %s"
integer-range))
(when (car integer-range)
(unless (>= value (car integer-range))
(fail-with-message "small value, should be at least %s"
(car integer-range))))
(when (cdr integer-range)
(unless (<= value (cdr integer-range))
(fail-with-message "big value, should be at most %s"
(cdr integer-range))))))))
(when messages
(error "Xs-simple-type(%s, %s): %s"
value (or (soap-xs-type-name type) (soap-xs-type-id type))
(car messages)))))
value)
(defun soap-resolve-references-for-xs-simple-type (type wsdl)
"Replace names in TYPE with the referenced objects in the WSDL.
This is a specialization of `soap-resolve-references' for
`soap-xs-simple-type' objects.
See also `soap-wsdl-resolve-references'."
(let ((namespace (soap-element-namespace-tag type)))
(when namespace
(let ((nstag (car (rassoc namespace (soap-wsdl-alias-table wsdl)))))
(when nstag
(setf (soap-element-namespace-tag type) nstag)))))
(let ((base (soap-xs-simple-type-base type)))
(cond
((soap-name-p base)
(setf (soap-xs-simple-type-base type)
(soap-wsdl-get base wsdl 'soap-xs-type-p)))
((soap-xs-type-p base)
(soap-resolve-references base wsdl))
((listp base)
(setf (soap-xs-simple-type-base type)
(mapcar (lambda (type)
(cond ((soap-name-p type)
(soap-wsdl-get type wsdl 'soap-xs-type-p))
((soap-xs-type-p type)
(soap-resolve-references type wsdl)
type)
(t type)))
base)))
(t (error "Oops"))))
(dolist (attribute (soap-xs-type-attributes type))
(soap-resolve-references attribute wsdl))
(dolist (attribute-group (soap-xs-type-attribute-groups type))
(soap-resolve-references attribute-group wsdl)))
(defun soap-encode-xs-simple-type-attributes (value type)
"Encode the XML attributes for VALUE according to TYPE.
The attributes are inserted in the current buffer at the current
position. If TYPE has no attributes, the xsi:type attribute and
an optional xsi:nil attribute are added.
This is a specialization of `soap-encode-attributes' for
`soap-xs-simple-type' objects."
(let ((attributes (soap-get-xs-attributes type)))
(dolist (a attributes)
(let ((element-name (soap-element-name a)))
(if (soap-xs-attribute-default a)
(insert " " element-name
"=\"" (soap-xs-attribute-default a) "\"")
(dolist (value-pair value)
(when (equal element-name (symbol-name (car-safe value-pair)))
(insert " " element-name
"=\"" (cdr value-pair) "\""))))))
(unless attributes
(insert " xsi:type=\"" (soap-element-fq-name type) "\"")
(unless value (insert " xsi:nil=\"true\"")))))
(defun soap-encode-xs-simple-type (value type)
"Encode the VALUE according to TYPE.
The data is inserted in the current buffer at the current
position.
This is a specialization of `soap-encode-value' for
`soap-xs-simple-type' objects."
(soap-validate-xs-simple-type value type)
(if (soap-xs-simple-type-is-list type)
(progn
(dolist (v (butlast value))
(soap-encode-value v (soap-xs-simple-type-base type))
(insert " "))
(soap-encode-value (car (last value)) (soap-xs-simple-type-base type)))
(soap-encode-value value (soap-xs-simple-type-base type))))
(defun soap-decode-xs-simple-type (type node)
"Use TYPE, a `soap-xs-simple-type', to decode the contents of NODE.
A LISP value is returned based on the contents of NODE and the
type-info stored in TYPE.
This is a specialization of `soap-decode-type' for
`soap-xs-simple-type' objects."
(if (soap-xs-simple-type-is-list type)
(split-string (car (xml-node-children node)))
(let ((value (soap-decode-type (soap-xs-simple-type-base type) node)))
(soap-validate-xs-simple-type value type))))
(let ((tag (soap-type-of (make-soap-xs-simple-type))))
(put tag 'soap-resolve-references
#'soap-resolve-references-for-xs-simple-type)
(put tag 'soap-attribute-encoder #'soap-encode-xs-simple-type-attributes)
(put tag 'soap-encoder #'soap-encode-xs-simple-type)
(put tag 'soap-decoder #'soap-decode-xs-simple-type))
(cl-defstruct (soap-xs-complex-type (:include soap-xs-type))
indicator base
elements
optional?
multiple?
is-group)
(defun soap-xs-parse-complex-type (node)
"Construct a `soap-xs-complex-type' by parsing the XML NODE."
(let ((name (xml-get-attribute-or-nil node 'name))
(id (xml-get-attribute-or-nil node 'id))
(node-name (soap-l2wk (xml-node-name node)))
type
attributes
attribute-groups)
(cl-assert (memq node-name '(xsd:complexType xsd:complexContent xsd:group))
nil "unexpected node: %s" node-name)
(dolist (def (xml-node-children node))
(when (consp def) (cl-case (soap-l2wk (xml-node-name def))
(xsd:attribute (push (soap-xs-parse-attribute def) attributes))
(xsd:attributeGroup
(push (soap-xs-parse-attribute-group def)
attribute-groups))
(xsd:simpleContent (setq type (soap-xs-parse-simple-type def)))
((xsd:sequence xsd:all xsd:choice)
(setq type (soap-xs-parse-sequence def)))
(xsd:complexContent
(dolist (def (xml-node-children def))
(when (consp def)
(cl-case (soap-l2wk (xml-node-name def))
(xsd:attribute
(push (soap-xs-parse-attribute def) attributes))
(xsd:attributeGroup
(push (soap-xs-parse-attribute-group def)
attribute-groups))
((xsd:extension xsd:restriction)
(setq type
(soap-xs-parse-extension-or-restriction def)))
((xsd:sequence xsd:all xsd:choice)
(soap-xs-parse-sequence def)))))))))
(unless type
(setq type (make-soap-xs-complex-type)))
(setf (soap-xs-type-name type) name)
(setf (soap-xs-type-namespace-tag type) soap-target-xmlns)
(setf (soap-xs-type-id type) id)
(setf (soap-xs-type-attributes type)
(append attributes (soap-xs-type-attributes type)))
(setf (soap-xs-type-attribute-groups type)
(append attribute-groups (soap-xs-type-attribute-groups type)))
(when (soap-xs-complex-type-p type)
(setf (soap-xs-complex-type-is-group type)
(eq node-name 'xsd:group)))
type))
(defun soap-xs-parse-sequence (node)
"Parse a sequence definition from XML NODE.
Returns a `soap-xs-complex-type'."
(cl-assert (memq (soap-l2wk (xml-node-name node))
'(xsd:sequence xsd:choice xsd:all))
nil
"unexpected node: %s" (soap-l2wk (xml-node-name node)))
(let ((type (make-soap-xs-complex-type)))
(setf (soap-xs-complex-type-indicator type)
(cl-ecase (soap-l2wk (xml-node-name node))
(xsd:sequence 'sequence)
(xsd:all 'all)
(xsd:choice 'choice)))
(setf (soap-xs-complex-type-optional? type) (soap-node-optional node))
(setf (soap-xs-complex-type-multiple? type) (soap-node-multiple node))
(dolist (r (xml-node-children node))
(unless (stringp r) (cl-case (soap-l2wk (xml-node-name r))
((xsd:element xsd:group)
(push (soap-xs-parse-element r)
(soap-xs-complex-type-elements type)))
((xsd:sequence xsd:choice xsd:all)
(let ((choice (soap-xs-parse-sequence r)))
(push (make-soap-xs-element :name nil :type^ choice)
(soap-xs-complex-type-elements type))))
(xsd:attribute
(push (soap-xs-parse-attribute r)
(soap-xs-type-attributes type)))
(xsd:attributeGroup
(push (soap-xs-parse-attribute-group r)
(soap-xs-type-attribute-groups type))))))
(setf (soap-xs-complex-type-elements type)
(nreverse (soap-xs-complex-type-elements type)))
type))
(defun soap-xs-parse-extension-or-restriction (node)
"Parse an extension or restriction definition from XML NODE.
Return a `soap-xs-complex-type'."
(cl-assert (memq (soap-l2wk (xml-node-name node))
'(xsd:extension xsd:restriction))
nil
"unexpected node: %s" (soap-l2wk (xml-node-name node)))
(let (type
attributes
attribute-groups
array?
(base (xml-get-attribute-or-nil node 'base)))
(setq array?
(and (eq (soap-l2wk (xml-node-name node)) 'xsd:restriction)
(equal base (soap-wk2l "soapenc:Array"))))
(dolist (def (xml-node-children node))
(when (consp def) (cl-case (soap-l2wk (xml-node-name def))
((xsd:sequence xsd:choice xsd:all)
(setq type (soap-xs-parse-sequence def)))
(xsd:attribute
(if array?
(let ((array-type
(soap-xml-get-attribute-or-nil1 def 'wsdl:arrayType)))
(when (and array-type
(string-match "^\\(.*\\)\\[\\]$" array-type))
(setq base (match-string 1 array-type))))
(push (soap-xs-parse-attribute def) attributes)))
(xsd:attributeGroup
(push (soap-xs-parse-attribute-group def) attribute-groups)))))
(unless type
(setq type (make-soap-xs-complex-type))
(when array?
(setf (soap-xs-complex-type-indicator type) 'array)))
(setf (soap-xs-complex-type-base type) (soap-l2fq base))
(setf (soap-xs-complex-type-attributes type) attributes)
(setf (soap-xs-complex-type-attribute-groups type) attribute-groups)
type))
(defun soap-resolve-references-for-xs-complex-type (type wsdl)
"Replace names in TYPE with the referenced objects in the WSDL.
This is a specialization of `soap-resolve-references' for
`soap-xs-complex-type' objects.
See also `soap-wsdl-resolve-references'."
(let ((namespace (soap-element-namespace-tag type)))
(when namespace
(let ((nstag (car (rassoc namespace (soap-wsdl-alias-table wsdl)))))
(when nstag
(setf (soap-element-namespace-tag type) nstag)))))
(let ((base (soap-xs-complex-type-base type)))
(cond ((soap-name-p base)
(setf (soap-xs-complex-type-base type)
(soap-wsdl-get base wsdl 'soap-xs-type-p)))
((soap-xs-type-p base)
(soap-resolve-references base wsdl))))
(let (all-elements)
(dolist (element (soap-xs-complex-type-elements type))
(if (soap-xs-element-is-group element)
(let ((type (soap-wsdl-get
(soap-xs-element-reference element)
wsdl (lambda (type)
(and
(soap-xs-complex-type-p type)
(soap-xs-complex-type-is-group type))))))
(dolist (element (soap-xs-complex-type-elements type))
(soap-resolve-references element wsdl)
(push element all-elements)))
(soap-resolve-references element wsdl)
(push element all-elements)))
(setf (soap-xs-complex-type-elements type) (nreverse all-elements)))
(dolist (attribute (soap-xs-type-attributes type))
(soap-resolve-references attribute wsdl))
(dolist (attribute-group (soap-xs-type-attribute-groups type))
(soap-resolve-references attribute-group wsdl)))
(defun soap-encode-xs-complex-type-attributes (value type)
"Encode the XML attributes for encoding VALUE according to TYPE.
The xsi:type and optional xsi:nil attributes are added, plus
additional attributes needed for arrays types, if applicable. The
attributes are inserted in the current buffer at the current
position.
This is a specialization of `soap-encode-attributes' for
`soap-xs-complex-type' objects."
(if (eq (soap-xs-complex-type-indicator type) 'array)
(let ((element-type (soap-xs-complex-type-base type)))
(insert " xsi:type=\"soapenc:Array\"")
(insert " soapenc:arrayType=\""
(soap-element-fq-name element-type)
"[" (format "%s" (length value)) "]" "\""))
(progn
(dolist (a (soap-get-xs-attributes type))
(let ((element-name (soap-element-name a)))
(if (soap-xs-attribute-default a)
(insert " " element-name
"=\"" (soap-xs-attribute-default a) "\"")
(dolist (value-pair value)
(when (equal element-name (symbol-name (car value-pair)))
(insert " " element-name
"=\"" (cdr value-pair) "\""))))))
(when (and (soap-xs-complex-type-indicator type) (null value))
(insert " xsi:nil=\"true\"")))))
(defun soap-get-candidate-elements (element)
"Return a list of elements that are compatible with ELEMENT.
The returned list includes ELEMENT's references and
alternatives."
(let ((reference (soap-xs-element-reference element)))
(if reference
(append (list reference)
(soap-xs-element-alternatives reference))
(append (list element)
(soap-xs-element-alternatives element)))))
(defun soap-encode-xs-complex-type (value type)
"Encode the VALUE according to TYPE.
The data is inserted in the current buffer at the current
position.
This is a specialization of `soap-encode-value' for
`soap-xs-complex-type' objects."
(cl-case (soap-xs-complex-type-indicator type)
(array
(error "Arrays of type soap-encode-xs-complex-type are handled elsewhere"))
((sequence choice all nil)
(let ((type-list (list type))
(type-elements '()))
(let ((base (soap-xs-complex-type-base type)))
(while base
(push base type-list)
(setq base (soap-xs-complex-type-base base))))
(dolist (type type-list)
(dolist (element (soap-xs-complex-type-elements type))
(unless (member element type-elements)
(setq type-elements (append type-elements (list element))))))
(dolist (element type-elements)
(catch 'done
(let ((instance-count 0))
(dolist (candidate (soap-get-candidate-elements element))
(let ((e-name (soap-xs-element-name candidate)))
(if e-name
(let ((e-name (intern e-name)))
(dolist (v value)
(when (equal (car v) e-name)
(cl-incf instance-count)
(soap-encode-value (cdr v) candidate))))
(if (soap-xs-complex-type-indicator type)
(let ((current-point (point)))
(soap-encode-value value candidate)
(when (not (equal current-point (point)))
(cl-incf instance-count)))
(dolist (v value)
(let ((current-point (point)))
(soap-encode-value v candidate)
(when (not (equal current-point (point)))
(cl-incf instance-count))))))))
(let* ((indicator (soap-xs-complex-type-indicator type))
(element-type (soap-xs-element-type element))
(reference (soap-xs-element-reference element))
(e-name (or (soap-xs-element-name element)
(and reference
(soap-xs-element-name reference)))))
(cond ((and (eq indicator 'choice)
(> instance-count 0))
(throw 'done t))
((and (not (eq indicator 'choice))
(= instance-count 0)
(not (soap-xs-element-optional? element))
(not (soap-xs-complex-type-optional? type))
(and (soap-xs-complex-type-p element-type)
(not (soap-xs-complex-type-optional-p
element-type))))
(soap-warning
"While encoding %s: missing non-nillable slot %s"
value e-name))
((and (> instance-count 1)
(not (soap-xs-element-multiple? element))
(and (soap-xs-complex-type-p element-type)
(not (soap-xs-complex-type-multiple-p
element-type))))
(soap-warning
(concat "While encoding %s: expected single,"
" found multiple elements for slot %s")
value e-name)))))))))
(t
(error "Don't know how to encode complex type: %s"
(soap-xs-complex-type-indicator type)))))
(defun soap-xml-get-children-fq (node child-name)
"Return the children of NODE named CHILD-NAME.
This is the same as `xml-get-children1', but NODE's local
namespace is used to resolve the children's namespace tags."
(let (result)
(dolist (c (xml-node-children node))
(when (and (consp c)
(soap-with-local-xmlns node
(equal (ignore-errors
(soap-l2fq (xml-node-name c)))
child-name)))
(push c result)))
(nreverse result)))
(defun soap-xs-element-get-fq-name (element wsdl)
"Return ELEMENT's fully-qualified name using WSDL's alias table.
Return nil if ELEMENT does not have a name."
(let* ((ns-aliases (soap-wsdl-alias-table wsdl))
(ns-name (cdr (assoc
(soap-element-namespace-tag element)
ns-aliases))))
(when ns-name
(cons ns-name (soap-element-name element)))))
(defun soap-xs-complex-type-optional-p (type)
"Return t if TYPE or any of TYPE's ancestor types is optional.
Return nil otherwise."
(when type
(or (soap-xs-complex-type-optional? type)
(and (soap-xs-complex-type-p type)
(soap-xs-complex-type-optional-p
(soap-xs-complex-type-base type))))))
(defun soap-xs-complex-type-multiple-p (type)
"Return t if TYPE or any of TYPE's ancestor types permits multiple elements.
Return nil otherwise."
(when type
(or (soap-xs-complex-type-multiple? type)
(and (soap-xs-complex-type-p type)
(soap-xs-complex-type-multiple-p
(soap-xs-complex-type-base type))))))
(defun soap-get-xs-attributes-from-groups (attribute-groups)
"Return a list of attributes from all ATTRIBUTE-GROUPS."
(let (attributes)
(dolist (group attribute-groups)
(let ((sub-groups (soap-xs-attribute-group-attribute-groups group)))
(setq attributes (append attributes
(soap-get-xs-attributes-from-groups sub-groups)
(soap-xs-attribute-group-attributes group)))))
attributes))
(defun soap-get-xs-attributes (type)
"Return a list of all of TYPE's and TYPE's ancestors' attributes."
(let* ((base (and (soap-xs-complex-type-p type)
(soap-xs-complex-type-base type)))
(attributes (append (soap-xs-type-attributes type)
(soap-get-xs-attributes-from-groups
(soap-xs-type-attribute-groups type)))))
(if base
(append attributes (soap-get-xs-attributes base))
attributes)))
(defun soap-decode-xs-attributes (type node)
"Use TYPE, a `soap-xs-complex-type', to decode the attributes of NODE."
(let (result)
(dolist (attribute (soap-get-xs-attributes type))
(let* ((name (soap-xs-attribute-name attribute))
(attribute-type (soap-xs-attribute-type attribute))
(symbol (intern name))
(value (xml-get-attribute-or-nil node symbol)))
(cond
((soap-xs-basic-type-p attribute-type)
(when value
(push (cons symbol
(soap-decode-xs-basic-type attribute-type
(list symbol nil value)))
result)))
((soap-xs-simple-type-p attribute-type)
(when value
(push (cons symbol
(soap-validate-xs-simple-type value attribute-type))
result)))
(t
(error (concat "Attribute %s is of type %s which is"
" not a basic or simple type")
name (soap-name-p attribute))))))
result))
(defun soap-decode-xs-complex-type (type node)
"Use TYPE, a `soap-xs-complex-type', to decode the contents of NODE.
A LISP value is returned based on the contents of NODE and the
type-info stored in TYPE.
This is a specialization of `soap-decode-type' for
`soap-xs-basic-type' objects."
(cl-case (soap-xs-complex-type-indicator type)
(array
(let ((result nil)
(element-type (soap-xs-complex-type-base type)))
(dolist (node (xml-node-children node))
(when (consp node)
(push (soap-decode-type element-type node) result)))
(nreverse result)))
((sequence choice all nil)
(let ((result nil)
(base (soap-xs-complex-type-base type)))
(when base
(setq result (nreverse (soap-decode-type base node))))
(catch 'done
(dolist (element (soap-xs-complex-type-elements type))
(let* ((instance-count 0)
(e-name (soap-xs-element-name element))
(use-fq-names (string-match ":" (symbol-name (car node))))
(children (if e-name
(if use-fq-names
(soap-xml-get-children-fq
node
(soap-xs-element-get-fq-name
element soap-current-wsdl))
(xml-get-children node (intern e-name)))
(list node)))
(element-type (soap-xs-element-type element)))
(dolist (node children)
(cl-incf instance-count)
(let* ((attributes
(soap-decode-xs-attributes element-type node))
(element-type
(if (soap-xml-get-attribute-or-nil1 node 'xsi:type)
(soap-wsdl-get
(soap-l2fq
(soap-xml-get-attribute-or-nil1 node
'xsi:type))
soap-current-wsdl 'soap-xs-type-p t)
element-type))
(decoded-child (soap-decode-type element-type node)))
(if e-name
(push (cons (intern e-name)
(append attributes decoded-child)) result)
(setq result (append decoded-child result)))))
(cond ((and (eq (soap-xs-complex-type-indicator type) 'choice)
(not (soap-xs-complex-type-multiple-p type))
(> instance-count 0))
(throw 'done t))
((and (not (eq (soap-xs-complex-type-indicator type)
'choice))
(= instance-count 0)
(not (soap-xs-element-optional? element))
(and (soap-xs-complex-type-p element-type)
(not (soap-xs-complex-type-optional-p
element-type))))
(soap-warning "missing non-nillable slot %s" e-name))
((and (> instance-count 1)
(not (soap-xs-complex-type-multiple-p type))
(not (soap-xs-element-multiple? element))
(and (soap-xs-complex-type-p element-type)
(not (soap-xs-complex-type-multiple-p
element-type))))
(soap-warning "expected single %s slot, found multiple"
e-name))))))
(nreverse result)))
(t
(error "Don't know how to decode complex type: %s"
(soap-xs-complex-type-indicator type)))))
(let ((tag (soap-type-of (make-soap-xs-complex-type))))
(put tag 'soap-resolve-references
#'soap-resolve-references-for-xs-complex-type)
(put tag 'soap-attribute-encoder #'soap-encode-xs-complex-type-attributes)
(put tag 'soap-encoder #'soap-encode-xs-complex-type)
(put tag 'soap-decoder #'soap-decode-xs-complex-type))
(cl-defstruct (soap-message (:include soap-element))
parts )
(cl-defstruct (soap-operation (:include soap-element))
parameter-order
input output faults input-action output-action)
(cl-defstruct (soap-port-type (:include soap-element))
operations)
(cl-defstruct soap-bound-operation
operation soap-action soap-headers soap-body use )
(cl-defstruct (soap-binding (:include soap-element))
port-type
(operations (make-hash-table :test 'equal) :readonly t))
(cl-defstruct (soap-port (:include soap-element))
service-url
binding)
(cl-defstruct (soap-wsdl
(:constructor soap-make-wsdl^)
(:copier soap-copy-wsdl))
origin current-file xmlschema-imports ports alias-table namespaces )
(defun soap-make-wsdl (origin)
"Create a new WSDL document, loaded from ORIGIN, and initialize it."
(let ((wsdl (soap-make-wsdl^ :origin origin)))
(let ((ns (soap-make-xs-basic-types
"http://www.w3.org/2001/XMLSchema" "xsd")))
(soap-wsdl-add-namespace ns wsdl)
(soap-wsdl-add-alias "xsd" (soap-namespace-name ns) wsdl))
(let ((ns (soap-make-xs-basic-types
"http://schemas.xmlsoap.org/soap/encoding/" "soapenc")))
(soap-wsdl-add-namespace ns wsdl)
(soap-wsdl-add-alias "soapenc" (soap-namespace-name ns) wsdl))
wsdl))
(defun soap-wsdl-add-alias (alias name wsdl)
"Add a namespace ALIAS for NAME to the WSDL document."
(let ((existing (assoc alias (soap-wsdl-alias-table wsdl))))
(if existing
(unless (equal (cdr existing) name)
(warn "Redefining alias %s from %s to %s"
alias (cdr existing) name)
(push (cons alias name) (soap-wsdl-alias-table wsdl)))
(push (cons alias name) (soap-wsdl-alias-table wsdl)))))
(defun soap-wsdl-find-namespace (name wsdl)
"Find a namespace by NAME in the WSDL document."
(catch 'found
(dolist (ns (soap-wsdl-namespaces wsdl))
(when (equal name (soap-namespace-name ns))
(throw 'found ns)))))
(defun soap-wsdl-add-namespace (ns wsdl)
"Add the namespace NS to the WSDL document.
If a namespace by this name already exists in WSDL, individual
elements will be added to it."
(let ((existing (soap-wsdl-find-namespace (soap-namespace-name ns) wsdl)))
(if existing
(maphash (lambda (_key value)
(dolist (v value)
(soap-namespace-put v existing)))
(soap-namespace-elements ns))
(push ns (soap-wsdl-namespaces wsdl)))))
(defun soap-wsdl-get (name wsdl &optional predicate use-local-alias-table)
"Retrieve element NAME from the WSDL document.
PREDICATE is used to differentiate between elements when NAME
refers to multiple elements. A typical value for this would be a
structure predicate for the type of element you want to retrieve.
For example, to retrieve a message named \"foo\" when other
elements named \"foo\" exist in the WSDL you could use:
(soap-wsdl-get \"foo\" WSDL \\='soap-message-p)
If USE-LOCAL-ALIAS-TABLE is not nil, `soap-local-xmlns' will be
used to resolve the namespace alias."
(let ((alias-table (soap-wsdl-alias-table wsdl))
namespace element-name element)
(when (symbolp name)
(setq name (symbol-name name)))
(when use-local-alias-table
(setq alias-table (append soap-local-xmlns alias-table)))
(cond ((consp name) (setq element-name (cdr name))
(when (symbolp element-name)
(setq element-name (symbol-name element-name)))
(setq namespace (soap-wsdl-find-namespace (car name) wsdl))
(unless namespace
(error "Soap-wsdl-get(%s): unknown namespace: %s" name namespace)))
((string-match "^\\(.*\\):\\(.*\\)$" name)
(setq element-name (match-string 2 name))
(let* ((ns-alias (match-string 1 name))
(ns-name (cdr (assoc ns-alias alias-table))))
(unless ns-name
(error "Soap-wsdl-get(%s): cannot find namespace alias %s"
name ns-alias))
(setq namespace (soap-wsdl-find-namespace ns-name wsdl))
(unless namespace
(error
"Soap-wsdl-get(%s): unknown namespace %s, referenced as %s"
name ns-name ns-alias))))
(t
(error "Soap-wsdl-get(%s): bad name" name)))
(setq element (soap-namespace-get
element-name namespace
(if predicate
(lambda (e)
(or (funcall 'soap-namespace-link-p e)
(funcall predicate e)))
nil)))
(unless element
(error "Soap-wsdl-get(%s): cannot find element" name))
(if (soap-namespace-link-p element)
(soap-wsdl-get (soap-namespace-link-target element) wsdl predicate)
element)))
(defun soap-parse-schema (node wsdl)
"Parse a schema NODE, placing the results in WSDL.
Return a SOAP-NAMESPACE containing the elements."
(soap-with-local-xmlns node
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'xsd:schema)
nil
"expecting an xsd:schema node, got %s"
(soap-l2wk (xml-node-name node)))
(let ((ns (make-soap-namespace :name (soap-get-target-namespace node))))
(dolist (def (xml-node-children node))
(unless (stringp def) (cl-case (soap-l2wk (xml-node-name def))
(xsd:import
(let ((location (or
(xml-get-attribute-or-nil def 'schemaLocation)
(xml-get-attribute-or-nil def 'location))))
(when location
(push location (soap-wsdl-xmlschema-imports wsdl)))))
(xsd:element
(soap-namespace-put (soap-xs-parse-element def) ns))
(xsd:attribute
(soap-namespace-put (soap-xs-parse-attribute def) ns))
(xsd:attributeGroup
(soap-namespace-put (soap-xs-parse-attribute-group def) ns))
(xsd:simpleType
(soap-namespace-put (soap-xs-parse-simple-type def) ns))
((xsd:complexType xsd:group)
(soap-namespace-put (soap-xs-parse-complex-type def) ns)))))
ns)))
(defun soap-resolve-references (element wsdl)
"Replace names in ELEMENT with the referenced objects in the WSDL.
This is a generic function which invokes a specific resolver
function depending on the type of the ELEMENT.
If ELEMENT has no resolver function, it is silently ignored."
(let ((resolver (get (soap-type-of element) 'soap-resolve-references)))
(when resolver
(funcall resolver element wsdl))))
(defun soap-resolve-references-for-message (message wsdl)
"Replace names in MESSAGE with the referenced objects in the WSDL.
This is a generic function, called by `soap-resolve-references',
you should use that function instead.
See also `soap-wsdl-resolve-references'."
(let (resolved-parts)
(dolist (part (soap-message-parts message))
(let ((name (car part))
(element (cdr part)))
(when (stringp name)
(setq name (intern name)))
(if (soap-name-p element)
(setq element (soap-wsdl-get
element wsdl
(lambda (x)
(or (soap-xs-type-p x) (soap-xs-element-p x)))))
(soap-resolve-references element wsdl)
(unless (soap-element-namespace-tag element)
(setf (soap-element-namespace-tag element)
(soap-element-namespace-tag message))))
(push (cons name element) resolved-parts)))
(setf (soap-message-parts message) (nreverse resolved-parts))))
(defun soap-resolve-references-for-operation (operation wsdl)
"Resolve references for an OPERATION type using the WSDL document.
See also `soap-resolve-references' and
`soap-wsdl-resolve-references'"
(let ((namespace (soap-element-namespace-tag operation)))
(when namespace
(let ((nstag (car (rassoc namespace (soap-wsdl-alias-table wsdl)))))
(when nstag
(setf (soap-element-namespace-tag operation) nstag)))))
(let ((input (soap-operation-input operation))
(counter 0))
(let ((name (car input))
(message (cdr input)))
(when (or (null name) (equal name ""))
(setq name (format "in%d" (cl-incf counter))))
(when (soap-name-p message)
(setf (soap-operation-input operation)
(cons (intern name)
(soap-wsdl-get message wsdl 'soap-message-p))))))
(let ((output (soap-operation-output operation))
(counter 0))
(let ((name (car output))
(message (cdr output)))
(when (or (null name) (equal name ""))
(setq name (format "out%d" (cl-incf counter))))
(when (soap-name-p message)
(setf (soap-operation-output operation)
(cons (intern name)
(soap-wsdl-get message wsdl 'soap-message-p))))))
(let ((resolved-faults nil)
(counter 0))
(dolist (fault (soap-operation-faults operation))
(let ((name (car fault))
(message (cdr fault)))
(when (or (null name) (equal name ""))
(setq name (format "fault%d" (cl-incf counter))))
(if (soap-name-p message)
(push (cons (intern name)
(soap-wsdl-get message wsdl 'soap-message-p))
resolved-faults)
(push fault resolved-faults))))
(setf (soap-operation-faults operation) resolved-faults))
(when (= (length (soap-operation-parameter-order operation)) 0)
(setf (soap-operation-parameter-order operation)
(mapcar #'car (soap-message-parts
(cdr (soap-operation-input operation))))))
(setf (soap-operation-parameter-order operation)
(mapcar (lambda (p)
(if (stringp p)
(intern p)
p))
(soap-operation-parameter-order operation))))
(defun soap-resolve-references-for-binding (binding wsdl)
"Resolve references for a BINDING type using the WSDL document.
See also `soap-resolve-references' and
`soap-wsdl-resolve-references'"
(when (soap-name-p (soap-binding-port-type binding))
(setf (soap-binding-port-type binding)
(soap-wsdl-get (soap-binding-port-type binding)
wsdl 'soap-port-type-p)))
(let ((port-ops (soap-port-type-operations (soap-binding-port-type binding))))
(maphash (lambda (k v)
(setf (soap-bound-operation-operation v)
(soap-namespace-get k port-ops 'soap-operation-p))
(let (resolved-headers)
(dolist (h (soap-bound-operation-soap-headers v))
(push (list (soap-wsdl-get (nth 0 h) wsdl)
(intern (nth 1 h))
(nth 2 h))
resolved-headers))
(setf (soap-bound-operation-soap-headers v)
(nreverse resolved-headers))))
(soap-binding-operations binding))))
(defun soap-resolve-references-for-port (port wsdl)
"Replace names in PORT with the referenced objects in the WSDL.
This is a generic function, called by `soap-resolve-references',
you should use that function instead.
See also `soap-wsdl-resolve-references'."
(when (soap-name-p (soap-port-binding port))
(setf (soap-port-binding port)
(soap-wsdl-get (soap-port-binding port) wsdl 'soap-binding-p))))
(progn
(put (soap-type-of (make-soap-message)) 'soap-resolve-references
#'soap-resolve-references-for-message)
(put (soap-type-of (make-soap-operation)) 'soap-resolve-references
#'soap-resolve-references-for-operation)
(put (soap-type-of (make-soap-binding)) 'soap-resolve-references
#'soap-resolve-references-for-binding)
(put (soap-type-of (make-soap-port)) 'soap-resolve-references
#'soap-resolve-references-for-port))
(defun soap-wsdl-resolve-references (wsdl)
"Resolve all references inside the WSDL structure.
When the WSDL elements are created from the XML document, they
refer to each other by name. For example, the ELEMENT-TYPE slot
of an SOAP-ARRAY-TYPE will contain the name of the element and
the user would have to call `soap-wsdl-get' to obtain the actual
element.
After the entire document is loaded, we resolve all these
references to the actual elements they refer to so that at
runtime, we don't have to call `soap-wsdl-get' each time we
traverse an element tree."
(let ((nprocessed 0)
(nstag-id 0)
(alias-table (soap-wsdl-alias-table wsdl)))
(dolist (ns (soap-wsdl-namespaces wsdl))
(let ((nstag (car-safe (rassoc (soap-namespace-name ns) alias-table))))
(unless nstag
(catch 'done
(while t
(setq nstag (format "ns%d" (cl-incf nstag-id)))
(unless (assoc nstag alias-table)
(soap-wsdl-add-alias nstag (soap-namespace-name ns) wsdl)
(throw 'done t)))))
(maphash (lambda (_name element)
(cond ((soap-element-p element) (cl-incf nprocessed)
(soap-resolve-references element wsdl))
((listp element)
(dolist (e element)
(when (soap-element-p e)
(cl-incf nprocessed)
(soap-resolve-references e wsdl))))))
(soap-namespace-elements ns)))))
wsdl)
(defun soap-parse-server-response ()
"Error-check and parse the XML contents of the current buffer."
(let ((mime-part (mm-dissect-buffer t t)))
(when (and
(equal (mm-handle-media-type mime-part) "multipart/related")
(equal (get-text-property 0 'type (mm-handle-media-type mime-part))
"text/xml"))
(setq mime-part
(mm-make-handle
(get-text-property 0 'buffer (mm-handle-media-type mime-part))
`(,(get-text-property 0 'type (mm-handle-media-type mime-part))))))
(unless mime-part
(error "Failed to decode response from server"))
(unless (equal (car (mm-handle-type mime-part)) "text/xml")
(error "Server response is not an XML document"))
(with-temp-buffer
(mm-insert-part mime-part)
(prog1
(car (xml-parse-region (point-min) (point-max)))
(kill-buffer)
(mm-destroy-part mime-part)))))
(defvar url-http-response-status)
(defun soap-fetch-xml-from-url (url wsdl)
"Load an XML document from URL and return it.
The previously parsed URL is read from WSDL."
(message "Fetching from %s" url)
(let ((current-file (url-expand-file-name url (soap-wsdl-current-file wsdl)))
(url-request-method "GET")
(url-package-name "soap-client.el")
(url-package-version "1.0")
(url-mime-charset-string "utf-8;q=1, iso-8859-1;q=0.5")
(url-http-attempt-keepalives t))
(setf (soap-wsdl-current-file wsdl) current-file)
(let ((buffer (url-retrieve-synchronously current-file)))
(with-current-buffer buffer
(if (> url-http-response-status 299)
(error "Error retrieving WSDL: %s" url-http-response-status))
(soap-parse-server-response)))))
(defun soap-fetch-xml-from-file (file wsdl)
"Load an XML document from FILE and return it.
The previously parsed file is read from WSDL."
(let* ((current-file (soap-wsdl-current-file wsdl))
(expanded-file (expand-file-name file
(if current-file
(file-name-directory current-file)
default-directory))))
(setf (soap-wsdl-current-file wsdl) expanded-file)
(with-temp-buffer
(insert-file-contents expanded-file)
(car (xml-parse-region (point-min) (point-max))))))
(defun soap-fetch-xml (file-or-url wsdl)
"Load an XML document from FILE-OR-URL and return it.
The previously parsed file or URL is read from WSDL."
(let ((current-file (or (soap-wsdl-current-file wsdl) file-or-url)))
(if (or (and current-file (file-exists-p current-file))
(file-exists-p file-or-url))
(soap-fetch-xml-from-file file-or-url wsdl)
(soap-fetch-xml-from-url file-or-url wsdl))))
(defun soap-load-wsdl (file-or-url &optional wsdl)
"Load a document from FILE-OR-URL and return it.
Build on WSDL if it is provided."
(let* ((wsdl (or wsdl (soap-make-wsdl file-or-url)))
(xml (soap-fetch-xml file-or-url wsdl)))
(soap-wsdl-resolve-references (soap-parse-wsdl xml wsdl))
wsdl))
(defalias 'soap-load-wsdl-from-url #'soap-load-wsdl)
(defun soap-parse-wsdl-phase-validate-node (node)
"Assert that NODE is valid."
(soap-with-local-xmlns node
(let ((node-name (soap-l2wk (xml-node-name node))))
(cl-assert (eq node-name 'wsdl:definitions)
nil
"expecting wsdl:definitions node, got %s" node-name))))
(defun soap-parse-wsdl-phase-fetch-imports (node wsdl)
"Fetch and load files imported by NODE into WSDL."
(soap-with-local-xmlns node
(dolist (node (soap-xml-get-children1 node 'wsdl:import))
(let ((location (xml-get-attribute-or-nil node 'location)))
(when location
(soap-load-wsdl location wsdl))))))
(defun soap-parse-wsdl-phase-parse-schema (node wsdl)
"Load types found in NODE into WSDL."
(soap-with-local-xmlns node
(let ((types (car (soap-xml-get-children1 node 'wsdl:types))))
(dolist (node (xml-node-children types))
(when (consp node)
(soap-with-local-xmlns
node
(when (eq (soap-l2wk (xml-node-name node)) 'xsd:schema)
(soap-wsdl-add-namespace (soap-parse-schema node wsdl)
wsdl))))))))
(defun soap-parse-wsdl-phase-fetch-schema (node wsdl)
"Fetch and load schema imports defined by NODE into WSDL."
(soap-with-local-xmlns node
(while (soap-wsdl-xmlschema-imports wsdl)
(let* ((import (pop (soap-wsdl-xmlschema-imports wsdl)))
(xml (soap-fetch-xml import wsdl)))
(soap-wsdl-add-namespace (soap-parse-schema xml wsdl) wsdl)))))
(defun soap-parse-wsdl-phase-finish-parsing (node wsdl)
"Finish parsing NODE into WSDL."
(soap-with-local-xmlns node
(let ((ns (make-soap-namespace :name (soap-get-target-namespace node))))
(dolist (node (soap-xml-get-children1 node 'wsdl:message))
(soap-namespace-put (soap-parse-message node) ns))
(dolist (node (soap-xml-get-children1 node 'wsdl:portType))
(let ((port-type (soap-parse-port-type node)))
(soap-namespace-put port-type ns)
(soap-wsdl-add-namespace
(soap-port-type-operations port-type) wsdl)))
(dolist (node (soap-xml-get-children1 node 'wsdl:binding))
(soap-namespace-put (soap-parse-binding node) ns))
(dolist (node (soap-xml-get-children1 node 'wsdl:service))
(dolist (node (soap-xml-get-children1 node 'wsdl:port))
(let ((name (xml-get-attribute node 'name))
(binding (xml-get-attribute node 'binding))
(url (let ((n (car (soap-xml-get-children1
node 'wsdlsoap:address))))
(xml-get-attribute n 'location))))
(let ((port (make-soap-port
:name name :binding (soap-l2fq binding 'tns)
:service-url url)))
(soap-namespace-put port ns)
(push port (soap-wsdl-ports wsdl))))))
(soap-wsdl-add-namespace ns wsdl))))
(defun soap-parse-wsdl (node wsdl)
"Construct from NODE a WSDL structure, which is an XML document."
(soap-parse-wsdl-phase-validate-node node)
(soap-parse-wsdl-phase-fetch-imports node wsdl)
(soap-parse-wsdl-phase-parse-schema node wsdl)
(soap-parse-wsdl-phase-fetch-schema node wsdl)
(soap-parse-wsdl-phase-finish-parsing node wsdl)
wsdl)
(defun soap-parse-message (node)
"Parse NODE as a wsdl:message and return the corresponding type."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'wsdl:message)
nil
"expecting wsdl:message node, got %s"
(soap-l2wk (xml-node-name node)))
(let ((name (xml-get-attribute-or-nil node 'name))
parts)
(dolist (p (soap-xml-get-children1 node 'wsdl:part))
(let ((name (xml-get-attribute-or-nil p 'name))
(type (xml-get-attribute-or-nil p 'type))
(element (xml-get-attribute-or-nil p 'element)))
(when type
(setq type (soap-l2fq type 'tns)))
(if element
(setq element (soap-l2fq element 'tns))
(setq element (make-soap-xs-element
:name name
:namespace-tag soap-target-xmlns
:type^ type)))
(push (cons name element) parts)))
(make-soap-message :name name :parts (nreverse parts))))
(defun soap-parse-port-type (node)
"Parse NODE as a wsdl:portType and return the corresponding port."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'wsdl:portType)
nil
"expecting wsdl:portType node got %s"
(soap-l2wk (xml-node-name node)))
(let* ((soap-target-xmlns (concat "urn:" (xml-get-attribute node 'name)))
(ns (make-soap-namespace :name soap-target-xmlns)))
(dolist (node (soap-xml-get-children1 node 'wsdl:operation))
(let ((o (soap-parse-operation node)))
(let ((other-operation (soap-namespace-get
(soap-element-name o) ns 'soap-operation-p)))
(if other-operation
(soap-warning "Discarding duplicate operation: %s"
(soap-element-name o))
(progn
(soap-namespace-put o ns)
(cl-destructuring-bind (name . message) (soap-operation-input o)
(soap-namespace-put-link name message ns))
(cl-destructuring-bind (name . message) (soap-operation-output o)
(soap-namespace-put-link name message ns))
(dolist (fault (soap-operation-faults o))
(cl-destructuring-bind (name . message) fault
(soap-namespace-put-link name message ns)))
)))))
(make-soap-port-type :name (xml-get-attribute node 'name)
:operations ns)))
(defun soap-parse-operation (node)
"Parse NODE as a wsdl:operation and return the corresponding type."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'wsdl:operation)
nil
"expecting wsdl:operation node, got %s"
(soap-l2wk (xml-node-name node)))
(let ((name (xml-get-attribute node 'name))
(parameter-order (split-string
(xml-get-attribute node 'parameterOrder)))
input output faults input-action output-action)
(dolist (n (xml-node-children node))
(when (consp n) (let ((node-name (soap-l2wk (xml-node-name n))))
(cond
((eq node-name 'wsdl:input)
(let ((message (xml-get-attribute n 'message))
(name (xml-get-attribute n 'name))
(action (soap-xml-get-attribute-or-nil1 n 'wsaw:Action)))
(setq input (cons name (soap-l2fq message 'tns)))
(setq input-action action)))
((eq node-name 'wsdl:output)
(let ((message (xml-get-attribute n 'message))
(name (xml-get-attribute n 'name))
(action (soap-xml-get-attribute-or-nil1 n 'wsaw:Action)))
(setq output (cons name (soap-l2fq message 'tns)))
(setq output-action action)))
((eq node-name 'wsdl:fault)
(let ((message (xml-get-attribute n 'message))
(name (xml-get-attribute n 'name)))
(push (cons name (soap-l2fq message 'tns)) faults)))))))
(make-soap-operation
:name name
:namespace-tag soap-target-xmlns
:parameter-order parameter-order
:input input
:output output
:faults (nreverse faults)
:input-action input-action
:output-action output-action)))
(defun soap-parse-binding (node)
"Parse NODE as a wsdl:binding and return the corresponding type."
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'wsdl:binding)
nil
"expecting wsdl:binding node, got %s"
(soap-l2wk (xml-node-name node)))
(let ((name (xml-get-attribute node 'name))
(type (xml-get-attribute node 'type)))
(let ((binding (make-soap-binding :name name
:port-type (soap-l2fq type 'tns))))
(dolist (wo (soap-xml-get-children1 node 'wsdl:operation))
(let ((name (xml-get-attribute wo 'name))
soap-action
soap-headers
soap-body
use)
(dolist (so (soap-xml-get-children1 wo 'wsdlsoap:operation))
(setq soap-action (xml-get-attribute-or-nil so 'soapAction)))
(dolist (i (soap-xml-get-children1 wo 'wsdl:input))
(dolist (h (soap-xml-get-children1 i 'wsdlsoap:header))
(let ((message (soap-l2fq (xml-get-attribute-or-nil h 'message)))
(part (xml-get-attribute-or-nil h 'part))
(use (xml-get-attribute-or-nil h 'use)))
(when (and message part)
(push (list message part use) soap-headers))))
(let ((body (car (soap-xml-get-children1 i 'wsdlsoap:body))))
(setq soap-body (xml-get-attribute-or-nil body 'parts))
(when soap-body
(setq soap-body
(mapcar #'intern (split-string soap-body
nil
'omit-nulls))))
(setq use (xml-get-attribute-or-nil body 'use))))
(unless use
(dolist (i (soap-xml-get-children1 wo 'wsdl:output))
(dolist (b (soap-xml-get-children1 i 'wsdlsoap:body))
(setq use (or use
(xml-get-attribute-or-nil b 'use))))))
(puthash name (make-soap-bound-operation
:operation name
:soap-action soap-action
:soap-headers (nreverse soap-headers)
:soap-body soap-body
:use (and use (intern use)))
(soap-binding-operations binding))))
binding)))
(defvar soap-multi-refs nil
"The list of multi-ref nodes in the current SOAP response.
This is a dynamically bound variable used during decoding the
SOAP response.")
(defvar soap-decoded-multi-refs nil
"List of decoded multi-ref nodes in the current SOAP response.
This is a dynamically bound variable used during decoding the
SOAP response.")
(defun soap-decode-type (type node)
"Use TYPE (an xsd type) to decode the contents of NODE.
NODE is an XML node, representing some SOAP encoded value or a
reference to another XML node (a multiRef). This function will
resolve the multiRef reference, if any, than call a TYPE specific
decode function to perform the actual decoding."
(let ((href (xml-get-attribute-or-nil node 'href)))
(cond (href
(catch 'done
(let ((decoded (cdr (assoc href soap-decoded-multi-refs))))
(when decoded
(throw 'done decoded)))
(unless (string-match "^#\\(.*\\)$" href)
(error "Invalid multiRef: %s" href))
(let ((id (match-string 1 href)))
(dolist (mr soap-multi-refs)
(let ((mrid (xml-get-attribute mr 'id)))
(when (equal id mrid)
(let ((decoded (soap-decode-type type mr)))
(push (cons href decoded) soap-decoded-multi-refs)
(throw 'done decoded)))))
(error "Cannot find href %s" href))))
(t
(soap-with-local-xmlns node
(if (equal (soap-xml-get-attribute-or-nil1 node 'xsi:nil) "true")
nil
(cond ((listp type)
(catch 'done
(dolist (union-member type)
(let* ((decoder (get (soap-type-of union-member)
'soap-decoder))
(result (ignore-errors
(funcall decoder
union-member node))))
(when result (throw 'done result))))))
(t
(let ((decoder (get (soap-type-of type) 'soap-decoder)))
(cl-assert decoder nil
"no soap-decoder for %s type"
(soap-type-of type))
(funcall decoder type node))))))))))
(defun soap-decode-any-type (node)
"Decode NODE using type information inside it."
(let ((type (soap-xml-get-attribute-or-nil1 node 'xsi:type)))
(when type
(setq type (soap-l2fq type)))
(if type
(let ((wtype (soap-wsdl-get type soap-current-wsdl 'soap-xs-type-p)))
(if wtype
(soap-decode-type wtype node)
(error "Node has unknown type: %s" type)))
(let ((contents (xml-node-children node)))
(if (and (= (length contents) 1) (stringp (car contents)))
(car contents)
(let (result)
(dolist (element contents)
(unless (stringp element)
(let ((key (xml-node-name element))
(value (soap-decode-any-type element)))
(push (cons key value) result))))
(nreverse result)))))))
(defun soap-decode-array (node)
"Decode NODE as an Array using type information inside it."
(let ((type (soap-xml-get-attribute-or-nil1 node 'soapenc:arrayType))
(wtype nil)
(contents (xml-node-children node))
result)
(when type
(setq type (replace-regexp-in-string "\\[[0-9]+\\]\\'" "" type))
(setq wtype (soap-wsdl-get (soap-l2fq type)
soap-current-wsdl 'soap-xs-type-p))
(unless wtype
(error "soap-decode-array: Node has unknown type: %s" type)))
(dolist (e contents)
(when (consp e)
(push (if wtype
(soap-decode-type wtype e)
(soap-decode-any-type e))
result)))
(nreverse result)))
(if (fboundp 'define-error)
(define-error 'soap-error "SOAP error")
(put 'soap-error
'error-conditions
'(error soap-error))
(put 'soap-error 'error-message "SOAP error"))
(defun soap-parse-envelope (node operation wsdl)
"Parse the SOAP envelope in NODE and return the response.
OPERATION is the WSDL operation for which we expect the response,
WSDL is used to decode the NODE."
(soap-with-local-xmlns node
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'soap:Envelope)
nil
"expecting soap:Envelope node, got %s"
(soap-l2wk (xml-node-name node)))
(let ((headers (soap-xml-get-children1 node 'soap:Header))
(body (car (soap-xml-get-children1 node 'soap:Body))))
(let ((fault (car (soap-xml-get-children1 body 'soap:Fault))))
(when fault
(let ((fault-code (let ((n (car (xml-get-children
fault 'faultcode))))
(car-safe (xml-node-children n))))
(fault-string (let ((n (car (xml-get-children
fault 'faultstring))))
(car-safe (xml-node-children n))))
(detail (xml-get-children fault 'detail)))
(while t
(signal 'soap-error (list fault-code fault-string detail))))))
(let ((response (if (eq (soap-bound-operation-use operation) 'literal)
body
(catch 'found
(dolist (n (xml-node-children body))
(when (consp n)
(throw 'found n)))))))
(soap-parse-response response operation wsdl headers body)))))
(defun soap-parse-response (response-node operation wsdl soap-headers soap-body)
"Parse RESPONSE-NODE and return the result as a LISP value.
OPERATION is the WSDL operation for which we expect the response,
WSDL is used to decode the NODE.
SOAP-HEADERS is a list of the headers of the SOAP envelope or nil
if there are no headers.
SOAP-BODY is the body of the SOAP envelope (of which
RESPONSE-NODE is a sub-node). It is used in case RESPONSE-NODE
reference multiRef parts which are external to RESPONSE-NODE."
(let* ((soap-current-wsdl wsdl)
(op (soap-bound-operation-operation operation))
(use (soap-bound-operation-use operation))
(message (cdr (soap-operation-output op))))
(soap-with-local-xmlns response-node
(when (eq use 'encoded)
(let* ((received-message-name (soap-l2fq (xml-node-name response-node)))
(received-message (soap-wsdl-get
received-message-name wsdl 'soap-message-p)))
(unless (eq received-message message)
(error "Unexpected message: got %s, expecting %s"
received-message-name
(soap-element-name message)))))
(let ((decoded-parts nil)
(soap-multi-refs (xml-get-children soap-body 'multiRef))
(soap-decoded-multi-refs nil))
(dolist (part (soap-message-parts message))
(let ((tag (car part))
(type (cdr part))
node)
(setq node
(cond
((eq use 'encoded)
(car (xml-get-children response-node tag)))
((eq use 'literal)
(catch 'found
(let* ((ns-aliases (soap-wsdl-alias-table wsdl))
(ns-name (cdr (assoc
(soap-element-namespace-tag type)
ns-aliases)))
(fqname (cons ns-name (soap-element-name type))))
(dolist (c (append (mapcar (lambda (header)
(car (xml-node-children
header)))
soap-headers)
(xml-node-children response-node)))
(when (consp c)
(soap-with-local-xmlns c
(when (equal (soap-l2fq (xml-node-name c))
fqname)
(throw 'found c))))))))))
(unless node
(error "Soap-parse-response(%s): cannot find message part %s"
(soap-element-name op) tag))
(let ((decoded-value (soap-decode-type type node)))
(when decoded-value
(push decoded-value decoded-parts)))))
decoded-parts))))
(defun soap-encode-attributes (value type)
"Encode XML attributes for VALUE according to TYPE.
This is a generic function which determines the attribute encoder
for the type and calls that specialized function to do the work.
Attributes are inserted in the current buffer at the current
position."
(let ((attribute-encoder (get (soap-type-of type) 'soap-attribute-encoder)))
(cl-assert attribute-encoder nil
"no soap-attribute-encoder for %s type" (soap-type-of type))
(funcall attribute-encoder value type)))
(defun soap-encode-value (value type)
"Encode the VALUE using TYPE.
The resulting XML data is inserted in the current buffer
at (point)/
TYPE is one of the soap-*-type structures which defines how VALUE
is to be encoded. This is a generic function which finds an
encoder function based on TYPE and calls that encoder to do the
work."
(let ((encoder (get (soap-type-of type) 'soap-encoder)))
(cl-assert encoder nil "no soap-encoder for %s type" (soap-type-of type))
(funcall encoder value type))
(when (soap-element-namespace-tag type)
(add-to-list 'soap-encoded-namespaces (soap-element-namespace-tag type))))
(defun soap-encode-body (operation parameters &optional service-url)
"Create the body of a SOAP request for OPERATION in the current buffer.
PARAMETERS is a list of parameters supplied to the OPERATION.
The OPERATION and PARAMETERS are encoded according to the WSDL
document. SERVICE-URL should be provided when WS-Addressing is
being used."
(let* ((op (soap-bound-operation-operation operation))
(use (soap-bound-operation-use operation))
(message (cdr (soap-operation-input op)))
(parameter-order (soap-operation-parameter-order op))
(param-table (cl-loop for formal in parameter-order
for value in parameters
collect (cons formal value))))
(unless (= (length parameter-order) (length parameters))
(error "Wrong number of parameters for %s: expected %d, got %s"
(soap-element-name op)
(length parameter-order)
(length parameters)))
(let ((headers (soap-bound-operation-soap-headers operation))
(input-action (soap-operation-input-action op)))
(when headers
(insert "<soap:Header>\n")
(when input-action
(add-to-list 'soap-encoded-namespaces "wsa")
(insert "<wsa:Action>" input-action "</wsa:Action>\n")
(insert "<wsa:To>" service-url "</wsa:To>\n"))
(dolist (h headers)
(let* ((message (nth 0 h))
(part (assq (nth 1 h) (soap-message-parts message)))
(value (cdr (assoc (car part) (car parameters))))
(use (nth 2 h))
(element (cdr part)))
(when (eq use 'encoded)
(when (soap-element-namespace-tag element)
(add-to-list 'soap-encoded-namespaces
(soap-element-namespace-tag element)))
(insert "<" (soap-element-fq-name element) ">\n"))
(soap-encode-value value element)
(when (eq use 'encoded)
(insert "</" (soap-element-fq-name element) ">\n"))))
(insert "</soap:Header>\n")))
(insert "<soap:Body>\n")
(when (eq use 'encoded)
(when (soap-element-namespace-tag op)
(add-to-list 'soap-encoded-namespaces (soap-element-namespace-tag op)))
(insert "<" (soap-element-fq-name op) ">\n"))
(dolist (part (soap-message-parts message))
(let* ((param-name (car part))
(element (cdr part))
(value (cdr (assoc param-name param-table))))
(when (or (null (soap-bound-operation-soap-body operation))
(member param-name
(soap-bound-operation-soap-body operation)))
(soap-encode-value value element))))
(when (eq use 'encoded)
(insert "</" (soap-element-fq-name op) ">\n"))
(insert "</soap:Body>\n")))
(defun soap-create-envelope (operation parameters wsdl &optional service-url)
"Create a SOAP request envelope for OPERATION using PARAMETERS.
WSDL is the wsdl document used to encode the PARAMETERS.
SERVICE-URL should be provided when WS-Addressing is being used."
(with-temp-buffer
(let ((soap-encoded-namespaces '("xsi" "soap" "soapenc"))
(use (soap-bound-operation-use operation)))
(soap-encode-body operation parameters service-url)
(goto-char (point-min))
(insert "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soap:Envelope\n")
(when (eq use 'encoded)
(insert " soapenc:encodingStyle=\"\
http://schemas.xmlsoap.org/soap/encoding/\"\n"))
(dolist (nstag soap-encoded-namespaces)
(insert " xmlns:" nstag "=\"")
(let ((nsname (cdr (assoc nstag soap-well-known-xmlns))))
(unless nsname
(setq nsname (cdr (assoc nstag (soap-wsdl-alias-table wsdl)))))
(insert nsname)
(insert "\"\n")))
(insert ">\n")
(goto-char (point-max))
(insert "</soap:Envelope>\n"))
(buffer-string)))
(defcustom soap-debug nil
"When t, enable some debugging facilities."
:type 'boolean)
(defun soap-find-port (wsdl service)
"Return the WSDL port having SERVICE name.
Signal an error if not found."
(or (catch 'found
(dolist (p (soap-wsdl-ports wsdl))
(when (equal service (soap-element-name p))
(throw 'found p))))
(error "Unknown SOAP service: %s" service)))
(defun soap-find-operation (port operation-name)
"Inside PORT, find OPERATION-NAME, a `soap-port-type'.
Signal an error if not found."
(let* ((binding (soap-port-binding port))
(op (gethash operation-name (soap-binding-operations binding))))
(or op
(error "No operation %s for SOAP service %s"
operation-name (soap-element-name port)))))
(defun soap-operation-arity (wsdl service operation-name)
"Return the number of arguments required by a soap operation.
WSDL, SERVICE, OPERATION-NAME and PARAMETERS are as described in
`soap-invoke'."
(let* ((port (soap-find-port wsdl service))
(op (soap-find-operation port operation-name))
(bop (soap-bound-operation-operation op)))
(length (soap-operation-parameter-order bop))))
(defun soap-invoke-internal (callback cbargs wsdl service operation-name
&rest parameters)
"Implement `soap-invoke' and `soap-invoke-async'.
If CALLBACK is non-nil, operate asynchronously, then call CALLBACK as (apply
CALLBACK RESPONSE CBARGS), where RESPONSE is the SOAP invocation result.
If CALLBACK is nil, operate synchronously. WSDL, SERVICE,
OPERATION-NAME and PARAMETERS are as described in `soap-invoke'."
(let* ((port (soap-find-port wsdl service))
(operation (soap-find-operation port operation-name)))
(let ((url-request-method "POST")
(url-package-name "soap-client.el")
(url-package-version "1.0")
(url-request-data
(encode-coding-string
(soap-create-envelope operation parameters wsdl
(soap-port-service-url port))
'utf-8))
(url-mime-charset-string "utf-8;q=1, iso-8859-1;q=0.5")
(url-http-attempt-keepalives t)
(url-request-extra-headers
(list
(cons "SOAPAction"
(concat "\"" (encode-coding-string
(soap-bound-operation-soap-action
operation)
'utf-8)
"\""))
(cons "Content-Type"
"text/xml; charset=utf-8"))))
(if callback
(url-retrieve
(soap-port-service-url port)
(lambda (status)
(let ((data-buffer (current-buffer)))
(unwind-protect
(let ((error-status (plist-get status :error)))
(if error-status
(signal (car error-status) (cdr error-status))
(apply callback
(soap-parse-envelope
(soap-parse-server-response)
operation wsdl)
cbargs)))
(and (buffer-live-p data-buffer)
(kill-buffer data-buffer))))))
(let ((buffer (url-retrieve-synchronously
(soap-port-service-url port))))
(condition-case err
(with-current-buffer buffer
(if (null url-http-response-status)
(error "No HTTP response from server"))
(if (and soap-debug (> url-http-response-status 299))
(warn "Error in SOAP response: HTTP code %s"
url-http-response-status))
(soap-parse-envelope (soap-parse-server-response)
operation wsdl))
(soap-error
(signal (car err) (cdr err)))
(error
(when soap-debug
(pop-to-buffer buffer))
(error (error-message-string err)))))))))
(defun soap-invoke (wsdl service operation-name &rest parameters)
"Invoke a SOAP operation and return the result.
WSDL is used for encoding the request and decoding the response.
It also contains information about the WEB server address that
will service the request.
SERVICE is the SOAP service to invoke.
OPERATION-NAME is the operation to invoke.
PARAMETERS -- the remaining parameters are used as parameters for
the SOAP request.
NOTE: The SOAP service provider should document the available
operations and their parameters for the service. You can also
use the `soap-inspect' function to browse the available
operations in a WSDL document.
NOTE: `soap-invoke' base64-decodes xsd:base64Binary return values
into unibyte strings; these byte-strings require further
interpretation by the caller."
(apply #'soap-invoke-internal nil nil wsdl service operation-name parameters))
(defun soap-invoke-async (callback cbargs wsdl service operation-name
&rest parameters)
"Like `soap-invoke', but call CALLBACK asynchronously with response.
CALLBACK is called as (apply CALLBACK RESPONSE CBARGS), where
RESPONSE is the SOAP invocation result. WSDL, SERVICE,
OPERATION-NAME and PARAMETERS are as described in `soap-invoke'."
(unless callback
(error "Callback argument is nil"))
(apply #'soap-invoke-internal callback cbargs wsdl service operation-name
parameters))
(provide 'soap-client)