]> git.sven.stormbind.net Git - sven/tclcurl.git/blob - tests/httpBufferPost.tcl
releasing package tclcurl version 7.22.0+hg20160822-2
[sven/tclcurl.git] / tests / httpBufferPost.tcl
1 package require TclCurl
2
3
4 set fileContent "This is what we will send as if it was the content of a file"
5
6 curl::transfer -url 127.0.0.1/cgi-bin/post1.tcl -verbose 1 -post 1                                                         \
7         -httppost [list name "firstName" contents "Andres" contenttype "text/plain" contentheader [list "adios: goodbye"]] \
8         -httppost [list name "lastName"  contents "Garcia"]                                                                \
9         -httppost [list name "nombre"    bufferName noFile.txt      buffer $fileContent contenttype "text/html"]           \
10         -httppost [list name "submit"    contents "send"] -verbose 1
11
12
13
14