emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master d00eb41: Fix loading WSDL data again


From: Lars Ingebrigtsen
Subject: master d00eb41: Fix loading WSDL data again
Date: Thu, 1 Oct 2020 13:42:53 -0400 (EDT)

branch: master
commit d00eb41fc22ab3643275f8f6d895f928ed535815
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    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 504304f..241ce9e 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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]