projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2017bf0
)
Fix loading WSDL data again
author
Lars Ingebrigtsen
<larsi@gnus.org>
Thu, 1 Oct 2020 17:42:45 +0000
(19:42 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Thu, 1 Oct 2020 17:42:45 +0000
(19:42 +0200)
* lisp/net/soap-client.el (soap-make-wsdl): Change the WSDL
namespace back again.
lisp/net/soap-client.el
patch
|
blob
|
history
diff --git
a/lisp/net/soap-client.el
b/lisp/net/soap-client.el
index 504304f385ede32aae5ad57f45d31785aec50680..241ce9efcb3481245018e6de6e0248b3fef3ddc1 100644
(file)
--- 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))