soap-wsdl-get

soap-wsdl-get is a compiled Lisp function in `soap-client.el'.

(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.