]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix loading WSDL data again
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 1 Oct 2020 17:42:45 +0000 (19:42 +0200)
committerLars 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

index 504304f385ede32aae5ad57f45d31785aec50680..241ce9efcb3481245018e6de6e0248b3fef3ddc1 100644 (file)
@@ -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))