summaryrefslogtreecommitdiff
path: root/lisp/net/soap-client.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-10-01 19:42:45 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-10-01 19:42:45 +0200
commitd00eb41fc22ab3643275f8f6d895f928ed535815 (patch)
treedf92f870ea44d81c02405bc30b07476d166ec057 /lisp/net/soap-client.el
parent2017bf0dd1ddd9b18cb95c42e3ef4098bff69fa9 (diff)
downloademacs-d00eb41fc22ab3643275f8f6d895f928ed535815.tar.gz
emacs-d00eb41fc22ab3643275f8f6d895f928ed535815.tar.bz2
emacs-d00eb41fc22ab3643275f8f6d895f928ed535815.zip
Fix loading WSDL data again
* lisp/net/soap-client.el (soap-make-wsdl): Change the WSDL namespace back again.
Diffstat (limited to 'lisp/net/soap-client.el')
-rw-r--r--lisp/net/soap-client.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el
index 504304f385e..241ce9efcb3 100644
--- a/lisp/net/soap-client.el
+++ b/lisp/net/soap-client.el
@@ -2111,7 +2111,9 @@ This is a specialization of `soap-decode-type' for
;; Add the XSD types to the wsdl document
(let ((ns (soap-make-xs-basic-types
- "https://www.w3.org/2001/XMLSchema" "xsd")))
+ ;; The following string is a name and not an URL, so
+ ;; the "http:" should not be changed.
+ "http://www.w3.org/2001/XMLSchema" "xsd")))
(soap-wsdl-add-namespace ns wsdl)
(soap-wsdl-add-alias "xsd" (soap-namespace-name ns) wsdl))