Use HTTP headers in XML-RPC requests, not RFC 2822 headers.
authorTaylor R. Campbell <net/mumble/campbell>
Thu, 2 Oct 2008 17:58:05 +0000 (17:58 +0000)
committerTaylor R. Campbell <net/mumble/campbell>
Thu, 2 Oct 2008 17:58:05 +0000 (17:58 +0000)
v7/src/xml/xml-rpc.scm

index c9d5eb2975fefaaf3faa1bd30b3e0d4319e51bd0..8cd8c1663c92c13ff12e9588bded85bc2eae6fe1 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: xml-rpc.scm,v 1.14 2008/08/30 19:48:20 riastradh Exp $
+$Id: xml-rpc.scm,v 1.15 2008/10/02 17:58:05 riastradh Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -33,7 +33,7 @@ USA.
   (let ((response
         (http-post uri
                    `(,@(if (default-object? headers) '() headers)
-                     ,(make-rfc2822-header 'CONTENT-TYPE "text/xml"))
+                     ,(make-http-header 'CONTENT-TYPE "text/xml"))
                    (xml->octets (->request request 'XML-RPC)))))
     (if (not (= 200 (http-response-status response)))
        (error "HTTP error:" (http-response-reason response)))