From d00eb41fc22ab3643275f8f6d895f928ed535815 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Thu, 1 Oct 2020 19:42:45 +0200 Subject: [PATCH] Fix loading WSDL data again * lisp/net/soap-client.el (soap-make-wsdl): Change the WSDL namespace back again. --- lisp/net/soap-client.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)) -- 2.39.5