aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-29 14:02:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-29 14:02:20 +0000
commit88d14e96cad8b2a9e54267ed1340dacca7c2ed3f (patch)
tree802ef9cee83e3e73504c80ebc7634accd8708efe /docs
parent04d1491a6b32d1c983d45ad5549b9bee27022986 (diff)
3.11 How do I POST with a different Content-Type?
Diffstat (limited to 'docs')
-rw-r--r--docs/FAQ10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/FAQ b/docs/FAQ
index 106c15c55..56ee95f16 100644
--- a/docs/FAQ
+++ b/docs/FAQ
@@ -1,4 +1,4 @@
-Updated: May 15, 2001 (http://curl.haxx.se/docs/faq.shtml)
+Updated: May 29, 2001 (http://curl.haxx.se/docs/faq.shtml)
_ _ ____ _
___| | | | _ \| |
/ __| | | | |_) | |
@@ -34,6 +34,7 @@ FAQ
3.8 How do I tell curl to follow HTTP redirects?
3.9 How do I use curl in PHP, Perl, Tcl, Ruby or Java?
3.10 What about SOAP, WebDAV, XML-RPC or similar protocols over HTTP?
+ 3.11 How do I POST with a different Content-Type?
4. Running Problems
4.1 Problems connecting to SSL servers.
@@ -347,6 +348,13 @@ FAQ
Using libcurl or PHP's curl modules is just as fine and you'd just use the
proper library options to do the same.
+ 3.11 How do I POST with a different Content-Type?
+
+ You can always replace the internally generated headers with -H/--header.
+ To make a simple HTTP POST with text/xml as content-type, do something like:
+
+ curl -d "datatopost" -H "Content-Type: text/xml" [URL]
+
4. Running Problems
4.1. Problems connecting to SSL servers.