]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix soap-client URL
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 26 Sep 2020 07:31:17 +0000 (00:31 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 26 Sep 2020 07:32:40 +0000 (00:32 -0700)
* lisp/net/soap-client.el (soap-create-envelope):
Fix URL that I broke in 2019-09-23T06:53:30Z!eggert@cs.ucla.edu.
Problem reported by Thomas Fitzsimmons.

lisp/net/soap-client.el

index 7425e8763fbb3948b1132ae79ad2b8a3aeb42ec5..e3c38052a5183962664192c9effccc5168f06d68 100644 (file)
@@ -3027,7 +3027,7 @@ SERVICE-URL should be provided when WS-Addressing is being used."
       (insert "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soap:Envelope\n")
       (when (eq use 'encoded)
         (insert "    soapenc:encodingStyle=\"\
-https://schemas.xmlsoap.org/soap/encoding/\"\n"))
+http://schemas.xmlsoap.org/soap/encoding/\"\n"))
       (dolist (nstag soap-encoded-namespaces)
         (insert "    xmlns:" nstag "=\"")
         (let ((nsname (cdr (assoc nstag soap-well-known-xmlns))))