From: Lars Ingebrigtsen Date: Thu, 1 Oct 2020 17:42:45 +0000 (+0200) Subject: Fix loading WSDL data again X-Git-Tag: emacs-28.0.90~5782 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d00eb41fc22ab3643275f8f6d895f928ed535815;p=emacs.git Fix loading WSDL data again * lisp/net/soap-client.el (soap-make-wsdl): Change the WSDL namespace back again. --- 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))